2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: exutils - interpreter/scanner utilities
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DEFINE_AML_GLOBALS is tested in amlcode.h
|
|
|
|
* to determine whether certain global names should be "defined" or only
|
|
|
|
* "declared" in the current compilation. This enhances maintainability
|
|
|
|
* by enabling a single header file to embody all knowledge of the names
|
|
|
|
* in question.
|
|
|
|
*
|
|
|
|
* Exactly one module of any executable should #define DEFINE_GLOBALS
|
|
|
|
* before #including the header files which use this convention. The
|
|
|
|
* names in question will be defined and initialized in that module,
|
|
|
|
* and declared as extern in all other modules which #include those
|
|
|
|
* header files.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DEFINE_AML_GLOBALS
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
#include <acpi/acinterp.h>
|
|
|
|
#include <acpi/amlcode.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_EXECUTER
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MODULE_NAME("exutils")
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/* Local prototypes */
|
2005-08-05 06:44:28 +02:00
|
|
|
static u32 acpi_ex_digits_needed(acpi_integer value, u32 base);
|
2005-04-19 04:49:35 +02:00
|
|
|
|
|
|
|
#ifndef ACPI_NO_METHOD_EXECUTION
|
2005-04-17 00:20:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_enter_interpreter
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
2007-05-10 04:56:38 +02:00
|
|
|
* RETURN: None
|
2005-04-19 04:49:35 +02:00
|
|
|
*
|
2007-05-10 04:56:38 +02:00
|
|
|
* DESCRIPTION: Enter the interpreter execution region. Failure to enter
|
|
|
|
* the interpreter region is a fatal system error. Used in
|
|
|
|
* conjunction with exit_interpreter.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2007-05-10 04:56:38 +02:00
|
|
|
void acpi_ex_enter_interpreter(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status status;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-02-02 17:48:20 +01:00
|
|
|
ACPI_FUNCTION_TRACE(ex_enter_interpreter);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-08 22:29:00 +02:00
|
|
|
status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER);
|
2005-08-05 06:44:28 +02:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2007-05-10 04:56:38 +02:00
|
|
|
ACPI_ERROR((AE_INFO,
|
|
|
|
"Could not acquire AML Interpreter mutex"));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-05-10 04:56:38 +02:00
|
|
|
return_VOID;
|
2007-02-02 17:48:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2007-05-10 04:56:38 +02:00
|
|
|
* FUNCTION: acpi_ex_reacquire_interpreter
|
2007-02-02 17:48:20 +01:00
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: None
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2007-05-10 04:56:38 +02:00
|
|
|
* DESCRIPTION: Reacquire the interpreter execution region from within the
|
|
|
|
* interpreter code. Failure to enter the interpreter region is a
|
|
|
|
* fatal system error. Used in conjuction with
|
|
|
|
* relinquish_interpreter
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void acpi_ex_reacquire_interpreter(void)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_TRACE(ex_reacquire_interpreter);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the global serialized flag is set, do not release the interpreter,
|
|
|
|
* since it was not actually released by acpi_ex_relinquish_interpreter.
|
|
|
|
* This forces the interpreter to be single threaded.
|
|
|
|
*/
|
|
|
|
if (!acpi_gbl_all_methods_serialized) {
|
|
|
|
acpi_ex_enter_interpreter();
|
|
|
|
}
|
|
|
|
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_exit_interpreter
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: None
|
2007-03-15 09:10:36 +01:00
|
|
|
*
|
2007-05-10 04:56:38 +02:00
|
|
|
* DESCRIPTION: Exit the interpreter execution region. This is the top level
|
|
|
|
* routine used to exit the interpreter when all processing has
|
|
|
|
* been completed.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ex_exit_interpreter(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status status;
|
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(ex_exit_interpreter);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-08 22:29:00 +02:00
|
|
|
status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
|
2005-08-05 06:44:28 +02:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2007-05-10 04:56:38 +02:00
|
|
|
ACPI_ERROR((AE_INFO,
|
|
|
|
"Could not release AML Interpreter mutex"));
|
|
|
|
}
|
|
|
|
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_relinquish_interpreter
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Exit the interpreter execution region, from within the
|
|
|
|
* interpreter - before attempting an operation that will possibly
|
|
|
|
* block the running thread.
|
|
|
|
*
|
|
|
|
* Cases where the interpreter is unlocked internally
|
|
|
|
* 1) Method to be blocked on a Sleep() AML opcode
|
|
|
|
* 2) Method to be blocked on an Acquire() AML opcode
|
|
|
|
* 3) Method to be blocked on a Wait() AML opcode
|
|
|
|
* 4) Method to be blocked to acquire the global lock
|
|
|
|
* 5) Method to be blocked waiting to execute a serialized control method
|
|
|
|
* that is currently executing
|
|
|
|
* 6) About to invoke a user-installed opregion handler
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void acpi_ex_relinquish_interpreter(void)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_TRACE(ex_relinquish_interpreter);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the global serialized flag is set, do not release the interpreter.
|
|
|
|
* This forces the interpreter to be single threaded.
|
|
|
|
*/
|
|
|
|
if (!acpi_gbl_all_methods_serialized) {
|
|
|
|
acpi_ex_exit_interpreter();
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_truncate_for32bit_table
|
|
|
|
*
|
|
|
|
* PARAMETERS: obj_desc - Object to be truncated
|
|
|
|
*
|
|
|
|
* RETURN: none
|
|
|
|
*
|
2007-05-10 04:56:38 +02:00
|
|
|
* DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
|
|
|
|
* 32-bit, as determined by the revision of the DSDT.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* Object must be a valid number and we must be executing
|
2008-04-10 17:06:37 +02:00
|
|
|
* a control method. NS node could be there for AML_INT_NAMEPATH_OP.
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
if ((!obj_desc) ||
|
2008-04-10 17:06:37 +02:00
|
|
|
(ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) ||
|
2005-08-05 06:44:28 +02:00
|
|
|
(ACPI_GET_OBJECT_TYPE(obj_desc) != ACPI_TYPE_INTEGER)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (acpi_gbl_integer_byte_width == 4) {
|
|
|
|
/*
|
|
|
|
* We are running a method that exists in a 32-bit ACPI table.
|
|
|
|
* Truncate the value to 32 bits by zeroing out the upper 32-bit field
|
|
|
|
*/
|
|
|
|
obj_desc->integer.value &= (acpi_integer) ACPI_UINT32_MAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_acquire_global_lock
|
|
|
|
*
|
|
|
|
* PARAMETERS: field_flags - Flags with Lock rule:
|
|
|
|
* always_lock or never_lock
|
|
|
|
*
|
2008-04-10 17:06:37 +02:00
|
|
|
* RETURN: None
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2008-04-10 17:06:37 +02:00
|
|
|
* DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
|
|
|
|
* flags specifiy that it is to be obtained before field access.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
void acpi_ex_acquire_global_lock(u32 field_flags)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status status;
|
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(ex_acquire_global_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
/* Only use the lock if the always_lock bit is set */
|
|
|
|
|
|
|
|
if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
|
|
|
|
return_VOID;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
/* Attempt to get the global lock, wait forever */
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER,
|
|
|
|
acpi_gbl_global_lock_mutex,
|
|
|
|
acpi_os_get_thread_id());
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
ACPI_EXCEPTION((AE_INFO, status,
|
|
|
|
"Could not acquire Global Lock"));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
return_VOID;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_release_global_lock
|
|
|
|
*
|
2008-04-10 17:06:37 +02:00
|
|
|
* PARAMETERS: field_flags - Flags with Lock rule:
|
|
|
|
* always_lock or never_lock
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* RETURN: None
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2008-04-10 17:06:37 +02:00
|
|
|
* DESCRIPTION: Release the ACPI hardware Global Lock
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
void acpi_ex_release_global_lock(u32 field_flags)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status status;
|
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(ex_release_global_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
/* Only use the lock if the always_lock bit is set */
|
|
|
|
|
|
|
|
if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
/* Release the global lock */
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2006-10-02 06:00:00 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
/* Report the error, but there isn't much else we can do */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-10 17:06:37 +02:00
|
|
|
ACPI_EXCEPTION((AE_INFO, status,
|
|
|
|
"Could not release Global Lock"));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_digits_needed
|
|
|
|
*
|
|
|
|
* PARAMETERS: Value - Value to be represented
|
|
|
|
* Base - Base of representation
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* RETURN: The number of digits.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Calculate the number of digits needed to represent the Value
|
|
|
|
* in the given Base (Radix)
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
static u32 acpi_ex_digits_needed(acpi_integer value, u32 base)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 num_digits;
|
|
|
|
acpi_integer current_value;
|
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(ex_digits_needed);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* acpi_integer is unsigned, so we don't worry about a '-' prefix */
|
|
|
|
|
|
|
|
if (value == 0) {
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 01:03:00 +02:00
|
|
|
return_UINT32(1);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
current_value = value;
|
|
|
|
num_digits = 0;
|
|
|
|
|
|
|
|
/* Count the digits in the requested base */
|
|
|
|
|
|
|
|
while (current_value) {
|
2005-08-05 06:44:28 +02:00
|
|
|
(void)acpi_ut_short_divide(current_value, base, ¤t_value,
|
|
|
|
NULL);
|
2005-04-17 00:20:36 +02:00
|
|
|
num_digits++;
|
|
|
|
}
|
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 01:03:00 +02:00
|
|
|
return_UINT32(num_digits);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_eisa_id_to_string
|
|
|
|
*
|
|
|
|
* PARAMETERS: numeric_id - EISA ID to be converted
|
|
|
|
* out_string - Where to put the converted string (8 bytes)
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-04-17 00:20:36 +02:00
|
|
|
* DESCRIPTION: Convert a numeric EISA ID to string representation
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ex_eisa_id_to_string(u32 numeric_id, char *out_string)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 eisa_id;
|
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
|
|
|
|
|
|
|
/* Swap ID to big-endian to get contiguous bits */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
eisa_id = acpi_ut_dword_byte_swap(numeric_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
out_string[0] = (char)('@' + (((unsigned long)eisa_id >> 26) & 0x1f));
|
|
|
|
out_string[1] = (char)('@' + ((eisa_id >> 21) & 0x1f));
|
|
|
|
out_string[2] = (char)('@' + ((eisa_id >> 16) & 0x1f));
|
|
|
|
out_string[3] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 12);
|
|
|
|
out_string[4] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 8);
|
|
|
|
out_string[5] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 4);
|
|
|
|
out_string[6] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 0);
|
2005-04-17 00:20:36 +02:00
|
|
|
out_string[7] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_unsigned_integer_to_string
|
|
|
|
*
|
|
|
|
* PARAMETERS: Value - Value to be converted
|
|
|
|
* out_string - Where to put the converted string (8 bytes)
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* RETURN: None, string
|
|
|
|
*
|
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
|
|
|
* DESCRIPTION: Convert a number to string representation. Assumes string
|
2005-04-19 04:49:35 +02:00
|
|
|
* buffer is large enough to hold the string.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ex_unsigned_integer_to_string(acpi_integer value, char *out_string)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 count;
|
|
|
|
u32 digits_needed;
|
|
|
|
u32 remainder;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
digits_needed = acpi_ex_digits_needed(value, 10);
|
2005-04-17 00:20:36 +02:00
|
|
|
out_string[digits_needed] = 0;
|
|
|
|
|
|
|
|
for (count = digits_needed; count > 0; count--) {
|
2005-08-05 06:44:28 +02:00
|
|
|
(void)acpi_ut_short_divide(value, 10, &value, &remainder);
|
|
|
|
out_string[count - 1] = (char)('0' + remainder);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|