2005-04-17 06:20:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: utglobal - Global variables for the ACPI subsystem
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2012-01-12 13:27:23 +08:00
|
|
|
* Copyright (C) 2000 - 2012, Intel Corp.
|
2005-04-17 06:20:36 +08: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 DEFINE_ACPI_GLOBALS
|
|
|
|
|
2011-10-27 04:22:14 +08:00
|
|
|
#include <linux/export.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 13:30:03 +08:00
|
|
|
#include "accommon.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_UTILITIES
|
2008-12-30 09:45:17 +08:00
|
|
|
ACPI_MODULE_NAME("utglobal")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Static global variable initialization.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
/*
|
|
|
|
* We want the debug switches statically initialized so they
|
|
|
|
* are already set when the debugger is entered.
|
|
|
|
*/
|
|
|
|
/* Debug switch - level and trace mask */
|
2005-08-05 12:44:28 +08:00
|
|
|
u32 acpi_dbg_level = ACPI_DEBUG_DEFAULT;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Debug switch - layer (component) mask */
|
|
|
|
|
2008-11-14 07:30:13 +08:00
|
|
|
u32 acpi_dbg_layer = 0;
|
2005-08-05 12:44:28 +08:00
|
|
|
u32 acpi_gbl_nesting_level = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Debugger globals */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
u8 acpi_gbl_db_terminate_threads = FALSE;
|
|
|
|
u8 acpi_gbl_abort_method = FALSE;
|
|
|
|
u8 acpi_gbl_method_executing = FALSE;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* System flags */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
u32 acpi_gbl_startup_flags = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* System starts uninitialized */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
u8 acpi_gbl_shutdown = TRUE;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT] = {
|
2005-04-17 06:20:36 +08:00
|
|
|
"\\_S0_",
|
|
|
|
"\\_S1_",
|
|
|
|
"\\_S2_",
|
|
|
|
"\\_S3_",
|
|
|
|
"\\_S4_",
|
|
|
|
"\\_S5_"
|
|
|
|
};
|
|
|
|
|
2009-06-29 13:39:29 +08:00
|
|
|
const char *acpi_gbl_lowest_dstate_names[ACPI_NUM_sx_w_METHODS] = {
|
|
|
|
"_S0W",
|
|
|
|
"_S1W",
|
|
|
|
"_S2W",
|
|
|
|
"_S3W",
|
|
|
|
"_S4W"
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *acpi_gbl_highest_dstate_names[ACPI_NUM_sx_d_METHODS] = {
|
2005-04-17 06:20:36 +08:00
|
|
|
"_S1D",
|
|
|
|
"_S2D",
|
|
|
|
"_S3D",
|
|
|
|
"_S4D"
|
|
|
|
};
|
|
|
|
|
2007-02-03 00:48:19 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Namespace globals
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Predefined ACPI Names (Built-in to the Interpreter)
|
|
|
|
*
|
|
|
|
* NOTES:
|
|
|
|
* 1) _SB_ is defined to be a device to allow \_SB_._INI to be run
|
|
|
|
* during the initialization sequence.
|
|
|
|
* 2) _TZ_ is defined to be a thermal zone in order to allow ASL code to
|
2010-10-18 08:44:34 +08:00
|
|
|
* perform a Notify() operation on it. 09/2010: Changed to type Device.
|
|
|
|
* This still allows notifies, but does not confuse host code that
|
|
|
|
* searches for valid thermal_zone objects.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2005-10-21 12:00:00 +08:00
|
|
|
const struct acpi_predefined_names acpi_gbl_pre_defined_names[] = {
|
|
|
|
{"_GPE", ACPI_TYPE_LOCAL_SCOPE, NULL},
|
|
|
|
{"_PR_", ACPI_TYPE_LOCAL_SCOPE, NULL},
|
|
|
|
{"_SB_", ACPI_TYPE_DEVICE, NULL},
|
|
|
|
{"_SI_", ACPI_TYPE_LOCAL_SCOPE, NULL},
|
2010-10-18 08:44:34 +08:00
|
|
|
{"_TZ_", ACPI_TYPE_DEVICE, NULL},
|
2005-10-21 12:00:00 +08:00
|
|
|
{"_REV", ACPI_TYPE_INTEGER, (char *)ACPI_CA_SUPPORT_LEVEL},
|
|
|
|
{"_OS_", ACPI_TYPE_STRING, ACPI_OS_NAME},
|
|
|
|
{"_GL_", ACPI_TYPE_MUTEX, (char *)1},
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#if !defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY)
|
2005-10-21 12:00:00 +08:00
|
|
|
{"_OSI", ACPI_TYPE_METHOD, (char *)1},
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Table terminator */
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
{NULL, ACPI_TYPE_ANY, NULL}
|
2005-04-19 10:49:35 +08:00
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-02-14 18:14:27 +08:00
|
|
|
#if (!ACPI_REDUCED_HARDWARE)
|
2005-04-17 06:20:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Event and Hardware globals
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
struct acpi_bit_register_info acpi_gbl_bit_register_info[ACPI_NUM_BITREG] = {
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Name Parent Register Register Bit Position Register Bit Mask */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
/* ACPI_BITREG_TIMER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_TIMER_STATUS,
|
|
|
|
ACPI_BITMASK_TIMER_STATUS},
|
|
|
|
/* ACPI_BITREG_BUS_MASTER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_BUS_MASTER_STATUS,
|
|
|
|
ACPI_BITMASK_BUS_MASTER_STATUS},
|
|
|
|
/* ACPI_BITREG_GLOBAL_LOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_GLOBAL_LOCK_STATUS,
|
|
|
|
ACPI_BITMASK_GLOBAL_LOCK_STATUS},
|
|
|
|
/* ACPI_BITREG_POWER_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_POWER_BUTTON_STATUS,
|
|
|
|
ACPI_BITMASK_POWER_BUTTON_STATUS},
|
|
|
|
/* ACPI_BITREG_SLEEP_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_SLEEP_BUTTON_STATUS,
|
|
|
|
ACPI_BITMASK_SLEEP_BUTTON_STATUS},
|
|
|
|
/* ACPI_BITREG_RT_CLOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_RT_CLOCK_STATUS,
|
|
|
|
ACPI_BITMASK_RT_CLOCK_STATUS},
|
|
|
|
/* ACPI_BITREG_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_WAKE_STATUS,
|
|
|
|
ACPI_BITMASK_WAKE_STATUS},
|
|
|
|
/* ACPI_BITREG_PCIEXP_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
|
|
|
|
ACPI_BITPOSITION_PCIEXP_WAKE_STATUS,
|
|
|
|
ACPI_BITMASK_PCIEXP_WAKE_STATUS},
|
|
|
|
|
|
|
|
/* ACPI_BITREG_TIMER_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
|
|
|
|
ACPI_BITPOSITION_TIMER_ENABLE,
|
|
|
|
ACPI_BITMASK_TIMER_ENABLE},
|
|
|
|
/* ACPI_BITREG_GLOBAL_LOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
|
|
|
|
ACPI_BITPOSITION_GLOBAL_LOCK_ENABLE,
|
|
|
|
ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
|
|
|
|
/* ACPI_BITREG_POWER_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
|
|
|
|
ACPI_BITPOSITION_POWER_BUTTON_ENABLE,
|
|
|
|
ACPI_BITMASK_POWER_BUTTON_ENABLE},
|
|
|
|
/* ACPI_BITREG_SLEEP_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
|
|
|
|
ACPI_BITPOSITION_SLEEP_BUTTON_ENABLE,
|
|
|
|
ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
|
|
|
|
/* ACPI_BITREG_RT_CLOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
|
|
|
|
ACPI_BITPOSITION_RT_CLOCK_ENABLE,
|
|
|
|
ACPI_BITMASK_RT_CLOCK_ENABLE},
|
|
|
|
/* ACPI_BITREG_PCIEXP_WAKE_DISABLE */ {ACPI_REGISTER_PM1_ENABLE,
|
|
|
|
ACPI_BITPOSITION_PCIEXP_WAKE_DISABLE,
|
|
|
|
ACPI_BITMASK_PCIEXP_WAKE_DISABLE},
|
|
|
|
|
|
|
|
/* ACPI_BITREG_SCI_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
|
|
|
|
ACPI_BITPOSITION_SCI_ENABLE,
|
|
|
|
ACPI_BITMASK_SCI_ENABLE},
|
|
|
|
/* ACPI_BITREG_BUS_MASTER_RLD */ {ACPI_REGISTER_PM1_CONTROL,
|
|
|
|
ACPI_BITPOSITION_BUS_MASTER_RLD,
|
|
|
|
ACPI_BITMASK_BUS_MASTER_RLD},
|
|
|
|
/* ACPI_BITREG_GLOBAL_LOCK_RELEASE */ {ACPI_REGISTER_PM1_CONTROL,
|
|
|
|
ACPI_BITPOSITION_GLOBAL_LOCK_RELEASE,
|
|
|
|
ACPI_BITMASK_GLOBAL_LOCK_RELEASE},
|
2009-02-18 14:31:05 +08:00
|
|
|
/* ACPI_BITREG_SLEEP_TYPE */ {ACPI_REGISTER_PM1_CONTROL,
|
|
|
|
ACPI_BITPOSITION_SLEEP_TYPE,
|
|
|
|
ACPI_BITMASK_SLEEP_TYPE},
|
2005-08-05 12:44:28 +08:00
|
|
|
/* ACPI_BITREG_SLEEP_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
|
|
|
|
ACPI_BITPOSITION_SLEEP_ENABLE,
|
|
|
|
ACPI_BITMASK_SLEEP_ENABLE},
|
|
|
|
|
|
|
|
/* ACPI_BITREG_ARB_DIS */ {ACPI_REGISTER_PM2_CONTROL,
|
|
|
|
ACPI_BITPOSITION_ARB_DISABLE,
|
|
|
|
ACPI_BITMASK_ARB_DISABLE}
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
struct acpi_fixed_event_info acpi_gbl_fixed_event_info[ACPI_NUM_FIXED_EVENTS] = {
|
|
|
|
/* ACPI_EVENT_PMTIMER */ {ACPI_BITREG_TIMER_STATUS,
|
|
|
|
ACPI_BITREG_TIMER_ENABLE,
|
|
|
|
ACPI_BITMASK_TIMER_STATUS,
|
|
|
|
ACPI_BITMASK_TIMER_ENABLE},
|
|
|
|
/* ACPI_EVENT_GLOBAL */ {ACPI_BITREG_GLOBAL_LOCK_STATUS,
|
|
|
|
ACPI_BITREG_GLOBAL_LOCK_ENABLE,
|
|
|
|
ACPI_BITMASK_GLOBAL_LOCK_STATUS,
|
|
|
|
ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
|
|
|
|
/* ACPI_EVENT_POWER_BUTTON */ {ACPI_BITREG_POWER_BUTTON_STATUS,
|
|
|
|
ACPI_BITREG_POWER_BUTTON_ENABLE,
|
|
|
|
ACPI_BITMASK_POWER_BUTTON_STATUS,
|
|
|
|
ACPI_BITMASK_POWER_BUTTON_ENABLE},
|
|
|
|
/* ACPI_EVENT_SLEEP_BUTTON */ {ACPI_BITREG_SLEEP_BUTTON_STATUS,
|
|
|
|
ACPI_BITREG_SLEEP_BUTTON_ENABLE,
|
|
|
|
ACPI_BITMASK_SLEEP_BUTTON_STATUS,
|
|
|
|
ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
|
|
|
|
/* ACPI_EVENT_RTC */ {ACPI_BITREG_RT_CLOCK_STATUS,
|
|
|
|
ACPI_BITREG_RT_CLOCK_ENABLE,
|
|
|
|
ACPI_BITMASK_RT_CLOCK_STATUS,
|
|
|
|
ACPI_BITMASK_RT_CLOCK_ENABLE},
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
2012-02-14 18:14:27 +08:00
|
|
|
#endif /* !ACPI_REDUCED_HARDWARE */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_init_globals
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
2008-08-04 10:30:09 +08:00
|
|
|
* RETURN: Status
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2012-07-16 09:52:27 +08:00
|
|
|
* DESCRIPTION: Initialize ACPICA globals. All globals that require specific
|
|
|
|
* initialization should be initialized here. This allows for
|
|
|
|
* a warm restart.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-08-04 10:30:09 +08:00
|
|
|
acpi_status acpi_ut_init_globals(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_status status;
|
|
|
|
u32 i;
|
2005-04-17 06:20:36 +08: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-22 05:15:00 +08:00
|
|
|
ACPI_FUNCTION_TRACE(ut_init_globals);
|
2005-04-17 06:20:36 +08: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 12:00:00 +08:00
|
|
|
/* Create all memory caches */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ut_create_caches();
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2008-08-04 10:30:09 +08:00
|
|
|
return_ACPI_STATUS(status);
|
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 12:00:00 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-01-12 13:10:32 +08:00
|
|
|
/* Address Range lists */
|
|
|
|
|
|
|
|
for (i = 0; i < ACPI_ADDRESS_RANGE_MAX; i++) {
|
|
|
|
acpi_gbl_address_range_list[i] = NULL;
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Mutex locked flags */
|
|
|
|
|
2006-06-09 04:29:00 +08:00
|
|
|
for (i = 0; i < ACPI_NUM_MUTEX; i++) {
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_mutex_info[i].mutex = NULL;
|
|
|
|
acpi_gbl_mutex_info[i].thread_id = ACPI_MUTEX_NOT_ACQUIRED;
|
|
|
|
acpi_gbl_mutex_info[i].use_count = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-12-03 07:27:00 +08:00
|
|
|
for (i = 0; i < ACPI_NUM_OWNERID_MASKS; i++) {
|
|
|
|
acpi_gbl_owner_id_mask[i] = 0;
|
|
|
|
}
|
2009-02-18 15:03:30 +08:00
|
|
|
|
2012-07-12 09:40:10 +08:00
|
|
|
/* Last owner_ID is never valid */
|
2009-02-18 15:03:30 +08:00
|
|
|
|
|
|
|
acpi_gbl_owner_id_mask[ACPI_NUM_OWNERID_MASKS - 1] = 0x80000000;
|
2005-12-03 07:27:00 +08:00
|
|
|
|
2012-02-14 18:14:27 +08:00
|
|
|
#if (!ACPI_REDUCED_HARDWARE)
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* GPE support */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_gpe_xrupt_list_head = NULL;
|
|
|
|
acpi_gbl_gpe_fadt_blocks[0] = NULL;
|
|
|
|
acpi_gbl_gpe_fadt_blocks[1] = NULL;
|
2008-12-30 09:45:17 +08:00
|
|
|
acpi_current_gpe_count = 0;
|
2010-12-13 13:36:15 +08:00
|
|
|
acpi_gbl_all_gpes_initialized = FALSE;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-02-14 18:14:27 +08:00
|
|
|
acpi_gbl_global_event_handler = NULL;
|
|
|
|
|
|
|
|
#endif /* !ACPI_REDUCED_HARDWARE */
|
|
|
|
|
2008-04-10 23:06:38 +08:00
|
|
|
/* Global handlers */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-03 11:08:19 +08:00
|
|
|
acpi_gbl_global_notify[0].handler = NULL;
|
|
|
|
acpi_gbl_global_notify[1].handler = NULL;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_exception_handler = NULL;
|
|
|
|
acpi_gbl_init_handler = NULL;
|
2008-04-10 23:06:38 +08:00
|
|
|
acpi_gbl_table_handler = NULL;
|
2010-08-06 09:35:51 +08:00
|
|
|
acpi_gbl_interface_handler = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Global Lock support */
|
|
|
|
|
2006-06-24 05:04:00 +08:00
|
|
|
acpi_gbl_global_lock_semaphore = NULL;
|
2007-02-03 00:48:18 +08:00
|
|
|
acpi_gbl_global_lock_mutex = NULL;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_global_lock_acquired = FALSE;
|
|
|
|
acpi_gbl_global_lock_handle = 0;
|
2008-11-12 15:34:52 +08:00
|
|
|
acpi_gbl_global_lock_present = FALSE;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Miscellaneous variables */
|
|
|
|
|
2010-04-07 11:05:11 +08:00
|
|
|
acpi_gbl_DSDT = NULL;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_cm_single_step = FALSE;
|
|
|
|
acpi_gbl_db_terminate_threads = FALSE;
|
|
|
|
acpi_gbl_shutdown = FALSE;
|
|
|
|
acpi_gbl_ns_lookup_count = 0;
|
|
|
|
acpi_gbl_ps_find_count = 0;
|
|
|
|
acpi_gbl_acpi_hardware_present = TRUE;
|
2005-12-03 07:27:00 +08:00
|
|
|
acpi_gbl_last_owner_id_index = 0;
|
|
|
|
acpi_gbl_next_owner_id_offset = 0;
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
acpi_gbl_trace_method_name = 0;
|
|
|
|
acpi_gbl_trace_dbg_level = 0;
|
|
|
|
acpi_gbl_trace_dbg_layer = 0;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_debugger_configuration = DEBUGGER_THREADING;
|
|
|
|
acpi_gbl_db_output_flags = ACPI_DB_CONSOLE_OUTPUT;
|
2009-03-19 09:37:47 +08:00
|
|
|
acpi_gbl_osi_data = 0;
|
2010-08-06 09:35:51 +08:00
|
|
|
acpi_gbl_osi_mutex = NULL;
|
2011-02-14 16:13:25 +08:00
|
|
|
acpi_gbl_reg_methods_executed = FALSE;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Hardware oriented */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_events_initialized = FALSE;
|
|
|
|
acpi_gbl_system_awake_and_running = TRUE;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Namespace */
|
|
|
|
|
2009-08-13 14:03:15 +08:00
|
|
|
acpi_gbl_module_code_list = NULL;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_root_node = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
acpi_gbl_root_node_struct.name.integer = ACPI_ROOT_NAME;
|
2006-03-18 05:44:00 +08:00
|
|
|
acpi_gbl_root_node_struct.descriptor_type = ACPI_DESC_TYPE_NAMED;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_root_node_struct.type = ACPI_TYPE_DEVICE;
|
2010-05-26 11:53:07 +08:00
|
|
|
acpi_gbl_root_node_struct.parent = NULL;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_gbl_root_node_struct.child = NULL;
|
|
|
|
acpi_gbl_root_node_struct.peer = NULL;
|
|
|
|
acpi_gbl_root_node_struct.object = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifdef ACPI_DEBUG_OUTPUT
|
2008-04-10 23:06:40 +08:00
|
|
|
acpi_gbl_lowest_stack_pointer = ACPI_CAST_PTR(acpi_size, ACPI_SIZE_MAX);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
|
2007-02-03 00:48:23 +08:00
|
|
|
#ifdef ACPI_DBG_TRACK_ALLOCATIONS
|
|
|
|
acpi_gbl_display_final_mem_stats = FALSE;
|
|
|
|
#endif
|
|
|
|
|
2008-08-04 10:30:09 +08:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2006-10-03 12:00:00 +08:00
|
|
|
|
2008-12-30 09:45:17 +08:00
|
|
|
ACPI_EXPORT_SYMBOL(acpi_gbl_FADT)
|
2006-10-03 12:00:00 +08:00
|
|
|
ACPI_EXPORT_SYMBOL(acpi_dbg_level)
|
2008-09-27 11:08:41 +08:00
|
|
|
ACPI_EXPORT_SYMBOL(acpi_dbg_layer)
|
2008-12-30 09:45:17 +08:00
|
|
|
ACPI_EXPORT_SYMBOL(acpi_current_gpe_count)
|