1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: utdecode - Utility decoding routines (value-to-string)
6 * Copyright (C) 2000 - 2020, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
15 #define _COMPONENT ACPI_UTILITIES
16 ACPI_MODULE_NAME("utdecode")
19 * Properties of the ACPI Object Types, both internal and external.
20 * The table is indexed by values of acpi_object_type
22 const u8 acpi_gbl_ns_properties
[ACPI_NUM_NS_TYPES
] = {
23 ACPI_NS_NORMAL
, /* 00 Any */
24 ACPI_NS_NORMAL
, /* 01 Number */
25 ACPI_NS_NORMAL
, /* 02 String */
26 ACPI_NS_NORMAL
, /* 03 Buffer */
27 ACPI_NS_NORMAL
, /* 04 Package */
28 ACPI_NS_NORMAL
, /* 05 field_unit */
29 ACPI_NS_NEWSCOPE
, /* 06 Device */
30 ACPI_NS_NORMAL
, /* 07 Event */
31 ACPI_NS_NEWSCOPE
, /* 08 Method */
32 ACPI_NS_NORMAL
, /* 09 Mutex */
33 ACPI_NS_NORMAL
, /* 10 Region */
34 ACPI_NS_NEWSCOPE
, /* 11 Power */
35 ACPI_NS_NEWSCOPE
, /* 12 Processor */
36 ACPI_NS_NEWSCOPE
, /* 13 Thermal */
37 ACPI_NS_NORMAL
, /* 14 buffer_field */
38 ACPI_NS_NORMAL
, /* 15 ddb_handle */
39 ACPI_NS_NORMAL
, /* 16 Debug Object */
40 ACPI_NS_NORMAL
, /* 17 def_field */
41 ACPI_NS_NORMAL
, /* 18 bank_field */
42 ACPI_NS_NORMAL
, /* 19 index_field */
43 ACPI_NS_NORMAL
, /* 20 Reference */
44 ACPI_NS_NORMAL
, /* 21 Alias */
45 ACPI_NS_NORMAL
, /* 22 method_alias */
46 ACPI_NS_NORMAL
, /* 23 Notify */
47 ACPI_NS_NORMAL
, /* 24 Address Handler */
48 ACPI_NS_NEWSCOPE
| ACPI_NS_LOCAL
, /* 25 Resource Desc */
49 ACPI_NS_NEWSCOPE
| ACPI_NS_LOCAL
, /* 26 Resource Field */
50 ACPI_NS_NEWSCOPE
, /* 27 Scope */
51 ACPI_NS_NORMAL
, /* 28 Extra */
52 ACPI_NS_NORMAL
, /* 29 Data */
53 ACPI_NS_NORMAL
/* 30 Invalid */
56 /*******************************************************************************
58 * FUNCTION: acpi_ut_get_region_name
60 * PARAMETERS: Space ID - ID for the region
62 * RETURN: Decoded region space_id name
64 * DESCRIPTION: Translate a Space ID into a name string (Debug only)
66 ******************************************************************************/
68 /* Region type decoding */
70 const char *acpi_gbl_region_types
[ACPI_NUM_PREDEFINED_REGIONS
] = {
71 "SystemMemory", /* 0x00 */
72 "SystemIO", /* 0x01 */
73 "PCI_Config", /* 0x02 */
74 "EmbeddedControl", /* 0x03 */
76 "SystemCMOS", /* 0x05 */
77 "PCIBARTarget", /* 0x06 */
79 "GeneralPurposeIo", /* 0x08 */
80 "GenericSerialBus", /* 0x09 */
82 "PlatformRtMechanism" /* 0x0B */
85 const char *acpi_ut_get_region_name(u8 space_id
)
88 if (space_id
>= ACPI_USER_REGION_BEGIN
) {
89 return ("UserDefinedRegion");
90 } else if (space_id
== ACPI_ADR_SPACE_DATA_TABLE
) {
92 } else if (space_id
== ACPI_ADR_SPACE_FIXED_HARDWARE
) {
93 return ("FunctionalFixedHW");
94 } else if (space_id
>= ACPI_NUM_PREDEFINED_REGIONS
) {
95 return ("InvalidSpaceId");
98 return (acpi_gbl_region_types
[space_id
]);
101 /*******************************************************************************
103 * FUNCTION: acpi_ut_get_event_name
105 * PARAMETERS: event_id - Fixed event ID
107 * RETURN: Decoded event ID name
109 * DESCRIPTION: Translate a Event ID into a name string (Debug only)
111 ******************************************************************************/
113 /* Event type decoding */
115 static const char *acpi_gbl_event_types
[ACPI_NUM_FIXED_EVENTS
] = {
123 const char *acpi_ut_get_event_name(u32 event_id
)
126 if (event_id
> ACPI_EVENT_MAX
) {
127 return ("InvalidEventID");
130 return (acpi_gbl_event_types
[event_id
]);
133 /*******************************************************************************
135 * FUNCTION: acpi_ut_get_type_name
137 * PARAMETERS: type - An ACPI object type
139 * RETURN: Decoded ACPI object type name
141 * DESCRIPTION: Translate a Type ID into a name string (Debug only)
143 ******************************************************************************/
146 * Elements of acpi_gbl_ns_type_names below must match
147 * one-to-one with values of acpi_object_type
149 * The type ACPI_TYPE_ANY (Untyped) is used as a "don't care" when searching;
150 * when stored in a table it really means that we have thus far seen no
151 * evidence to indicate what type is actually going to be stored for this
154 static const char acpi_gbl_bad_type
[] = "UNDEFINED";
156 /* Printable names of the ACPI object types */
158 static const char *acpi_gbl_ns_type_names
[] = {
164 /* 05 */ "FieldUnit",
171 /* 12 */ "Processor",
173 /* 14 */ "BufferField",
174 /* 15 */ "DdbHandle",
175 /* 16 */ "DebugObject",
176 /* 17 */ "RegionField",
177 /* 18 */ "BankField",
178 /* 19 */ "IndexField",
179 /* 20 */ "Reference",
181 /* 22 */ "MethodAlias",
183 /* 24 */ "AddrHandler",
184 /* 25 */ "ResourceDesc",
185 /* 26 */ "ResourceFld",
192 const char *acpi_ut_get_type_name(acpi_object_type type
)
195 if (type
> ACPI_TYPE_INVALID
) {
196 return (acpi_gbl_bad_type
);
199 return (acpi_gbl_ns_type_names
[type
]);
202 const char *acpi_ut_get_object_type_name(union acpi_operand_object
*obj_desc
)
204 ACPI_FUNCTION_TRACE(ut_get_object_type_name
);
207 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
, "Null Object Descriptor\n"));
208 return_STR("[NULL Object Descriptor]");
211 /* These descriptor types share a common area */
213 if ((ACPI_GET_DESCRIPTOR_TYPE(obj_desc
) != ACPI_DESC_TYPE_OPERAND
) &&
214 (ACPI_GET_DESCRIPTOR_TYPE(obj_desc
) != ACPI_DESC_TYPE_NAMED
)) {
215 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
216 "Invalid object descriptor type: 0x%2.2X [%s] (%p)\n",
217 ACPI_GET_DESCRIPTOR_TYPE(obj_desc
),
218 acpi_ut_get_descriptor_name(obj_desc
),
221 return_STR("Invalid object");
224 return_STR(acpi_ut_get_type_name(obj_desc
->common
.type
));
227 /*******************************************************************************
229 * FUNCTION: acpi_ut_get_node_name
231 * PARAMETERS: object - A namespace node
233 * RETURN: ASCII name of the node
235 * DESCRIPTION: Validate the node and return the node's ACPI name.
237 ******************************************************************************/
239 const char *acpi_ut_get_node_name(void *object
)
241 struct acpi_namespace_node
*node
= (struct acpi_namespace_node
*)object
;
243 /* Must return a string of exactly 4 characters == ACPI_NAMESEG_SIZE */
249 /* Check for Root node */
251 if ((object
== ACPI_ROOT_OBJECT
) || (object
== acpi_gbl_root_node
)) {
255 /* Descriptor must be a namespace node */
257 if (ACPI_GET_DESCRIPTOR_TYPE(node
) != ACPI_DESC_TYPE_NAMED
) {
262 * Ensure name is valid. The name was validated/repaired when the node
263 * was created, but make sure it has not been corrupted.
265 acpi_ut_repair_name(node
->name
.ascii
);
267 /* Return the name */
269 return (node
->name
.ascii
);
272 /*******************************************************************************
274 * FUNCTION: acpi_ut_get_descriptor_name
276 * PARAMETERS: object - An ACPI object
278 * RETURN: Decoded name of the descriptor type
280 * DESCRIPTION: Validate object and return the descriptor type
282 ******************************************************************************/
284 /* Printable names of object descriptor types */
286 static const char *acpi_gbl_desc_type_names
[] = {
287 /* 00 */ "Not a Descriptor",
288 /* 01 */ "Cached Object",
289 /* 02 */ "State-Generic",
290 /* 03 */ "State-Update",
291 /* 04 */ "State-Package",
292 /* 05 */ "State-Control",
293 /* 06 */ "State-RootParseScope",
294 /* 07 */ "State-ParseScope",
295 /* 08 */ "State-WalkScope",
296 /* 09 */ "State-Result",
297 /* 10 */ "State-Notify",
298 /* 11 */ "State-Thread",
299 /* 12 */ "Tree Walk State",
300 /* 13 */ "Parse Tree Op",
301 /* 14 */ "Operand Object",
302 /* 15 */ "Namespace Node"
305 const char *acpi_ut_get_descriptor_name(void *object
)
309 return ("NULL OBJECT");
312 if (ACPI_GET_DESCRIPTOR_TYPE(object
) > ACPI_DESC_TYPE_MAX
) {
313 return ("Not a Descriptor");
316 return (acpi_gbl_desc_type_names
[ACPI_GET_DESCRIPTOR_TYPE(object
)]);
319 /*******************************************************************************
321 * FUNCTION: acpi_ut_get_reference_name
323 * PARAMETERS: object - An ACPI reference object
325 * RETURN: Decoded name of the type of reference
327 * DESCRIPTION: Decode a reference object sub-type to a string.
329 ******************************************************************************/
331 /* Printable names of reference object sub-types */
333 static const char *acpi_gbl_ref_class_names
[] = {
338 /* 04 */ "DdbHandle",
339 /* 05 */ "Named Object",
343 const char *acpi_ut_get_reference_name(union acpi_operand_object
*object
)
347 return ("NULL Object");
350 if (ACPI_GET_DESCRIPTOR_TYPE(object
) != ACPI_DESC_TYPE_OPERAND
) {
351 return ("Not an Operand object");
354 if (object
->common
.type
!= ACPI_TYPE_LOCAL_REFERENCE
) {
355 return ("Not a Reference object");
358 if (object
->reference
.class > ACPI_REFCLASS_MAX
) {
359 return ("Unknown Reference class");
362 return (acpi_gbl_ref_class_names
[object
->reference
.class]);
365 /*******************************************************************************
367 * FUNCTION: acpi_ut_get_mutex_name
369 * PARAMETERS: mutex_id - The predefined ID for this mutex.
371 * RETURN: Decoded name of the internal mutex
373 * DESCRIPTION: Translate a mutex ID into a name string (Debug only)
375 ******************************************************************************/
377 /* Names for internal mutex objects, used for debug output */
379 static const char *acpi_gbl_mutex_names
[ACPI_NUM_MUTEX
] = {
380 "ACPI_MTX_Interpreter",
381 "ACPI_MTX_Namespace",
388 const char *acpi_ut_get_mutex_name(u32 mutex_id
)
391 if (mutex_id
> ACPI_MAX_MUTEX
) {
392 return ("Invalid Mutex ID");
395 return (acpi_gbl_mutex_names
[mutex_id
]);
398 #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
401 * Strings and procedures used for debug only
404 /*******************************************************************************
406 * FUNCTION: acpi_ut_get_notify_name
408 * PARAMETERS: notify_value - Value from the Notify() request
410 * RETURN: Decoded name for the notify value
412 * DESCRIPTION: Translate a Notify Value to a notify namestring.
414 ******************************************************************************/
416 /* Names for Notify() values, used for debug output */
418 static const char *acpi_gbl_generic_notify
[ACPI_GENERIC_NOTIFY_MAX
+ 1] = {
419 /* 00 */ "Bus Check",
420 /* 01 */ "Device Check",
421 /* 02 */ "Device Wake",
422 /* 03 */ "Eject Request",
423 /* 04 */ "Device Check Light",
424 /* 05 */ "Frequency Mismatch",
425 /* 06 */ "Bus Mode Mismatch",
426 /* 07 */ "Power Fault",
427 /* 08 */ "Capabilities Check",
428 /* 09 */ "Device PLD Check",
430 /* 0B */ "System Locality Update",
431 /* 0C */ "Reserved (was previously Shutdown Request)",
432 /* Reserved in ACPI 6.0 */
433 /* 0D */ "System Resource Affinity Update",
434 /* 0E */ "Heterogeneous Memory Attributes Update",
436 /* 0F */ "Error Disconnect Recover"
440 static const char *acpi_gbl_device_notify
[5] = {
441 /* 80 */ "Status Change",
442 /* 81 */ "Information Change",
443 /* 82 */ "Device-Specific Change",
444 /* 83 */ "Device-Specific Change",
448 static const char *acpi_gbl_processor_notify
[5] = {
449 /* 80 */ "Performance Capability Change",
450 /* 81 */ "C-State Change",
451 /* 82 */ "Throttling Capability Change",
452 /* 83 */ "Guaranteed Change",
453 /* 84 */ "Minimum Excursion"
456 static const char *acpi_gbl_thermal_notify
[5] = {
457 /* 80 */ "Thermal Status Change",
458 /* 81 */ "Thermal Trip Point Change",
459 /* 82 */ "Thermal Device List Change",
460 /* 83 */ "Thermal Relationship Change",
464 const char *acpi_ut_get_notify_name(u32 notify_value
, acpi_object_type type
)
467 /* 00 - 0F are "common to all object types" (from ACPI Spec) */
469 if (notify_value
<= ACPI_GENERIC_NOTIFY_MAX
) {
470 return (acpi_gbl_generic_notify
[notify_value
]);
473 /* 10 - 7F are reserved */
475 if (notify_value
<= ACPI_MAX_SYS_NOTIFY
) {
479 /* 80 - 84 are per-object-type */
481 if (notify_value
<= ACPI_SPECIFIC_NOTIFY_MAX
) {
484 case ACPI_TYPE_DEVICE
:
485 return (acpi_gbl_device_notify
[notify_value
- 0x80]);
487 case ACPI_TYPE_PROCESSOR
:
488 return (acpi_gbl_processor_notify
[notify_value
- 0x80]);
490 case ACPI_TYPE_THERMAL
:
491 return (acpi_gbl_thermal_notify
[notify_value
- 0x80]);
494 return ("Target object type does not support notifies");
498 /* 84 - BF are device-specific */
500 if (notify_value
<= ACPI_MAX_DEVICE_SPECIFIC_NOTIFY
) {
501 return ("Device-Specific");
504 /* C0 and above are hardware-specific */
506 return ("Hardware-Specific");
509 /*******************************************************************************
511 * FUNCTION: acpi_ut_get_argument_type_name
513 * PARAMETERS: arg_type - an ARGP_* parser argument type
515 * RETURN: Decoded ARGP_* type
517 * DESCRIPTION: Decode an ARGP_* parser type, as defined in the amlcode.h file,
518 * and used in the acopcode.h file. For example, ARGP_TERMARG.
519 * Used for debug only.
521 ******************************************************************************/
523 static const char *acpi_gbl_argument_type
[20] = {
524 /* 00 */ "Unknown ARGP",
528 /* 04 */ "DataObject",
529 /* 05 */ "DataObjectList",
530 /* 06 */ "DWordData",
531 /* 07 */ "FieldList",
533 /* 09 */ "NameString",
534 /* 0A */ "ObjectList",
535 /* 0B */ "PackageLength",
536 /* 0C */ "SuperName",
541 /* 11 */ "QWordData",
542 /* 12 */ "SimpleName",
546 const char *acpi_ut_get_argument_type_name(u32 arg_type
)
549 if (arg_type
> ARGP_MAX
) {
550 return ("Unknown ARGP");
553 return (acpi_gbl_argument_type
[arg_type
]);
558 /*******************************************************************************
560 * FUNCTION: acpi_ut_valid_object_type
562 * PARAMETERS: type - Object type to be validated
564 * RETURN: TRUE if valid object type, FALSE otherwise
566 * DESCRIPTION: Validate an object type
568 ******************************************************************************/
570 u8
acpi_ut_valid_object_type(acpi_object_type type
)
573 if (type
> ACPI_TYPE_LOCAL_MAX
) {
575 /* Note: Assumes all TYPEs are contiguous (external/local) */