blob: a3ab9d9da29971caf16195765f2058edce83d05c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: utglobal - Global variables for the ACPI subsystem
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#define DEFINE_ACPI_GLOBALS
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050047#include "accommon.h"
48#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_UTILITIES
Bob Mooree97d6bf2008-12-30 09:45:17 +080051ACPI_MODULE_NAME("utglobal")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore44f6c012005-04-18 22:49:35 -040053/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * Static global variable initialization.
56 *
57 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * We want the debug switches statically initialized so they
60 * are already set when the debugger is entered.
61 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/* Debug switch - level and trace mask */
Len Brown4be44fc2005-08-05 00:44:28 -040063u32 acpi_dbg_level = ACPI_DEBUG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* Debug switch - layer (component) mask */
66
Bjorn Helgaase76f4272008-11-13 17:30:13 -060067u32 acpi_dbg_layer = 0;
Len Brown4be44fc2005-08-05 00:44:28 -040068u32 acpi_gbl_nesting_level = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/* Debugger globals */
71
Len Brown4be44fc2005-08-05 00:44:28 -040072u8 acpi_gbl_db_terminate_threads = FALSE;
73u8 acpi_gbl_abort_method = FALSE;
74u8 acpi_gbl_method_executing = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* System flags */
77
Len Brown4be44fc2005-08-05 00:44:28 -040078u32 acpi_gbl_startup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* System starts uninitialized */
81
Len Brown4be44fc2005-08-05 00:44:28 -040082u8 acpi_gbl_shutdown = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Len Brown4be44fc2005-08-05 00:44:28 -040084const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 "\\_S0_",
86 "\\_S1_",
87 "\\_S2_",
88 "\\_S3_",
89 "\\_S4_",
90 "\\_S5_"
91};
92
Len Brown4be44fc2005-08-05 00:44:28 -040093const char *acpi_gbl_highest_dstate_names[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 "_S1D",
95 "_S2D",
96 "_S3D",
97 "_S4D"
98};
99
Robert Moore44f6c012005-04-18 22:49:35 -0400100/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
Bob Moore84fb2c92007-02-02 19:48:19 +0300102 * FUNCTION: acpi_format_exception
103 *
104 * PARAMETERS: Status - The acpi_status code to be formatted
105 *
106 * RETURN: A string containing the exception text. A valid pointer is
107 * always returned.
108 *
109 * DESCRIPTION: This function translates an ACPI exception into an ASCII string
110 * It is here instead of utxface.c so it is always present.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
112 ******************************************************************************/
113
Bob Moore84fb2c92007-02-02 19:48:19 +0300114const char *acpi_format_exception(acpi_status status)
115{
116 const char *exception = NULL;
117
118 ACPI_FUNCTION_ENTRY();
119
120 exception = acpi_ut_validate_exception(status);
121 if (!exception) {
122
123 /* Exception code was not recognized */
124
125 ACPI_ERROR((AE_INFO,
126 "Unknown exception code: 0x%8.8X", status));
127
128 exception = "UNKNOWN_STATUS_CODE";
Andrew Morton3e0d69e2007-08-25 01:28:20 -0400129 dump_stack();
Bob Moore84fb2c92007-02-02 19:48:19 +0300130 }
131
132 return (ACPI_CAST_PTR(const char, exception));
133}
134
135ACPI_EXPORT_SYMBOL(acpi_format_exception)
136
137/*******************************************************************************
138 *
139 * Namespace globals
140 *
141 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Predefined ACPI Names (Built-in to the Interpreter)
144 *
145 * NOTES:
146 * 1) _SB_ is defined to be a device to allow \_SB_._INI to be run
147 * during the initialization sequence.
148 * 2) _TZ_ is defined to be a thermal zone in order to allow ASL code to
149 * perform a Notify() operation on it.
150 */
Bob Moore08978312005-10-21 00:00:00 -0400151const struct acpi_predefined_names acpi_gbl_pre_defined_names[] = {
152 {"_GPE", ACPI_TYPE_LOCAL_SCOPE, NULL},
153 {"_PR_", ACPI_TYPE_LOCAL_SCOPE, NULL},
154 {"_SB_", ACPI_TYPE_DEVICE, NULL},
155 {"_SI_", ACPI_TYPE_LOCAL_SCOPE, NULL},
156 {"_TZ_", ACPI_TYPE_THERMAL, NULL},
157 {"_REV", ACPI_TYPE_INTEGER, (char *)ACPI_CA_SUPPORT_LEVEL},
158 {"_OS_", ACPI_TYPE_STRING, ACPI_OS_NAME},
159 {"_GL_", ACPI_TYPE_MUTEX, (char *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161#if !defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY)
Bob Moore08978312005-10-21 00:00:00 -0400162 {"_OSI", ACPI_TYPE_METHOD, (char *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Robert Moore44f6c012005-04-18 22:49:35 -0400165 /* Table terminator */
166
Bob Moore08978312005-10-21 00:00:00 -0400167 {NULL, ACPI_TYPE_ANY, NULL}
Robert Moore44f6c012005-04-18 22:49:35 -0400168};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/*
171 * Properties of the ACPI Object Types, both internal and external.
172 * The table is indexed by values of acpi_object_type
173 */
Len Brown4be44fc2005-08-05 00:44:28 -0400174const u8 acpi_gbl_ns_properties[] = {
175 ACPI_NS_NORMAL, /* 00 Any */
176 ACPI_NS_NORMAL, /* 01 Number */
177 ACPI_NS_NORMAL, /* 02 String */
178 ACPI_NS_NORMAL, /* 03 Buffer */
179 ACPI_NS_NORMAL, /* 04 Package */
180 ACPI_NS_NORMAL, /* 05 field_unit */
181 ACPI_NS_NEWSCOPE, /* 06 Device */
182 ACPI_NS_NORMAL, /* 07 Event */
183 ACPI_NS_NEWSCOPE, /* 08 Method */
184 ACPI_NS_NORMAL, /* 09 Mutex */
185 ACPI_NS_NORMAL, /* 10 Region */
186 ACPI_NS_NEWSCOPE, /* 11 Power */
187 ACPI_NS_NEWSCOPE, /* 12 Processor */
188 ACPI_NS_NEWSCOPE, /* 13 Thermal */
189 ACPI_NS_NORMAL, /* 14 buffer_field */
190 ACPI_NS_NORMAL, /* 15 ddb_handle */
191 ACPI_NS_NORMAL, /* 16 Debug Object */
192 ACPI_NS_NORMAL, /* 17 def_field */
193 ACPI_NS_NORMAL, /* 18 bank_field */
194 ACPI_NS_NORMAL, /* 19 index_field */
195 ACPI_NS_NORMAL, /* 20 Reference */
196 ACPI_NS_NORMAL, /* 21 Alias */
197 ACPI_NS_NORMAL, /* 22 method_alias */
198 ACPI_NS_NORMAL, /* 23 Notify */
199 ACPI_NS_NORMAL, /* 24 Address Handler */
200 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 25 Resource Desc */
201 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 26 Resource Field */
202 ACPI_NS_NEWSCOPE, /* 27 Scope */
203 ACPI_NS_NORMAL, /* 28 Extra */
204 ACPI_NS_NORMAL, /* 29 Data */
205 ACPI_NS_NORMAL /* 30 Invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/* Hex to ASCII conversion table */
209
Len Brown4be44fc2005-08-05 00:44:28 -0400210static const char acpi_gbl_hex_to_ascii[] = {
211 '0', '1', '2', '3', '4', '5', '6', '7',
212 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
Robert Moore44f6c012005-04-18 22:49:35 -0400213};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Robert Moore44f6c012005-04-18 22:49:35 -0400215/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
217 * FUNCTION: acpi_ut_hex_to_ascii_char
218 *
219 * PARAMETERS: Integer - Contains the hex digit
220 * Position - bit position of the digit within the
Robert Moore44f6c012005-04-18 22:49:35 -0400221 * integer (multiple of 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
Robert Moore44f6c012005-04-18 22:49:35 -0400223 * RETURN: The converted Ascii character
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *
Robert Moore44f6c012005-04-18 22:49:35 -0400225 * DESCRIPTION: Convert a hex digit to an Ascii character
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 *
Robert Moore44f6c012005-04-18 22:49:35 -0400227 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Len Brown4be44fc2005-08-05 00:44:28 -0400229char acpi_ut_hex_to_ascii_char(acpi_integer integer, u32 position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231
232 return (acpi_gbl_hex_to_ascii[(integer >> position) & 0xF]);
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/******************************************************************************
236 *
237 * Event and Hardware globals
238 *
239 ******************************************************************************/
240
Len Brown4be44fc2005-08-05 00:44:28 -0400241struct acpi_bit_register_info acpi_gbl_bit_register_info[ACPI_NUM_BITREG] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* Name Parent Register Register Bit Position Register Bit Mask */
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244 /* ACPI_BITREG_TIMER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
245 ACPI_BITPOSITION_TIMER_STATUS,
246 ACPI_BITMASK_TIMER_STATUS},
247 /* ACPI_BITREG_BUS_MASTER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
248 ACPI_BITPOSITION_BUS_MASTER_STATUS,
249 ACPI_BITMASK_BUS_MASTER_STATUS},
250 /* ACPI_BITREG_GLOBAL_LOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
251 ACPI_BITPOSITION_GLOBAL_LOCK_STATUS,
252 ACPI_BITMASK_GLOBAL_LOCK_STATUS},
253 /* ACPI_BITREG_POWER_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
254 ACPI_BITPOSITION_POWER_BUTTON_STATUS,
255 ACPI_BITMASK_POWER_BUTTON_STATUS},
256 /* ACPI_BITREG_SLEEP_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
257 ACPI_BITPOSITION_SLEEP_BUTTON_STATUS,
258 ACPI_BITMASK_SLEEP_BUTTON_STATUS},
259 /* ACPI_BITREG_RT_CLOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
260 ACPI_BITPOSITION_RT_CLOCK_STATUS,
261 ACPI_BITMASK_RT_CLOCK_STATUS},
262 /* ACPI_BITREG_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
263 ACPI_BITPOSITION_WAKE_STATUS,
264 ACPI_BITMASK_WAKE_STATUS},
265 /* ACPI_BITREG_PCIEXP_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
266 ACPI_BITPOSITION_PCIEXP_WAKE_STATUS,
267 ACPI_BITMASK_PCIEXP_WAKE_STATUS},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Len Brown4be44fc2005-08-05 00:44:28 -0400269 /* ACPI_BITREG_TIMER_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
270 ACPI_BITPOSITION_TIMER_ENABLE,
271 ACPI_BITMASK_TIMER_ENABLE},
272 /* ACPI_BITREG_GLOBAL_LOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
273 ACPI_BITPOSITION_GLOBAL_LOCK_ENABLE,
274 ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
275 /* ACPI_BITREG_POWER_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
276 ACPI_BITPOSITION_POWER_BUTTON_ENABLE,
277 ACPI_BITMASK_POWER_BUTTON_ENABLE},
278 /* ACPI_BITREG_SLEEP_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
279 ACPI_BITPOSITION_SLEEP_BUTTON_ENABLE,
280 ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
281 /* ACPI_BITREG_RT_CLOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
282 ACPI_BITPOSITION_RT_CLOCK_ENABLE,
283 ACPI_BITMASK_RT_CLOCK_ENABLE},
Len Brown4be44fc2005-08-05 00:44:28 -0400284 /* ACPI_BITREG_PCIEXP_WAKE_DISABLE */ {ACPI_REGISTER_PM1_ENABLE,
285 ACPI_BITPOSITION_PCIEXP_WAKE_DISABLE,
286 ACPI_BITMASK_PCIEXP_WAKE_DISABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Len Brown4be44fc2005-08-05 00:44:28 -0400288 /* ACPI_BITREG_SCI_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
289 ACPI_BITPOSITION_SCI_ENABLE,
290 ACPI_BITMASK_SCI_ENABLE},
291 /* ACPI_BITREG_BUS_MASTER_RLD */ {ACPI_REGISTER_PM1_CONTROL,
292 ACPI_BITPOSITION_BUS_MASTER_RLD,
293 ACPI_BITMASK_BUS_MASTER_RLD},
294 /* ACPI_BITREG_GLOBAL_LOCK_RELEASE */ {ACPI_REGISTER_PM1_CONTROL,
295 ACPI_BITPOSITION_GLOBAL_LOCK_RELEASE,
296 ACPI_BITMASK_GLOBAL_LOCK_RELEASE},
297 /* ACPI_BITREG_SLEEP_TYPE_A */ {ACPI_REGISTER_PM1_CONTROL,
298 ACPI_BITPOSITION_SLEEP_TYPE_X,
299 ACPI_BITMASK_SLEEP_TYPE_X},
300 /* ACPI_BITREG_SLEEP_TYPE_B */ {ACPI_REGISTER_PM1_CONTROL,
301 ACPI_BITPOSITION_SLEEP_TYPE_X,
302 ACPI_BITMASK_SLEEP_TYPE_X},
303 /* ACPI_BITREG_SLEEP_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
304 ACPI_BITPOSITION_SLEEP_ENABLE,
305 ACPI_BITMASK_SLEEP_ENABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Len Brown4be44fc2005-08-05 00:44:28 -0400307 /* ACPI_BITREG_ARB_DIS */ {ACPI_REGISTER_PM2_CONTROL,
308 ACPI_BITPOSITION_ARB_DISABLE,
309 ACPI_BITMASK_ARB_DISABLE}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310};
311
Len Brown4be44fc2005-08-05 00:44:28 -0400312struct acpi_fixed_event_info acpi_gbl_fixed_event_info[ACPI_NUM_FIXED_EVENTS] = {
313 /* ACPI_EVENT_PMTIMER */ {ACPI_BITREG_TIMER_STATUS,
314 ACPI_BITREG_TIMER_ENABLE,
315 ACPI_BITMASK_TIMER_STATUS,
316 ACPI_BITMASK_TIMER_ENABLE},
317 /* ACPI_EVENT_GLOBAL */ {ACPI_BITREG_GLOBAL_LOCK_STATUS,
318 ACPI_BITREG_GLOBAL_LOCK_ENABLE,
319 ACPI_BITMASK_GLOBAL_LOCK_STATUS,
320 ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
321 /* ACPI_EVENT_POWER_BUTTON */ {ACPI_BITREG_POWER_BUTTON_STATUS,
322 ACPI_BITREG_POWER_BUTTON_ENABLE,
323 ACPI_BITMASK_POWER_BUTTON_STATUS,
324 ACPI_BITMASK_POWER_BUTTON_ENABLE},
325 /* ACPI_EVENT_SLEEP_BUTTON */ {ACPI_BITREG_SLEEP_BUTTON_STATUS,
326 ACPI_BITREG_SLEEP_BUTTON_ENABLE,
327 ACPI_BITMASK_SLEEP_BUTTON_STATUS,
328 ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
329 /* ACPI_EVENT_RTC */ {ACPI_BITREG_RT_CLOCK_STATUS,
330 ACPI_BITREG_RT_CLOCK_ENABLE,
331 ACPI_BITMASK_RT_CLOCK_STATUS,
332 ACPI_BITMASK_RT_CLOCK_ENABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333};
334
Robert Moore44f6c012005-04-18 22:49:35 -0400335/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 *
337 * FUNCTION: acpi_ut_get_region_name
338 *
339 * PARAMETERS: None.
340 *
341 * RETURN: Status
342 *
343 * DESCRIPTION: Translate a Space ID into a name string (Debug only)
344 *
Robert Moore44f6c012005-04-18 22:49:35 -0400345 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347/* Region type decoding */
348
Len Brown4be44fc2005-08-05 00:44:28 -0400349const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 "SystemMemory",
351 "SystemIO",
352 "PCI_Config",
353 "EmbeddedControl",
354 "SMBus",
Bob Moore34830722008-11-12 15:17:41 +0800355 "SystemCMOS",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 "PCIBARTarget",
357 "DataTable"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
Len Brown4be44fc2005-08-05 00:44:28 -0400360char *acpi_ut_get_region_name(u8 space_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362
Len Brown4be44fc2005-08-05 00:44:28 -0400363 if (space_id >= ACPI_USER_REGION_BEGIN) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400364 return ("UserDefinedRegion");
Len Brown4be44fc2005-08-05 00:44:28 -0400365 } else if (space_id >= ACPI_NUM_PREDEFINED_REGIONS) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400366 return ("InvalidSpaceId");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368
Bob Mooredefba1d2005-12-16 17:05:00 -0500369 return (ACPI_CAST_PTR(char, acpi_gbl_region_types[space_id]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Robert Moore44f6c012005-04-18 22:49:35 -0400372/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 *
374 * FUNCTION: acpi_ut_get_event_name
375 *
376 * PARAMETERS: None.
377 *
378 * RETURN: Status
379 *
380 * DESCRIPTION: Translate a Event ID into a name string (Debug only)
381 *
Robert Moore44f6c012005-04-18 22:49:35 -0400382 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384/* Event type decoding */
385
Len Brown4be44fc2005-08-05 00:44:28 -0400386static const char *acpi_gbl_event_types[ACPI_NUM_FIXED_EVENTS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 "PM_Timer",
Bob Moore08978312005-10-21 00:00:00 -0400388 "GlobalLock",
389 "PowerButton",
390 "SleepButton",
391 "RealTimeClock",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392};
393
Len Brown4be44fc2005-08-05 00:44:28 -0400394char *acpi_ut_get_event_name(u32 event_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396
Len Brown4be44fc2005-08-05 00:44:28 -0400397 if (event_id > ACPI_EVENT_MAX) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400398 return ("InvalidEventID");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
Bob Moore4a90c7e2006-01-13 16:22:00 -0500401 return (ACPI_CAST_PTR(char, acpi_gbl_event_types[event_id]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Robert Moore44f6c012005-04-18 22:49:35 -0400404/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 *
406 * FUNCTION: acpi_ut_get_type_name
407 *
408 * PARAMETERS: None.
409 *
410 * RETURN: Status
411 *
412 * DESCRIPTION: Translate a Type ID into a name string (Debug only)
413 *
Robert Moore44f6c012005-04-18 22:49:35 -0400414 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416/*
417 * Elements of acpi_gbl_ns_type_names below must match
418 * one-to-one with values of acpi_object_type
419 *
Robert Moore44f6c012005-04-18 22:49:35 -0400420 * The type ACPI_TYPE_ANY (Untyped) is used as a "don't care" when searching;
421 * when stored in a table it really means that we have thus far seen no
422 * evidence to indicate what type is actually going to be stored for this entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 */
Len Brown4be44fc2005-08-05 00:44:28 -0400424static const char acpi_gbl_bad_type[] = "UNDEFINED";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Robert Moore44f6c012005-04-18 22:49:35 -0400426/* Printable names of the ACPI object types */
427
Len Brown4be44fc2005-08-05 00:44:28 -0400428static const char *acpi_gbl_ns_type_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* 00 */ "Untyped",
430 /* 01 */ "Integer",
431 /* 02 */ "String",
432 /* 03 */ "Buffer",
433 /* 04 */ "Package",
Bob Moore08978312005-10-21 00:00:00 -0400434 /* 05 */ "FieldUnit",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /* 06 */ "Device",
436 /* 07 */ "Event",
437 /* 08 */ "Method",
438 /* 09 */ "Mutex",
439 /* 10 */ "Region",
440 /* 11 */ "Power",
441 /* 12 */ "Processor",
442 /* 13 */ "Thermal",
Bob Moore08978312005-10-21 00:00:00 -0400443 /* 14 */ "BufferField",
444 /* 15 */ "DdbHandle",
445 /* 16 */ "DebugObject",
446 /* 17 */ "RegionField",
447 /* 18 */ "BankField",
448 /* 19 */ "IndexField",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* 20 */ "Reference",
450 /* 21 */ "Alias",
Bob Moore08978312005-10-21 00:00:00 -0400451 /* 22 */ "MethodAlias",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 /* 23 */ "Notify",
Bob Moore08978312005-10-21 00:00:00 -0400453 /* 24 */ "AddrHandler",
454 /* 25 */ "ResourceDesc",
455 /* 26 */ "ResourceFld",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /* 27 */ "Scope",
457 /* 28 */ "Extra",
458 /* 29 */ "Data",
459 /* 30 */ "Invalid"
460};
461
Len Brown4be44fc2005-08-05 00:44:28 -0400462char *acpi_ut_get_type_name(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464
Len Brown4be44fc2005-08-05 00:44:28 -0400465 if (type > ACPI_TYPE_INVALID) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500466 return (ACPI_CAST_PTR(char, acpi_gbl_bad_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468
Bob Moore4a90c7e2006-01-13 16:22:00 -0500469 return (ACPI_CAST_PTR(char, acpi_gbl_ns_type_names[type]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Len Brown4be44fc2005-08-05 00:44:28 -0400472char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474
Len Brown4be44fc2005-08-05 00:44:28 -0400475 if (!obj_desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return ("[NULL Object Descriptor]");
477 }
478
Len Brown4be44fc2005-08-05 00:44:28 -0400479 return (acpi_ut_get_type_name(ACPI_GET_OBJECT_TYPE(obj_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Robert Moore44f6c012005-04-18 22:49:35 -0400482/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 *
484 * FUNCTION: acpi_ut_get_node_name
485 *
486 * PARAMETERS: Object - A namespace node
487 *
488 * RETURN: Pointer to a string
489 *
490 * DESCRIPTION: Validate the node and return the node's ACPI name.
491 *
Robert Moore44f6c012005-04-18 22:49:35 -0400492 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Len Brown4be44fc2005-08-05 00:44:28 -0400494char *acpi_ut_get_node_name(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Len Brown4be44fc2005-08-05 00:44:28 -0400496 struct acpi_namespace_node *node = (struct acpi_namespace_node *)object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* Must return a string of exactly 4 characters == ACPI_NAME_SIZE */
499
Len Brown4be44fc2005-08-05 00:44:28 -0400500 if (!object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return ("NULL");
502 }
503
504 /* Check for Root node */
505
Len Brown4be44fc2005-08-05 00:44:28 -0400506 if ((object == ACPI_ROOT_OBJECT) || (object == acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return ("\"\\\" ");
508 }
509
510 /* Descriptor must be a namespace node */
511
Bob Moore616861242006-03-17 16:44:00 -0500512 if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return ("####");
514 }
515
516 /* Name must be a valid ACPI name */
517
Bob Moorec51a4de2005-11-17 13:07:00 -0500518 if (!acpi_ut_valid_acpi_name(node->name.integer)) {
Bob Moore3d81b232007-02-02 19:48:19 +0300519 node->name.integer = acpi_ut_repair_name(node->name.ascii);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521
522 /* Return the name */
523
524 return (node->name.ascii);
525}
526
Robert Moore44f6c012005-04-18 22:49:35 -0400527/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *
529 * FUNCTION: acpi_ut_get_descriptor_name
530 *
531 * PARAMETERS: Object - An ACPI object
532 *
533 * RETURN: Pointer to a string
534 *
535 * DESCRIPTION: Validate object and return the descriptor type
536 *
Robert Moore44f6c012005-04-18 22:49:35 -0400537 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Robert Moore44f6c012005-04-18 22:49:35 -0400539/* Printable names of object descriptor types */
540
Len Brown4be44fc2005-08-05 00:44:28 -0400541static const char *acpi_gbl_desc_type_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* 00 */ "Invalid",
543 /* 01 */ "Cached",
544 /* 02 */ "State-Generic",
545 /* 03 */ "State-Update",
546 /* 04 */ "State-Package",
547 /* 05 */ "State-Control",
Bob Moore08978312005-10-21 00:00:00 -0400548 /* 06 */ "State-RootParseScope",
549 /* 07 */ "State-ParseScope",
550 /* 08 */ "State-WalkScope",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* 09 */ "State-Result",
552 /* 10 */ "State-Notify",
553 /* 11 */ "State-Thread",
554 /* 12 */ "Walk",
555 /* 13 */ "Parser",
556 /* 14 */ "Operand",
557 /* 15 */ "Node"
558};
559
Len Brown4be44fc2005-08-05 00:44:28 -0400560char *acpi_ut_get_descriptor_name(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562
Len Brown4be44fc2005-08-05 00:44:28 -0400563 if (!object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return ("NULL OBJECT");
565 }
566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 if (ACPI_GET_DESCRIPTOR_TYPE(object) > ACPI_DESC_TYPE_MAX) {
Bob Mooredefba1d2005-12-16 17:05:00 -0500568 return (ACPI_CAST_PTR(char, acpi_gbl_bad_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
Bob Mooredefba1d2005-12-16 17:05:00 -0500571 return (ACPI_CAST_PTR(char,
572 acpi_gbl_desc_type_names[ACPI_GET_DESCRIPTOR_TYPE
573 (object)]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575}
576
Bob Mooref02a99a2008-08-04 10:40:09 +0800577/*******************************************************************************
578 *
579 * FUNCTION: acpi_ut_get_reference_name
580 *
581 * PARAMETERS: Object - An ACPI reference object
582 *
583 * RETURN: Pointer to a string
584 *
585 * DESCRIPTION: Decode a reference object sub-type to a string.
586 *
587 ******************************************************************************/
588
589/* Printable names of reference object sub-types */
590
Bob Moore1044f1f2008-09-27 11:08:41 +0800591static const char *acpi_gbl_ref_class_names[] = {
592 /* 00 */ "Local",
593 /* 01 */ "Argument",
594 /* 02 */ "RefOf",
595 /* 03 */ "Index",
596 /* 04 */ "DdbHandle",
597 /* 05 */ "Named Object",
598 /* 06 */ "Debug"
599};
600
Bob Mooref02a99a2008-08-04 10:40:09 +0800601const char *acpi_ut_get_reference_name(union acpi_operand_object *object)
602{
Bob Moore1044f1f2008-09-27 11:08:41 +0800603 if (!object)
604 return "NULL Object";
Bob Mooref02a99a2008-08-04 10:40:09 +0800605
Bob Moore1044f1f2008-09-27 11:08:41 +0800606 if (ACPI_GET_DESCRIPTOR_TYPE(object) != ACPI_DESC_TYPE_OPERAND)
607 return "Not an Operand object";
Bob Mooref02a99a2008-08-04 10:40:09 +0800608
Bob Moore1044f1f2008-09-27 11:08:41 +0800609 if (object->common.type != ACPI_TYPE_LOCAL_REFERENCE)
610 return "Not a Reference object";
Bob Mooref02a99a2008-08-04 10:40:09 +0800611
Bob Moore1044f1f2008-09-27 11:08:41 +0800612 if (object->reference.class > ACPI_REFCLASS_MAX)
613 return "Unknown Reference class";
Bob Mooref02a99a2008-08-04 10:40:09 +0800614
Bob Moore1044f1f2008-09-27 11:08:41 +0800615 return acpi_gbl_ref_class_names[object->reference.class];
Bob Mooref02a99a2008-08-04 10:40:09 +0800616}
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
619/*
620 * Strings and procedures used for debug only
621 */
622
Robert Moore44f6c012005-04-18 22:49:35 -0400623/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 *
625 * FUNCTION: acpi_ut_get_mutex_name
626 *
Robert Moore44f6c012005-04-18 22:49:35 -0400627 * PARAMETERS: mutex_id - The predefined ID for this mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 *
Robert Moore44f6c012005-04-18 22:49:35 -0400629 * RETURN: String containing the name of the mutex. Always returns a valid
630 * pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 *
632 * DESCRIPTION: Translate a mutex ID into a name string (Debug only)
633 *
Robert Moore44f6c012005-04-18 22:49:35 -0400634 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Len Brown4be44fc2005-08-05 00:44:28 -0400636char *acpi_ut_get_mutex_name(u32 mutex_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638
Bob Moore4c90ece2006-06-08 16:29:00 -0400639 if (mutex_id > ACPI_MAX_MUTEX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return ("Invalid Mutex ID");
641 }
642
643 return (acpi_gbl_mutex_names[mutex_id]);
644}
Zhang Rui514d18d2008-04-10 19:06:44 +0400645
646/*******************************************************************************
647 *
648 * FUNCTION: acpi_ut_get_notify_name
649 *
650 * PARAMETERS: notify_value - Value from the Notify() request
651 *
652 * RETURN: String corresponding to the Notify Value.
653 *
654 * DESCRIPTION: Translate a Notify Value to a notify namestring.
655 *
656 ******************************************************************************/
657
658/* Names for Notify() values, used for debug output */
659
660static const char *acpi_gbl_notify_value_names[] = {
661 "Bus Check",
662 "Device Check",
663 "Device Wake",
664 "Eject Request",
665 "Device Check Light",
666 "Frequency Mismatch",
667 "Bus Mode Mismatch",
668 "Power Fault",
669 "Capabilities Check",
670 "Device PLD Check",
671 "Reserved",
672 "System Locality Update"
673};
674
675const char *acpi_ut_get_notify_name(u32 notify_value)
676{
677
678 if (notify_value <= ACPI_NOTIFY_MAX) {
679 return (acpi_gbl_notify_value_names[notify_value]);
680 } else if (notify_value <= ACPI_MAX_SYS_NOTIFY) {
681 return ("Reserved");
682 } else { /* Greater or equal to 0x80 */
683
684 return ("**Device Specific**");
685 }
686}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#endif
688
Robert Moore44f6c012005-04-18 22:49:35 -0400689/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 *
691 * FUNCTION: acpi_ut_valid_object_type
692 *
693 * PARAMETERS: Type - Object type to be validated
694 *
Robert Moore44f6c012005-04-18 22:49:35 -0400695 * RETURN: TRUE if valid object type, FALSE otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 *
697 * DESCRIPTION: Validate an object type
698 *
Robert Moore44f6c012005-04-18 22:49:35 -0400699 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Len Brown4be44fc2005-08-05 00:44:28 -0400701u8 acpi_ut_valid_object_type(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703
Len Brown4be44fc2005-08-05 00:44:28 -0400704 if (type > ACPI_TYPE_LOCAL_MAX) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* Note: Assumes all TYPEs are contiguous (external/local) */
707
708 return (FALSE);
709 }
710
711 return (TRUE);
712}
713
Robert Moore44f6c012005-04-18 22:49:35 -0400714/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 * FUNCTION: acpi_ut_init_globals
717 *
Robert Moore44f6c012005-04-18 22:49:35 -0400718 * PARAMETERS: None
719 *
Yi Yangb417d402008-08-04 10:30:09 +0800720 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 *
722 * DESCRIPTION: Init library globals. All globals that require specific
723 * initialization should be initialized here!
724 *
Robert Moore44f6c012005-04-18 22:49:35 -0400725 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Yi Yangb417d402008-08-04 10:30:09 +0800727acpi_status acpi_ut_init_globals(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Len Brown4be44fc2005-08-05 00:44:28 -0400729 acpi_status status;
730 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Bob Mooreb229cf92006-04-21 17:15:00 -0400732 ACPI_FUNCTION_TRACE(ut_init_globals);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Robert Moore73459f72005-06-24 00:00:00 -0400734 /* Create all memory caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Len Brown4be44fc2005-08-05 00:44:28 -0400736 status = acpi_ut_create_caches();
737 if (ACPI_FAILURE(status)) {
Yi Yangb417d402008-08-04 10:30:09 +0800738 return_ACPI_STATUS(status);
Robert Moore73459f72005-06-24 00:00:00 -0400739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /* Mutex locked flags */
742
Bob Moore4c90ece2006-06-08 16:29:00 -0400743 for (i = 0; i < ACPI_NUM_MUTEX; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400744 acpi_gbl_mutex_info[i].mutex = NULL;
745 acpi_gbl_mutex_info[i].thread_id = ACPI_MUTEX_NOT_ACQUIRED;
746 acpi_gbl_mutex_info[i].use_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
Bob Moore28f55eb2005-12-02 18:27:00 -0500749 for (i = 0; i < ACPI_NUM_OWNERID_MASKS; i++) {
750 acpi_gbl_owner_id_mask[i] = 0;
751 }
752 acpi_gbl_owner_id_mask[ACPI_NUM_OWNERID_MASKS - 1] = 0x80000000; /* Last ID is never valid */
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* GPE support */
755
Len Brown4be44fc2005-08-05 00:44:28 -0400756 acpi_gbl_gpe_xrupt_list_head = NULL;
757 acpi_gbl_gpe_fadt_blocks[0] = NULL;
758 acpi_gbl_gpe_fadt_blocks[1] = NULL;
Bob Mooree97d6bf2008-12-30 09:45:17 +0800759 acpi_current_gpe_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Lin Ming3e08e2d2008-04-10 19:06:38 +0400761 /* Global handlers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Len Brown4be44fc2005-08-05 00:44:28 -0400763 acpi_gbl_system_notify.handler = NULL;
764 acpi_gbl_device_notify.handler = NULL;
765 acpi_gbl_exception_handler = NULL;
766 acpi_gbl_init_handler = NULL;
Lin Ming3e08e2d2008-04-10 19:06:38 +0400767 acpi_gbl_table_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /* Global Lock support */
770
Bob Moore967440e32006-06-23 17:04:00 -0400771 acpi_gbl_global_lock_semaphore = NULL;
Bob Moorec81da662007-02-02 19:48:18 +0300772 acpi_gbl_global_lock_mutex = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400773 acpi_gbl_global_lock_acquired = FALSE;
Len Brown4be44fc2005-08-05 00:44:28 -0400774 acpi_gbl_global_lock_handle = 0;
Bob Moore009c4cbe2008-11-12 15:34:52 +0800775 acpi_gbl_global_lock_present = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 /* Miscellaneous variables */
778
Len Brown4be44fc2005-08-05 00:44:28 -0400779 acpi_gbl_cm_single_step = FALSE;
780 acpi_gbl_db_terminate_threads = FALSE;
781 acpi_gbl_shutdown = FALSE;
782 acpi_gbl_ns_lookup_count = 0;
783 acpi_gbl_ps_find_count = 0;
784 acpi_gbl_acpi_hardware_present = TRUE;
Bob Moore28f55eb2005-12-02 18:27:00 -0500785 acpi_gbl_last_owner_id_index = 0;
786 acpi_gbl_next_owner_id_offset = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400787 acpi_gbl_trace_method_name = 0;
788 acpi_gbl_trace_dbg_level = 0;
789 acpi_gbl_trace_dbg_layer = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400790 acpi_gbl_debugger_configuration = DEBUGGER_THREADING;
791 acpi_gbl_db_output_flags = ACPI_DB_CONSOLE_OUTPUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /* Hardware oriented */
794
Len Brown4be44fc2005-08-05 00:44:28 -0400795 acpi_gbl_events_initialized = FALSE;
796 acpi_gbl_system_awake_and_running = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 /* Namespace */
799
Len Brown4be44fc2005-08-05 00:44:28 -0400800 acpi_gbl_root_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 acpi_gbl_root_node_struct.name.integer = ACPI_ROOT_NAME;
Bob Moore616861242006-03-17 16:44:00 -0500802 acpi_gbl_root_node_struct.descriptor_type = ACPI_DESC_TYPE_NAMED;
Len Brown4be44fc2005-08-05 00:44:28 -0400803 acpi_gbl_root_node_struct.type = ACPI_TYPE_DEVICE;
804 acpi_gbl_root_node_struct.child = NULL;
805 acpi_gbl_root_node_struct.peer = NULL;
806 acpi_gbl_root_node_struct.object = NULL;
807 acpi_gbl_root_node_struct.flags = ANOBJ_END_OF_PEER_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809#ifdef ACPI_DEBUG_OUTPUT
Bob Moore1d18c052008-04-10 19:06:40 +0400810 acpi_gbl_lowest_stack_pointer = ACPI_CAST_PTR(acpi_size, ACPI_SIZE_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811#endif
812
Bob Moored41eb992007-02-02 19:48:23 +0300813#ifdef ACPI_DBG_TRACK_ALLOCATIONS
814 acpi_gbl_display_final_mem_stats = FALSE;
815#endif
816
Yi Yangb417d402008-08-04 10:30:09 +0800817 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
Bob Moore83135242006-10-03 00:00:00 -0400819
Bob Mooree97d6bf2008-12-30 09:45:17 +0800820ACPI_EXPORT_SYMBOL(acpi_gbl_FADT)
Bob Moore83135242006-10-03 00:00:00 -0400821ACPI_EXPORT_SYMBOL(acpi_dbg_level)
Bob Moore1044f1f2008-09-27 11:08:41 +0800822ACPI_EXPORT_SYMBOL(acpi_dbg_layer)
Bob Mooree97d6bf2008-12-30 09:45:17 +0800823ACPI_EXPORT_SYMBOL(acpi_current_gpe_count)