2005-04-16 18:20:36 -04:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: nsdump - table dumping routines for debug
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2007-02-02 11:48:24 -05:00
|
|
|
* Copyright (C) 2000 - 2007, R. Byron Moore
|
2005-04-16 18:20:36 -04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
|
|
* including a substantially similar Disclaimer requirement for further
|
|
|
|
* binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
#include <acpi/acnamesp.h>
|
|
|
|
#include <acpi/acparser.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_NAMESPACE
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_MODULE_NAME("nsdump")
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-04-18 22:49:35 -04:00
|
|
|
/* Local prototypes */
|
|
|
|
#ifdef ACPI_OBSOLETE_FUNCTIONS
|
2005-08-05 00:44:28 -04:00
|
|
|
void acpi_ns_dump_root_devices(void);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-04-18 22:49:35 -04:00
|
|
|
static acpi_status
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_ns_dump_one_device(acpi_handle obj_handle,
|
|
|
|
u32 level, void *context, void **return_value);
|
2005-04-18 22:49:35 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
|
2005-04-16 18:20:36 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ns_print_pathname
|
|
|
|
*
|
2005-04-18 22:49:35 -04:00
|
|
|
* PARAMETERS: num_segments - Number of ACPI name segments
|
2005-04-16 18:20:36 -04:00
|
|
|
* Pathname - The compressed (internal) path
|
|
|
|
*
|
2005-04-18 22:49:35 -04:00
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-04-16 18:20:36 -04:00
|
|
|
* DESCRIPTION: Print an object's full namespace pathname
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
void acpi_ns_print_pathname(u32 num_segments, char *pathname)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_native_uint i;
|
2005-07-29 18:15:00 -04:00
|
|
|
|
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 17:15:00 -04:00
|
|
|
ACPI_FUNCTION_NAME(ns_print_pathname);
|
2005-07-29 18:15:00 -04:00
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
if (!(acpi_dbg_level & ACPI_LV_NAMES)
|
|
|
|
|| !(acpi_dbg_layer & ACPI_NAMESPACE)) {
|
2005-04-16 18:20:36 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print the entire name */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "["));
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
while (num_segments) {
|
2005-07-29 18:15:00 -04:00
|
|
|
for (i = 0; i < 4; i++) {
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_IS_PRINT(pathname[i]) ?
|
|
|
|
acpi_os_printf("%c", pathname[i]) :
|
|
|
|
acpi_os_printf("?");
|
2005-07-29 18:15:00 -04:00
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-07-29 18:15:00 -04:00
|
|
|
pathname += ACPI_NAME_SIZE;
|
2005-04-16 18:20:36 -04:00
|
|
|
num_segments--;
|
|
|
|
if (num_segments) {
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(".");
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("]\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ns_dump_pathname
|
|
|
|
*
|
|
|
|
* PARAMETERS: Handle - Object
|
|
|
|
* Msg - Prefix message
|
|
|
|
* Level - Desired debug level
|
|
|
|
* Component - Caller's component ID
|
|
|
|
*
|
2005-04-18 22:49:35 -04:00
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-04-16 18:20:36 -04:00
|
|
|
* DESCRIPTION: Print an object's full namespace pathname
|
|
|
|
* Manages allocation/freeing of a pathname buffer
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
|
|
|
|
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 17:15:00 -04:00
|
|
|
ACPI_FUNCTION_TRACE(ns_dump_pathname);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* Do this only if the requested debug level and component are enabled */
|
|
|
|
|
|
|
|
if (!(acpi_dbg_level & level) || !(acpi_dbg_layer & component)) {
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert handle to a full pathname and print it (with supplied message) */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_ns_print_node_pathname(handle, msg);
|
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ns_dump_one_object
|
|
|
|
*
|
2005-04-18 22:49:35 -04:00
|
|
|
* PARAMETERS: obj_handle - Node to be dumped
|
2005-04-16 18:20:36 -04:00
|
|
|
* Level - Nesting level of the handle
|
|
|
|
* Context - Passed into walk_namespace
|
2005-04-18 22:49:35 -04:00
|
|
|
* return_value - Not used
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Dump a single Node
|
|
|
|
* This procedure is a user_function called by acpi_ns_walk_namespace.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_ns_dump_one_object(acpi_handle obj_handle,
|
|
|
|
u32 level, void *context, void **return_value)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-08-05 00:44:28 -04:00
|
|
|
struct acpi_walk_info *info = (struct acpi_walk_info *)context;
|
|
|
|
struct acpi_namespace_node *this_node;
|
|
|
|
union acpi_operand_object *obj_desc = NULL;
|
|
|
|
acpi_object_type obj_type;
|
|
|
|
acpi_object_type type;
|
|
|
|
u32 bytes_to_dump;
|
|
|
|
u32 dbg_level;
|
|
|
|
u32 i;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
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 17:15:00 -04:00
|
|
|
ACPI_FUNCTION_NAME(ns_dump_one_object);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* Is output enabled? */
|
|
|
|
|
|
|
|
if (!(acpi_dbg_level & info->debug_level)) {
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!obj_handle) {
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Null object handle\n"));
|
2005-04-16 18:20:36 -04:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
this_node = acpi_ns_map_handle_to_node(obj_handle);
|
2005-04-16 18:20:36 -04:00
|
|
|
type = this_node->type;
|
|
|
|
|
|
|
|
/* Check if the owner matches */
|
|
|
|
|
2005-07-08 00:00:00 -04:00
|
|
|
if ((info->owner_id != ACPI_OWNER_ID_MAX) &&
|
2005-08-05 00:44:28 -04:00
|
|
|
(info->owner_id != this_node->owner_id)) {
|
2005-04-16 18:20:36 -04:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
if (!(info->display_type & ACPI_DISPLAY_SHORT)) {
|
2006-10-02 00:00:00 -04:00
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
/* Indent the object according to the level */
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("%2d%*s", (u32) level - 1, (int)level * 2, " ");
|
2005-04-16 18:20:36 -04:00
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
/* Check the node type and name */
|
2005-04-16 18:20:36 -04:00
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
if (type > ACPI_TYPE_LOCAL_MAX) {
|
2006-01-27 16:43:00 -05:00
|
|
|
ACPI_WARNING((AE_INFO, "Invalid ACPI Object Type %08X",
|
|
|
|
type));
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
if (!acpi_ut_valid_acpi_name(this_node->name.integer)) {
|
ACPI: ACPICA 20060331
Implemented header file support for the following
additional ACPI tables: ASF!, BOOT, CPEP, DBGP, MCFG, SPCR,
SPMI, TCPA, and WDRT. With this support, all current and
known ACPI tables are now defined in the ACPICA headers and
are available for use by device drivers and other software.
Implemented support to allow tables that contain ACPI
names with invalid characters to be loaded. Previously,
this would cause the table load to fail, but since
there are several known cases of such tables on
existing machines, this change was made to enable
ACPI support for them. Also, this matches the
behavior of the Microsoft ACPI implementation.
https://bugzilla.novell.com/show_bug.cgi?id=147621
Fixed a couple regressions introduced during the memory
optimization in the 20060317 release. The namespace
node definition required additional reorganization and
an internal datatype that had been changed to 8-bit was
restored to 32-bit. (Valery Podrezov)
Fixed a problem where a null pointer passed to
acpi_ut_delete_generic_state() could be passed through
to acpi_os_release_object which is unexpected. Such
null pointers are now trapped and ignored, matching
the behavior of the previous implementation before the
deployment of acpi_os_release_object(). (Valery Podrezov,
Fiodor Suietov)
Fixed a memory mapping leak during the deletion of
a SystemMemory operation region where a cached memory
mapping was not deleted. This became a noticeable problem
for operation regions that are defined within frequently
used control methods. (Dana Meyers)
Reorganized the ACPI table header files into two main
files: one for the ACPI tables consumed by the ACPICA core,
and another for the miscellaneous ACPI tables that are
consumed by the drivers and other software. The various
FADT definitions were merged into one common section and
three different tables (ACPI 1.0, 1.0+, and 2.0)
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-03-31 00:00:00 -05:00
|
|
|
this_node->name.integer =
|
2007-02-02 11:48:19 -05:00
|
|
|
acpi_ut_repair_name(this_node->name.ascii);
|
ACPI: ACPICA 20060331
Implemented header file support for the following
additional ACPI tables: ASF!, BOOT, CPEP, DBGP, MCFG, SPCR,
SPMI, TCPA, and WDRT. With this support, all current and
known ACPI tables are now defined in the ACPICA headers and
are available for use by device drivers and other software.
Implemented support to allow tables that contain ACPI
names with invalid characters to be loaded. Previously,
this would cause the table load to fail, but since
there are several known cases of such tables on
existing machines, this change was made to enable
ACPI support for them. Also, this matches the
behavior of the Microsoft ACPI implementation.
https://bugzilla.novell.com/show_bug.cgi?id=147621
Fixed a couple regressions introduced during the memory
optimization in the 20060317 release. The namespace
node definition required additional reorganization and
an internal datatype that had been changed to 8-bit was
restored to 32-bit. (Valery Podrezov)
Fixed a problem where a null pointer passed to
acpi_ut_delete_generic_state() could be passed through
to acpi_os_release_object which is unexpected. Such
null pointers are now trapped and ignored, matching
the behavior of the previous implementation before the
deployment of acpi_os_release_object(). (Valery Podrezov,
Fiodor Suietov)
Fixed a memory mapping leak during the deletion of
a SystemMemory operation region where a cached memory
mapping was not deleted. This became a noticeable problem
for operation regions that are defined within frequently
used control methods. (Dana Meyers)
Reorganized the ACPI table header files into two main
files: one for the ACPI tables consumed by the ACPICA core,
and another for the miscellaneous ACPI tables that are
consumed by the drivers and other software. The various
FADT definitions were merged into one common section and
three different tables (ACPI 1.0, 1.0+, and 2.0)
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-03-31 00:00:00 -05:00
|
|
|
|
2006-01-27 16:43:00 -05:00
|
|
|
ACPI_WARNING((AE_INFO, "Invalid ACPI Name %08X",
|
|
|
|
this_node->name.integer));
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("%4.4s", acpi_ut_get_node_name(this_node));
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we can print out the pertinent information
|
|
|
|
*/
|
2005-12-02 18:27:00 -05:00
|
|
|
acpi_os_printf(" %-12s %p %2.2X ",
|
|
|
|
acpi_ut_get_type_name(type), this_node,
|
|
|
|
this_node->owner_id);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
dbg_level = acpi_dbg_level;
|
|
|
|
acpi_dbg_level = 0;
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = acpi_ns_get_attached_object(this_node);
|
2005-04-16 18:20:36 -04:00
|
|
|
acpi_dbg_level = dbg_level;
|
|
|
|
|
2007-02-02 11:48:21 -05:00
|
|
|
/* Temp nodes are those nodes created by a control method */
|
|
|
|
|
|
|
|
if (this_node->flags & ANOBJ_TEMPORARY) {
|
|
|
|
acpi_os_printf("(T) ");
|
|
|
|
}
|
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
switch (info->display_type & ACPI_DISPLAY_MASK) {
|
2005-04-16 18:20:36 -04:00
|
|
|
case ACPI_DISPLAY_SUMMARY:
|
|
|
|
|
|
|
|
if (!obj_desc) {
|
2006-10-02 00:00:00 -04:00
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/* No attached object, we are done */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ACPI_TYPE_PROCESSOR:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("ID %X Len %.4X Addr %p\n",
|
|
|
|
obj_desc->processor.proc_id,
|
|
|
|
obj_desc->processor.length,
|
|
|
|
(char *)obj_desc->processor.address);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_DEVICE:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Notify Object: %p\n", obj_desc);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_METHOD:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Args %X Len %.4X Aml %p\n",
|
|
|
|
(u32) obj_desc->method.param_count,
|
|
|
|
obj_desc->method.aml_length,
|
|
|
|
obj_desc->method.aml_start);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("= %8.8X%8.8X\n",
|
|
|
|
ACPI_FORMAT_UINT64(obj_desc->integer.
|
|
|
|
value));
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_PACKAGE:
|
|
|
|
|
|
|
|
if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Elements %.2X\n",
|
|
|
|
obj_desc->package.count);
|
|
|
|
} else {
|
|
|
|
acpi_os_printf("[Length not yet evaluated]\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
|
|
|
|
if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Len %.2X",
|
|
|
|
obj_desc->buffer.length);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* Dump some of the buffer */
|
|
|
|
|
|
|
|
if (obj_desc->buffer.length > 0) {
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(" =");
|
|
|
|
for (i = 0;
|
|
|
|
(i < obj_desc->buffer.length
|
|
|
|
&& i < 12); i++) {
|
|
|
|
acpi_os_printf(" %.2hX",
|
|
|
|
obj_desc->buffer.
|
|
|
|
pointer[i]);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
}
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("\n");
|
|
|
|
} else {
|
|
|
|
acpi_os_printf("[Length not yet evaluated]\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Len %.2X ", obj_desc->string.length);
|
|
|
|
acpi_ut_print_string(obj_desc->string.pointer, 32);
|
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_REGION:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("[%s]",
|
|
|
|
acpi_ut_get_region_name(obj_desc->region.
|
|
|
|
space_id));
|
2005-04-16 18:20:36 -04:00
|
|
|
if (obj_desc->region.flags & AOPOBJ_DATA_VALID) {
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(" Addr %8.8X%8.8X Len %.4X\n",
|
|
|
|
ACPI_FORMAT_UINT64(obj_desc->
|
|
|
|
region.
|
|
|
|
address),
|
|
|
|
obj_desc->region.length);
|
|
|
|
} else {
|
|
|
|
acpi_os_printf
|
|
|
|
(" [Address/Length not yet evaluated]\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_REFERENCE:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("[%s]\n",
|
|
|
|
acpi_ps_get_opcode_name(obj_desc->
|
|
|
|
reference.
|
|
|
|
opcode));
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_BUFFER_FIELD:
|
|
|
|
|
|
|
|
if (obj_desc->buffer_field.buffer_obj &&
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc->buffer_field.buffer_obj->buffer.node) {
|
|
|
|
acpi_os_printf("Buf [%4.4s]",
|
|
|
|
acpi_ut_get_node_name(obj_desc->
|
|
|
|
buffer_field.
|
|
|
|
buffer_obj->
|
|
|
|
buffer.
|
|
|
|
node));
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_REGION_FIELD:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Rgn [%4.4s]",
|
|
|
|
acpi_ut_get_node_name(obj_desc->
|
|
|
|
common_field.
|
|
|
|
region_obj->region.
|
|
|
|
node));
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_BANK_FIELD:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Rgn [%4.4s] Bnk [%4.4s]",
|
|
|
|
acpi_ut_get_node_name(obj_desc->
|
|
|
|
common_field.
|
|
|
|
region_obj->region.
|
|
|
|
node),
|
|
|
|
acpi_ut_get_node_name(obj_desc->
|
|
|
|
bank_field.
|
|
|
|
bank_obj->
|
|
|
|
common_field.
|
|
|
|
node));
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_INDEX_FIELD:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Idx [%4.4s] Dat [%4.4s]",
|
|
|
|
acpi_ut_get_node_name(obj_desc->
|
|
|
|
index_field.
|
|
|
|
index_obj->
|
|
|
|
common_field.node),
|
|
|
|
acpi_ut_get_node_name(obj_desc->
|
|
|
|
index_field.
|
|
|
|
data_obj->
|
|
|
|
common_field.
|
|
|
|
node));
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_ALIAS:
|
|
|
|
case ACPI_TYPE_LOCAL_METHOD_ALIAS:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Target %4.4s (%p)\n",
|
|
|
|
acpi_ut_get_node_name(obj_desc),
|
|
|
|
obj_desc);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Object %p\n", obj_desc);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Common field handling */
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ACPI_TYPE_BUFFER_FIELD:
|
|
|
|
case ACPI_TYPE_LOCAL_REGION_FIELD:
|
|
|
|
case ACPI_TYPE_LOCAL_BANK_FIELD:
|
|
|
|
case ACPI_TYPE_LOCAL_INDEX_FIELD:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(" Off %.3X Len %.2X Acc %.2hd\n",
|
|
|
|
(obj_desc->common_field.
|
|
|
|
base_byte_offset * 8)
|
|
|
|
+
|
|
|
|
obj_desc->common_field.
|
|
|
|
start_field_bit_offset,
|
|
|
|
obj_desc->common_field.bit_length,
|
|
|
|
obj_desc->common_field.
|
|
|
|
access_byte_width);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_DISPLAY_OBJECTS:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("O:%p", obj_desc);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (!obj_desc) {
|
2006-10-02 00:00:00 -04:00
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/* No attached object, we are done */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("(R%d)", obj_desc->common.reference_count);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ACPI_TYPE_METHOD:
|
|
|
|
|
|
|
|
/* Name is a Method and its AML offset/length are set */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(" M:%p-%X\n", obj_desc->method.aml_start,
|
|
|
|
obj_desc->method.aml_length);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(" I:%8.8X8.8%X\n",
|
|
|
|
ACPI_FORMAT_UINT64(obj_desc->integer.
|
|
|
|
value));
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(" S:%p-%X\n", obj_desc->string.pointer,
|
|
|
|
obj_desc->string.length);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf(" B:%p-%X\n", obj_desc->buffer.pointer,
|
|
|
|
obj_desc->buffer.length);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If debug turned off, done */
|
|
|
|
|
|
|
|
if (!(acpi_dbg_level & ACPI_LV_VALUES)) {
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If there is an attached object, display it */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
dbg_level = acpi_dbg_level;
|
2005-04-16 18:20:36 -04:00
|
|
|
acpi_dbg_level = 0;
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = acpi_ns_get_attached_object(this_node);
|
2005-04-16 18:20:36 -04:00
|
|
|
acpi_dbg_level = dbg_level;
|
|
|
|
|
|
|
|
/* Dump attached objects */
|
|
|
|
|
|
|
|
while (obj_desc) {
|
|
|
|
obj_type = ACPI_TYPE_INVALID;
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("Attached Object %p: ", obj_desc);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* Decode the type of attached object and dump the contents */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
switch (ACPI_GET_DESCRIPTOR_TYPE(obj_desc)) {
|
2005-04-16 18:20:36 -04:00
|
|
|
case ACPI_DESC_TYPE_NAMED:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf("(Ptr to Node)\n");
|
|
|
|
bytes_to_dump = sizeof(struct acpi_namespace_node);
|
|
|
|
ACPI_DUMP_BUFFER(obj_desc, bytes_to_dump);
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_DESC_TYPE_OPERAND:
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_type = ACPI_GET_OBJECT_TYPE(obj_desc);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
if (obj_type > ACPI_TYPE_LOCAL_MAX) {
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_os_printf
|
|
|
|
("(Ptr to ACPI Object type %X [UNKNOWN])\n",
|
|
|
|
obj_type);
|
2005-04-16 18:20:36 -04:00
|
|
|
bytes_to_dump = 32;
|
2005-08-05 00:44:28 -04:00
|
|
|
} else {
|
|
|
|
acpi_os_printf
|
|
|
|
("(Ptr to ACPI Object type %X [%s])\n",
|
|
|
|
obj_type, acpi_ut_get_type_name(obj_type));
|
|
|
|
bytes_to_dump =
|
|
|
|
sizeof(union acpi_operand_object);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_DUMP_BUFFER(obj_desc, bytes_to_dump);
|
2005-05-13 00:00:00 -04:00
|
|
|
break;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If value is NOT an internal object, we are done */
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) !=
|
|
|
|
ACPI_DESC_TYPE_OPERAND) {
|
2005-04-16 18:20:36 -04:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Valid object, get the pointer to next level, if any
|
|
|
|
*/
|
|
|
|
switch (obj_type) {
|
2005-05-13 00:00:00 -04:00
|
|
|
case ACPI_TYPE_BUFFER:
|
2005-04-16 18:20:36 -04:00
|
|
|
case ACPI_TYPE_STRING:
|
2005-05-13 00:00:00 -04:00
|
|
|
/*
|
|
|
|
* NOTE: takes advantage of common fields between string/buffer
|
|
|
|
*/
|
|
|
|
bytes_to_dump = obj_desc->string.length;
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = (void *)obj_desc->string.pointer;
|
|
|
|
acpi_os_printf("(Buffer/String pointer %p length %X)\n",
|
|
|
|
obj_desc, bytes_to_dump);
|
|
|
|
ACPI_DUMP_BUFFER(obj_desc, bytes_to_dump);
|
2005-05-13 00:00:00 -04:00
|
|
|
goto cleanup;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
case ACPI_TYPE_BUFFER_FIELD:
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc =
|
|
|
|
(union acpi_operand_object *)obj_desc->buffer_field.
|
|
|
|
buffer_obj;
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_PACKAGE:
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = (void *)obj_desc->package.elements;
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_METHOD:
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = (void *)obj_desc->method.aml_start;
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_REGION_FIELD:
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = (void *)obj_desc->field.region_obj;
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_BANK_FIELD:
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = (void *)obj_desc->bank_field.region_obj;
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_INDEX_FIELD:
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_desc = (void *)obj_desc->index_field.index_obj;
|
2005-04-16 18:20:36 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
obj_type = ACPI_TYPE_INVALID; /* Terminate loop after next pass */
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
cleanup:
|
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ACPI_FUTURE_USAGE
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ns_dump_objects
|
|
|
|
*
|
|
|
|
* PARAMETERS: Type - Object type to be dumped
|
2005-04-18 22:49:35 -04:00
|
|
|
* display_type - 0 or ACPI_DISPLAY_SUMMARY
|
2005-04-16 18:20:36 -04:00
|
|
|
* max_depth - Maximum depth of dump. Use ACPI_UINT32_MAX
|
|
|
|
* for an effectively unlimited depth.
|
|
|
|
* owner_id - Dump only objects owned by this ID. Use
|
|
|
|
* ACPI_UINT32_MAX to match all owners.
|
|
|
|
* start_handle - Where in namespace to start/end search
|
|
|
|
*
|
2005-04-18 22:49:35 -04:00
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-04-16 18:20:36 -04:00
|
|
|
* DESCRIPTION: Dump typed objects within the loaded namespace.
|
|
|
|
* Uses acpi_ns_walk_namespace in conjunction with acpi_ns_dump_one_object.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_ns_dump_objects(acpi_object_type type,
|
|
|
|
u8 display_type,
|
|
|
|
u32 max_depth,
|
|
|
|
acpi_owner_id owner_id, acpi_handle start_handle)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-08-05 00:44:28 -04:00
|
|
|
struct acpi_walk_info info;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
info.debug_level = ACPI_LV_TABLES;
|
|
|
|
info.owner_id = owner_id;
|
|
|
|
info.display_type = display_type;
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
(void)acpi_ns_walk_namespace(type, start_handle, max_depth,
|
2007-02-02 11:48:21 -05:00
|
|
|
ACPI_NS_WALK_NO_UNLOCK |
|
|
|
|
ACPI_NS_WALK_TEMP_NODES,
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_ns_dump_one_object, (void *)&info,
|
|
|
|
NULL);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
2005-08-05 00:44:28 -04:00
|
|
|
#endif /* ACPI_FUTURE_USAGE */
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-04-18 22:49:35 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ns_dump_entry
|
|
|
|
*
|
|
|
|
* PARAMETERS: Handle - Node to be dumped
|
|
|
|
* debug_level - Output level
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dump a single Node
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
void acpi_ns_dump_entry(acpi_handle handle, u32 debug_level)
|
2005-04-18 22:49:35 -04:00
|
|
|
{
|
2005-08-05 00:44:28 -04:00
|
|
|
struct acpi_walk_info info;
|
2005-04-18 22:49:35 -04:00
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-18 22:49:35 -04:00
|
|
|
|
|
|
|
info.debug_level = debug_level;
|
2005-07-08 00:00:00 -04:00
|
|
|
info.owner_id = ACPI_OWNER_ID_MAX;
|
2005-04-18 22:49:35 -04:00
|
|
|
info.display_type = ACPI_DISPLAY_SUMMARY;
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
(void)acpi_ns_dump_one_object(handle, 1, &info, NULL);
|
2005-04-18 22:49:35 -04:00
|
|
|
}
|
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 00:00:00 -04:00
|
|
|
#ifdef ACPI_ASL_COMPILER
|
2005-04-16 18:20:36 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ns_dump_tables
|
|
|
|
*
|
|
|
|
* PARAMETERS: search_base - Root of subtree to be dumped, or
|
|
|
|
* NS_ALL to dump the entire namespace
|
|
|
|
* max_depth - Maximum depth of dump. Use INT_MAX
|
|
|
|
* for an effectively unlimited depth.
|
|
|
|
*
|
2005-04-18 22:49:35 -04:00
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-04-16 18:20:36 -04:00
|
|
|
* DESCRIPTION: Dump the name space, or a portion of it.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_handle search_handle = search_base;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
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 17:15:00 -04:00
|
|
|
ACPI_FUNCTION_TRACE(ns_dump_tables);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
if (!acpi_gbl_root_node) {
|
|
|
|
/*
|
|
|
|
* If the name space has not been initialized,
|
|
|
|
* there is nothing to dump.
|
|
|
|
*/
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_TABLES,
|
|
|
|
"namespace not initialized!\n"));
|
2005-04-16 18:20:36 -04:00
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ACPI_NS_ALL == search_base) {
|
2006-10-02 00:00:00 -04:00
|
|
|
|
2005-04-18 22:49:35 -04:00
|
|
|
/* Entire namespace */
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
search_handle = acpi_gbl_root_node;
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_TABLES, "\\\n"));
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
acpi_ns_dump_objects(ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, max_depth,
|
|
|
|
ACPI_OWNER_ID_MAX, search_handle);
|
2005-04-16 18:20:36 -04:00
|
|
|
return_VOID;
|
|
|
|
}
|
2005-08-05 00:44:28 -04:00
|
|
|
#endif /* _ACPI_ASL_COMPILER */
|
|
|
|
#endif /* defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER) */
|