2005-04-16 22:20:36 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: rsaddr - Address resource descriptors (16/32/64)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2007-02-02 16:48:24 +00:00
|
|
|
* Copyright (C) 2000 - 2007, R. Byron Moore
|
2005-04-16 22:20:36 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
|
|
* including a substantially similar Disclaimer requirement for further
|
|
|
|
* binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
#include <acpi/acresrc.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_MODULE_NAME("rsaddr")
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-02 21:24:17 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_address16 - All WORD (16-bit) address resources
|
2005-09-02 21:24:17 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-10-21 04:00:00 +00: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-02 21:24:17 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_ADDRESS16,
|
|
|
|
sizeof(struct aml_resource_address16),
|
|
|
|
0},
|
2005-09-02 21:24:17 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-09-02 21:24:17 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-16 22:20:36 +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 Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.address16.granularity),
|
|
|
|
AML_OFFSET(address16.granularity),
|
|
|
|
5},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Optional resource_source (Index and String) */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_SOURCE, ACPI_RS_OFFSET(data.address16.resource_source),
|
|
|
|
0,
|
|
|
|
sizeof(struct aml_resource_address16)}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_address32 - All DWORD (32-bit) address resources
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00: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 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_ADDRESS32,
|
|
|
|
sizeof(struct aml_resource_address32),
|
|
|
|
0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-19 02:49:35 +00: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-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 Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE32, ACPI_RS_OFFSET(data.address32.granularity),
|
|
|
|
AML_OFFSET(address32.granularity),
|
|
|
|
5},
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Optional resource_source (Index and String) */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_SOURCE, ACPI_RS_OFFSET(data.address32.resource_source),
|
|
|
|
0,
|
|
|
|
sizeof(struct aml_resource_address32)}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_address64 - All QWORD (64-bit) address resources
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00: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-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_ADDRESS64,
|
|
|
|
sizeof(struct aml_resource_address64),
|
|
|
|
0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-16 22:20:36 +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 Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE64, ACPI_RS_OFFSET(data.address64.granularity),
|
|
|
|
AML_OFFSET(address64.granularity),
|
|
|
|
5},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Optional resource_source (Index and String) */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_SOURCE, ACPI_RS_OFFSET(data.address64.resource_source),
|
|
|
|
0,
|
|
|
|
sizeof(struct aml_resource_address64)}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_ext_address64 - All Extended (64-bit) address resources
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00: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-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Resource Type, General Flags, and Type-Specific Flags */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_ADDRESS, 0, 0, 0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Revision ID */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.ext_address64.revision_iD),
|
|
|
|
AML_OFFSET(ext_address64.revision_iD),
|
|
|
|
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-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 Granularity
|
|
|
|
* Address Range Minimum
|
|
|
|
* Address Range Maximum
|
|
|
|
* Address Translation Offset
|
|
|
|
* Address Length
|
2005-10-21 04:00:00 +00: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-09-30 23:03:00 +00:00
|
|
|
*/
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE64, ACPI_RS_OFFSET(data.ext_address64.granularity),
|
|
|
|
AML_OFFSET(ext_address64.granularity),
|
|
|
|
6}
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* acpi_rs_convert_general_flags - Flags common to all address descriptors
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00: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 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Resource Type (Memory, Io, bus_number, etc.) */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.address.resource_type),
|
|
|
|
AML_OFFSET(address.resource_type),
|
|
|
|
1},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* General Flags - Consume, Decode, min_fixed, max_fixed */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.producer_consumer),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.decode),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
1},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.min_address_fixed),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
2},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.max_address_fixed),
|
|
|
|
AML_OFFSET(address.flags),
|
|
|
|
3}
|
|
|
|
};
|
2005-04-16 22:20:36 +00: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-09-30 23:03:00 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00: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-09-30 23:03:00 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Memory-specific flags */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.info.mem.write_protect),
|
|
|
|
AML_OFFSET(address.specific_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.address.info.mem.caching),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
1},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* I/O-specific flags */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
{ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.address.info.io.range_type),
|
|
|
|
AML_OFFSET(address.specific_flags),
|
|
|
|
0},
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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-16 22:20:36 +00: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-09-30 23:03:00 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00: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-09-30 23:03:00 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00: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-09-30 23:03:00 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00: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-09-30 23:03:00 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00: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-09-30 23:03:00 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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-09-30 23:03:00 +00:00
|
|
|
{
|
2005-10-21 04:00:00 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Validate the Resource Type */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
if ((aml->address.resource_type > 2)
|
|
|
|
&& (aml->address.resource_type < 0xC0)) {
|
|
|
|
return (FALSE);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Get the Resource Type and General Flags */
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
resource->data.address.info.type_specific =
|
|
|
|
aml->address.specific_flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (TRUE);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* FUNCTION: acpi_rs_set_address_common
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* PARAMETERS: Aml - Pointer to the AML resource descriptor
|
|
|
|
* Resource - Pointer to the internal resource struct
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* RETURN: None
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-10-21 04:00:00 +00:00
|
|
|
* DESCRIPTION: Convert common flag fields from a resource descriptor to an
|
|
|
|
* AML descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
void
|
|
|
|
acpi_rs_set_address_common(union aml_resource *aml,
|
|
|
|
struct acpi_resource *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-10-21 04:00:00 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Set the Resource Type and General Flags */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
(void)acpi_rs_convert_resource_to_aml(resource, aml,
|
|
|
|
acpi_rs_convert_general_flags);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
/* Set the Type-Specific Flags (Memory and I/O descriptors only) */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00: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-16 22:20:36 +00:00
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
aml->address.specific_flags =
|
|
|
|
resource->data.address.info.type_specific;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|