blob: 8809306ba94cadfe832bdbdb3f0141b6630d0ef3 [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 u8 acpi_gbl_decode_to8bit[8] = { 1, 2, 4, 8, 16, 32, 64, 128 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Len Brown4be44fc2005-08-05 00:44:28 -0400169const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 "\\_S0_",
171 "\\_S1_",
172 "\\_S2_",
173 "\\_S3_",
174 "\\_S4_",
175 "\\_S5_"
176};
177
Len Brown4be44fc2005-08-05 00:44:28 -0400178const char *acpi_gbl_highest_dstate_names[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 "_S1D",
180 "_S2D",
181 "_S3D",
182 "_S4D"
183};
184
Robert Moore44f6c012005-04-18 22:49:35 -0400185/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * Namespace globals
188 *
189 ******************************************************************************/
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
192 * Predefined ACPI Names (Built-in to the Interpreter)
193 *
194 * NOTES:
195 * 1) _SB_ is defined to be a device to allow \_SB_._INI to be run
196 * during the initialization sequence.
197 * 2) _TZ_ is defined to be a thermal zone in order to allow ASL code to
198 * perform a Notify() operation on it.
199 */
Bob Moore08978312005-10-21 00:00:00 -0400200const struct acpi_predefined_names acpi_gbl_pre_defined_names[] = {
201 {"_GPE", ACPI_TYPE_LOCAL_SCOPE, NULL},
202 {"_PR_", ACPI_TYPE_LOCAL_SCOPE, NULL},
203 {"_SB_", ACPI_TYPE_DEVICE, NULL},
204 {"_SI_", ACPI_TYPE_LOCAL_SCOPE, NULL},
205 {"_TZ_", ACPI_TYPE_THERMAL, NULL},
206 {"_REV", ACPI_TYPE_INTEGER, (char *)ACPI_CA_SUPPORT_LEVEL},
207 {"_OS_", ACPI_TYPE_STRING, ACPI_OS_NAME},
208 {"_GL_", ACPI_TYPE_MUTEX, (char *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210#if !defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY)
Bob Moore08978312005-10-21 00:00:00 -0400211 {"_OSI", ACPI_TYPE_METHOD, (char *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Robert Moore44f6c012005-04-18 22:49:35 -0400214 /* Table terminator */
215
Bob Moore08978312005-10-21 00:00:00 -0400216 {NULL, ACPI_TYPE_ANY, NULL}
Robert Moore44f6c012005-04-18 22:49:35 -0400217};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/*
220 * Properties of the ACPI Object Types, both internal and external.
221 * The table is indexed by values of acpi_object_type
222 */
Len Brown4be44fc2005-08-05 00:44:28 -0400223const u8 acpi_gbl_ns_properties[] = {
224 ACPI_NS_NORMAL, /* 00 Any */
225 ACPI_NS_NORMAL, /* 01 Number */
226 ACPI_NS_NORMAL, /* 02 String */
227 ACPI_NS_NORMAL, /* 03 Buffer */
228 ACPI_NS_NORMAL, /* 04 Package */
229 ACPI_NS_NORMAL, /* 05 field_unit */
230 ACPI_NS_NEWSCOPE, /* 06 Device */
231 ACPI_NS_NORMAL, /* 07 Event */
232 ACPI_NS_NEWSCOPE, /* 08 Method */
233 ACPI_NS_NORMAL, /* 09 Mutex */
234 ACPI_NS_NORMAL, /* 10 Region */
235 ACPI_NS_NEWSCOPE, /* 11 Power */
236 ACPI_NS_NEWSCOPE, /* 12 Processor */
237 ACPI_NS_NEWSCOPE, /* 13 Thermal */
238 ACPI_NS_NORMAL, /* 14 buffer_field */
239 ACPI_NS_NORMAL, /* 15 ddb_handle */
240 ACPI_NS_NORMAL, /* 16 Debug Object */
241 ACPI_NS_NORMAL, /* 17 def_field */
242 ACPI_NS_NORMAL, /* 18 bank_field */
243 ACPI_NS_NORMAL, /* 19 index_field */
244 ACPI_NS_NORMAL, /* 20 Reference */
245 ACPI_NS_NORMAL, /* 21 Alias */
246 ACPI_NS_NORMAL, /* 22 method_alias */
247 ACPI_NS_NORMAL, /* 23 Notify */
248 ACPI_NS_NORMAL, /* 24 Address Handler */
249 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 25 Resource Desc */
250 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 26 Resource Field */
251 ACPI_NS_NEWSCOPE, /* 27 Scope */
252 ACPI_NS_NORMAL, /* 28 Extra */
253 ACPI_NS_NORMAL, /* 29 Data */
254 ACPI_NS_NORMAL /* 30 Invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255};
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/* Hex to ASCII conversion table */
258
Len Brown4be44fc2005-08-05 00:44:28 -0400259static const char acpi_gbl_hex_to_ascii[] = {
260 '0', '1', '2', '3', '4', '5', '6', '7',
261 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
Robert Moore44f6c012005-04-18 22:49:35 -0400262};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Robert Moore44f6c012005-04-18 22:49:35 -0400264/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 *
266 * FUNCTION: acpi_ut_hex_to_ascii_char
267 *
268 * PARAMETERS: Integer - Contains the hex digit
269 * Position - bit position of the digit within the
Robert Moore44f6c012005-04-18 22:49:35 -0400270 * integer (multiple of 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
Robert Moore44f6c012005-04-18 22:49:35 -0400272 * RETURN: The converted Ascii character
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
Robert Moore44f6c012005-04-18 22:49:35 -0400274 * DESCRIPTION: Convert a hex digit to an Ascii character
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 *
Robert Moore44f6c012005-04-18 22:49:35 -0400276 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Len Brown4be44fc2005-08-05 00:44:28 -0400278char acpi_ut_hex_to_ascii_char(acpi_integer integer, u32 position)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280
281 return (acpi_gbl_hex_to_ascii[(integer >> position) & 0xF]);
282}
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/******************************************************************************
285 *
286 * Event and Hardware globals
287 *
288 ******************************************************************************/
289
Len Brown4be44fc2005-08-05 00:44:28 -0400290struct acpi_bit_register_info acpi_gbl_bit_register_info[ACPI_NUM_BITREG] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* Name Parent Register Register Bit Position Register Bit Mask */
292
Len Brown4be44fc2005-08-05 00:44:28 -0400293 /* ACPI_BITREG_TIMER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
294 ACPI_BITPOSITION_TIMER_STATUS,
295 ACPI_BITMASK_TIMER_STATUS},
296 /* ACPI_BITREG_BUS_MASTER_STATUS */ {ACPI_REGISTER_PM1_STATUS,
297 ACPI_BITPOSITION_BUS_MASTER_STATUS,
298 ACPI_BITMASK_BUS_MASTER_STATUS},
299 /* ACPI_BITREG_GLOBAL_LOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
300 ACPI_BITPOSITION_GLOBAL_LOCK_STATUS,
301 ACPI_BITMASK_GLOBAL_LOCK_STATUS},
302 /* ACPI_BITREG_POWER_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
303 ACPI_BITPOSITION_POWER_BUTTON_STATUS,
304 ACPI_BITMASK_POWER_BUTTON_STATUS},
305 /* ACPI_BITREG_SLEEP_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS,
306 ACPI_BITPOSITION_SLEEP_BUTTON_STATUS,
307 ACPI_BITMASK_SLEEP_BUTTON_STATUS},
308 /* ACPI_BITREG_RT_CLOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS,
309 ACPI_BITPOSITION_RT_CLOCK_STATUS,
310 ACPI_BITMASK_RT_CLOCK_STATUS},
311 /* ACPI_BITREG_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
312 ACPI_BITPOSITION_WAKE_STATUS,
313 ACPI_BITMASK_WAKE_STATUS},
314 /* ACPI_BITREG_PCIEXP_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS,
315 ACPI_BITPOSITION_PCIEXP_WAKE_STATUS,
316 ACPI_BITMASK_PCIEXP_WAKE_STATUS},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 /* ACPI_BITREG_TIMER_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
319 ACPI_BITPOSITION_TIMER_ENABLE,
320 ACPI_BITMASK_TIMER_ENABLE},
321 /* ACPI_BITREG_GLOBAL_LOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
322 ACPI_BITPOSITION_GLOBAL_LOCK_ENABLE,
323 ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
324 /* ACPI_BITREG_POWER_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
325 ACPI_BITPOSITION_POWER_BUTTON_ENABLE,
326 ACPI_BITMASK_POWER_BUTTON_ENABLE},
327 /* ACPI_BITREG_SLEEP_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
328 ACPI_BITPOSITION_SLEEP_BUTTON_ENABLE,
329 ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
330 /* ACPI_BITREG_RT_CLOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE,
331 ACPI_BITPOSITION_RT_CLOCK_ENABLE,
332 ACPI_BITMASK_RT_CLOCK_ENABLE},
333 /* ACPI_BITREG_WAKE_ENABLE */ {ACPI_REGISTER_PM1_ENABLE, 0, 0},
334 /* ACPI_BITREG_PCIEXP_WAKE_DISABLE */ {ACPI_REGISTER_PM1_ENABLE,
335 ACPI_BITPOSITION_PCIEXP_WAKE_DISABLE,
336 ACPI_BITMASK_PCIEXP_WAKE_DISABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Len Brown4be44fc2005-08-05 00:44:28 -0400338 /* ACPI_BITREG_SCI_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
339 ACPI_BITPOSITION_SCI_ENABLE,
340 ACPI_BITMASK_SCI_ENABLE},
341 /* ACPI_BITREG_BUS_MASTER_RLD */ {ACPI_REGISTER_PM1_CONTROL,
342 ACPI_BITPOSITION_BUS_MASTER_RLD,
343 ACPI_BITMASK_BUS_MASTER_RLD},
344 /* ACPI_BITREG_GLOBAL_LOCK_RELEASE */ {ACPI_REGISTER_PM1_CONTROL,
345 ACPI_BITPOSITION_GLOBAL_LOCK_RELEASE,
346 ACPI_BITMASK_GLOBAL_LOCK_RELEASE},
347 /* ACPI_BITREG_SLEEP_TYPE_A */ {ACPI_REGISTER_PM1_CONTROL,
348 ACPI_BITPOSITION_SLEEP_TYPE_X,
349 ACPI_BITMASK_SLEEP_TYPE_X},
350 /* ACPI_BITREG_SLEEP_TYPE_B */ {ACPI_REGISTER_PM1_CONTROL,
351 ACPI_BITPOSITION_SLEEP_TYPE_X,
352 ACPI_BITMASK_SLEEP_TYPE_X},
353 /* ACPI_BITREG_SLEEP_ENABLE */ {ACPI_REGISTER_PM1_CONTROL,
354 ACPI_BITPOSITION_SLEEP_ENABLE,
355 ACPI_BITMASK_SLEEP_ENABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Len Brown4be44fc2005-08-05 00:44:28 -0400357 /* ACPI_BITREG_ARB_DIS */ {ACPI_REGISTER_PM2_CONTROL,
358 ACPI_BITPOSITION_ARB_DISABLE,
359 ACPI_BITMASK_ARB_DISABLE}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
Len Brown4be44fc2005-08-05 00:44:28 -0400362struct acpi_fixed_event_info acpi_gbl_fixed_event_info[ACPI_NUM_FIXED_EVENTS] = {
363 /* ACPI_EVENT_PMTIMER */ {ACPI_BITREG_TIMER_STATUS,
364 ACPI_BITREG_TIMER_ENABLE,
365 ACPI_BITMASK_TIMER_STATUS,
366 ACPI_BITMASK_TIMER_ENABLE},
367 /* ACPI_EVENT_GLOBAL */ {ACPI_BITREG_GLOBAL_LOCK_STATUS,
368 ACPI_BITREG_GLOBAL_LOCK_ENABLE,
369 ACPI_BITMASK_GLOBAL_LOCK_STATUS,
370 ACPI_BITMASK_GLOBAL_LOCK_ENABLE},
371 /* ACPI_EVENT_POWER_BUTTON */ {ACPI_BITREG_POWER_BUTTON_STATUS,
372 ACPI_BITREG_POWER_BUTTON_ENABLE,
373 ACPI_BITMASK_POWER_BUTTON_STATUS,
374 ACPI_BITMASK_POWER_BUTTON_ENABLE},
375 /* ACPI_EVENT_SLEEP_BUTTON */ {ACPI_BITREG_SLEEP_BUTTON_STATUS,
376 ACPI_BITREG_SLEEP_BUTTON_ENABLE,
377 ACPI_BITMASK_SLEEP_BUTTON_STATUS,
378 ACPI_BITMASK_SLEEP_BUTTON_ENABLE},
379 /* ACPI_EVENT_RTC */ {ACPI_BITREG_RT_CLOCK_STATUS,
380 ACPI_BITREG_RT_CLOCK_ENABLE,
381 ACPI_BITMASK_RT_CLOCK_STATUS,
382 ACPI_BITMASK_RT_CLOCK_ENABLE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383};
384
Robert Moore44f6c012005-04-18 22:49:35 -0400385/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 *
387 * FUNCTION: acpi_ut_get_region_name
388 *
389 * PARAMETERS: None.
390 *
391 * RETURN: Status
392 *
393 * DESCRIPTION: Translate a Space ID into a name string (Debug only)
394 *
Robert Moore44f6c012005-04-18 22:49:35 -0400395 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/* Region type decoding */
398
Len Brown4be44fc2005-08-05 00:44:28 -0400399const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 "SystemMemory",
401 "SystemIO",
402 "PCI_Config",
403 "EmbeddedControl",
404 "SMBus",
405 "CMOS",
406 "PCIBARTarget",
407 "DataTable"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408};
409
Len Brown4be44fc2005-08-05 00:44:28 -0400410char *acpi_ut_get_region_name(u8 space_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412
Len Brown4be44fc2005-08-05 00:44:28 -0400413 if (space_id >= ACPI_USER_REGION_BEGIN) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400414 return ("UserDefinedRegion");
Len Brown4be44fc2005-08-05 00:44:28 -0400415 } else if (space_id >= ACPI_NUM_PREDEFINED_REGIONS) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400416 return ("InvalidSpaceId");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
Bob Mooredefba1d2005-12-16 17:05:00 -0500419 return (ACPI_CAST_PTR(char, acpi_gbl_region_types[space_id]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Robert Moore44f6c012005-04-18 22:49:35 -0400422/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 *
424 * FUNCTION: acpi_ut_get_event_name
425 *
426 * PARAMETERS: None.
427 *
428 * RETURN: Status
429 *
430 * DESCRIPTION: Translate a Event ID into a name string (Debug only)
431 *
Robert Moore44f6c012005-04-18 22:49:35 -0400432 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434/* Event type decoding */
435
Len Brown4be44fc2005-08-05 00:44:28 -0400436static const char *acpi_gbl_event_types[ACPI_NUM_FIXED_EVENTS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 "PM_Timer",
Bob Moore08978312005-10-21 00:00:00 -0400438 "GlobalLock",
439 "PowerButton",
440 "SleepButton",
441 "RealTimeClock",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442};
443
Len Brown4be44fc2005-08-05 00:44:28 -0400444char *acpi_ut_get_event_name(u32 event_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446
Len Brown4be44fc2005-08-05 00:44:28 -0400447 if (event_id > ACPI_EVENT_MAX) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400448 return ("InvalidEventID");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Bob Moore4a90c7e2006-01-13 16:22:00 -0500451 return (ACPI_CAST_PTR(char, acpi_gbl_event_types[event_id]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Robert Moore44f6c012005-04-18 22:49:35 -0400454/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 *
456 * FUNCTION: acpi_ut_get_type_name
457 *
458 * PARAMETERS: None.
459 *
460 * RETURN: Status
461 *
462 * DESCRIPTION: Translate a Type ID into a name string (Debug only)
463 *
Robert Moore44f6c012005-04-18 22:49:35 -0400464 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466/*
467 * Elements of acpi_gbl_ns_type_names below must match
468 * one-to-one with values of acpi_object_type
469 *
Robert Moore44f6c012005-04-18 22:49:35 -0400470 * The type ACPI_TYPE_ANY (Untyped) is used as a "don't care" when searching;
471 * when stored in a table it really means that we have thus far seen no
472 * evidence to indicate what type is actually going to be stored for this entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 */
Len Brown4be44fc2005-08-05 00:44:28 -0400474static const char acpi_gbl_bad_type[] = "UNDEFINED";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Robert Moore44f6c012005-04-18 22:49:35 -0400476/* Printable names of the ACPI object types */
477
Len Brown4be44fc2005-08-05 00:44:28 -0400478static const char *acpi_gbl_ns_type_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /* 00 */ "Untyped",
480 /* 01 */ "Integer",
481 /* 02 */ "String",
482 /* 03 */ "Buffer",
483 /* 04 */ "Package",
Bob Moore08978312005-10-21 00:00:00 -0400484 /* 05 */ "FieldUnit",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /* 06 */ "Device",
486 /* 07 */ "Event",
487 /* 08 */ "Method",
488 /* 09 */ "Mutex",
489 /* 10 */ "Region",
490 /* 11 */ "Power",
491 /* 12 */ "Processor",
492 /* 13 */ "Thermal",
Bob Moore08978312005-10-21 00:00:00 -0400493 /* 14 */ "BufferField",
494 /* 15 */ "DdbHandle",
495 /* 16 */ "DebugObject",
496 /* 17 */ "RegionField",
497 /* 18 */ "BankField",
498 /* 19 */ "IndexField",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /* 20 */ "Reference",
500 /* 21 */ "Alias",
Bob Moore08978312005-10-21 00:00:00 -0400501 /* 22 */ "MethodAlias",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /* 23 */ "Notify",
Bob Moore08978312005-10-21 00:00:00 -0400503 /* 24 */ "AddrHandler",
504 /* 25 */ "ResourceDesc",
505 /* 26 */ "ResourceFld",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* 27 */ "Scope",
507 /* 28 */ "Extra",
508 /* 29 */ "Data",
509 /* 30 */ "Invalid"
510};
511
Len Brown4be44fc2005-08-05 00:44:28 -0400512char *acpi_ut_get_type_name(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514
Len Brown4be44fc2005-08-05 00:44:28 -0400515 if (type > ACPI_TYPE_INVALID) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500516 return (ACPI_CAST_PTR(char, acpi_gbl_bad_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
Bob Moore4a90c7e2006-01-13 16:22:00 -0500519 return (ACPI_CAST_PTR(char, acpi_gbl_ns_type_names[type]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Len Brown4be44fc2005-08-05 00:44:28 -0400522char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524
Len Brown4be44fc2005-08-05 00:44:28 -0400525 if (!obj_desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return ("[NULL Object Descriptor]");
527 }
528
Len Brown4be44fc2005-08-05 00:44:28 -0400529 return (acpi_ut_get_type_name(ACPI_GET_OBJECT_TYPE(obj_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Robert Moore44f6c012005-04-18 22:49:35 -0400532/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 *
534 * FUNCTION: acpi_ut_get_node_name
535 *
536 * PARAMETERS: Object - A namespace node
537 *
538 * RETURN: Pointer to a string
539 *
540 * DESCRIPTION: Validate the node and return the node's ACPI name.
541 *
Robert Moore44f6c012005-04-18 22:49:35 -0400542 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Len Brown4be44fc2005-08-05 00:44:28 -0400544char *acpi_ut_get_node_name(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Len Brown4be44fc2005-08-05 00:44:28 -0400546 struct acpi_namespace_node *node = (struct acpi_namespace_node *)object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 /* Must return a string of exactly 4 characters == ACPI_NAME_SIZE */
549
Len Brown4be44fc2005-08-05 00:44:28 -0400550 if (!object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return ("NULL");
552 }
553
554 /* Check for Root node */
555
Len Brown4be44fc2005-08-05 00:44:28 -0400556 if ((object == ACPI_ROOT_OBJECT) || (object == acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return ("\"\\\" ");
558 }
559
560 /* Descriptor must be a namespace node */
561
Bob Moore616861242006-03-17 16:44:00 -0500562 if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return ("####");
564 }
565
566 /* Name must be a valid ACPI name */
567
Bob Moorec51a4de2005-11-17 13:07:00 -0500568 if (!acpi_ut_valid_acpi_name(node->name.integer)) {
Bob Moore793c2382006-03-31 00:00:00 -0500569 node->name.integer = acpi_ut_repair_name(node->name.integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
572 /* Return the name */
573
574 return (node->name.ascii);
575}
576
Robert Moore44f6c012005-04-18 22:49:35 -0400577/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 *
579 * FUNCTION: acpi_ut_get_descriptor_name
580 *
581 * PARAMETERS: Object - An ACPI object
582 *
583 * RETURN: Pointer to a string
584 *
585 * DESCRIPTION: Validate object and return the descriptor type
586 *
Robert Moore44f6c012005-04-18 22:49:35 -0400587 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Robert Moore44f6c012005-04-18 22:49:35 -0400589/* Printable names of object descriptor types */
590
Len Brown4be44fc2005-08-05 00:44:28 -0400591static const char *acpi_gbl_desc_type_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* 00 */ "Invalid",
593 /* 01 */ "Cached",
594 /* 02 */ "State-Generic",
595 /* 03 */ "State-Update",
596 /* 04 */ "State-Package",
597 /* 05 */ "State-Control",
Bob Moore08978312005-10-21 00:00:00 -0400598 /* 06 */ "State-RootParseScope",
599 /* 07 */ "State-ParseScope",
600 /* 08 */ "State-WalkScope",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 /* 09 */ "State-Result",
602 /* 10 */ "State-Notify",
603 /* 11 */ "State-Thread",
604 /* 12 */ "Walk",
605 /* 13 */ "Parser",
606 /* 14 */ "Operand",
607 /* 15 */ "Node"
608};
609
Len Brown4be44fc2005-08-05 00:44:28 -0400610char *acpi_ut_get_descriptor_name(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612
Len Brown4be44fc2005-08-05 00:44:28 -0400613 if (!object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return ("NULL OBJECT");
615 }
616
Len Brown4be44fc2005-08-05 00:44:28 -0400617 if (ACPI_GET_DESCRIPTOR_TYPE(object) > ACPI_DESC_TYPE_MAX) {
Bob Mooredefba1d2005-12-16 17:05:00 -0500618 return (ACPI_CAST_PTR(char, acpi_gbl_bad_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620
Bob Mooredefba1d2005-12-16 17:05:00 -0500621 return (ACPI_CAST_PTR(char,
622 acpi_gbl_desc_type_names[ACPI_GET_DESCRIPTOR_TYPE
623 (object)]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
628/*
629 * Strings and procedures used for debug only
630 */
631
Robert Moore44f6c012005-04-18 22:49:35 -0400632/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *
634 * FUNCTION: acpi_ut_get_mutex_name
635 *
Robert Moore44f6c012005-04-18 22:49:35 -0400636 * PARAMETERS: mutex_id - The predefined ID for this mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 *
Robert Moore44f6c012005-04-18 22:49:35 -0400638 * RETURN: String containing the name of the mutex. Always returns a valid
639 * pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 *
641 * DESCRIPTION: Translate a mutex ID into a name string (Debug only)
642 *
Robert Moore44f6c012005-04-18 22:49:35 -0400643 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Len Brown4be44fc2005-08-05 00:44:28 -0400645char *acpi_ut_get_mutex_name(u32 mutex_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647
Bob Moore4c90ece2006-06-08 16:29:00 -0400648 if (mutex_id > ACPI_MAX_MUTEX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return ("Invalid Mutex ID");
650 }
651
652 return (acpi_gbl_mutex_names[mutex_id]);
653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654#endif
655
Robert Moore44f6c012005-04-18 22:49:35 -0400656/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 *
658 * FUNCTION: acpi_ut_valid_object_type
659 *
660 * PARAMETERS: Type - Object type to be validated
661 *
Robert Moore44f6c012005-04-18 22:49:35 -0400662 * RETURN: TRUE if valid object type, FALSE otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 *
664 * DESCRIPTION: Validate an object type
665 *
Robert Moore44f6c012005-04-18 22:49:35 -0400666 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Len Brown4be44fc2005-08-05 00:44:28 -0400668u8 acpi_ut_valid_object_type(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670
Len Brown4be44fc2005-08-05 00:44:28 -0400671 if (type > ACPI_TYPE_LOCAL_MAX) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* Note: Assumes all TYPEs are contiguous (external/local) */
674
675 return (FALSE);
676 }
677
678 return (TRUE);
679}
680
Robert Moore44f6c012005-04-18 22:49:35 -0400681/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 * FUNCTION: acpi_ut_init_globals
684 *
Robert Moore44f6c012005-04-18 22:49:35 -0400685 * PARAMETERS: None
686 *
687 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 *
689 * DESCRIPTION: Init library globals. All globals that require specific
690 * initialization should be initialized here!
691 *
Robert Moore44f6c012005-04-18 22:49:35 -0400692 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Len Brown4be44fc2005-08-05 00:44:28 -0400694void acpi_ut_init_globals(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Len Brown4be44fc2005-08-05 00:44:28 -0400696 acpi_status status;
697 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Bob Mooreb229cf92006-04-21 17:15:00 -0400699 ACPI_FUNCTION_TRACE(ut_init_globals);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Robert Moore73459f72005-06-24 00:00:00 -0400701 /* Create all memory caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Len Brown4be44fc2005-08-05 00:44:28 -0400703 status = acpi_ut_create_caches();
704 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400705 return;
706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /* Mutex locked flags */
709
Bob Moore4c90ece2006-06-08 16:29:00 -0400710 for (i = 0; i < ACPI_NUM_MUTEX; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400711 acpi_gbl_mutex_info[i].mutex = NULL;
712 acpi_gbl_mutex_info[i].thread_id = ACPI_MUTEX_NOT_ACQUIRED;
713 acpi_gbl_mutex_info[i].use_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
Bob Moore28f55eb2005-12-02 18:27:00 -0500716 for (i = 0; i < ACPI_NUM_OWNERID_MASKS; i++) {
717 acpi_gbl_owner_id_mask[i] = 0;
718 }
719 acpi_gbl_owner_id_mask[ACPI_NUM_OWNERID_MASKS - 1] = 0x80000000; /* Last ID is never valid */
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* GPE support */
722
Len Brown4be44fc2005-08-05 00:44:28 -0400723 acpi_gbl_gpe_xrupt_list_head = NULL;
724 acpi_gbl_gpe_fadt_blocks[0] = NULL;
725 acpi_gbl_gpe_fadt_blocks[1] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /* Global notify handlers */
728
Len Brown4be44fc2005-08-05 00:44:28 -0400729 acpi_gbl_system_notify.handler = NULL;
730 acpi_gbl_device_notify.handler = NULL;
731 acpi_gbl_exception_handler = NULL;
732 acpi_gbl_init_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 /* Global Lock support */
735
Bob Moore967440e32006-06-23 17:04:00 -0400736 acpi_gbl_global_lock_semaphore = NULL;
Bob Moorec81da662007-02-02 19:48:18 +0300737 acpi_gbl_global_lock_mutex = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400738 acpi_gbl_global_lock_acquired = FALSE;
Len Brown4be44fc2005-08-05 00:44:28 -0400739 acpi_gbl_global_lock_handle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 /* Miscellaneous variables */
742
Len Brown4be44fc2005-08-05 00:44:28 -0400743 acpi_gbl_cm_single_step = FALSE;
744 acpi_gbl_db_terminate_threads = FALSE;
745 acpi_gbl_shutdown = FALSE;
746 acpi_gbl_ns_lookup_count = 0;
747 acpi_gbl_ps_find_count = 0;
748 acpi_gbl_acpi_hardware_present = TRUE;
Bob Moore28f55eb2005-12-02 18:27:00 -0500749 acpi_gbl_last_owner_id_index = 0;
750 acpi_gbl_next_owner_id_offset = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400751 acpi_gbl_trace_method_name = 0;
752 acpi_gbl_trace_dbg_level = 0;
753 acpi_gbl_trace_dbg_layer = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400754 acpi_gbl_debugger_configuration = DEBUGGER_THREADING;
755 acpi_gbl_db_output_flags = ACPI_DB_CONSOLE_OUTPUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 /* Hardware oriented */
758
Len Brown4be44fc2005-08-05 00:44:28 -0400759 acpi_gbl_events_initialized = FALSE;
760 acpi_gbl_system_awake_and_running = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /* Namespace */
763
Len Brown4be44fc2005-08-05 00:44:28 -0400764 acpi_gbl_root_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 acpi_gbl_root_node_struct.name.integer = ACPI_ROOT_NAME;
Bob Moore616861242006-03-17 16:44:00 -0500766 acpi_gbl_root_node_struct.descriptor_type = ACPI_DESC_TYPE_NAMED;
Len Brown4be44fc2005-08-05 00:44:28 -0400767 acpi_gbl_root_node_struct.type = ACPI_TYPE_DEVICE;
768 acpi_gbl_root_node_struct.child = NULL;
769 acpi_gbl_root_node_struct.peer = NULL;
770 acpi_gbl_root_node_struct.object = NULL;
771 acpi_gbl_root_node_struct.flags = ANOBJ_END_OF_PEER_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773#ifdef ACPI_DEBUG_OUTPUT
Len Brown4be44fc2005-08-05 00:44:28 -0400774 acpi_gbl_lowest_stack_pointer = ACPI_SIZE_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775#endif
776
777 return_VOID;
778}
Bob Moore83135242006-10-03 00:00:00 -0400779
780ACPI_EXPORT_SYMBOL(acpi_dbg_level)
781ACPI_EXPORT_SYMBOL(acpi_dbg_layer)