2005-04-17 00:20:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: rsdump - Functions to display the resource structures.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2008-04-24 05:00:13 +02:00
|
|
|
* Copyright (C) 2000 - 2008, Intel Corp.
|
2005-04-17 00:20:36 +02: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>
|
2009-01-09 06:30:03 +01:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acresrc.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MODULE_NAME("rsdump")
|
2005-05-13 06:00:00 +02:00
|
|
|
#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
|
2005-04-19 04:49:35 +02:00
|
|
|
/* Local prototypes */
|
2005-09-16 22:51:15 +02:00
|
|
|
static void acpi_rs_out_string(char *title, char *value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer8(char *title, u8 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer16(char *title, u16 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer32(char *title, u32 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer64(char *title, u64 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_title(char *title);
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_dump_byte_list(u16 length, u8 * data);
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_dump_dword_list(u8 length, u32 * data);
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_dump_short_byte_list(u8 length, u8 * data);
|
2005-09-16 22:51:15 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_source(struct acpi_resource_source *resource_source);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_address_common(union acpi_resource_data *resource);
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table);
|
|
|
|
|
|
|
|
#define ACPI_RSD_OFFSET(f) (u8) ACPI_OFFSET (union acpi_resource_data,f)
|
|
|
|
#define ACPI_PRT_OFFSET(f) (u8) ACPI_OFFSET (struct acpi_pci_routing_table,f)
|
|
|
|
#define ACPI_RSD_TABLE_SIZE(name) (sizeof(name) / sizeof (struct acpi_rsdump_info))
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* Resource Descriptor info tables
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* Note: The first table entry must be a Title or Literal and must contain
|
|
|
|
* the table length (number of table entries)
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2008-04-10 17:06:43 +02:00
|
|
|
struct acpi_rsdump_info acpi_rs_dump_irq[7] = {
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_irq), "IRQ", NULL},
|
2008-04-10 17:06:43 +02:00
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(irq.descriptor_length),
|
|
|
|
"Descriptor Length", NULL},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(irq.triggering), "Triggering",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_he_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(irq.polarity), "Polarity",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_ll_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(irq.sharable), "Sharing",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_shr_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(irq.interrupt_count),
|
|
|
|
"Interrupt Count", NULL},
|
|
|
|
{ACPI_RSD_SHORTLIST, ACPI_RSD_OFFSET(irq.interrupts[0]),
|
|
|
|
"Interrupt List", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_dma[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_dma), "DMA", NULL},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(dma.type), "Speed",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_typ_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(dma.bus_master), "Mastering",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_bm_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(dma.transfer), "Transfer Type",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_siz_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(dma.channel_count), "Channel Count",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_SHORTLIST, ACPI_RSD_OFFSET(dma.channels[0]), "Channel List",
|
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
2008-04-10 17:06:43 +02:00
|
|
|
struct acpi_rsdump_info acpi_rs_dump_start_dpf[4] = {
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_start_dpf),
|
|
|
|
"Start-Dependent-Functions", NULL},
|
2008-04-10 17:06:43 +02:00
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(start_dpf.descriptor_length),
|
|
|
|
"Descriptor Length", NULL},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(start_dpf.compatibility_priority),
|
|
|
|
"Compatibility Priority", acpi_gbl_config_decode},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(start_dpf.performance_robustness),
|
|
|
|
"Performance/Robustness", acpi_gbl_config_decode}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_end_dpf[1] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_end_dpf),
|
|
|
|
"End-Dependent-Functions", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_io[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_io), "I/O", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(io.io_decode), "Address Decoding",
|
|
|
|
acpi_gbl_io_decode},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(io.minimum), "Address Minimum", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(io.maximum), "Address Maximum", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(io.alignment), "Alignment", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(io.address_length), "Address Length",
|
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_fixed_io[3] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_fixed_io),
|
|
|
|
"Fixed I/O", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(fixed_io.address), "Address", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(fixed_io.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_vendor[3] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_vendor),
|
|
|
|
"Vendor Specific", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(vendor.byte_length), "Length", NULL},
|
|
|
|
{ACPI_RSD_LONGLIST, ACPI_RSD_OFFSET(vendor.byte_data[0]), "Vendor Data",
|
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_end_tag[1] = {
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_end_tag), "EndTag",
|
2005-10-21 06:00:00 +02:00
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_memory24[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_memory24),
|
|
|
|
"24-Bit Memory Range", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(memory24.write_protect),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Write Protect", acpi_gbl_rw_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.alignment), "Alignment",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_memory32[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_memory32),
|
|
|
|
"32-Bit Memory Range", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(memory32.write_protect),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Write Protect", acpi_gbl_rw_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.alignment), "Alignment",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_fixed_memory32[4] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_fixed_memory32),
|
|
|
|
"32-Bit Fixed Memory Range", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(fixed_memory32.write_protect),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Write Protect", acpi_gbl_rw_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(fixed_memory32.address), "Address",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(fixed_memory32.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_address16[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_address16),
|
|
|
|
"16-Bit WORD Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.granularity), "Granularity",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(address16.resource_source), NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_address32[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_address32),
|
|
|
|
"32-Bit DWORD Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.granularity), "Granularity",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(address32.resource_source), NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_address64[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_address64),
|
|
|
|
"64-Bit QWORD Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.granularity), "Granularity",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(address64.resource_source), NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_ext_address64[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_ext_address64),
|
|
|
|
"64-Bit Extended Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.granularity),
|
|
|
|
"Granularity", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.minimum),
|
|
|
|
"Address Minimum", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.maximum),
|
|
|
|
"Address Maximum", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.type_specific),
|
|
|
|
"Type-Specific Attribute", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_ext_irq[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_ext_irq),
|
|
|
|
"Extended IRQ", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.producer_consumer),
|
|
|
|
"Type", acpi_gbl_consume_decode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.triggering),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Triggering", acpi_gbl_he_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.polarity), "Polarity",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_ll_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.sharable), "Sharing",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_shr_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(extended_irq.resource_source), NULL,
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(extended_irq.interrupt_count),
|
|
|
|
"Interrupt Count", NULL},
|
|
|
|
{ACPI_RSD_DWORDLIST, ACPI_RSD_OFFSET(extended_irq.interrupts[0]),
|
|
|
|
"Interrupt List", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_generic_reg[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_generic_reg),
|
|
|
|
"Generic Register", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.space_id), "Space ID",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.bit_width), "Bit Width",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.bit_offset), "Bit Offset",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.access_size),
|
|
|
|
"Access Size", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(generic_reg.address), "Address", NULL}
|
|
|
|
};
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/*
|
|
|
|
* Tables used for common address descriptor flag fields
|
|
|
|
*/
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_general_flags[5] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_general_flags), NULL,
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.producer_consumer),
|
|
|
|
"Consumer/Producer", acpi_gbl_consume_decode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.decode), "Address Decode",
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
acpi_gbl_dec_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.min_address_fixed),
|
|
|
|
"Min Relocatability", acpi_gbl_min_decode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.max_address_fixed),
|
|
|
|
"Max Relocatability", acpi_gbl_max_decode}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_memory_flags[5] = {
|
|
|
|
{ACPI_RSD_LITERAL, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_memory_flags),
|
2005-11-02 06:00:00 +01:00
|
|
|
"Resource Type", (void *)"Memory Range"},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.mem.write_protect),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Write Protect", acpi_gbl_rw_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(address.info.mem.caching),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Caching", acpi_gbl_mem_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(address.info.mem.range_type),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Range Type", acpi_gbl_mtp_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.mem.translation),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Translation", acpi_gbl_ttp_decode}
|
2005-10-21 06:00:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_io_flags[4] = {
|
|
|
|
{ACPI_RSD_LITERAL, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_io_flags),
|
2005-11-02 06:00:00 +01:00
|
|
|
"Resource Type", (void *)"I/O Range"},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(address.info.io.range_type),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Range Type", acpi_gbl_rng_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.io.translation),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Translation", acpi_gbl_ttp_decode},
|
2005-10-21 06:00:00 +02:00
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.io.translation_type),
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
"Translation Type", acpi_gbl_trs_decode}
|
2005-10-21 06:00:00 +02:00
|
|
|
};
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/*
|
|
|
|
* Table used to dump _PRT contents
|
|
|
|
*/
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_prt[5] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_prt), NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_PRT_OFFSET(address), "Address", NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_PRT_OFFSET(pin), "Pin", NULL},
|
|
|
|
{ACPI_RSD_STRING, ACPI_PRT_OFFSET(source[0]), "Source", NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_PRT_OFFSET(source_index), "Source Index", NULL}
|
|
|
|
};
|
2005-09-16 22:51:15 +02:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* FUNCTION: acpi_rs_dump_descriptor
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* PARAMETERS: Resource
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* DESCRIPTION:
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table)
|
2005-09-16 22:51:15 +02:00
|
|
|
{
|
2005-11-02 06:00:00 +01:00
|
|
|
u8 *target = NULL;
|
|
|
|
u8 *previous_target;
|
2005-10-21 06:00:00 +02:00
|
|
|
char *name;
|
|
|
|
u8 count;
|
|
|
|
|
|
|
|
/* First table entry must contain the table length (# of table entries) */
|
|
|
|
|
|
|
|
count = table->offset;
|
|
|
|
|
|
|
|
while (count) {
|
|
|
|
previous_target = target;
|
2005-11-17 19:07:00 +01:00
|
|
|
target = ACPI_ADD_PTR(u8, resource, table->offset);
|
2005-10-21 06:00:00 +02:00
|
|
|
name = table->name;
|
|
|
|
|
|
|
|
switch (table->opcode) {
|
|
|
|
case ACPI_RSD_TITLE:
|
|
|
|
/*
|
|
|
|
* Optional resource title
|
|
|
|
*/
|
|
|
|
if (table->name) {
|
|
|
|
acpi_os_printf("%s Resource\n", name);
|
|
|
|
}
|
|
|
|
break;
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/* Strings */
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
case ACPI_RSD_LITERAL:
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_rs_out_string(name,
|
|
|
|
ACPI_CAST_PTR(char, table->pointer));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
case ACPI_RSD_STRING:
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_rs_out_string(name, ACPI_CAST_PTR(char, target));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/* Data items, 8/16/32/64 bit */
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
case ACPI_RSD_UINT8:
|
2005-11-17 19:07:00 +01:00
|
|
|
acpi_rs_out_integer8(name, ACPI_GET8(target));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
case ACPI_RSD_UINT16:
|
2005-11-17 19:07:00 +01:00
|
|
|
acpi_rs_out_integer16(name, ACPI_GET16(target));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_UINT32:
|
2005-11-17 19:07:00 +01:00
|
|
|
acpi_rs_out_integer32(name, ACPI_GET32(target));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
[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 01:03:00 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
case ACPI_RSD_UINT64:
|
2005-11-17 19:07:00 +01:00
|
|
|
acpi_rs_out_integer64(name, ACPI_GET64(target));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Flags: 1-bit and 2-bit flags supported */
|
|
|
|
|
|
|
|
case ACPI_RSD_1BITFLAG:
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_rs_out_string(name, ACPI_CAST_PTR(char,
|
|
|
|
table->
|
|
|
|
pointer[*target &
|
|
|
|
0x01]));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_2BITFLAG:
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_rs_out_string(name, ACPI_CAST_PTR(char,
|
|
|
|
table->
|
|
|
|
pointer[*target &
|
|
|
|
0x03]));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_SHORTLIST:
|
|
|
|
/*
|
|
|
|
* Short byte list (single line output) for DMA and IRQ resources
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
|
|
|
acpi_rs_out_title(name);
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_rs_dump_short_byte_list(*previous_target,
|
|
|
|
target);
|
2005-10-21 06:00:00 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_LONGLIST:
|
|
|
|
/*
|
|
|
|
* Long byte list for Vendor resource data
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
2005-11-17 19:07:00 +01:00
|
|
|
acpi_rs_dump_byte_list(ACPI_GET16
|
|
|
|
(previous_target),
|
2005-11-02 06:00:00 +01:00
|
|
|
target);
|
2005-10-21 06:00:00 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_DWORDLIST:
|
|
|
|
/*
|
|
|
|
* Dword list for Extended Interrupt resources
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_rs_dump_dword_list(*previous_target,
|
|
|
|
ACPI_CAST_PTR(u32,
|
|
|
|
target));
|
2005-10-21 06:00:00 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_ADDRESS:
|
|
|
|
/*
|
|
|
|
* Common flags for all Address resources
|
|
|
|
*/
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_rs_dump_address_common(ACPI_CAST_PTR
|
|
|
|
(union acpi_resource_data,
|
|
|
|
target));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_SOURCE:
|
|
|
|
/*
|
|
|
|
* Optional resource_source for Address resources
|
|
|
|
*/
|
2007-05-10 05:34:35 +02:00
|
|
|
acpi_rs_dump_resource_source(ACPI_CAST_PTR(struct
|
|
|
|
acpi_resource_source,
|
|
|
|
target));
|
2005-10-21 06:00:00 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
acpi_os_printf("**** Invalid table opcode [%X] ****\n",
|
|
|
|
table->opcode);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
table++;
|
|
|
|
count--;
|
|
|
|
}
|
[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 01:03:00 +02:00
|
|
|
}
|
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_resource_source
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-09-16 22:51:15 +02:00
|
|
|
* PARAMETERS: resource_source - Pointer to a Resource Source struct
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 22:51:15 +02:00
|
|
|
* DESCRIPTION: Common routine for dumping the optional resource_source and the
|
|
|
|
* corresponding resource_source_index.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_source(struct acpi_resource_source *resource_source)
|
2005-04-17 00:20:36 +02: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 01:03:00 +02:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
if (resource_source->index == 0xFF) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_rs_out_integer8("Resource Source Index", resource_source->index);
|
2005-09-16 22:51:15 +02:00
|
|
|
|
|
|
|
acpi_rs_out_string("Resource Source",
|
|
|
|
resource_source->string_ptr ?
|
|
|
|
resource_source->string_ptr : "[Not Specified]");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_address_common
|
|
|
|
*
|
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dump the fields that are common to all Address resource
|
|
|
|
* descriptors
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void acpi_rs_dump_address_common(union acpi_resource_data *resource)
|
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
/* Decode the type-specific flags */
|
|
|
|
|
|
|
|
switch (resource->address.resource_type) {
|
|
|
|
case ACPI_MEMORY_RANGE:
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_memory_flags);
|
2005-09-16 22:51:15 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IO_RANGE:
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_io_flags);
|
2005-09-16 22:51:15 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_BUS_NUMBER_RANGE:
|
|
|
|
|
|
|
|
acpi_rs_out_string("Resource Type", "Bus Number Range");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
acpi_rs_out_integer8("Resource Type",
|
|
|
|
(u8) resource->address.resource_type);
|
|
|
|
break;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
/* Decode the general flags */
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_general_flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-09-16 22:51:15 +02:00
|
|
|
* FUNCTION: acpi_rs_dump_resource_list
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-09-16 22:51:15 +02:00
|
|
|
* PARAMETERS: resource_list - Pointer to a resource descriptor list
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 22:51:15 +02:00
|
|
|
* DESCRIPTION: Dispatches the structure to the correct dump routine.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
void acpi_rs_dump_resource_list(struct acpi_resource *resource_list)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-09-16 22:51:15 +02:00
|
|
|
u32 count = 0;
|
2005-10-21 06:00:00 +02:00
|
|
|
u32 type;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
if (!(acpi_dbg_level & ACPI_LV_RESOURCES)
|
|
|
|
|| !(_COMPONENT & acpi_dbg_layer)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/* Walk list and dump all resource descriptors (END_TAG terminates) */
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
do {
|
2005-09-16 22:51:15 +02:00
|
|
|
acpi_os_printf("\n[%02X] ", count);
|
2005-10-21 06:00:00 +02:00
|
|
|
count++;
|
2005-09-16 22:51:15 +02:00
|
|
|
|
|
|
|
/* Validate Type before dispatch */
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
type = resource_list->type;
|
|
|
|
if (type > ACPI_RESOURCE_TYPE_MAX) {
|
2005-09-16 22:51:15 +02:00
|
|
|
acpi_os_printf
|
|
|
|
("Invalid descriptor type (%X) in resource list\n",
|
|
|
|
resource_list->type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dump the resource descriptor */
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_rs_dump_descriptor(&resource_list->data,
|
|
|
|
acpi_gbl_dump_resource_dispatch[type]);
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/* Point to the next resource structure */
|
2005-09-16 22:51:15 +02:00
|
|
|
|
|
|
|
resource_list =
|
2005-11-17 19:07:00 +01:00
|
|
|
ACPI_ADD_PTR(struct acpi_resource, resource_list,
|
2005-09-16 22:51:15 +02:00
|
|
|
resource_list->length);
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/* Exit when END_TAG descriptor is reached */
|
2005-09-16 22:51:15 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
} while (type != ACPI_RESOURCE_TYPE_END_TAG);
|
2005-09-16 22:51:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* FUNCTION: acpi_rs_dump_irq_list
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* PARAMETERS: route_table - Pointer to the routing table to dump.
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* DESCRIPTION: Print IRQ routing table
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
void acpi_rs_dump_irq_list(u8 * route_table)
|
2005-09-16 22:51:15 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
struct acpi_pci_routing_table *prt_element;
|
|
|
|
u8 count;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
if (!(acpi_dbg_level & ACPI_LV_RESOURCES)
|
|
|
|
|| !(_COMPONENT & acpi_dbg_layer)) {
|
|
|
|
return;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
prt_element = ACPI_CAST_PTR(struct acpi_pci_routing_table, route_table);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
/* Dump all table elements, Exit on zero length element */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
for (count = 0; prt_element->length; count++) {
|
|
|
|
acpi_os_printf("\n[%02X] PCI IRQ Routing Table Package\n",
|
|
|
|
count);
|
|
|
|
acpi_rs_dump_descriptor(prt_element, acpi_rs_dump_prt);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-11-17 19:07:00 +01:00
|
|
|
prt_element = ACPI_ADD_PTR(struct acpi_pci_routing_table,
|
|
|
|
prt_element, prt_element->length);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* FUNCTION: acpi_rs_out*
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* PARAMETERS: Title - Name of the resource field
|
|
|
|
* Value - Value of the resource field
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* DESCRIPTION: Miscellaneous helper functions to consistently format the
|
|
|
|
* output of the resource dump routines
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_out_string(char *title, char *value)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2006-01-27 22:43:00 +01:00
|
|
|
acpi_os_printf("%27s : %s", title, value);
|
|
|
|
if (!*value) {
|
|
|
|
acpi_os_printf("[NULL NAMESTRING]");
|
|
|
|
}
|
|
|
|
acpi_os_printf("\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_out_integer8(char *title, u8 value)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_os_printf("%27s : %2.2X\n", title, value);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_out_integer16(char *title, u16 value)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_os_printf("%27s : %4.4X\n", title, value);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_out_integer32(char *title, u32 value)
|
[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 01:03:00 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_os_printf("%27s : %8.8X\n", title, value);
|
[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 01:03:00 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_out_integer64(char *title, u64 value)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_os_printf("%27s : %8.8X%8.8X\n", title, ACPI_FORMAT_UINT64(value));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_out_title(char *title)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
acpi_os_printf("%27s : ", title);
|
2005-09-16 22:51:15 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-16 22:51:15 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* FUNCTION: acpi_rs_dump*List
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* PARAMETERS: Length - Number of elements in the list
|
|
|
|
* Data - Start of the list
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 06:00:00 +02:00
|
|
|
* DESCRIPTION: Miscellaneous functions to dump lists of raw data
|
2005-09-16 22:51:15 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_dump_byte_list(u16 length, u8 * data)
|
2005-09-16 22:51:15 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
u8 i;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%25s%2.2X : %2.2X\n", "Byte", i, data[i]);
|
|
|
|
}
|
2005-09-16 22:51:15 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_dump_short_byte_list(u8 length, u8 * data)
|
2005-09-16 22:51:15 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
u8 i;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%X ", data[i]);
|
|
|
|
}
|
|
|
|
acpi_os_printf("\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
static void acpi_rs_dump_dword_list(u8 length, u32 * data)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-10-21 06:00:00 +02:00
|
|
|
u8 i;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%25s%2.2X : %8.8X\n", "Dword", i, data[i]);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|