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: rsmem24 - Memory resource descriptors
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#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("rsmemory")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_memory24
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_memory24[4] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_MEMORY24,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_memory24),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_memory24)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_MEMORY24,
|
|
|
|
sizeof(struct aml_resource_memory24),
|
|
|
|
0},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Read/Write bit */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.memory24.write_protect),
|
|
|
|
AML_OFFSET(memory24.flags),
|
|
|
|
0},
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-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
|
|
|
* Minimum Base Address
|
|
|
|
* Maximum Base Address
|
|
|
|
* Address Base Alignment
|
|
|
|
* Range Length
|
|
|
|
*/
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.memory24.minimum),
|
|
|
|
AML_OFFSET(memory24.minimum),
|
|
|
|
4}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_memory32
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_memory32[4] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_MEMORY32,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_memory32),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_memory32)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_MEMORY32,
|
|
|
|
sizeof(struct aml_resource_memory32),
|
|
|
|
0},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Read/Write bit */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.memory32.write_protect),
|
|
|
|
AML_OFFSET(memory32.flags),
|
|
|
|
0},
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-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
|
|
|
* Minimum Base Address
|
|
|
|
* Maximum Base Address
|
|
|
|
* Address Base Alignment
|
|
|
|
* Range Length
|
|
|
|
*/
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_MOVE32, ACPI_RS_OFFSET(data.memory32.minimum),
|
|
|
|
AML_OFFSET(memory32.minimum),
|
|
|
|
4}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_convert_fixed_memory32
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_convert_fixed_memory32[4] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_FIXED_MEMORY32,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_fixed_memory32),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_convert_fixed_memory32)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_FIXED_MEMORY32,
|
|
|
|
sizeof(struct aml_resource_fixed_memory32),
|
|
|
|
0},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Read/Write bit */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.fixed_memory32.write_protect),
|
|
|
|
AML_OFFSET(fixed_memory32.flags),
|
|
|
|
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:
|
|
|
|
* Base Address
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
* Range Length
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_MOVE32, ACPI_RS_OFFSET(data.fixed_memory32.address),
|
|
|
|
AML_OFFSET(fixed_memory32.address),
|
|
|
|
2}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_get_vendor_small
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_get_vendor_small[3] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_VENDOR,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_vendor),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_get_vendor_small)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Length of the vendor data (byte count) */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_COUNT16, ACPI_RS_OFFSET(data.vendor.byte_length),
|
|
|
|
0,
|
2012-12-19 13:37:15 +08:00
|
|
|
sizeof(u8)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Vendor data */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.vendor.byte_data[0]),
|
|
|
|
sizeof(struct aml_resource_small_header),
|
|
|
|
0}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_get_vendor_large
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_get_vendor_large[3] = {
|
|
|
|
{ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_VENDOR,
|
|
|
|
ACPI_RS_SIZE(struct acpi_resource_vendor),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_get_vendor_large)},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Length of the vendor data (byte count) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_COUNT16, ACPI_RS_OFFSET(data.vendor.byte_length),
|
|
|
|
0,
|
2012-12-19 13:37:15 +08:00
|
|
|
sizeof(u8)},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Vendor data */
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.vendor.byte_data[0]),
|
|
|
|
sizeof(struct aml_resource_large_header),
|
|
|
|
0}
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 12:00:00 +08:00
|
|
|
* acpi_rs_set_vendor
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_rsconvert_info acpi_rs_set_vendor[7] = {
|
|
|
|
/* Default is a small vendor descriptor */
|
|
|
|
|
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_VENDOR_SMALL,
|
|
|
|
sizeof(struct aml_resource_small_header),
|
|
|
|
ACPI_RSC_TABLE_SIZE(acpi_rs_set_vendor)},
|
|
|
|
|
|
|
|
/* Get the length and copy the data */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_COUNT16, ACPI_RS_OFFSET(data.vendor.byte_length),
|
|
|
|
0,
|
|
|
|
0},
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.vendor.byte_data[0]),
|
|
|
|
sizeof(struct aml_resource_small_header),
|
|
|
|
0},
|
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
|
|
|
* All done if the Vendor byte length is 7 or less, meaning that it will
|
|
|
|
* fit within a small 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
|
|
|
{ACPI_RSC_EXIT_LE, 0, 0, 7},
|
|
|
|
|
|
|
|
/* Must create a large vendor descriptor */
|
|
|
|
|
|
|
|
{ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_VENDOR_LARGE,
|
|
|
|
sizeof(struct aml_resource_large_header),
|
|
|
|
0},
|
|
|
|
|
|
|
|
{ACPI_RSC_COUNT16, ACPI_RS_OFFSET(data.vendor.byte_length),
|
|
|
|
0,
|
|
|
|
0},
|
|
|
|
|
|
|
|
{ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.vendor.byte_data[0]),
|
|
|
|
sizeof(struct aml_resource_large_header),
|
|
|
|
0}
|
|
|
|
};
|