2018-03-14 23:13:07 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
|
2005-04-16 22:20:36 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: rsio - IO and DMA resource descriptors
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 05:30:03 +00:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acresrc.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_MODULE_NAME("rsio")
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_io
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-10-21 04:00:00 +00:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_io[5] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_IO,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_io),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_io)},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_IO,
|
|
|
|
sizeof(struct aml_resource_io),
|
|
|
|
0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Decode flag */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.io.io_decode),
|
|
|
|
AML_OFFSET(io.flags),
|
|
|
|
0},
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
/*
|
2005-10-21 04:00:00 +00:00
|
|
|
* These fields are contiguous in both the source and destination:
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
* Address Alignment
|
|
|
|
* Length
|
2005-10-21 04:00:00 +00:00
|
|
|
* Minimum Base Address
|
|
|
|
* Maximum Base Address
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.io.alignment),
|
|
|
|
AML_OFFSET(io.alignment),
|
|
|
|
2},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.io.minimum),
|
|
|
|
AML_OFFSET(io.minimum),
|
|
|
|
2}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_fixed_io
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_fixed_io[4] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_FIXED_IO,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_fixed_io),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_fixed_io)},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_FIXED_IO,
|
|
|
|
sizeof(struct aml_resource_fixed_io),
|
|
|
|
0},
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
/*
|
2005-10-21 04:00:00 +00:00
|
|
|
* These fields are contiguous in both the source and destination:
|
|
|
|
* Base Address
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
* Length
|
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.fixed_io.address_length),
|
|
|
|
AML_OFFSET(fixed_io.address_length),
|
|
|
|
1},
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.fixed_io.address),
|
|
|
|
AML_OFFSET(fixed_io.address),
|
|
|
|
1}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_generic_reg
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_generic_reg[4] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_GENERIC_REGISTER,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_generic_register),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_generic_reg)},
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_GENERIC_REGISTER,
|
|
|
|
sizeof(struct aml_resource_generic_register),
|
|
|
|
0},
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
/*
|
2005-10-21 04:00:00 +00:00
|
|
|
* These fields are contiguous in both the source and destination:
|
|
|
|
* Address Space ID
|
|
|
|
* Register Bit Width
|
|
|
|
* Register Bit Offset
|
|
|
|
* Access Size
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.generic_reg.space_id),
|
|
|
|
AML_OFFSET(generic_reg.address_space_id),
|
|
|
|
4},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Get the Register Address */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE64, ACPI_RS_OFFSET(data.generic_reg.address),
|
|
|
|
AML_OFFSET(generic_reg.address),
|
|
|
|
1}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_end_dpf
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_end_dpf[2] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_END_DEPENDENT,
|
|
|
|
ACPI_RS_SIZE_MIN,
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_end_dpf)},
|
|
|
|
|
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_END_DEPENDENT,
|
|
|
|
sizeof(struct aml_resource_end_dependent),
|
|
|
|
0}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*******************************************************************************
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_end_tag
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_end_tag[2] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_END_TAG,
|
|
|
|
ACPI_RS_SIZE_MIN,
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_end_tag)},
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
|
|
|
|
/*
|
2005-10-21 04:00:00 +00:00
|
|
|
* Note: The checksum field is set to zero, meaning that the resource
|
|
|
|
* data is treated as if the checksum operation succeeded.
|
|
|
|
* (ACPI Spec 1.0b Section 6.4.2.8)
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_END_TAG,
|
|
|
|
sizeof(struct aml_resource_end_tag),
|
|
|
|
0}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_get_start_dpf
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2008-04-10 15:06:43 +00:00
|
|
|
struct acpi_rsconvert_info acpi_rs_get_start_dpf[6] = {
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_START_DEPENDENT,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_start_dependent),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_get_start_dpf)},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Defaults for Compatibility and Performance priorities */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_SET8, ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
|
|
|
|
ACPI_ACCEPTABLE_CONFIGURATION,
|
|
|
|
2},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-10 15:06:43 +00:00
|
|
|
/* Get the descriptor length (0 or 1 for Start Dpf descriptor) */
|
|
|
|
|
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.start_dpf.descriptor_length),
|
|
|
|
AML_OFFSET(start_dpf.descriptor_type),
|
|
|
|
0},
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* All done if there is no flag byte present in the descriptor */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_AML_LENGTH, 0, 1},
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Flag byte is present, get the flags */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_2BITFLAG,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
|
|
|
|
AML_OFFSET(start_dpf.flags),
|
|
|
|
0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_2BITFLAG,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.performance_robustness),
|
|
|
|
AML_OFFSET(start_dpf.flags),
|
|
|
|
2}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_set_start_dpf
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2008-04-10 15:06:43 +00:00
|
|
|
struct acpi_rsconvert_info acpi_rs_set_start_dpf[10] = {
|
|
|
|
/* Start with a default descriptor of length 1 */
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_START_DEPENDENT,
|
|
|
|
sizeof(struct aml_resource_start_dependent),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_set_start_dpf)},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Set the default flag values */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_2BITFLAG,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
|
|
|
|
AML_OFFSET(start_dpf.flags),
|
|
|
|
0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_2BITFLAG,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.performance_robustness),
|
|
|
|
AML_OFFSET(start_dpf.flags),
|
|
|
|
2},
|
2008-04-10 15:06:43 +00:00
|
|
|
/*
|
|
|
|
* All done if the output descriptor length is required to be 1
|
|
|
|
* (i.e., optimization to 0 bytes cannot be attempted)
|
|
|
|
*/
|
|
|
|
{ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.descriptor_length),
|
|
|
|
1},
|
|
|
|
|
|
|
|
/* Set length to 0 bytes (no flags byte) */
|
|
|
|
|
|
|
|
{ACPI_RSC_LENGTH, 0, 0,
|
|
|
|
sizeof(struct aml_resource_start_dependent_noprio)},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All done if the output descriptor length is required to be 0.
|
|
|
|
*
|
|
|
|
* TBD: Perhaps we should check for error if input flags are not
|
|
|
|
* compatible with a 0-byte descriptor.
|
|
|
|
*/
|
|
|
|
{ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.descriptor_length),
|
|
|
|
0},
|
|
|
|
|
|
|
|
/* Reset length to 1 byte (descriptor with flags byte) */
|
|
|
|
|
2008-04-10 15:06:44 +00:00
|
|
|
{ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_start_dependent)},
|
2008-04-10 15:06:43 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/*
|
|
|
|
* All done if flags byte is necessary -- if either priority value
|
|
|
|
* is not ACPI_ACCEPTABLE_CONFIGURATION
|
|
|
|
*/
|
|
|
|
{ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.compatibility_priority),
|
|
|
|
ACPI_ACCEPTABLE_CONFIGURATION},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
|
|
|
|
ACPI_RS_OFFSET(data.start_dpf.performance_robustness),
|
|
|
|
ACPI_ACCEPTABLE_CONFIGURATION},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Flag byte is not necessary */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_LENGTH, 0, 0,
|
|
|
|
sizeof(struct aml_resource_start_dependent_noprio)}
|
|
|
|
};
|