2018-03-15 07:13:07 +08:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: rsaddr - Address resource descriptors (16/32/64)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 13:30:03 +08:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acresrc.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MODULE_NAME("rsaddr")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-09-03 05:24:17 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_address16 - All WORD (16-bit) address resources
|
2005-09-03 05:24:17 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_address16[5] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_ADDRESS16,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_address16),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_address16)},
|
2005-09-03 05:24:17 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_ADDRESS16,
|
|
|
|
sizeof(struct aml_resource_address16),
|
|
|
|
0},
|
2005-09-03 05:24:17 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-09-03 05:24:17 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2005-10-21 12:00:00 +08: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-10-01 07:03:00 +08:00
|
|
|
* Address Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2015-01-26 16:58:56 +08:00
|
|
|
{ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.address16.address.granularity),
|
2005-10-21 12:00:00 +08:00
|
|
|
AML_OFFSET(address16.granularity),
|
|
|
|
5},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Optional resource_source (Index and String) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_SOURCE, ACPI_RS_OFFSET(data.address16.resource_source),
|
|
|
|
0,
|
|
|
|
sizeof(struct aml_resource_address16)}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_address32 - All DWORD (32-bit) address resources
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_address32[5] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_ADDRESS32,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_address32),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_address32)},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_ADDRESS32,
|
|
|
|
sizeof(struct aml_resource_address32),
|
|
|
|
0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
[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-10-01 07:03:00 +08:00
|
|
|
/*
|
2005-10-21 12:00:00 +08: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-10-01 07:03:00 +08:00
|
|
|
* Address Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
|
|
|
*/
|
2015-01-26 16:58:56 +08:00
|
|
|
{ACPI_RSC_MOVE32, ACPI_RS_OFFSET(data.address32.address.granularity),
|
2005-10-21 12:00:00 +08:00
|
|
|
AML_OFFSET(address32.granularity),
|
|
|
|
5},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Optional resource_source (Index and String) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_SOURCE, ACPI_RS_OFFSET(data.address32.resource_source),
|
|
|
|
0,
|
|
|
|
sizeof(struct aml_resource_address32)}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_address64 - All QWORD (64-bit) address resources
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_address64[5] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_ADDRESS64,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_address64),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_address64)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_ADDRESS64,
|
|
|
|
sizeof(struct aml_resource_address64),
|
|
|
|
0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2005-10-21 12:00:00 +08: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-10-01 07:03:00 +08:00
|
|
|
* Address Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2015-01-26 16:58:56 +08:00
|
|
|
{ACPI_RSC_MOVE64, ACPI_RS_OFFSET(data.address64.address.granularity),
|
2005-10-21 12:00:00 +08:00
|
|
|
AML_OFFSET(address64.granularity),
|
|
|
|
5},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Optional resource_source (Index and String) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_SOURCE, ACPI_RS_OFFSET(data.address64.resource_source),
|
|
|
|
0,
|
|
|
|
sizeof(struct aml_resource_address64)}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_ext_address64 - All Extended (64-bit) address resources
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_ext_address64[5] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_EXTENDED_ADDRESS64,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_extended_address64),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_ext_address64)},
|
|
|
|
|
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_EXTENDED_ADDRESS64,
|
|
|
|
sizeof(struct aml_resource_extended_address64),
|
|
|
|
0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Revision ID */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2012-07-12 09:40:10 +08:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.ext_address64.revision_ID),
|
|
|
|
AML_OFFSET(ext_address64.revision_ID),
|
2005-10-21 12:00:00 +08:00
|
|
|
1},
|
[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-10-01 07:03:00 +08:00
|
|
|
/*
|
2005-10-21 12:00:00 +08: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-10-01 07:03:00 +08:00
|
|
|
* Address Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
2005-10-21 12:00:00 +08:00
|
|
|
* Type-Specific Attribute
|
[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-10-01 07:03:00 +08:00
|
|
|
*/
|
2015-01-26 16:58:56 +08:00
|
|
|
{ACPI_RSC_MOVE64,
|
|
|
|
ACPI_RS_OFFSET(data.ext_address64.address.granularity),
|
2005-10-21 12:00:00 +08:00
|
|
|
AML_OFFSET(ext_address64.granularity),
|
|
|
|
6}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_general_flags - Flags common to all address descriptors
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
static struct acpi_rsconvert_info acpi_rs_convert_general_flags[6] = {
|
|
|
|
{ACPI_RSC_FLAGINIT, 0, AML_OFFSET(address.flags),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_general_flags)},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Resource Type (Memory, Io, bus_number, etc.) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.address.resource_type),
|
|
|
|
AML_OFFSET(address.resource_type),
|
|
|
|
1},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-07-12 09:40:10 +08:00
|
|
|
/* General flags - Consume, Decode, min_fixed, max_fixed */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.producer_consumer),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.decode),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
1},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.min_address_fixed),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
2},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.max_address_fixed),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
3}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
[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-10-01 07:03:00 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_mem_flags - Flags common to Memory address descriptors
|
[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-10-01 07:03:00 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
static struct acpi_rsconvert_info acpi_rs_convert_mem_flags[5] = {
|
|
|
|
{ACPI_RSC_FLAGINIT, 0, AML_OFFSET(address.specific_flags),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_mem_flags)},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Memory-specific flags */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.info.mem.write_protect),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.address.info.mem.caching),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
1},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.address.info.mem.range_type),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
3},
|
|
|
|
|
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.info.mem.translation),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
5}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* acpi_rs_convert_io_flags - Flags common to I/O address descriptors
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
static struct acpi_rsconvert_info acpi_rs_convert_io_flags[4] = {
|
|
|
|
{ACPI_RSC_FLAGINIT, 0, AML_OFFSET(address.specific_flags),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_io_flags)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* I/O-specific flags */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.address.info.io.range_type),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.info.io.translation),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
4},
|
|
|
|
|
|
|
|
{ACPI_RSC_1BITFLAG,
|
|
|
|
ACPI_RS_OFFSET(data.address.info.io.translation_type),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
5}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
[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-10-01 07:03:00 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* FUNCTION: acpi_rs_get_address_common
|
[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-10-01 07:03:00 +08:00
|
|
|
*
|
2012-07-12 09:40:10 +08:00
|
|
|
* PARAMETERS: resource - Pointer to the internal resource struct
|
|
|
|
* aml - Pointer to the AML resource descriptor
|
[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-10-01 07:03:00 +08:00
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* RETURN: TRUE if the resource_type field is OK, FALSE otherwise
|
[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-10-01 07:03:00 +08:00
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* DESCRIPTION: Convert common flag fields from a raw AML resource descriptor
|
|
|
|
* to an internal resource descriptor
|
[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-10-01 07:03:00 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
u8
|
|
|
|
acpi_rs_get_address_common(struct acpi_resource *resource,
|
|
|
|
union aml_resource *aml)
|
[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-10-01 07:03:00 +08:00
|
|
|
{
|
2005-10-21 12:00:00 +08:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Validate the Resource Type */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-12-29 13:54:36 +08:00
|
|
|
if ((aml->address.resource_type > 2) &&
|
|
|
|
(aml->address.resource_type < 0xC0)) {
|
2005-10-21 12:00:00 +08:00
|
|
|
return (FALSE);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Get the Resource Type and General Flags */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
(void)acpi_rs_convert_aml_to_resource(resource, aml,
|
|
|
|
acpi_rs_convert_general_flags);
|
|
|
|
|
|
|
|
/* Get the Type-Specific Flags (Memory and I/O descriptors only) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
if (resource->data.address.resource_type == ACPI_MEMORY_RANGE) {
|
|
|
|
(void)acpi_rs_convert_aml_to_resource(resource, aml,
|
|
|
|
acpi_rs_convert_mem_flags);
|
|
|
|
} else if (resource->data.address.resource_type == ACPI_IO_RANGE) {
|
|
|
|
(void)acpi_rs_convert_aml_to_resource(resource, aml,
|
|
|
|
acpi_rs_convert_io_flags);
|
|
|
|
} else {
|
|
|
|
/* Generic resource type, just grab the type_specific byte */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
resource->data.address.info.type_specific =
|
|
|
|
aml->address.specific_flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (TRUE);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* FUNCTION: acpi_rs_set_address_common
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2012-07-12 09:40:10 +08:00
|
|
|
* PARAMETERS: aml - Pointer to the AML resource descriptor
|
|
|
|
* resource - Pointer to the internal resource struct
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* RETURN: None
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* DESCRIPTION: Convert common flag fields from a resource descriptor to an
|
|
|
|
* AML descriptor
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
void
|
|
|
|
acpi_rs_set_address_common(union aml_resource *aml,
|
|
|
|
struct acpi_resource *resource)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-10-21 12:00:00 +08:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Set the Resource Type and General Flags */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
(void)acpi_rs_convert_resource_to_aml(resource, aml,
|
|
|
|
acpi_rs_convert_general_flags);
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Set the Type-Specific Flags (Memory and I/O descriptors only) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
if (resource->data.address.resource_type == ACPI_MEMORY_RANGE) {
|
|
|
|
(void)acpi_rs_convert_resource_to_aml(resource, aml,
|
|
|
|
acpi_rs_convert_mem_flags);
|
|
|
|
} else if (resource->data.address.resource_type == ACPI_IO_RANGE) {
|
|
|
|
(void)acpi_rs_convert_resource_to_aml(resource, aml,
|
|
|
|
acpi_rs_convert_io_flags);
|
|
|
|
} else {
|
|
|
|
/* Generic resource type, just copy the type_specific byte */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
aml->address.specific_flags =
|
|
|
|
resource->data.address.info.type_specific;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|