blob: 5b83f86470d7acda5845b741b6cdd576547549f7 [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/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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>
47#include <acpi/acnamesp.h>
48
Bob Mooref3d2e782007-02-02 19:48:18 +030049ACPI_EXPORT_SYMBOL(acpi_gbl_FADT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define _COMPONENT ACPI_UTILITIES
Bob Mooref3d2e782007-02-02 19:48:18 +030051 ACPI_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 *
55 * FUNCTION: acpi_format_exception
56 *
57 * PARAMETERS: Status - The acpi_status code to be formatted
58 *
Robert Moore44f6c012005-04-18 22:49:35 -040059 * RETURN: A string containing the exception text. A valid pointer is
60 * always returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 *
62 * DESCRIPTION: This function translates an ACPI exception into an ASCII string.
63 *
64 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040065const char *acpi_format_exception(acpi_status status)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Len Brown4be44fc2005-08-05 00:44:28 -040067 acpi_status sub_status;
68 const char *exception = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Bob Moore4a90c7e2006-01-13 16:22:00 -050070 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Bob Moore4a90c7e2006-01-13 16:22:00 -050072 /*
73 * Status is composed of two parts, a "type" and an actual code
74 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 sub_status = (status & ~AE_CODE_MASK);
76
77 switch (status & AE_CODE_MASK) {
78 case AE_CODE_ENVIRONMENTAL:
79
80 if (sub_status <= AE_CODE_ENV_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -040081 exception = acpi_gbl_exception_names_env[sub_status];
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
Robert Moore44f6c012005-04-18 22:49:35 -040083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 case AE_CODE_PROGRAMMER:
86
87 if (sub_status <= AE_CODE_PGM_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -040088 exception =
89 acpi_gbl_exception_names_pgm[sub_status - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Robert Moore44f6c012005-04-18 22:49:35 -040091 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 case AE_CODE_ACPI_TABLES:
94
95 if (sub_status <= AE_CODE_TBL_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -040096 exception =
97 acpi_gbl_exception_names_tbl[sub_status - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
Robert Moore44f6c012005-04-18 22:49:35 -040099 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 case AE_CODE_AML:
102
103 if (sub_status <= AE_CODE_AML_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400104 exception =
105 acpi_gbl_exception_names_aml[sub_status - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
Robert Moore44f6c012005-04-18 22:49:35 -0400107 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 case AE_CODE_CONTROL:
110
111 if (sub_status <= AE_CODE_CTRL_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400112 exception =
113 acpi_gbl_exception_names_ctrl[sub_status - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Robert Moore44f6c012005-04-18 22:49:35 -0400115 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 default:
Robert Moore44f6c012005-04-18 22:49:35 -0400118 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120
Robert Moore44f6c012005-04-18 22:49:35 -0400121 if (!exception) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400122
Robert Moore44f6c012005-04-18 22:49:35 -0400123 /* Exception code was not recognized */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Bob Mooreb8e4d892006-01-27 16:43:00 -0500125 ACPI_ERROR((AE_INFO,
126 "Unknown exception code: 0x%8.8X", status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Bob Moore4a90c7e2006-01-13 16:22:00 -0500128 exception = "UNKNOWN_STATUS_CODE";
Robert Moore44f6c012005-04-18 22:49:35 -0400129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Bob Moore4a90c7e2006-01-13 16:22:00 -0500131 return (ACPI_CAST_PTR(const char, exception));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Robert Moore44f6c012005-04-18 22:49:35 -0400134/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 *
136 * Static global variable initialization.
137 *
138 ******************************************************************************/
139
140/*
141 * We want the debug switches statically initialized so they
142 * are already set when the debugger is entered.
143 */
144
145/* Debug switch - level and trace mask */
Len Brown4be44fc2005-08-05 00:44:28 -0400146u32 acpi_dbg_level = ACPI_DEBUG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* Debug switch - layer (component) mask */
149
Len Brown4be44fc2005-08-05 00:44:28 -0400150u32 acpi_dbg_layer = ACPI_COMPONENT_DEFAULT | ACPI_ALL_DRIVERS;
Len Brown4be44fc2005-08-05 00:44:28 -0400151u32 acpi_gbl_nesting_level = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/* Debugger globals */
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155u8 acpi_gbl_db_terminate_threads = FALSE;
156u8 acpi_gbl_abort_method = FALSE;
157u8 acpi_gbl_method_executing = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/* System flags */
160
Len Brown4be44fc2005-08-05 00:44:28 -0400161u32 acpi_gbl_startup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163/* System starts uninitialized */
164
Len Brown4be44fc2005-08-05 00:44:28 -0400165u8 acpi_gbl_shutdown = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Len Brown4be44fc2005-08-05 00:44:28 -0400167const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 "\\_S0_",
169 "\\_S1_",
170 "\\_S2_",
171 "\\_S3_",
172 "\\_S4_",
173 "\\_S5_"
174};
175
Len Brown4be44fc2005-08-05 00:44:28 -0400176const char *acpi_gbl_highest_dstate_names[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 "_S1D",
178 "_S2D",
179 "_S3D",
180 "_S4D"
181};
182
Robert Moore44f6c012005-04-18 22:49:35 -0400183/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 *
185 * Namespace globals
186 *
187 ******************************************************************************/
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*
190 * Predefined ACPI Names (Built-in to the Interpreter)
191 *
192 * NOTES:
193 * 1) _SB_ is defined to be a device to allow \_SB_._INI to be run
194 * during the initialization sequence.
195 * 2) _TZ_ is defined to be a thermal zone in order to allow ASL code to
196 * perform a Notify() operation on it.
197 */
Bob Moore08978312005-10-21 00:00:00 -0400198const struct acpi_predefined_names acpi_gbl_pre_defined_names[] = {
199 {"_GPE", ACPI_TYPE_LOCAL_SCOPE, NULL},
200 {"_PR_", ACPI_TYPE_LOCAL_SCOPE, NULL},
201 {"_SB_", ACPI_TYPE_DEVICE, NULL},
202 {"_SI_", ACPI_TYPE_LOCAL_SCOPE, NULL},
203 {"_TZ_", ACPI_TYPE_THERMAL, NULL},
204 {"_REV", ACPI_TYPE_INTEGER, (char *)ACPI_CA_SUPPORT_LEVEL},
205 {"_OS_", ACPI_TYPE_STRING, ACPI_OS_NAME},
206 {"_GL_", ACPI_TYPE_MUTEX, (char *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208#if !defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY)
Bob Moore08978312005-10-21 00:00:00 -0400209 {"_OSI", ACPI_TYPE_METHOD, (char *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Robert Moore44f6c012005-04-18 22:49:35 -0400212 /* Table terminator */
213
Bob Moore08978312005-10-21 00:00:00 -0400214 {NULL, ACPI_TYPE_ANY, NULL}
Robert Moore44f6c012005-04-18 22:49:35 -0400215};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217/*
218 * Properties of the ACPI Object Types, both internal and external.
219 * The table is indexed by values of acpi_object_type
220 */
Len Brown4be44fc2005-08-05 00:44:28 -0400221const u8 acpi_gbl_ns_properties[] = {
222 ACPI_NS_NORMAL, /* 00 Any */
223 ACPI_NS_NORMAL, /* 01 Number */
224 ACPI_NS_NORMAL, /* 02 String */
225 ACPI_NS_NORMAL, /* 03 Buffer */
226 ACPI_NS_NORMAL, /* 04 Package */
227 ACPI_NS_NORMAL, /* 05 field_unit */
228 ACPI_NS_NEWSCOPE, /* 06 Device */
229 ACPI_NS_NORMAL, /* 07 Event */
230 ACPI_NS_NEWSCOPE, /* 08 Method */
231 ACPI_NS_NORMAL, /* 09 Mutex */
232 ACPI_NS_NORMAL, /* 10 Region */
233 ACPI_NS_NEWSCOPE, /* 11 Power */
234 ACPI_NS_NEWSCOPE, /* 12 Processor */
235 ACPI_NS_NEWSCOPE, /* 13 Thermal */
236 ACPI_NS_NORMAL, /* 14 buffer_field */
237 ACPI_NS_NORMAL, /* 15 ddb_handle */
238 ACPI_NS_NORMAL, /* 16 Debug Object */
239 ACPI_NS_NORMAL, /* 17 def_field */
240 ACPI_NS_NORMAL, /* 18 bank_field */
241 ACPI_NS_NORMAL, /* 19 index_field */
242 ACPI_NS_NORMAL, /* 20 Reference */
243 ACPI_NS_NORMAL, /* 21 Alias */
244 ACPI_NS_NORMAL, /* 22 method_alias */
245 ACPI_NS_NORMAL, /* 23 Notify */
246 ACPI_NS_NORMAL, /* 24 Address Handler */
247 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 25 Resource Desc */
248 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 26 Resource Field */
249 ACPI_NS_NEWSCOPE, /* 27 Scope */
250 ACPI_NS_NORMAL, /* 28 Extra */
251 ACPI_NS_NORMAL, /* 29 Data */
252 ACPI_NS_NORMAL /* 30 Invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255/* Hex to ASCII conversion table */
256
Len Brown4be44fc2005-08-05 00:44:28 -0400257static const char acpi_gbl_hex_to_ascii[] = {
258 '0', '1', '2', '3', '4', '5', '6', '7',
259 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
Robert Moore44f6c012005-04-18 22:49:35 -0400260};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Robert Moore44f6c012005-04-18 22:49:35 -0400262/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
264 * FUNCTION: acpi_ut_hex_to_ascii_char
265 *
266 * PARAMETERS: Integer - Contains the hex digit
267 * Position - bit position of the digit within the
Robert Moore44f6c012005-04-18 22:49:35 -0400268 * integer (multiple of 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 *
Robert Moore44f6c012005-04-18 22:49:35 -0400270 * RETURN: The converted Ascii character
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
Robert Moore44f6c012005-04-18 22:49:35 -0400272 * DESCRIPTION: Convert a hex digit to an Ascii character
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
Robert Moore44f6c012005-04-18 22:49:35 -0400274 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Len Brown4be44fc2005-08-05 00:44:28 -0400276char acpi_ut_hex_to_ascii_char(acpi_integer integer, u32 position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278
279 return (acpi_gbl_hex_to_ascii[(integer >> position) & 0xF]);
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/******************************************************************************
283 *
284 * Event and Hardware globals
285 *
286 ******************************************************************************/
287
Len Brown4be44fc2005-08-05 00:44:28 -0400288struct acpi_bit_register_info acpi_gbl_bit_register_info[ACPI_NUM_BITREG] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* Name Parent Register Register Bit Position Register Bit Mask */
290
Len Brown4be44fc2005-08-05 00:44:28 -0400291 /* ACPI_BITREG_TIMER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
292 ACPI_BITPOSITION_TIMER_STATUS,
293 ACPI_BITMASK_TIMER_STATUS},
294 /* ACPI_BITREG_BUS_MASTER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
295 ACPI_BITPOSITION_BUS_MASTER_STATUS,
296 ACPI_BITMASK_BUS_MASTER_STATUS},
297 /* ACPI_BITREG_GLOBAL_LOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
298 ACPI_BITPOSITION_GLOBAL_LOCK_STATUS,
299 ACPI_BITMASK_GLOBAL_LOCK_STATUS},
300 /* ACPI_BITREG_POWER_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
301 ACPI_BITPOSITION_POWER_BUTTON_STATUS,
302 ACPI_BITMASK_POWER_BUTTON_STATUS},
303 /* ACPI_BITREG_SLEEP_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
304 ACPI_BITPOSITION_SLEEP_BUTTON_STATUS,
305 ACPI_BITMASK_SLEEP_BUTTON_STATUS},
306 /* ACPI_BITREG_RT_CLOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
307 ACPI_BITPOSITION_RT_CLOCK_STATUS,
308 ACPI_BITMASK_RT_CLOCK_STATUS},
309 /* ACPI_BITREG_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
310 ACPI_BITPOSITION_WAKE_STATUS,
311 ACPI_BITMASK_WAKE_STATUS},
312 /* ACPI_BITREG_PCIEXP_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
313 ACPI_BITPOSITION_PCIEXP_WAKE_STATUS,
314 ACPI_BITMASK_PCIEXP_WAKE_STATUS},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Len Brown4be44fc2005-08-05 00:44:28 -0400316 /* ACPI_BITREG_TIMER_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
317 ACPI_BITPOSITION_TIMER_ENABLE,
318 ACPI_BITMASK_TIMER_ENABLE},
319 /* ACPI_BITREG_GLOBAL_LOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
320 ACPI_BITPOSITION_GLOBAL_LOCK_ENABLE,
321 ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
322 /* ACPI_BITREG_POWER_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
323 ACPI_BITPOSITION_POWER_BUTTON_ENABLE,
324 ACPI_BITMASK_POWER_BUTTON_ENABLE},
325 /* ACPI_BITREG_SLEEP_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
326 ACPI_BITPOSITION_SLEEP_BUTTON_ENABLE,
327 ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
328 /* ACPI_BITREG_RT_CLOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
329 ACPI_BITPOSITION_RT_CLOCK_ENABLE,
330 ACPI_BITMASK_RT_CLOCK_ENABLE},
331 /* ACPI_BITREG_WAKE_ENABLE */ {ACPI_REGISTER_PM1_ENABLE, 0, 0},
332 /* ACPI_BITREG_PCIEXP_WAKE_DISABLE */ {ACPI_REGISTER_PM1_ENABLE,
333 ACPI_BITPOSITION_PCIEXP_WAKE_DISABLE,
334 ACPI_BITMASK_PCIEXP_WAKE_DISABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 /* ACPI_BITREG_SCI_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
337 ACPI_BITPOSITION_SCI_ENABLE,
338 ACPI_BITMASK_SCI_ENABLE},
339 /* ACPI_BITREG_BUS_MASTER_RLD */ {ACPI_REGISTER_PM1_CONTROL,
340 ACPI_BITPOSITION_BUS_MASTER_RLD,
341 ACPI_BITMASK_BUS_MASTER_RLD},
342 /* ACPI_BITREG_GLOBAL_LOCK_RELEASE */ {ACPI_REGISTER_PM1_CONTROL,
343 ACPI_BITPOSITION_GLOBAL_LOCK_RELEASE,
344 ACPI_BITMASK_GLOBAL_LOCK_RELEASE},
345 /* ACPI_BITREG_SLEEP_TYPE_A */ {ACPI_REGISTER_PM1_CONTROL,
346 ACPI_BITPOSITION_SLEEP_TYPE_X,
347 ACPI_BITMASK_SLEEP_TYPE_X},
348 /* ACPI_BITREG_SLEEP_TYPE_B */ {ACPI_REGISTER_PM1_CONTROL,
349 ACPI_BITPOSITION_SLEEP_TYPE_X,
350 ACPI_BITMASK_SLEEP_TYPE_X},
351 /* ACPI_BITREG_SLEEP_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
352 ACPI_BITPOSITION_SLEEP_ENABLE,
353 ACPI_BITMASK_SLEEP_ENABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 /* ACPI_BITREG_ARB_DIS */ {ACPI_REGISTER_PM2_CONTROL,
356 ACPI_BITPOSITION_ARB_DISABLE,
357 ACPI_BITMASK_ARB_DISABLE}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
Len Brown4be44fc2005-08-05 00:44:28 -0400360struct acpi_fixed_event_info acpi_gbl_fixed_event_info[ACPI_NUM_FIXED_EVENTS] = {
361 /* ACPI_EVENT_PMTIMER */ {ACPI_BITREG_TIMER_STATUS,
362 ACPI_BITREG_TIMER_ENABLE,
363 ACPI_BITMASK_TIMER_STATUS,
364 ACPI_BITMASK_TIMER_ENABLE},
365 /* ACPI_EVENT_GLOBAL */ {ACPI_BITREG_GLOBAL_LOCK_STATUS,
366 ACPI_BITREG_GLOBAL_LOCK_ENABLE,
367 ACPI_BITMASK_GLOBAL_LOCK_STATUS,
368 ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
369 /* ACPI_EVENT_POWER_BUTTON */ {ACPI_BITREG_POWER_BUTTON_STATUS,
370 ACPI_BITREG_POWER_BUTTON_ENABLE,
371 ACPI_BITMASK_POWER_BUTTON_STATUS,
372 ACPI_BITMASK_POWER_BUTTON_ENABLE},
373 /* ACPI_EVENT_SLEEP_BUTTON */ {ACPI_BITREG_SLEEP_BUTTON_STATUS,
374 ACPI_BITREG_SLEEP_BUTTON_ENABLE,
375 ACPI_BITMASK_SLEEP_BUTTON_STATUS,
376 ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
377 /* ACPI_EVENT_RTC */ {ACPI_BITREG_RT_CLOCK_STATUS,
378 ACPI_BITREG_RT_CLOCK_ENABLE,
379 ACPI_BITMASK_RT_CLOCK_STATUS,
380 ACPI_BITMASK_RT_CLOCK_ENABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381};
382
Robert Moore44f6c012005-04-18 22:49:35 -0400383/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
385 * FUNCTION: acpi_ut_get_region_name
386 *
387 * PARAMETERS: None.
388 *
389 * RETURN: Status
390 *
391 * DESCRIPTION: Translate a Space ID into a name string (Debug only)
392 *
Robert Moore44f6c012005-04-18 22:49:35 -0400393 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395/* Region type decoding */
396
Len Brown4be44fc2005-08-05 00:44:28 -0400397const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 "SystemMemory",
399 "SystemIO",
400 "PCI_Config",
401 "EmbeddedControl",
402 "SMBus",
403 "CMOS",
404 "PCIBARTarget",
405 "DataTable"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408char *acpi_ut_get_region_name(u8 space_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410
Len Brown4be44fc2005-08-05 00:44:28 -0400411 if (space_id >= ACPI_USER_REGION_BEGIN) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400412 return ("UserDefinedRegion");
Len Brown4be44fc2005-08-05 00:44:28 -0400413 } else if (space_id >= ACPI_NUM_PREDEFINED_REGIONS) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400414 return ("InvalidSpaceId");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Bob Mooredefba1d2005-12-16 17:05:00 -0500417 return (ACPI_CAST_PTR(char, acpi_gbl_region_types[space_id]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Robert Moore44f6c012005-04-18 22:49:35 -0400420/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 *
422 * FUNCTION: acpi_ut_get_event_name
423 *
424 * PARAMETERS: None.
425 *
426 * RETURN: Status
427 *
428 * DESCRIPTION: Translate a Event ID into a name string (Debug only)
429 *
Robert Moore44f6c012005-04-18 22:49:35 -0400430 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432/* Event type decoding */
433
Len Brown4be44fc2005-08-05 00:44:28 -0400434static const char *acpi_gbl_event_types[ACPI_NUM_FIXED_EVENTS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 "PM_Timer",
Bob Moore08978312005-10-21 00:00:00 -0400436 "GlobalLock",
437 "PowerButton",
438 "SleepButton",
439 "RealTimeClock",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440};
441
Len Brown4be44fc2005-08-05 00:44:28 -0400442char *acpi_ut_get_event_name(u32 event_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444
Len Brown4be44fc2005-08-05 00:44:28 -0400445 if (event_id > ACPI_EVENT_MAX) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400446 return ("InvalidEventID");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
Bob Moore4a90c7e2006-01-13 16:22:00 -0500449 return (ACPI_CAST_PTR(char, acpi_gbl_event_types[event_id]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Robert Moore44f6c012005-04-18 22:49:35 -0400452/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
454 * FUNCTION: acpi_ut_get_type_name
455 *
456 * PARAMETERS: None.
457 *
458 * RETURN: Status
459 *
460 * DESCRIPTION: Translate a Type ID into a name string (Debug only)
461 *
Robert Moore44f6c012005-04-18 22:49:35 -0400462 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464/*
465 * Elements of acpi_gbl_ns_type_names below must match
466 * one-to-one with values of acpi_object_type
467 *
Robert Moore44f6c012005-04-18 22:49:35 -0400468 * The type ACPI_TYPE_ANY (Untyped) is used as a "don't care" when searching;
469 * when stored in a table it really means that we have thus far seen no
470 * evidence to indicate what type is actually going to be stored for this entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
Len Brown4be44fc2005-08-05 00:44:28 -0400472static const char acpi_gbl_bad_type[] = "UNDEFINED";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Robert Moore44f6c012005-04-18 22:49:35 -0400474/* Printable names of the ACPI object types */
475
Len Brown4be44fc2005-08-05 00:44:28 -0400476static const char *acpi_gbl_ns_type_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 /* 00 */ "Untyped",
478 /* 01 */ "Integer",
479 /* 02 */ "String",
480 /* 03 */ "Buffer",
481 /* 04 */ "Package",
Bob Moore08978312005-10-21 00:00:00 -0400482 /* 05 */ "FieldUnit",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /* 06 */ "Device",
484 /* 07 */ "Event",
485 /* 08 */ "Method",
486 /* 09 */ "Mutex",
487 /* 10 */ "Region",
488 /* 11 */ "Power",
489 /* 12 */ "Processor",
490 /* 13 */ "Thermal",
Bob Moore08978312005-10-21 00:00:00 -0400491 /* 14 */ "BufferField",
492 /* 15 */ "DdbHandle",
493 /* 16 */ "DebugObject",
494 /* 17 */ "RegionField",
495 /* 18 */ "BankField",
496 /* 19 */ "IndexField",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* 20 */ "Reference",
498 /* 21 */ "Alias",
Bob Moore08978312005-10-21 00:00:00 -0400499 /* 22 */ "MethodAlias",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /* 23 */ "Notify",
Bob Moore08978312005-10-21 00:00:00 -0400501 /* 24 */ "AddrHandler",
502 /* 25 */ "ResourceDesc",
503 /* 26 */ "ResourceFld",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* 27 */ "Scope",
505 /* 28 */ "Extra",
506 /* 29 */ "Data",
507 /* 30 */ "Invalid"
508};
509
Len Brown4be44fc2005-08-05 00:44:28 -0400510char *acpi_ut_get_type_name(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512
Len Brown4be44fc2005-08-05 00:44:28 -0400513 if (type > ACPI_TYPE_INVALID) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500514 return (ACPI_CAST_PTR(char, acpi_gbl_bad_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
Bob Moore4a90c7e2006-01-13 16:22:00 -0500517 return (ACPI_CAST_PTR(char, acpi_gbl_ns_type_names[type]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Len Brown4be44fc2005-08-05 00:44:28 -0400520char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522
Len Brown4be44fc2005-08-05 00:44:28 -0400523 if (!obj_desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return ("[NULL Object Descriptor]");
525 }
526
Len Brown4be44fc2005-08-05 00:44:28 -0400527 return (acpi_ut_get_type_name(ACPI_GET_OBJECT_TYPE(obj_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Robert Moore44f6c012005-04-18 22:49:35 -0400530/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *
532 * FUNCTION: acpi_ut_get_node_name
533 *
534 * PARAMETERS: Object - A namespace node
535 *
536 * RETURN: Pointer to a string
537 *
538 * DESCRIPTION: Validate the node and return the node's ACPI name.
539 *
Robert Moore44f6c012005-04-18 22:49:35 -0400540 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Len Brown4be44fc2005-08-05 00:44:28 -0400542char *acpi_ut_get_node_name(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Len Brown4be44fc2005-08-05 00:44:28 -0400544 struct acpi_namespace_node *node = (struct acpi_namespace_node *)object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /* Must return a string of exactly 4 characters == ACPI_NAME_SIZE */
547
Len Brown4be44fc2005-08-05 00:44:28 -0400548 if (!object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return ("NULL");
550 }
551
552 /* Check for Root node */
553
Len Brown4be44fc2005-08-05 00:44:28 -0400554 if ((object == ACPI_ROOT_OBJECT) || (object == acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return ("\"\\\" ");
556 }
557
558 /* Descriptor must be a namespace node */
559
Bob Moore616861242006-03-17 16:44:00 -0500560 if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return ("####");
562 }
563
564 /* Name must be a valid ACPI name */
565
Bob Moorec51a4de2005-11-17 13:07:00 -0500566 if (!acpi_ut_valid_acpi_name(node->name.integer)) {
Bob Moore3d81b232007-02-02 19:48:19 +0300567 node->name.integer = acpi_ut_repair_name(node->name.ascii);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569
570 /* Return the name */
571
572 return (node->name.ascii);
573}
574
Robert Moore44f6c012005-04-18 22:49:35 -0400575/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 *
577 * FUNCTION: acpi_ut_get_descriptor_name
578 *
579 * PARAMETERS: Object - An ACPI object
580 *
581 * RETURN: Pointer to a string
582 *
583 * DESCRIPTION: Validate object and return the descriptor type
584 *
Robert Moore44f6c012005-04-18 22:49:35 -0400585 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Robert Moore44f6c012005-04-18 22:49:35 -0400587/* Printable names of object descriptor types */
588
Len Brown4be44fc2005-08-05 00:44:28 -0400589static const char *acpi_gbl_desc_type_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* 00 */ "Invalid",
591 /* 01 */ "Cached",
592 /* 02 */ "State-Generic",
593 /* 03 */ "State-Update",
594 /* 04 */ "State-Package",
595 /* 05 */ "State-Control",
Bob Moore08978312005-10-21 00:00:00 -0400596 /* 06 */ "State-RootParseScope",
597 /* 07 */ "State-ParseScope",
598 /* 08 */ "State-WalkScope",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* 09 */ "State-Result",
600 /* 10 */ "State-Notify",
601 /* 11 */ "State-Thread",
602 /* 12 */ "Walk",
603 /* 13 */ "Parser",
604 /* 14 */ "Operand",
605 /* 15 */ "Node"
606};
607
Len Brown4be44fc2005-08-05 00:44:28 -0400608char *acpi_ut_get_descriptor_name(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610
Len Brown4be44fc2005-08-05 00:44:28 -0400611 if (!object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return ("NULL OBJECT");
613 }
614
Len Brown4be44fc2005-08-05 00:44:28 -0400615 if (ACPI_GET_DESCRIPTOR_TYPE(object) > ACPI_DESC_TYPE_MAX) {
Bob Mooredefba1d2005-12-16 17:05:00 -0500616 return (ACPI_CAST_PTR(char, acpi_gbl_bad_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
Bob Mooredefba1d2005-12-16 17:05:00 -0500619 return (ACPI_CAST_PTR(char,
620 acpi_gbl_desc_type_names[ACPI_GET_DESCRIPTOR_TYPE
621 (object)]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
626/*
627 * Strings and procedures used for debug only
628 */
629
Robert Moore44f6c012005-04-18 22:49:35 -0400630/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 *
632 * FUNCTION: acpi_ut_get_mutex_name
633 *
Robert Moore44f6c012005-04-18 22:49:35 -0400634 * PARAMETERS: mutex_id - The predefined ID for this mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 *
Robert Moore44f6c012005-04-18 22:49:35 -0400636 * RETURN: String containing the name of the mutex. Always returns a valid
637 * pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 *
639 * DESCRIPTION: Translate a mutex ID into a name string (Debug only)
640 *
Robert Moore44f6c012005-04-18 22:49:35 -0400641 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Len Brown4be44fc2005-08-05 00:44:28 -0400643char *acpi_ut_get_mutex_name(u32 mutex_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645
Bob Moore4c90ece2006-06-08 16:29:00 -0400646 if (mutex_id > ACPI_MAX_MUTEX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return ("Invalid Mutex ID");
648 }
649
650 return (acpi_gbl_mutex_names[mutex_id]);
651}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652#endif
653
Robert Moore44f6c012005-04-18 22:49:35 -0400654/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 *
656 * FUNCTION: acpi_ut_valid_object_type
657 *
658 * PARAMETERS: Type - Object type to be validated
659 *
Robert Moore44f6c012005-04-18 22:49:35 -0400660 * RETURN: TRUE if valid object type, FALSE otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 *
662 * DESCRIPTION: Validate an object type
663 *
Robert Moore44f6c012005-04-18 22:49:35 -0400664 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Len Brown4be44fc2005-08-05 00:44:28 -0400666u8 acpi_ut_valid_object_type(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668
Len Brown4be44fc2005-08-05 00:44:28 -0400669 if (type > ACPI_TYPE_LOCAL_MAX) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /* Note: Assumes all TYPEs are contiguous (external/local) */
672
673 return (FALSE);
674 }
675
676 return (TRUE);
677}
678
Robert Moore44f6c012005-04-18 22:49:35 -0400679/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 * FUNCTION: acpi_ut_init_globals
682 *
Robert Moore44f6c012005-04-18 22:49:35 -0400683 * PARAMETERS: None
684 *
685 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 *
687 * DESCRIPTION: Init library globals. All globals that require specific
688 * initialization should be initialized here!
689 *
Robert Moore44f6c012005-04-18 22:49:35 -0400690 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Len Brown4be44fc2005-08-05 00:44:28 -0400692void acpi_ut_init_globals(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Len Brown4be44fc2005-08-05 00:44:28 -0400694 acpi_status status;
695 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Bob Mooreb229cf92006-04-21 17:15:00 -0400697 ACPI_FUNCTION_TRACE(ut_init_globals);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Robert Moore73459f72005-06-24 00:00:00 -0400699 /* Create all memory caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Len Brown4be44fc2005-08-05 00:44:28 -0400701 status = acpi_ut_create_caches();
702 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400703 return;
704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* Mutex locked flags */
707
Bob Moore4c90ece2006-06-08 16:29:00 -0400708 for (i = 0; i < ACPI_NUM_MUTEX; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400709 acpi_gbl_mutex_info[i].mutex = NULL;
710 acpi_gbl_mutex_info[i].thread_id = ACPI_MUTEX_NOT_ACQUIRED;
711 acpi_gbl_mutex_info[i].use_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713
Bob Moore28f55eb2005-12-02 18:27:00 -0500714 for (i = 0; i < ACPI_NUM_OWNERID_MASKS; i++) {
715 acpi_gbl_owner_id_mask[i] = 0;
716 }
717 acpi_gbl_owner_id_mask[ACPI_NUM_OWNERID_MASKS - 1] = 0x80000000; /* Last ID is never valid */
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* GPE support */
720
Bob Moorefdffb722007-02-02 19:48:19 +0300721 acpi_gpe_count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400722 acpi_gbl_gpe_xrupt_list_head = NULL;
723 acpi_gbl_gpe_fadt_blocks[0] = NULL;
724 acpi_gbl_gpe_fadt_blocks[1] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 /* Global notify handlers */
727
Len Brown4be44fc2005-08-05 00:44:28 -0400728 acpi_gbl_system_notify.handler = NULL;
729 acpi_gbl_device_notify.handler = NULL;
730 acpi_gbl_exception_handler = NULL;
731 acpi_gbl_init_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* Global Lock support */
734
Bob Moore967440e32006-06-23 17:04:00 -0400735 acpi_gbl_global_lock_semaphore = NULL;
Bob Moorec81da662007-02-02 19:48:18 +0300736 acpi_gbl_global_lock_mutex = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400737 acpi_gbl_global_lock_acquired = FALSE;
Len Brown4be44fc2005-08-05 00:44:28 -0400738 acpi_gbl_global_lock_handle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /* Miscellaneous variables */
741
Len Brown4be44fc2005-08-05 00:44:28 -0400742 acpi_gbl_cm_single_step = FALSE;
743 acpi_gbl_db_terminate_threads = FALSE;
744 acpi_gbl_shutdown = FALSE;
745 acpi_gbl_ns_lookup_count = 0;
746 acpi_gbl_ps_find_count = 0;
747 acpi_gbl_acpi_hardware_present = TRUE;
Bob Moore28f55eb2005-12-02 18:27:00 -0500748 acpi_gbl_last_owner_id_index = 0;
749 acpi_gbl_next_owner_id_offset = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400750 acpi_gbl_trace_method_name = 0;
751 acpi_gbl_trace_dbg_level = 0;
752 acpi_gbl_trace_dbg_layer = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400753 acpi_gbl_debugger_configuration = DEBUGGER_THREADING;
754 acpi_gbl_db_output_flags = ACPI_DB_CONSOLE_OUTPUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 /* Hardware oriented */
757
Len Brown4be44fc2005-08-05 00:44:28 -0400758 acpi_gbl_events_initialized = FALSE;
759 acpi_gbl_system_awake_and_running = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /* Namespace */
762
Len Brown4be44fc2005-08-05 00:44:28 -0400763 acpi_gbl_root_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 acpi_gbl_root_node_struct.name.integer = ACPI_ROOT_NAME;
Bob Moore616861242006-03-17 16:44:00 -0500765 acpi_gbl_root_node_struct.descriptor_type = ACPI_DESC_TYPE_NAMED;
Len Brown4be44fc2005-08-05 00:44:28 -0400766 acpi_gbl_root_node_struct.type = ACPI_TYPE_DEVICE;
767 acpi_gbl_root_node_struct.child = NULL;
768 acpi_gbl_root_node_struct.peer = NULL;
769 acpi_gbl_root_node_struct.object = NULL;
770 acpi_gbl_root_node_struct.flags = ANOBJ_END_OF_PEER_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772#ifdef ACPI_DEBUG_OUTPUT
Len Brown4be44fc2005-08-05 00:44:28 -0400773 acpi_gbl_lowest_stack_pointer = ACPI_SIZE_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774#endif
775
776 return_VOID;
777}
Bob Moore83135242006-10-03 00:00:00 -0400778
779ACPI_EXPORT_SYMBOL(acpi_dbg_level)
780ACPI_EXPORT_SYMBOL(acpi_dbg_layer)
Bob Moorefdffb722007-02-02 19:48:19 +0300781ACPI_EXPORT_SYMBOL(acpi_gpe_count)