2005-04-17 00:20:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: utmisc - common utility procedures
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*
|
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.
|
|
|
|
*/
|
|
|
|
|
2006-06-02 21:58:00 +02:00
|
|
|
#include <linux/module.h>
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <acpi/acpi.h>
|
|
|
|
#include <acpi/acnamesp.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_UTILITIES
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MODULE_NAME("utmisc")
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2007-02-02 17:48:19 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_validate_exception
|
|
|
|
*
|
|
|
|
* PARAMETERS: Status - The acpi_status code to be formatted
|
|
|
|
*
|
|
|
|
* RETURN: A string containing the exception text. NULL if exception is
|
|
|
|
* not valid.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: This function validates and translates an ACPI exception into
|
|
|
|
* an ASCII string.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
const char *acpi_ut_validate_exception(acpi_status status)
|
|
|
|
{
|
2008-06-10 06:53:01 +02:00
|
|
|
u32 sub_status;
|
2007-02-02 17:48:19 +01:00
|
|
|
const char *exception = NULL;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Status is composed of two parts, a "type" and an actual code
|
|
|
|
*/
|
|
|
|
sub_status = (status & ~AE_CODE_MASK);
|
|
|
|
|
|
|
|
switch (status & AE_CODE_MASK) {
|
|
|
|
case AE_CODE_ENVIRONMENTAL:
|
|
|
|
|
|
|
|
if (sub_status <= AE_CODE_ENV_MAX) {
|
|
|
|
exception = acpi_gbl_exception_names_env[sub_status];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AE_CODE_PROGRAMMER:
|
|
|
|
|
|
|
|
if (sub_status <= AE_CODE_PGM_MAX) {
|
2008-06-10 06:53:01 +02:00
|
|
|
exception = acpi_gbl_exception_names_pgm[sub_status];
|
2007-02-02 17:48:19 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AE_CODE_ACPI_TABLES:
|
|
|
|
|
|
|
|
if (sub_status <= AE_CODE_TBL_MAX) {
|
2008-06-10 06:53:01 +02:00
|
|
|
exception = acpi_gbl_exception_names_tbl[sub_status];
|
2007-02-02 17:48:19 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AE_CODE_AML:
|
|
|
|
|
|
|
|
if (sub_status <= AE_CODE_AML_MAX) {
|
2008-06-10 06:53:01 +02:00
|
|
|
exception = acpi_gbl_exception_names_aml[sub_status];
|
2007-02-02 17:48:19 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AE_CODE_CONTROL:
|
|
|
|
|
|
|
|
if (sub_status <= AE_CODE_CTRL_MAX) {
|
2008-06-10 06:53:01 +02:00
|
|
|
exception = acpi_gbl_exception_names_ctrl[sub_status];
|
2007-02-02 17:48:19 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ACPI_CAST_PTR(const char, exception));
|
|
|
|
}
|
|
|
|
|
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 07:00:00 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_is_aml_table
|
|
|
|
*
|
|
|
|
* PARAMETERS: Table - An ACPI table
|
|
|
|
*
|
|
|
|
* RETURN: TRUE if table contains executable AML; FALSE otherwise
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Check ACPI Signature for a table that contains AML code.
|
|
|
|
* Currently, these are DSDT,SSDT,PSDT. All other table types are
|
|
|
|
* data tables that do not contain AML code.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2007-02-02 17:48:19 +01:00
|
|
|
|
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 07:00:00 +02:00
|
|
|
u8 acpi_ut_is_aml_table(struct acpi_table_header *table)
|
|
|
|
{
|
|
|
|
|
2006-07-08 02:44:38 +02:00
|
|
|
/* These are the only tables that contain executable AML */
|
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 07:00:00 +02:00
|
|
|
|
2007-02-02 17:48:18 +01:00
|
|
|
if (ACPI_COMPARE_NAME(table->signature, ACPI_SIG_DSDT) ||
|
|
|
|
ACPI_COMPARE_NAME(table->signature, ACPI_SIG_PSDT) ||
|
|
|
|
ACPI_COMPARE_NAME(table->signature, ACPI_SIG_SSDT)) {
|
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 07:00:00 +02:00
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
2005-07-08 06:00:00 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_allocate_owner_id
|
|
|
|
*
|
|
|
|
* PARAMETERS: owner_id - Where the new owner ID is returned
|
|
|
|
*
|
2005-07-30 00:15:00 +02:00
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Allocate a table or method owner ID. The owner ID is used to
|
|
|
|
* track objects created by the table or method, to be deleted
|
|
|
|
* when the method exits or the table is unloaded.
|
2005-07-08 06:00:00 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
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 07:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id)
|
2005-07-08 06:00:00 +02:00
|
|
|
{
|
2008-06-10 07:42:13 +02:00
|
|
|
u32 i;
|
|
|
|
u32 j;
|
|
|
|
u32 k;
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status status;
|
2005-07-08 06:00:00 +02: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 23:15:00 +02:00
|
|
|
ACPI_FUNCTION_TRACE(ut_allocate_owner_id);
|
2005-07-08 06:00:00 +02:00
|
|
|
|
2005-09-02 23:24:17 +02:00
|
|
|
/* Guard against multiple allocations of ID to the same location */
|
|
|
|
|
|
|
|
if (*owner_id) {
|
2006-01-27 22:43:00 +01:00
|
|
|
ACPI_ERROR((AE_INFO, "Owner ID [%2.2X] already exists",
|
|
|
|
*owner_id));
|
2005-09-02 23:24:17 +02:00
|
|
|
return_ACPI_STATUS(AE_ALREADY_EXISTS);
|
|
|
|
}
|
|
|
|
|
2005-07-30 00:15:00 +02:00
|
|
|
/* Mutex for the global ID mask */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-07-08 06:00:00 +02:00
|
|
|
}
|
|
|
|
|
2005-11-17 19:07:00 +01:00
|
|
|
/*
|
|
|
|
* Find a free owner ID, cycle through all possible IDs on repeated
|
2005-12-03 00:27:00 +01:00
|
|
|
* allocations. (ACPI_NUM_OWNERID_MASKS + 1) because first index may have
|
|
|
|
* to be scanned twice.
|
2005-11-17 19:07:00 +01:00
|
|
|
*/
|
2005-12-03 00:27:00 +01:00
|
|
|
for (i = 0, j = acpi_gbl_last_owner_id_index;
|
|
|
|
i < (ACPI_NUM_OWNERID_MASKS + 1); i++, j++) {
|
|
|
|
if (j >= ACPI_NUM_OWNERID_MASKS) {
|
|
|
|
j = 0; /* Wraparound to start of mask array */
|
2005-11-17 19:07:00 +01:00
|
|
|
}
|
|
|
|
|
2005-12-03 00:27:00 +01:00
|
|
|
for (k = acpi_gbl_next_owner_id_offset; k < 32; k++) {
|
|
|
|
if (acpi_gbl_owner_id_mask[j] == ACPI_UINT32_MAX) {
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2005-12-03 00:27:00 +01:00
|
|
|
/* There are no free IDs in this mask */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(acpi_gbl_owner_id_mask[j] & (1 << k))) {
|
|
|
|
/*
|
|
|
|
* Found a free ID. The actual ID is the bit index plus one,
|
|
|
|
* making zero an invalid Owner ID. Save this as the last ID
|
|
|
|
* allocated and update the global ID mask.
|
|
|
|
*/
|
|
|
|
acpi_gbl_owner_id_mask[j] |= (1 << k);
|
|
|
|
|
|
|
|
acpi_gbl_last_owner_id_index = (u8) j;
|
|
|
|
acpi_gbl_next_owner_id_offset = (u8) (k + 1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Construct encoded ID from the index and bit position
|
|
|
|
*
|
|
|
|
* Note: Last [j].k (bit 255) is never used and is marked
|
|
|
|
* permanently allocated (prevents +1 overflow)
|
|
|
|
*/
|
|
|
|
*owner_id =
|
|
|
|
(acpi_owner_id) ((k + 1) + ACPI_MUL_32(j));
|
|
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_VALUES,
|
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
|
|
|
"Allocated OwnerId: %2.2X\n",
|
2005-12-03 00:27:00 +01:00
|
|
|
(unsigned int)*owner_id));
|
|
|
|
goto exit;
|
|
|
|
}
|
2005-07-08 06:00:00 +02:00
|
|
|
}
|
2005-12-03 00:27:00 +01:00
|
|
|
|
|
|
|
acpi_gbl_next_owner_id_offset = 0;
|
2005-07-08 06:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-11-17 19:07:00 +01:00
|
|
|
* All owner_ids have been allocated. This typically should
|
2005-07-08 06:00:00 +02:00
|
|
|
* not happen since the IDs are reused after deallocation. The IDs are
|
|
|
|
* allocated upon table load (one per table) and method execution, and
|
|
|
|
* they are released when a table is unloaded or a method completes
|
|
|
|
* execution.
|
2005-11-17 19:07:00 +01:00
|
|
|
*
|
|
|
|
* If this error happens, there may be very deep nesting of invoked control
|
|
|
|
* methods, or there may be a bug where the IDs are not released.
|
2005-07-08 06:00:00 +02:00
|
|
|
*/
|
|
|
|
status = AE_OWNER_ID_LIMIT;
|
2006-01-27 22:43:00 +01:00
|
|
|
ACPI_ERROR((AE_INFO,
|
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
|
|
|
"Could not allocate new OwnerId (255 max), AE_OWNER_ID_LIMIT"));
|
2005-07-08 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
exit:
|
|
|
|
(void)acpi_ut_release_mutex(ACPI_MTX_CACHES);
|
|
|
|
return_ACPI_STATUS(status);
|
2005-07-08 06:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_release_owner_id
|
|
|
|
*
|
2005-07-30 00:15:00 +02:00
|
|
|
* PARAMETERS: owner_id_ptr - Pointer to a previously allocated owner_iD
|
2005-07-08 06:00:00 +02:00
|
|
|
*
|
2005-07-30 00:15:00 +02:00
|
|
|
* RETURN: None. No error is returned because we are either exiting a
|
|
|
|
* control method or unloading a table. Either way, we would
|
|
|
|
* ignore any error anyway.
|
|
|
|
*
|
2005-12-03 00:27:00 +01:00
|
|
|
* DESCRIPTION: Release a table or method owner ID. Valid IDs are 1 - 255
|
2005-07-08 06:00:00 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_release_owner_id(acpi_owner_id * owner_id_ptr)
|
2005-07-08 06:00:00 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_owner_id owner_id = *owner_id_ptr;
|
|
|
|
acpi_status status;
|
2008-06-10 07:42:13 +02:00
|
|
|
u32 index;
|
2005-12-03 00:27:00 +01:00
|
|
|
u32 bit;
|
2005-07-08 06:00:00 +02: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 23:15:00 +02:00
|
|
|
ACPI_FUNCTION_TRACE_U32(ut_release_owner_id, owner_id);
|
2005-07-08 06:00:00 +02:00
|
|
|
|
2005-07-30 00:15:00 +02:00
|
|
|
/* Always clear the input owner_id (zero is an invalid ID) */
|
|
|
|
|
|
|
|
*owner_id_ptr = 0;
|
|
|
|
|
|
|
|
/* Zero is not a valid owner_iD */
|
|
|
|
|
2005-12-16 23:05:00 +01:00
|
|
|
if (owner_id == 0) {
|
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_ERROR((AE_INFO, "Invalid OwnerId: %2.2X", owner_id));
|
2005-07-30 00:15:00 +02:00
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mutex for the global ID mask */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2005-07-30 00:15:00 +02:00
|
|
|
return_VOID;
|
2005-07-08 06:00:00 +02:00
|
|
|
}
|
|
|
|
|
2005-09-02 23:24:17 +02:00
|
|
|
/* Normalize the ID to zero */
|
|
|
|
|
|
|
|
owner_id--;
|
2005-07-30 00:15:00 +02:00
|
|
|
|
2005-12-03 00:27:00 +01:00
|
|
|
/* Decode ID to index/offset pair */
|
|
|
|
|
|
|
|
index = ACPI_DIV_32(owner_id);
|
|
|
|
bit = 1 << ACPI_MOD_32(owner_id);
|
|
|
|
|
2005-07-30 00:15:00 +02:00
|
|
|
/* Free the owner ID only if it is valid */
|
2005-07-08 06:00:00 +02:00
|
|
|
|
2005-12-03 00:27:00 +01:00
|
|
|
if (acpi_gbl_owner_id_mask[index] & bit) {
|
|
|
|
acpi_gbl_owner_id_mask[index] ^= bit;
|
|
|
|
} else {
|
2006-01-27 22:43:00 +01:00
|
|
|
ACPI_ERROR((AE_INFO,
|
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
|
|
|
"Release of non-allocated OwnerId: %2.2X",
|
2006-01-27 22:43:00 +01:00
|
|
|
owner_id + 1));
|
2005-07-08 06:00:00 +02:00
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
(void)acpi_ut_release_mutex(ACPI_MTX_CACHES);
|
2005-07-30 00:15:00 +02:00
|
|
|
return_VOID;
|
2005-07-08 06:00:00 +02:00
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_strupr (strupr)
|
|
|
|
*
|
|
|
|
* PARAMETERS: src_string - The source string to convert
|
|
|
|
*
|
2005-07-30 00:15:00 +02:00
|
|
|
* RETURN: None
|
2005-04-19 04:49:35 +02:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Convert string to uppercase
|
|
|
|
*
|
|
|
|
* NOTE: This is not a POSIX function, so it appears here, not in utclib.c
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_strupr(char *src_string)
|
2005-04-19 04:49:35 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
char *string;
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-19 04:49:35 +02: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 06:00:00 +02:00
|
|
|
if (!src_string) {
|
2005-07-30 00:15:00 +02:00
|
|
|
return;
|
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 06:00:00 +02:00
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/* Walk entire string, uppercasing the letters */
|
|
|
|
|
|
|
|
for (string = src_string; *string; string++) {
|
2005-08-05 06:44:28 +02:00
|
|
|
*string = (char)ACPI_TOUPPER(*string);
|
2005-04-19 04:49:35 +02:00
|
|
|
}
|
|
|
|
|
2005-07-30 00:15:00 +02:00
|
|
|
return;
|
2005-04-19 04:49:35 +02:00
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_print_string
|
|
|
|
*
|
|
|
|
* PARAMETERS: String - Null terminated ASCII string
|
2005-04-19 04:49:35 +02:00
|
|
|
* max_length - Maximum output length
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dump an ASCII string with support for ACPI-defined escape
|
|
|
|
* sequences.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_print_string(char *string, u8 max_length)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 i;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (!string) {
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("<\"NULL STRING PTR\">");
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\"");
|
2005-04-17 00:20:36 +02:00
|
|
|
for (i = 0; string[i] && (i < max_length); i++) {
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Escape sequences */
|
|
|
|
|
|
|
|
switch (string[i]) {
|
|
|
|
case 0x07:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\a"); /* BELL */
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x08:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\b"); /* BACKSPACE */
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0C:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\f"); /* FORMFEED */
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0A:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\n"); /* LINEFEED */
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0D:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\r"); /* CARRIAGE RETURN */
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x09:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\t"); /* HORIZONTAL TAB */
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0B:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\v"); /* VERTICAL TAB */
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
case '\'': /* Single Quote */
|
|
|
|
case '\"': /* Double Quote */
|
|
|
|
case '\\': /* Backslash */
|
|
|
|
acpi_os_printf("\\%c", (int)string[i]);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
/* Check for printable character or hex escape */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
if (ACPI_IS_PRINT(string[i])) {
|
2005-04-17 00:20:36 +02:00
|
|
|
/* This is a normal character */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("%c", (int)string[i]);
|
|
|
|
} else {
|
2005-04-17 00:20:36 +02:00
|
|
|
/* All others will be Hex escapes */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\\x%2.2X", (s32) string[i]);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\"");
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (i == max_length && string[i]) {
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("...");
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_dword_byte_swap
|
|
|
|
*
|
|
|
|
* PARAMETERS: Value - Value to be converted
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* RETURN: u32 integer with bytes swapped
|
|
|
|
*
|
2005-04-17 00:20:36 +02:00
|
|
|
* DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 acpi_ut_dword_byte_swap(u32 value)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
union {
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 value;
|
|
|
|
u8 bytes[4];
|
2005-04-17 00:20:36 +02:00
|
|
|
} out;
|
|
|
|
union {
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 value;
|
|
|
|
u8 bytes[4];
|
2005-04-17 00:20:36 +02:00
|
|
|
} in;
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
in.value = value;
|
|
|
|
|
|
|
|
out.bytes[0] = in.bytes[3];
|
|
|
|
out.bytes[1] = in.bytes[2];
|
|
|
|
out.bytes[2] = in.bytes[1];
|
|
|
|
out.bytes[3] = in.bytes[0];
|
|
|
|
|
|
|
|
return (out.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_set_integer_width
|
|
|
|
*
|
|
|
|
* PARAMETERS: Revision From DSDT header
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Set the global integer bit width based upon the revision
|
|
|
|
* of the DSDT. For Revision 1 and 0, Integers are 32 bits.
|
|
|
|
* For Revision 2 and above, Integers are 64 bits. Yes, this
|
|
|
|
* makes a difference.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_set_integer_width(u8 revision)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
2007-02-02 17:48:18 +01:00
|
|
|
if (revision < 2) {
|
2006-07-08 02:44:38 +02:00
|
|
|
|
|
|
|
/* 32-bit case */
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
acpi_gbl_integer_bit_width = 32;
|
|
|
|
acpi_gbl_integer_nybble_width = 8;
|
|
|
|
acpi_gbl_integer_byte_width = 4;
|
2005-08-05 06:44:28 +02:00
|
|
|
} else {
|
2006-07-08 02:44:38 +02:00
|
|
|
/* 64-bit case (ACPI 2.0+) */
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
acpi_gbl_integer_bit_width = 64;
|
|
|
|
acpi_gbl_integer_nybble_width = 16;
|
|
|
|
acpi_gbl_integer_byte_width = 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ACPI_DEBUG_OUTPUT
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_display_init_pathname
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* PARAMETERS: Type - Object type of the node
|
|
|
|
* obj_handle - Handle whose pathname will be displayed
|
2005-04-17 00:20:36 +02:00
|
|
|
* Path - Additional path string to be appended.
|
|
|
|
* (NULL if no extra path)
|
|
|
|
*
|
|
|
|
* RETURN: acpi_status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Display full pathname of an object, DEBUG ONLY
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_display_init_pathname(u8 type,
|
|
|
|
struct acpi_namespace_node *obj_handle,
|
|
|
|
char *path)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status status;
|
|
|
|
struct acpi_buffer buffer;
|
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
|
|
|
|
|
|
|
/* Only print the path if the appropriate debug level is enabled */
|
|
|
|
|
|
|
|
if (!(acpi_dbg_level & ACPI_LV_INIT_NAMES)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the full pathname to the node */
|
|
|
|
|
|
|
|
buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
|
2005-08-05 06:44:28 +02:00
|
|
|
status = acpi_ns_handle_to_pathname(obj_handle, &buffer);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print what we're doing */
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ACPI_TYPE_METHOD:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("Executing ");
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("Initializing ");
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print the object type and pathname */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("%-12s %s",
|
|
|
|
acpi_ut_get_type_name(type), (char *)buffer.pointer);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Extra path is used to append names like _STA, _INI, etc. */
|
|
|
|
|
|
|
|
if (path) {
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf(".%s", path);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-10-03 06:00:00 +02:00
|
|
|
ACPI_FREE(buffer.pointer);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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 07:00:00 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_valid_acpi_char
|
|
|
|
*
|
|
|
|
* PARAMETERS: Char - The character to be examined
|
2006-07-08 02:44:38 +02:00
|
|
|
* Position - Byte position (0-3)
|
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 07:00:00 +02:00
|
|
|
*
|
|
|
|
* RETURN: TRUE if the character is valid, FALSE otherwise
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Check for a valid ACPI character. Must be one of:
|
|
|
|
* 1) Upper case alpha
|
|
|
|
* 2) numeric
|
|
|
|
* 3) underscore
|
|
|
|
*
|
|
|
|
* We allow a '!' as the last character because of the ASF! table
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2008-06-10 07:42:13 +02:00
|
|
|
u8 acpi_ut_valid_acpi_char(char character, u32 position)
|
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 07:00:00 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
if (!((character >= 'A' && character <= 'Z') ||
|
|
|
|
(character >= '0' && character <= '9') || (character == '_'))) {
|
|
|
|
|
|
|
|
/* Allow a '!' in the last position */
|
|
|
|
|
|
|
|
if (character == '!' && position == 3) {
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_valid_acpi_name
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* PARAMETERS: Name - The name to be examined
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* RETURN: TRUE if the name is valid, FALSE otherwise
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Check for a valid ACPI name. Each character must be one of:
|
|
|
|
* 1) Upper case alpha
|
|
|
|
* 2) numeric
|
|
|
|
* 3) underscore
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
u8 acpi_ut_valid_acpi_name(u32 name)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-06-10 07:42:13 +02:00
|
|
|
u32 i;
|
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
|
|
|
|
|
|
|
for (i = 0; i < ACPI_NAME_SIZE; i++) {
|
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 07:00:00 +02:00
|
|
|
if (!acpi_ut_valid_acpi_char
|
|
|
|
((ACPI_CAST_PTR(char, &name))[i], i)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
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 07:00:00 +02:00
|
|
|
* FUNCTION: acpi_ut_repair_name
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
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 07:00:00 +02:00
|
|
|
* PARAMETERS: Name - The ACPI name to be repaired
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
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 07:00:00 +02:00
|
|
|
* RETURN: Repaired version of the name
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
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 07:00:00 +02:00
|
|
|
* DESCRIPTION: Repair an ACPI name: Change invalid characters to '*' and
|
|
|
|
* return the new name.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2007-02-02 17:48:19 +01:00
|
|
|
acpi_name acpi_ut_repair_name(char *name)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-06-10 07:42:13 +02:00
|
|
|
u32 i;
|
2007-02-02 17:48:19 +01:00
|
|
|
char new_name[ACPI_NAME_SIZE];
|
2005-04-17 00:20:36 +02:00
|
|
|
|
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 07:00:00 +02:00
|
|
|
for (i = 0; i < ACPI_NAME_SIZE; i++) {
|
2007-02-02 17:48:19 +01:00
|
|
|
new_name[i] = name[i];
|
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 07:00:00 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Replace a bad character with something printable, yet technically
|
|
|
|
* still invalid. This prevents any collisions with existing "good"
|
|
|
|
* names in the namespace.
|
|
|
|
*/
|
2007-02-02 17:48:19 +01:00
|
|
|
if (!acpi_ut_valid_acpi_char(name[i], i)) {
|
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 07:00:00 +02:00
|
|
|
new_name[i] = '*';
|
|
|
|
}
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-02-02 17:48:19 +01:00
|
|
|
return (*(u32 *) new_name);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_strtoul64
|
|
|
|
*
|
|
|
|
* PARAMETERS: String - Null terminated string
|
2006-05-26 22:36:00 +02:00
|
|
|
* Base - Radix of the string: 16 or ACPI_ANY_BASE;
|
|
|
|
* ACPI_ANY_BASE means 'in behalf of to_integer'
|
2005-04-17 00:20:36 +02:00
|
|
|
* ret_integer - Where the converted integer is returned
|
|
|
|
*
|
|
|
|
* RETURN: Status and Converted value
|
|
|
|
*
|
2006-07-08 02:44:38 +02:00
|
|
|
* DESCRIPTION: Convert a string into an unsigned value. Performs either a
|
|
|
|
* 32-bit or 64-bit conversion, depending on the current mode
|
|
|
|
* of the interpreter.
|
2005-04-17 00:20:36 +02:00
|
|
|
* NOTE: Does not support Octal strings, not needed.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_strtoul64(char *string, u32 base, acpi_integer * ret_integer)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 this_digit = 0;
|
|
|
|
acpi_integer return_value = 0;
|
|
|
|
acpi_integer quotient;
|
2006-05-26 22:36:00 +02:00
|
|
|
acpi_integer dividend;
|
|
|
|
u32 to_integer_op = (base == ACPI_ANY_BASE);
|
|
|
|
u32 mode32 = (acpi_gbl_integer_byte_width == 4);
|
|
|
|
u8 valid_digits = 0;
|
|
|
|
u8 sign_of0x = 0;
|
|
|
|
u8 term = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-07-08 02:44:38 +02:00
|
|
|
ACPI_FUNCTION_TRACE_STR(ut_stroul64, string);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
switch (base) {
|
|
|
|
case ACPI_ANY_BASE:
|
|
|
|
case 16:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* Invalid Base */
|
2005-08-05 06:44:28 +02:00
|
|
|
return_ACPI_STATUS(AE_BAD_PARAMETER);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2006-05-26 22:36:00 +02:00
|
|
|
if (!string) {
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Skip over any white space in the buffer */
|
|
|
|
|
2006-05-26 22:36:00 +02:00
|
|
|
while ((*string) && (ACPI_IS_SPACE(*string) || *string == '\t')) {
|
2005-04-17 00:20:36 +02:00
|
|
|
string++;
|
|
|
|
}
|
|
|
|
|
2006-05-26 22:36:00 +02:00
|
|
|
if (to_integer_op) {
|
|
|
|
/*
|
|
|
|
* Base equal to ACPI_ANY_BASE means 'to_integer operation case'.
|
|
|
|
* We need to determine if it is decimal or hexadecimal.
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
if ((*string == '0') && (ACPI_TOLOWER(*(string + 1)) == 'x')) {
|
2006-05-26 22:36:00 +02:00
|
|
|
sign_of0x = 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
base = 16;
|
2006-05-26 22:36:00 +02:00
|
|
|
|
|
|
|
/* Skip over the leading '0x' */
|
2005-04-17 00:20:36 +02:00
|
|
|
string += 2;
|
2005-08-05 06:44:28 +02:00
|
|
|
} else {
|
2005-04-17 00:20:36 +02:00
|
|
|
base = 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-26 22:36:00 +02:00
|
|
|
/* Any string left? Check that '0x' is not followed by white space. */
|
|
|
|
|
|
|
|
if (!(*string) || ACPI_IS_SPACE(*string) || *string == '\t') {
|
|
|
|
if (to_integer_op) {
|
|
|
|
goto error_exit;
|
|
|
|
} else {
|
|
|
|
goto all_done;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2006-07-08 02:44:38 +02:00
|
|
|
/*
|
|
|
|
* Perform a 32-bit or 64-bit conversion, depending upon the current
|
|
|
|
* execution mode of the interpreter
|
|
|
|
*/
|
2006-05-26 22:36:00 +02:00
|
|
|
dividend = (mode32) ? ACPI_UINT32_MAX : ACPI_UINT64_MAX;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-07-08 02:44:38 +02:00
|
|
|
/* Main loop: convert the string to a 32- or 64-bit integer */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
while (*string) {
|
2005-08-05 06:44:28 +02:00
|
|
|
if (ACPI_IS_DIGIT(*string)) {
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Convert ASCII 0-9 to Decimal value */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
this_digit = ((u8) * string) - '0';
|
2006-05-26 22:36:00 +02:00
|
|
|
} else if (base == 10) {
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-05-26 22:36:00 +02:00
|
|
|
/* Digit is out of range; possible in to_integer case only */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-05-26 22:36:00 +02:00
|
|
|
term = 1;
|
|
|
|
} else {
|
2005-08-05 06:44:28 +02:00
|
|
|
this_digit = (u8) ACPI_TOUPPER(*string);
|
|
|
|
if (ACPI_IS_XDIGIT((char)this_digit)) {
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Convert ASCII Hex char to value */
|
|
|
|
|
|
|
|
this_digit = this_digit - 'A' + 10;
|
2005-08-05 06:44:28 +02:00
|
|
|
} else {
|
2006-05-26 22:36:00 +02:00
|
|
|
term = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (term) {
|
|
|
|
if (to_integer_op) {
|
|
|
|
goto error_exit;
|
|
|
|
} else {
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
}
|
2006-05-26 22:36:00 +02:00
|
|
|
} else if ((valid_digits == 0) && (this_digit == 0)
|
|
|
|
&& !sign_of0x) {
|
|
|
|
|
|
|
|
/* Skip zeros */
|
|
|
|
string++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
valid_digits++;
|
|
|
|
|
2007-05-10 05:34:35 +02:00
|
|
|
if (sign_of0x && ((valid_digits > 16)
|
|
|
|
|| ((valid_digits > 8) && mode32))) {
|
2006-05-26 22:36:00 +02:00
|
|
|
/*
|
|
|
|
* This is to_integer operation case.
|
|
|
|
* No any restrictions for string-to-integer conversion,
|
|
|
|
* see ACPI spec.
|
|
|
|
*/
|
|
|
|
goto error_exit;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Divide the digit into the correct position */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
(void)
|
2006-05-26 22:36:00 +02:00
|
|
|
acpi_ut_short_divide((dividend - (acpi_integer) this_digit),
|
|
|
|
base, "ient, NULL);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (return_value > quotient) {
|
2006-05-26 22:36:00 +02:00
|
|
|
if (to_integer_op) {
|
|
|
|
goto error_exit;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return_value *= base;
|
|
|
|
return_value += this_digit;
|
|
|
|
string++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All done, normal exit */
|
|
|
|
|
2006-05-26 22:36:00 +02:00
|
|
|
all_done:
|
|
|
|
|
2006-07-08 02:44:38 +02:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Converted value: %8.8X%8.8X\n",
|
|
|
|
ACPI_FORMAT_UINT64(return_value)));
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
*ret_integer = return_value;
|
2005-08-05 06:44:28 +02:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
error_exit:
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Base was set/validated above */
|
|
|
|
|
|
|
|
if (base == 10) {
|
2005-08-05 06:44:28 +02:00
|
|
|
return_ACPI_STATUS(AE_BAD_DECIMAL_CONSTANT);
|
|
|
|
} else {
|
|
|
|
return_ACPI_STATUS(AE_BAD_HEX_CONSTANT);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_create_update_state_and_push
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* PARAMETERS: Object - Object to be added to the new state
|
2005-04-17 00:20:36 +02:00
|
|
|
* Action - Increment/Decrement
|
|
|
|
* state_list - List the state will be added to
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* RETURN: Status
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Create a new state and push it
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_create_update_state_and_push(union acpi_operand_object *object,
|
|
|
|
u16 action,
|
|
|
|
union acpi_generic_state **state_list)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_generic_state *state;
|
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
|
|
|
|
|
|
|
/* Ignore null objects; these are expected */
|
|
|
|
|
|
|
|
if (!object) {
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
state = acpi_ut_create_update_state(object, action);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!state) {
|
|
|
|
return (AE_NO_MEMORY);
|
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_push_generic_state(state_list, state);
|
2005-04-17 00:20:36 +02:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_walk_package_tree
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* PARAMETERS: source_object - The package to walk
|
|
|
|
* target_object - Target object (if package is being copied)
|
|
|
|
* walk_callback - Called once for each package element
|
|
|
|
* Context - Passed to the callback function
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Walk through a package
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_walk_package_tree(union acpi_operand_object * source_object,
|
|
|
|
void *target_object,
|
|
|
|
acpi_pkg_callback walk_callback, void *context)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status status = AE_OK;
|
|
|
|
union acpi_generic_state *state_list = NULL;
|
|
|
|
union acpi_generic_state *state;
|
|
|
|
u32 this_index;
|
|
|
|
union acpi_operand_object *this_source_obj;
|
2005-04-17 00:20:36 +02: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 23:15:00 +02:00
|
|
|
ACPI_FUNCTION_TRACE(ut_walk_package_tree);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
state = acpi_ut_create_pkg_state(source_object, target_object, 0);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!state) {
|
2005-08-05 06:44:28 +02:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while (state) {
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Get one element of the package */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
this_index = state->pkg.index;
|
2005-04-17 00:20:36 +02:00
|
|
|
this_source_obj = (union acpi_operand_object *)
|
2005-08-05 06:44:28 +02:00
|
|
|
state->pkg.source_object->package.elements[this_index];
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for:
|
|
|
|
* 1) An uninitialized package element. It is completely
|
|
|
|
* legal to declare a package and leave it uninitialized
|
|
|
|
* 2) Not an internal object - can be a namespace node instead
|
|
|
|
* 3) Any type other than a package. Packages are handled in else
|
|
|
|
* case below.
|
|
|
|
*/
|
|
|
|
if ((!this_source_obj) ||
|
2005-08-05 06:44:28 +02:00
|
|
|
(ACPI_GET_DESCRIPTOR_TYPE(this_source_obj) !=
|
|
|
|
ACPI_DESC_TYPE_OPERAND)
|
|
|
|
|| (ACPI_GET_OBJECT_TYPE(this_source_obj) !=
|
|
|
|
ACPI_TYPE_PACKAGE)) {
|
|
|
|
status =
|
|
|
|
walk_callback(ACPI_COPY_TYPE_SIMPLE,
|
|
|
|
this_source_obj, state, context);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
state->pkg.index++;
|
2005-08-05 06:44:28 +02:00
|
|
|
while (state->pkg.index >=
|
|
|
|
state->pkg.source_object->package.count) {
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* We've handled all of the objects at this level, This means
|
|
|
|
* that we have just completed a package. That package may
|
|
|
|
* have contained one or more packages itself.
|
|
|
|
*
|
|
|
|
* Delete this state and pop the previous state (package).
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_delete_generic_state(state);
|
|
|
|
state = acpi_ut_pop_generic_state(&state_list);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Finished when there are no more states */
|
|
|
|
|
|
|
|
if (!state) {
|
|
|
|
/*
|
|
|
|
* We have handled all of the objects in the top level
|
|
|
|
* package just add the length of the package objects
|
|
|
|
* and exit
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Go back up a level and move the index past the just
|
|
|
|
* completed package object.
|
|
|
|
*/
|
|
|
|
state->pkg.index++;
|
|
|
|
}
|
2005-08-05 06:44:28 +02:00
|
|
|
} else {
|
2005-04-17 00:20:36 +02:00
|
|
|
/* This is a subobject of type package */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
status =
|
|
|
|
walk_callback(ACPI_COPY_TYPE_PACKAGE,
|
|
|
|
this_source_obj, state, context);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Push the current state and create a new one
|
|
|
|
* The callback above returned a new target package object.
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_push_generic_state(&state_list, state);
|
|
|
|
state = acpi_ut_create_pkg_state(this_source_obj,
|
|
|
|
state->pkg.
|
|
|
|
this_target_obj, 0);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!state) {
|
2008-09-27 05:29:57 +02:00
|
|
|
|
|
|
|
/* Free any stacked Update State objects */
|
|
|
|
|
|
|
|
while (state_list) {
|
|
|
|
state =
|
|
|
|
acpi_ut_pop_generic_state
|
|
|
|
(&state_list);
|
|
|
|
acpi_ut_delete_generic_state(state);
|
|
|
|
}
|
2005-08-05 06:44:28 +02:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We should never get here */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
return_ACPI_STATUS(AE_AML_INTERNAL);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2006-01-27 22:43:00 +01:00
|
|
|
* FUNCTION: acpi_ut_error, acpi_ut_warning, acpi_ut_info
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* PARAMETERS: module_name - Caller's module name (for error output)
|
|
|
|
* line_number - Caller's line number (for error output)
|
2006-01-27 22:43:00 +01:00
|
|
|
* Format - Printf format string + additional args
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2006-01-27 22:43:00 +01:00
|
|
|
* DESCRIPTION: Print message with module/line/version info
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2006-01-27 22:43:00 +01:00
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
2008-06-10 07:55:53 +02:00
|
|
|
acpi_ut_error(const char *module_name, u32 line_number, const char *format, ...)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2006-01-27 22:43:00 +01:00
|
|
|
va_list args;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-13 22:22:00 +01:00
|
|
|
acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number);
|
2006-01-27 22:43:00 +01:00
|
|
|
|
|
|
|
va_start(args, format);
|
|
|
|
acpi_os_vprintf(format, args);
|
|
|
|
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
|
2008-04-10 17:06:42 +02:00
|
|
|
va_end(args);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2006-01-27 22:43:00 +01:00
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
2008-06-10 07:55:53 +02:00
|
|
|
acpi_ut_exception(const char *module_name,
|
|
|
|
u32 line_number, acpi_status status, const char *format, ...)
|
2006-01-27 22:43:00 +01:00
|
|
|
{
|
|
|
|
va_list args;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-27 22:43:00 +01:00
|
|
|
acpi_os_printf("ACPI Exception (%s-%04d): %s, ", module_name,
|
|
|
|
line_number, acpi_format_exception(status));
|
|
|
|
|
|
|
|
va_start(args, format);
|
|
|
|
acpi_os_vprintf(format, args);
|
|
|
|
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
|
2008-06-06 21:32:39 +02:00
|
|
|
va_end(args);
|
2006-01-27 22:43:00 +01:00
|
|
|
}
|
2007-05-10 05:34:35 +02:00
|
|
|
|
2006-06-02 21:58:00 +02:00
|
|
|
EXPORT_SYMBOL(acpi_ut_exception);
|
2006-01-27 22:43:00 +01:00
|
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
2008-06-10 07:55:53 +02:00
|
|
|
acpi_ut_warning(const char *module_name,
|
|
|
|
u32 line_number, const char *format, ...)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2006-01-27 22:43:00 +01:00
|
|
|
va_list args;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-13 22:22:00 +01:00
|
|
|
acpi_os_printf("ACPI Warning (%s-%04d): ", module_name, line_number);
|
2006-01-27 22:43:00 +01:00
|
|
|
|
|
|
|
va_start(args, format);
|
|
|
|
acpi_os_vprintf(format, args);
|
|
|
|
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
|
2008-04-10 17:06:42 +02:00
|
|
|
va_end(args);
|
2006-01-27 22:43:00 +01:00
|
|
|
}
|
2006-06-27 05:04:31 +02:00
|
|
|
|
2006-01-27 22:43:00 +01:00
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
2008-06-10 07:55:53 +02:00
|
|
|
acpi_ut_info(const char *module_name, u32 line_number, const char *format, ...)
|
2006-01-27 22:43:00 +01:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
2007-02-02 17:48:19 +01:00
|
|
|
/*
|
|
|
|
* Removed module_name, line_number, and acpica version, not needed
|
|
|
|
* for info output
|
|
|
|
*/
|
|
|
|
acpi_os_printf("ACPI: ");
|
2006-01-27 22:43:00 +01:00
|
|
|
|
|
|
|
va_start(args, format);
|
|
|
|
acpi_os_vprintf(format, args);
|
2007-02-02 17:48:19 +01:00
|
|
|
acpi_os_printf("\n");
|
2008-04-10 17:06:42 +02:00
|
|
|
va_end(args);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|