1 /******************************************************************************
3 * Module Name: utglobal - Global variables for the ACPI subsystem
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2005, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #define DEFINE_ACPI_GLOBALS
46 #include <linux/module.h>
48 #include <acpi/acpi.h>
49 #include <acpi/acnamesp.h>
51 #define _COMPONENT ACPI_UTILITIES
52 ACPI_MODULE_NAME ("utglobal")
55 /******************************************************************************
57 * FUNCTION: acpi_format_exception
59 * PARAMETERS: Status - The acpi_status code to be formatted
61 * RETURN: A string containing the exception text
63 * DESCRIPTION: This function translates an ACPI exception into an ASCII string.
65 ******************************************************************************/
68 acpi_format_exception (
71 const char *exception
= "UNKNOWN_STATUS_CODE";
72 acpi_status sub_status
;
75 ACPI_FUNCTION_NAME ("format_exception");
78 sub_status
= (status
& ~AE_CODE_MASK
);
80 switch (status
& AE_CODE_MASK
) {
81 case AE_CODE_ENVIRONMENTAL
:
83 if (sub_status
<= AE_CODE_ENV_MAX
) {
84 exception
= acpi_gbl_exception_names_env
[sub_status
];
89 case AE_CODE_PROGRAMMER
:
91 if (sub_status
<= AE_CODE_PGM_MAX
) {
92 exception
= acpi_gbl_exception_names_pgm
[sub_status
-1];
97 case AE_CODE_ACPI_TABLES
:
99 if (sub_status
<= AE_CODE_TBL_MAX
) {
100 exception
= acpi_gbl_exception_names_tbl
[sub_status
-1];
107 if (sub_status
<= AE_CODE_AML_MAX
) {
108 exception
= acpi_gbl_exception_names_aml
[sub_status
-1];
113 case AE_CODE_CONTROL
:
115 if (sub_status
<= AE_CODE_CTRL_MAX
) {
116 exception
= acpi_gbl_exception_names_ctrl
[sub_status
-1];
126 return ((const char *) exception
);
130 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR
, "Unknown exception code: 0x%8.8X\n", status
));
131 return ((const char *) exception
);
135 /******************************************************************************
137 * Static global variable initialization.
139 ******************************************************************************/
142 * We want the debug switches statically initialized so they
143 * are already set when the debugger is entered.
146 /* Debug switch - level and trace mask */
147 u32 acpi_dbg_level
= ACPI_DEBUG_DEFAULT
;
148 EXPORT_SYMBOL(acpi_dbg_level
);
150 /* Debug switch - layer (component) mask */
152 u32 acpi_dbg_layer
= ACPI_COMPONENT_DEFAULT
| ACPI_ALL_DRIVERS
;
153 EXPORT_SYMBOL(acpi_dbg_layer
);
154 u32 acpi_gbl_nesting_level
= 0;
157 /* Debugger globals */
159 u8 acpi_gbl_db_terminate_threads
= FALSE
;
160 u8 acpi_gbl_abort_method
= FALSE
;
161 u8 acpi_gbl_method_executing
= FALSE
;
165 u32 acpi_gbl_startup_flags
= 0;
167 /* System starts uninitialized */
169 u8 acpi_gbl_shutdown
= TRUE
;
171 const u8 acpi_gbl_decode_to8bit
[8] = {1,2,4,8,16,32,64,128};
173 const char *acpi_gbl_sleep_state_names
[ACPI_S_STATE_COUNT
] =
183 const char *acpi_gbl_highest_dstate_names
[4] =
192 * Strings supported by the _OSI predefined (internal) method.
193 * When adding strings, be sure to update ACPI_NUM_OSI_STRINGS.
195 const char *acpi_gbl_valid_osi_strings
[ACPI_NUM_OSI_STRINGS
] =
197 /* Operating System Vendor Strings */
209 /* Feature Group Strings */
211 "Extended Address Space Descriptor"
215 /******************************************************************************
219 ******************************************************************************/
223 * Predefined ACPI Names (Built-in to the Interpreter)
226 * 1) _SB_ is defined to be a device to allow \_SB_._INI to be run
227 * during the initialization sequence.
228 * 2) _TZ_ is defined to be a thermal zone in order to allow ASL code to
229 * perform a Notify() operation on it.
231 const struct acpi_predefined_names acpi_gbl_pre_defined_names
[] =
232 { {"_GPE", ACPI_TYPE_LOCAL_SCOPE
, NULL
},
233 {"_PR_", ACPI_TYPE_LOCAL_SCOPE
, NULL
},
234 {"_SB_", ACPI_TYPE_DEVICE
, NULL
},
235 {"_SI_", ACPI_TYPE_LOCAL_SCOPE
, NULL
},
236 {"_TZ_", ACPI_TYPE_THERMAL
, NULL
},
237 {"_REV", ACPI_TYPE_INTEGER
, (char *) ACPI_CA_SUPPORT_LEVEL
},
238 {"_OS_", ACPI_TYPE_STRING
, ACPI_OS_NAME
},
239 {"_GL_", ACPI_TYPE_MUTEX
, (char *) 1},
241 #if !defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY)
242 {"_OSI", ACPI_TYPE_METHOD
, (char *) 1},
244 {NULL
, ACPI_TYPE_ANY
, NULL
} /* Table terminator */
249 * Properties of the ACPI Object Types, both internal and external.
250 * The table is indexed by values of acpi_object_type
252 const u8 acpi_gbl_ns_properties
[] =
254 ACPI_NS_NORMAL
, /* 00 Any */
255 ACPI_NS_NORMAL
, /* 01 Number */
256 ACPI_NS_NORMAL
, /* 02 String */
257 ACPI_NS_NORMAL
, /* 03 Buffer */
258 ACPI_NS_NORMAL
, /* 04 Package */
259 ACPI_NS_NORMAL
, /* 05 field_unit */
260 ACPI_NS_NEWSCOPE
, /* 06 Device */
261 ACPI_NS_NORMAL
, /* 07 Event */
262 ACPI_NS_NEWSCOPE
, /* 08 Method */
263 ACPI_NS_NORMAL
, /* 09 Mutex */
264 ACPI_NS_NORMAL
, /* 10 Region */
265 ACPI_NS_NEWSCOPE
, /* 11 Power */
266 ACPI_NS_NEWSCOPE
, /* 12 Processor */
267 ACPI_NS_NEWSCOPE
, /* 13 Thermal */
268 ACPI_NS_NORMAL
, /* 14 buffer_field */
269 ACPI_NS_NORMAL
, /* 15 ddb_handle */
270 ACPI_NS_NORMAL
, /* 16 Debug Object */
271 ACPI_NS_NORMAL
, /* 17 def_field */
272 ACPI_NS_NORMAL
, /* 18 bank_field */
273 ACPI_NS_NORMAL
, /* 19 index_field */
274 ACPI_NS_NORMAL
, /* 20 Reference */
275 ACPI_NS_NORMAL
, /* 21 Alias */
276 ACPI_NS_NORMAL
, /* 22 method_alias */
277 ACPI_NS_NORMAL
, /* 23 Notify */
278 ACPI_NS_NORMAL
, /* 24 Address Handler */
279 ACPI_NS_NEWSCOPE
| ACPI_NS_LOCAL
, /* 25 Resource Desc */
280 ACPI_NS_NEWSCOPE
| ACPI_NS_LOCAL
, /* 26 Resource Field */
281 ACPI_NS_NEWSCOPE
, /* 27 Scope */
282 ACPI_NS_NORMAL
, /* 28 Extra */
283 ACPI_NS_NORMAL
, /* 29 Data */
284 ACPI_NS_NORMAL
/* 30 Invalid */
288 /* Hex to ASCII conversion table */
290 static const char acpi_gbl_hex_to_ascii
[] =
291 {'0','1','2','3','4','5','6','7',
292 '8','9','A','B','C','D','E','F'};
294 /*****************************************************************************
296 * FUNCTION: acpi_ut_hex_to_ascii_char
298 * PARAMETERS: Integer - Contains the hex digit
299 * Position - bit position of the digit within the
302 * RETURN: Ascii character
304 * DESCRIPTION: Convert a hex digit to an ascii character
306 ****************************************************************************/
309 acpi_ut_hex_to_ascii_char (
310 acpi_integer integer
,
314 return (acpi_gbl_hex_to_ascii
[(integer
>> position
) & 0xF]);
318 /******************************************************************************
322 * NOTE: This table includes ONLY the ACPI tables that the subsystem consumes.
323 * it is NOT an exhaustive list of all possible ACPI tables. All ACPI tables
324 * that are not used by the subsystem are simply ignored.
326 * Do NOT add any table to this list that is not consumed directly by this
329 ******************************************************************************/
331 struct acpi_table_list acpi_gbl_table_lists
[NUM_ACPI_TABLE_TYPES
];
333 struct acpi_table_support acpi_gbl_table_data
[NUM_ACPI_TABLE_TYPES
] =
335 /*********** Name, Signature, Global typed pointer Signature size, Type How many allowed?, Contains valid AML? */
337 /* RSDP 0 */ {RSDP_NAME
, RSDP_SIG
, NULL
, sizeof (RSDP_SIG
)-1, ACPI_TABLE_ROOT
| ACPI_TABLE_SINGLE
},
338 /* DSDT 1 */ {DSDT_SIG
, DSDT_SIG
, (void *) &acpi_gbl_DSDT
, sizeof (DSDT_SIG
)-1, ACPI_TABLE_SECONDARY
| ACPI_TABLE_SINGLE
| ACPI_TABLE_EXECUTABLE
},
339 /* FADT 2 */ {FADT_SIG
, FADT_SIG
, (void *) &acpi_gbl_FADT
, sizeof (FADT_SIG
)-1, ACPI_TABLE_PRIMARY
| ACPI_TABLE_SINGLE
},
340 /* FACS 3 */ {FACS_SIG
, FACS_SIG
, (void *) &acpi_gbl_FACS
, sizeof (FACS_SIG
)-1, ACPI_TABLE_SECONDARY
| ACPI_TABLE_SINGLE
},
341 /* PSDT 4 */ {PSDT_SIG
, PSDT_SIG
, NULL
, sizeof (PSDT_SIG
)-1, ACPI_TABLE_PRIMARY
| ACPI_TABLE_MULTIPLE
| ACPI_TABLE_EXECUTABLE
},
342 /* SSDT 5 */ {SSDT_SIG
, SSDT_SIG
, NULL
, sizeof (SSDT_SIG
)-1, ACPI_TABLE_PRIMARY
| ACPI_TABLE_MULTIPLE
| ACPI_TABLE_EXECUTABLE
},
343 /* XSDT 6 */ {XSDT_SIG
, XSDT_SIG
, NULL
, sizeof (RSDT_SIG
)-1, ACPI_TABLE_ROOT
| ACPI_TABLE_SINGLE
},
347 /******************************************************************************
349 * Event and Hardware globals
351 ******************************************************************************/
353 struct acpi_bit_register_info acpi_gbl_bit_register_info
[ACPI_NUM_BITREG
] =
355 /* Name Parent Register Register Bit Position Register Bit Mask */
357 /* ACPI_BITREG_TIMER_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_TIMER_STATUS
, ACPI_BITMASK_TIMER_STATUS
},
358 /* ACPI_BITREG_BUS_MASTER_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_BUS_MASTER_STATUS
, ACPI_BITMASK_BUS_MASTER_STATUS
},
359 /* ACPI_BITREG_GLOBAL_LOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_GLOBAL_LOCK_STATUS
, ACPI_BITMASK_GLOBAL_LOCK_STATUS
},
360 /* ACPI_BITREG_POWER_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_POWER_BUTTON_STATUS
, ACPI_BITMASK_POWER_BUTTON_STATUS
},
361 /* ACPI_BITREG_SLEEP_BUTTON_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_SLEEP_BUTTON_STATUS
, ACPI_BITMASK_SLEEP_BUTTON_STATUS
},
362 /* ACPI_BITREG_RT_CLOCK_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_RT_CLOCK_STATUS
, ACPI_BITMASK_RT_CLOCK_STATUS
},
363 /* ACPI_BITREG_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_WAKE_STATUS
, ACPI_BITMASK_WAKE_STATUS
},
364 /* ACPI_BITREG_PCIEXP_WAKE_STATUS */ {ACPI_REGISTER_PM1_STATUS
, ACPI_BITPOSITION_PCIEXP_WAKE_STATUS
, ACPI_BITMASK_PCIEXP_WAKE_STATUS
},
366 /* ACPI_BITREG_TIMER_ENABLE */ {ACPI_REGISTER_PM1_ENABLE
, ACPI_BITPOSITION_TIMER_ENABLE
, ACPI_BITMASK_TIMER_ENABLE
},
367 /* ACPI_BITREG_GLOBAL_LOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE
, ACPI_BITPOSITION_GLOBAL_LOCK_ENABLE
, ACPI_BITMASK_GLOBAL_LOCK_ENABLE
},
368 /* ACPI_BITREG_POWER_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE
, ACPI_BITPOSITION_POWER_BUTTON_ENABLE
, ACPI_BITMASK_POWER_BUTTON_ENABLE
},
369 /* ACPI_BITREG_SLEEP_BUTTON_ENABLE */ {ACPI_REGISTER_PM1_ENABLE
, ACPI_BITPOSITION_SLEEP_BUTTON_ENABLE
, ACPI_BITMASK_SLEEP_BUTTON_ENABLE
},
370 /* ACPI_BITREG_RT_CLOCK_ENABLE */ {ACPI_REGISTER_PM1_ENABLE
, ACPI_BITPOSITION_RT_CLOCK_ENABLE
, ACPI_BITMASK_RT_CLOCK_ENABLE
},
371 /* ACPI_BITREG_WAKE_ENABLE */ {ACPI_REGISTER_PM1_ENABLE
, 0, 0},
372 /* ACPI_BITREG_PCIEXP_WAKE_DISABLE */ {ACPI_REGISTER_PM1_ENABLE
, ACPI_BITPOSITION_PCIEXP_WAKE_DISABLE
, ACPI_BITMASK_PCIEXP_WAKE_DISABLE
},
374 /* ACPI_BITREG_SCI_ENABLE */ {ACPI_REGISTER_PM1_CONTROL
, ACPI_BITPOSITION_SCI_ENABLE
, ACPI_BITMASK_SCI_ENABLE
},
375 /* ACPI_BITREG_BUS_MASTER_RLD */ {ACPI_REGISTER_PM1_CONTROL
, ACPI_BITPOSITION_BUS_MASTER_RLD
, ACPI_BITMASK_BUS_MASTER_RLD
},
376 /* ACPI_BITREG_GLOBAL_LOCK_RELEASE */ {ACPI_REGISTER_PM1_CONTROL
, ACPI_BITPOSITION_GLOBAL_LOCK_RELEASE
, ACPI_BITMASK_GLOBAL_LOCK_RELEASE
},
377 /* ACPI_BITREG_SLEEP_TYPE_A */ {ACPI_REGISTER_PM1_CONTROL
, ACPI_BITPOSITION_SLEEP_TYPE_X
, ACPI_BITMASK_SLEEP_TYPE_X
},
378 /* ACPI_BITREG_SLEEP_TYPE_B */ {ACPI_REGISTER_PM1_CONTROL
, ACPI_BITPOSITION_SLEEP_TYPE_X
, ACPI_BITMASK_SLEEP_TYPE_X
},
379 /* ACPI_BITREG_SLEEP_ENABLE */ {ACPI_REGISTER_PM1_CONTROL
, ACPI_BITPOSITION_SLEEP_ENABLE
, ACPI_BITMASK_SLEEP_ENABLE
},
381 /* ACPI_BITREG_ARB_DIS */ {ACPI_REGISTER_PM2_CONTROL
, ACPI_BITPOSITION_ARB_DISABLE
, ACPI_BITMASK_ARB_DISABLE
}
385 struct acpi_fixed_event_info acpi_gbl_fixed_event_info
[ACPI_NUM_FIXED_EVENTS
] =
387 /* ACPI_EVENT_PMTIMER */ {ACPI_BITREG_TIMER_STATUS
, ACPI_BITREG_TIMER_ENABLE
, ACPI_BITMASK_TIMER_STATUS
, ACPI_BITMASK_TIMER_ENABLE
},
388 /* ACPI_EVENT_GLOBAL */ {ACPI_BITREG_GLOBAL_LOCK_STATUS
, ACPI_BITREG_GLOBAL_LOCK_ENABLE
, ACPI_BITMASK_GLOBAL_LOCK_STATUS
, ACPI_BITMASK_GLOBAL_LOCK_ENABLE
},
389 /* ACPI_EVENT_POWER_BUTTON */ {ACPI_BITREG_POWER_BUTTON_STATUS
, ACPI_BITREG_POWER_BUTTON_ENABLE
, ACPI_BITMASK_POWER_BUTTON_STATUS
, ACPI_BITMASK_POWER_BUTTON_ENABLE
},
390 /* ACPI_EVENT_SLEEP_BUTTON */ {ACPI_BITREG_SLEEP_BUTTON_STATUS
, ACPI_BITREG_SLEEP_BUTTON_ENABLE
, ACPI_BITMASK_SLEEP_BUTTON_STATUS
, ACPI_BITMASK_SLEEP_BUTTON_ENABLE
},
391 /* ACPI_EVENT_RTC */ {ACPI_BITREG_RT_CLOCK_STATUS
, ACPI_BITREG_RT_CLOCK_ENABLE
, ACPI_BITMASK_RT_CLOCK_STATUS
, ACPI_BITMASK_RT_CLOCK_ENABLE
},
394 /*****************************************************************************
396 * FUNCTION: acpi_ut_get_region_name
402 * DESCRIPTION: Translate a Space ID into a name string (Debug only)
404 ****************************************************************************/
406 /* Region type decoding */
408 const char *acpi_gbl_region_types
[ACPI_NUM_PREDEFINED_REGIONS
] =
410 /*! [Begin] no source code translation (keep these ASL Keywords as-is) */
419 /*! [End] no source code translation !*/
424 acpi_ut_get_region_name (
428 if (space_id
>= ACPI_USER_REGION_BEGIN
)
430 return ("user_defined_region");
433 else if (space_id
>= ACPI_NUM_PREDEFINED_REGIONS
)
435 return ("invalid_space_id");
438 return ((char *) acpi_gbl_region_types
[space_id
]);
442 /*****************************************************************************
444 * FUNCTION: acpi_ut_get_event_name
450 * DESCRIPTION: Translate a Event ID into a name string (Debug only)
452 ****************************************************************************/
454 /* Event type decoding */
456 static const char *acpi_gbl_event_types
[ACPI_NUM_FIXED_EVENTS
] =
467 acpi_ut_get_event_name (
471 if (event_id
> ACPI_EVENT_MAX
)
473 return ("invalid_event_iD");
476 return ((char *) acpi_gbl_event_types
[event_id
]);
480 /*****************************************************************************
482 * FUNCTION: acpi_ut_get_type_name
488 * DESCRIPTION: Translate a Type ID into a name string (Debug only)
490 ****************************************************************************/
493 * Elements of acpi_gbl_ns_type_names below must match
494 * one-to-one with values of acpi_object_type
496 * The type ACPI_TYPE_ANY (Untyped) is used as a "don't care" when searching; when
497 * stored in a table it really means that we have thus far seen no evidence to
498 * indicate what type is actually going to be stored for this entry.
500 static const char acpi_gbl_bad_type
[] = "UNDEFINED";
501 #define TYPE_NAME_LENGTH 12 /* Maximum length of each string */
503 static const char *acpi_gbl_ns_type_names
[] = /* printable names of ACPI types */
510 /* 05 */ "field_unit",
517 /* 12 */ "Processor",
519 /* 14 */ "buffer_field",
520 /* 15 */ "ddb_handle",
521 /* 16 */ "debug_object",
522 /* 17 */ "region_field",
523 /* 18 */ "bank_field",
524 /* 19 */ "index_field",
525 /* 20 */ "Reference",
527 /* 22 */ "method_alias",
529 /* 24 */ "addr_handler",
530 /* 25 */ "resource_desc",
531 /* 26 */ "resource_fld",
540 acpi_ut_get_type_name (
541 acpi_object_type type
)
544 if (type
> ACPI_TYPE_INVALID
)
546 return ((char *) acpi_gbl_bad_type
);
549 return ((char *) acpi_gbl_ns_type_names
[type
]);
554 acpi_ut_get_object_type_name (
555 union acpi_operand_object
*obj_desc
)
560 return ("[NULL Object Descriptor]");
563 return (acpi_ut_get_type_name (ACPI_GET_OBJECT_TYPE (obj_desc
)));
567 /*****************************************************************************
569 * FUNCTION: acpi_ut_get_node_name
571 * PARAMETERS: Object - A namespace node
573 * RETURN: Pointer to a string
575 * DESCRIPTION: Validate the node and return the node's ACPI name.
577 ****************************************************************************/
580 acpi_ut_get_node_name (
583 struct acpi_namespace_node
*node
= (struct acpi_namespace_node
*) object
;
586 /* Must return a string of exactly 4 characters == ACPI_NAME_SIZE */
593 /* Check for Root node */
595 if ((object
== ACPI_ROOT_OBJECT
) ||
596 (object
== acpi_gbl_root_node
))
601 /* Descriptor must be a namespace node */
603 if (node
->descriptor
!= ACPI_DESC_TYPE_NAMED
)
608 /* Name must be a valid ACPI name */
610 if (!acpi_ut_valid_acpi_name (* (u32
*) node
->name
.ascii
))
615 /* Return the name */
617 return (node
->name
.ascii
);
621 /*****************************************************************************
623 * FUNCTION: acpi_ut_get_descriptor_name
625 * PARAMETERS: Object - An ACPI object
627 * RETURN: Pointer to a string
629 * DESCRIPTION: Validate object and return the descriptor type
631 ****************************************************************************/
633 static const char *acpi_gbl_desc_type_names
[] = /* printable names of descriptor types */
637 /* 02 */ "State-Generic",
638 /* 03 */ "State-Update",
639 /* 04 */ "State-Package",
640 /* 05 */ "State-Control",
641 /* 06 */ "State-root_parse_scope",
642 /* 07 */ "State-parse_scope",
643 /* 08 */ "State-walk_scope",
644 /* 09 */ "State-Result",
645 /* 10 */ "State-Notify",
646 /* 11 */ "State-Thread",
655 acpi_ut_get_descriptor_name (
661 return ("NULL OBJECT");
664 if (ACPI_GET_DESCRIPTOR_TYPE (object
) > ACPI_DESC_TYPE_MAX
)
666 return ((char *) acpi_gbl_bad_type
);
669 return ((char *) acpi_gbl_desc_type_names
[ACPI_GET_DESCRIPTOR_TYPE (object
)]);
674 #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
676 * Strings and procedures used for debug only
679 /*****************************************************************************
681 * FUNCTION: acpi_ut_get_mutex_name
687 * DESCRIPTION: Translate a mutex ID into a name string (Debug only)
689 ****************************************************************************/
692 acpi_ut_get_mutex_name (
696 if (mutex_id
> MAX_MUTEX
)
698 return ("Invalid Mutex ID");
701 return (acpi_gbl_mutex_names
[mutex_id
]);
707 /*****************************************************************************
709 * FUNCTION: acpi_ut_valid_object_type
711 * PARAMETERS: Type - Object type to be validated
713 * RETURN: TRUE if valid object type
715 * DESCRIPTION: Validate an object type
717 ****************************************************************************/
720 acpi_ut_valid_object_type (
721 acpi_object_type type
)
724 if (type
> ACPI_TYPE_LOCAL_MAX
)
726 /* Note: Assumes all TYPEs are contiguous (external/local) */
735 /****************************************************************************
737 * FUNCTION: acpi_ut_allocate_owner_id
739 * PARAMETERS: id_type - Type of ID (method or table)
741 * DESCRIPTION: Allocate a table or method owner id
743 ***************************************************************************/
746 acpi_ut_allocate_owner_id (
749 acpi_owner_id owner_id
= 0xFFFF;
752 ACPI_FUNCTION_TRACE ("ut_allocate_owner_id");
755 if (ACPI_FAILURE (acpi_ut_acquire_mutex (ACPI_MTX_CACHES
)))
762 case ACPI_OWNER_TYPE_TABLE
:
764 owner_id
= acpi_gbl_next_table_owner_id
;
765 acpi_gbl_next_table_owner_id
++;
767 /* Check for wraparound */
769 if (acpi_gbl_next_table_owner_id
== ACPI_FIRST_METHOD_ID
)
771 acpi_gbl_next_table_owner_id
= ACPI_FIRST_TABLE_ID
;
772 ACPI_REPORT_WARNING (("Table owner ID wraparound\n"));
777 case ACPI_OWNER_TYPE_METHOD
:
779 owner_id
= acpi_gbl_next_method_owner_id
;
780 acpi_gbl_next_method_owner_id
++;
782 if (acpi_gbl_next_method_owner_id
== ACPI_FIRST_TABLE_ID
)
784 /* Check for wraparound */
786 acpi_gbl_next_method_owner_id
= ACPI_FIRST_METHOD_ID
;
794 (void) acpi_ut_release_mutex (ACPI_MTX_CACHES
);
795 return_VALUE (owner_id
);
799 /****************************************************************************
801 * FUNCTION: acpi_ut_init_globals
805 * DESCRIPTION: Init library globals. All globals that require specific
806 * initialization should be initialized here!
808 ***************************************************************************/
811 acpi_ut_init_globals (
817 ACPI_FUNCTION_TRACE ("ut_init_globals");
820 /* Memory allocation and cache lists */
822 ACPI_MEMSET (acpi_gbl_memory_lists
, 0, sizeof (struct acpi_memory_list
) * ACPI_NUM_MEM_LISTS
);
824 acpi_gbl_memory_lists
[ACPI_MEM_LIST_STATE
].link_offset
= (u16
) ACPI_PTR_DIFF (&(((union acpi_generic_state
*) NULL
)->common
.next
), NULL
);
825 acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE
].link_offset
= (u16
) ACPI_PTR_DIFF (&(((union acpi_parse_object
*) NULL
)->common
.next
), NULL
);
826 acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE_EXT
].link_offset
= (u16
) ACPI_PTR_DIFF (&(((union acpi_parse_object
*) NULL
)->common
.next
), NULL
);
827 acpi_gbl_memory_lists
[ACPI_MEM_LIST_OPERAND
].link_offset
= (u16
) ACPI_PTR_DIFF (&(((union acpi_operand_object
*) NULL
)->cache
.next
), NULL
);
828 acpi_gbl_memory_lists
[ACPI_MEM_LIST_WALK
].link_offset
= (u16
) ACPI_PTR_DIFF (&(((struct acpi_walk_state
*) NULL
)->next
), NULL
);
830 acpi_gbl_memory_lists
[ACPI_MEM_LIST_NSNODE
].object_size
= sizeof (struct acpi_namespace_node
);
831 acpi_gbl_memory_lists
[ACPI_MEM_LIST_STATE
].object_size
= sizeof (union acpi_generic_state
);
832 acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE
].object_size
= sizeof (struct acpi_parse_obj_common
);
833 acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE_EXT
].object_size
= sizeof (struct acpi_parse_obj_named
);
834 acpi_gbl_memory_lists
[ACPI_MEM_LIST_OPERAND
].object_size
= sizeof (union acpi_operand_object
);
835 acpi_gbl_memory_lists
[ACPI_MEM_LIST_WALK
].object_size
= sizeof (struct acpi_walk_state
);
837 acpi_gbl_memory_lists
[ACPI_MEM_LIST_STATE
].max_cache_depth
= ACPI_MAX_STATE_CACHE_DEPTH
;
838 acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE
].max_cache_depth
= ACPI_MAX_PARSE_CACHE_DEPTH
;
839 acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE_EXT
].max_cache_depth
= ACPI_MAX_EXTPARSE_CACHE_DEPTH
;
840 acpi_gbl_memory_lists
[ACPI_MEM_LIST_OPERAND
].max_cache_depth
= ACPI_MAX_OBJECT_CACHE_DEPTH
;
841 acpi_gbl_memory_lists
[ACPI_MEM_LIST_WALK
].max_cache_depth
= ACPI_MAX_WALK_CACHE_DEPTH
;
843 ACPI_MEM_TRACKING (acpi_gbl_memory_lists
[ACPI_MEM_LIST_GLOBAL
].list_name
= "Global Memory Allocation");
844 ACPI_MEM_TRACKING (acpi_gbl_memory_lists
[ACPI_MEM_LIST_NSNODE
].list_name
= "Namespace Nodes");
845 ACPI_MEM_TRACKING (acpi_gbl_memory_lists
[ACPI_MEM_LIST_STATE
].list_name
= "State Object Cache");
846 ACPI_MEM_TRACKING (acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE
].list_name
= "Parse Node Cache");
847 ACPI_MEM_TRACKING (acpi_gbl_memory_lists
[ACPI_MEM_LIST_PSNODE_EXT
].list_name
= "Extended Parse Node Cache");
848 ACPI_MEM_TRACKING (acpi_gbl_memory_lists
[ACPI_MEM_LIST_OPERAND
].list_name
= "Operand Object Cache");
849 ACPI_MEM_TRACKING (acpi_gbl_memory_lists
[ACPI_MEM_LIST_WALK
].list_name
= "Tree Walk Node Cache");
851 /* ACPI table structure */
853 for (i
= 0; i
< NUM_ACPI_TABLE_TYPES
; i
++)
855 acpi_gbl_table_lists
[i
].next
= NULL
;
856 acpi_gbl_table_lists
[i
].count
= 0;
859 /* Mutex locked flags */
861 for (i
= 0; i
< NUM_MUTEX
; i
++)
863 acpi_gbl_mutex_info
[i
].mutex
= NULL
;
864 acpi_gbl_mutex_info
[i
].owner_id
= ACPI_MUTEX_NOT_ACQUIRED
;
865 acpi_gbl_mutex_info
[i
].use_count
= 0;
870 acpi_gbl_gpe_xrupt_list_head
= NULL
;
871 acpi_gbl_gpe_fadt_blocks
[0] = NULL
;
872 acpi_gbl_gpe_fadt_blocks
[1] = NULL
;
874 /* Global notify handlers */
876 acpi_gbl_system_notify
.handler
= NULL
;
877 acpi_gbl_device_notify
.handler
= NULL
;
878 acpi_gbl_exception_handler
= NULL
;
879 acpi_gbl_init_handler
= NULL
;
881 /* Global "typed" ACPI table pointers */
883 acpi_gbl_RSDP
= NULL
;
884 acpi_gbl_XSDT
= NULL
;
885 acpi_gbl_FACS
= NULL
;
886 acpi_gbl_FADT
= NULL
;
887 acpi_gbl_DSDT
= NULL
;
889 /* Global Lock support */
891 acpi_gbl_global_lock_acquired
= FALSE
;
892 acpi_gbl_global_lock_thread_count
= 0;
893 acpi_gbl_global_lock_handle
= 0;
895 /* Miscellaneous variables */
897 acpi_gbl_table_flags
= ACPI_PHYSICAL_POINTER
;
898 acpi_gbl_rsdp_original_location
= 0;
899 acpi_gbl_cm_single_step
= FALSE
;
900 acpi_gbl_db_terminate_threads
= FALSE
;
901 acpi_gbl_shutdown
= FALSE
;
902 acpi_gbl_ns_lookup_count
= 0;
903 acpi_gbl_ps_find_count
= 0;
904 acpi_gbl_acpi_hardware_present
= TRUE
;
905 acpi_gbl_next_table_owner_id
= ACPI_FIRST_TABLE_ID
;
906 acpi_gbl_next_method_owner_id
= ACPI_FIRST_METHOD_ID
;
907 acpi_gbl_debugger_configuration
= DEBUGGER_THREADING
;
908 acpi_gbl_db_output_flags
= ACPI_DB_CONSOLE_OUTPUT
;
910 /* Hardware oriented */
912 acpi_gbl_events_initialized
= FALSE
;
913 acpi_gbl_system_awake_and_running
= TRUE
;
917 acpi_gbl_root_node
= NULL
;
919 acpi_gbl_root_node_struct
.name
.integer
= ACPI_ROOT_NAME
;
920 acpi_gbl_root_node_struct
.descriptor
= ACPI_DESC_TYPE_NAMED
;
921 acpi_gbl_root_node_struct
.type
= ACPI_TYPE_DEVICE
;
922 acpi_gbl_root_node_struct
.child
= NULL
;
923 acpi_gbl_root_node_struct
.peer
= NULL
;
924 acpi_gbl_root_node_struct
.object
= NULL
;
925 acpi_gbl_root_node_struct
.flags
= ANOBJ_END_OF_PEER_LIST
;
928 #ifdef ACPI_DEBUG_OUTPUT
929 acpi_gbl_lowest_stack_pointer
= ACPI_SIZE_MAX
;