dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / uts / intel / io / acpica / utilities / utdecode.c
blob5c8f2cec80552863f38c34050b629eae3d6c125a
1 /******************************************************************************
3 * Module Name: utdecode - Utility decoding routines (value-to-string)
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2016, Intel Corp.
9 * All rights reserved.
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.
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.
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.
44 #include "acpi.h"
45 #include "accommon.h"
46 #include "acnamesp.h"
48 #define _COMPONENT ACPI_UTILITIES
49 ACPI_MODULE_NAME ("utdecode")
53 * Properties of the ACPI Object Types, both internal and external.
54 * The table is indexed by values of ACPI_OBJECT_TYPE
56 const UINT8 AcpiGbl_NsProperties[ACPI_NUM_NS_TYPES] =
58 ACPI_NS_NORMAL, /* 00 Any */
59 ACPI_NS_NORMAL, /* 01 Number */
60 ACPI_NS_NORMAL, /* 02 String */
61 ACPI_NS_NORMAL, /* 03 Buffer */
62 ACPI_NS_NORMAL, /* 04 Package */
63 ACPI_NS_NORMAL, /* 05 FieldUnit */
64 ACPI_NS_NEWSCOPE, /* 06 Device */
65 ACPI_NS_NORMAL, /* 07 Event */
66 ACPI_NS_NEWSCOPE, /* 08 Method */
67 ACPI_NS_NORMAL, /* 09 Mutex */
68 ACPI_NS_NORMAL, /* 10 Region */
69 ACPI_NS_NEWSCOPE, /* 11 Power */
70 ACPI_NS_NEWSCOPE, /* 12 Processor */
71 ACPI_NS_NEWSCOPE, /* 13 Thermal */
72 ACPI_NS_NORMAL, /* 14 BufferField */
73 ACPI_NS_NORMAL, /* 15 DdbHandle */
74 ACPI_NS_NORMAL, /* 16 Debug Object */
75 ACPI_NS_NORMAL, /* 17 DefField */
76 ACPI_NS_NORMAL, /* 18 BankField */
77 ACPI_NS_NORMAL, /* 19 IndexField */
78 ACPI_NS_NORMAL, /* 20 Reference */
79 ACPI_NS_NORMAL, /* 21 Alias */
80 ACPI_NS_NORMAL, /* 22 MethodAlias */
81 ACPI_NS_NORMAL, /* 23 Notify */
82 ACPI_NS_NORMAL, /* 24 Address Handler */
83 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 25 Resource Desc */
84 ACPI_NS_NEWSCOPE | ACPI_NS_LOCAL, /* 26 Resource Field */
85 ACPI_NS_NEWSCOPE, /* 27 Scope */
86 ACPI_NS_NORMAL, /* 28 Extra */
87 ACPI_NS_NORMAL, /* 29 Data */
88 ACPI_NS_NORMAL /* 30 Invalid */
92 /*******************************************************************************
94 * FUNCTION: AcpiUtGetRegionName
96 * PARAMETERS: Space ID - ID for the region
98 * RETURN: Decoded region SpaceId name
100 * DESCRIPTION: Translate a Space ID into a name string (Debug only)
102 ******************************************************************************/
104 /* Region type decoding */
106 const char *AcpiGbl_RegionTypes[ACPI_NUM_PREDEFINED_REGIONS] =
108 "SystemMemory", /* 0x00 */
109 "SystemIO", /* 0x01 */
110 "PCI_Config", /* 0x02 */
111 "EmbeddedControl", /* 0x03 */
112 "SMBus", /* 0x04 */
113 "SystemCMOS", /* 0x05 */
114 "PCIBARTarget", /* 0x06 */
115 "IPMI", /* 0x07 */
116 "GeneralPurposeIo", /* 0x08 */
117 "GenericSerialBus", /* 0x09 */
118 "PCC" /* 0x0A */
122 const char *
123 AcpiUtGetRegionName (
124 UINT8 SpaceId)
127 if (SpaceId >= ACPI_USER_REGION_BEGIN)
129 return ("UserDefinedRegion");
131 else if (SpaceId == ACPI_ADR_SPACE_DATA_TABLE)
133 return ("DataTable");
135 else if (SpaceId == ACPI_ADR_SPACE_FIXED_HARDWARE)
137 return ("FunctionalFixedHW");
139 else if (SpaceId >= ACPI_NUM_PREDEFINED_REGIONS)
141 return ("InvalidSpaceId");
144 return (AcpiGbl_RegionTypes[SpaceId]);
148 /*******************************************************************************
150 * FUNCTION: AcpiUtGetEventName
152 * PARAMETERS: EventId - Fixed event ID
154 * RETURN: Decoded event ID name
156 * DESCRIPTION: Translate a Event ID into a name string (Debug only)
158 ******************************************************************************/
160 /* Event type decoding */
162 static const char *AcpiGbl_EventTypes[ACPI_NUM_FIXED_EVENTS] =
164 "PM_Timer",
165 "GlobalLock",
166 "PowerButton",
167 "SleepButton",
168 "RealTimeClock",
172 const char *
173 AcpiUtGetEventName (
174 UINT32 EventId)
177 if (EventId > ACPI_EVENT_MAX)
179 return ("InvalidEventID");
182 return (AcpiGbl_EventTypes[EventId]);
186 /*******************************************************************************
188 * FUNCTION: AcpiUtGetTypeName
190 * PARAMETERS: Type - An ACPI object type
192 * RETURN: Decoded ACPI object type name
194 * DESCRIPTION: Translate a Type ID into a name string (Debug only)
196 ******************************************************************************/
199 * Elements of AcpiGbl_NsTypeNames below must match
200 * one-to-one with values of ACPI_OBJECT_TYPE
202 * The type ACPI_TYPE_ANY (Untyped) is used as a "don't care" when searching;
203 * when stored in a table it really means that we have thus far seen no
204 * evidence to indicate what type is actually going to be stored for this
205 & entry.
207 static const char AcpiGbl_BadType[] = "UNDEFINED";
209 /* Printable names of the ACPI object types */
211 static const char *AcpiGbl_NsTypeNames[] =
213 /* 00 */ "Untyped",
214 /* 01 */ "Integer",
215 /* 02 */ "String",
216 /* 03 */ "Buffer",
217 /* 04 */ "Package",
218 /* 05 */ "FieldUnit",
219 /* 06 */ "Device",
220 /* 07 */ "Event",
221 /* 08 */ "Method",
222 /* 09 */ "Mutex",
223 /* 10 */ "Region",
224 /* 11 */ "Power",
225 /* 12 */ "Processor",
226 /* 13 */ "Thermal",
227 /* 14 */ "BufferField",
228 /* 15 */ "DdbHandle",
229 /* 16 */ "DebugObject",
230 /* 17 */ "RegionField",
231 /* 18 */ "BankField",
232 /* 19 */ "IndexField",
233 /* 20 */ "Reference",
234 /* 21 */ "Alias",
235 /* 22 */ "MethodAlias",
236 /* 23 */ "Notify",
237 /* 24 */ "AddrHandler",
238 /* 25 */ "ResourceDesc",
239 /* 26 */ "ResourceFld",
240 /* 27 */ "Scope",
241 /* 28 */ "Extra",
242 /* 29 */ "Data",
243 /* 30 */ "Invalid"
247 const char *
248 AcpiUtGetTypeName (
249 ACPI_OBJECT_TYPE Type)
252 if (Type > ACPI_TYPE_INVALID)
254 return (AcpiGbl_BadType);
257 return (AcpiGbl_NsTypeNames[Type]);
261 const char *
262 AcpiUtGetObjectTypeName (
263 ACPI_OPERAND_OBJECT *ObjDesc)
265 ACPI_FUNCTION_TRACE (UtGetObjectTypeName);
268 if (!ObjDesc)
270 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Null Object Descriptor\n"));
271 return_PTR ("[NULL Object Descriptor]");
274 /* These descriptor types share a common area */
276 if ((ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_OPERAND) &&
277 (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_NAMED))
279 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
280 "Invalid object descriptor type: 0x%2.2X [%s] (%p)\n",
281 ACPI_GET_DESCRIPTOR_TYPE (ObjDesc),
282 AcpiUtGetDescriptorName (ObjDesc), ObjDesc));
284 return_PTR ("Invalid object");
287 return_STR (AcpiUtGetTypeName (ObjDesc->Common.Type));
291 /*******************************************************************************
293 * FUNCTION: AcpiUtGetNodeName
295 * PARAMETERS: Object - A namespace node
297 * RETURN: ASCII name of the node
299 * DESCRIPTION: Validate the node and return the node's ACPI name.
301 ******************************************************************************/
303 const char *
304 AcpiUtGetNodeName (
305 void *Object)
307 ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) Object;
310 /* Must return a string of exactly 4 characters == ACPI_NAME_SIZE */
312 if (!Object)
314 return ("NULL");
317 /* Check for Root node */
319 if ((Object == ACPI_ROOT_OBJECT) ||
320 (Object == AcpiGbl_RootNode))
322 return ("\"\\\" ");
325 /* Descriptor must be a namespace node */
327 if (ACPI_GET_DESCRIPTOR_TYPE (Node) != ACPI_DESC_TYPE_NAMED)
329 return ("####");
333 * Ensure name is valid. The name was validated/repaired when the node
334 * was created, but make sure it has not been corrupted.
336 AcpiUtRepairName (Node->Name.Ascii);
338 /* Return the name */
340 return (Node->Name.Ascii);
344 /*******************************************************************************
346 * FUNCTION: AcpiUtGetDescriptorName
348 * PARAMETERS: Object - An ACPI object
350 * RETURN: Decoded name of the descriptor type
352 * DESCRIPTION: Validate object and return the descriptor type
354 ******************************************************************************/
356 /* Printable names of object descriptor types */
358 static const char *AcpiGbl_DescTypeNames[] =
360 /* 00 */ "Not a Descriptor",
361 /* 01 */ "Cached",
362 /* 02 */ "State-Generic",
363 /* 03 */ "State-Update",
364 /* 04 */ "State-Package",
365 /* 05 */ "State-Control",
366 /* 06 */ "State-RootParseScope",
367 /* 07 */ "State-ParseScope",
368 /* 08 */ "State-WalkScope",
369 /* 09 */ "State-Result",
370 /* 10 */ "State-Notify",
371 /* 11 */ "State-Thread",
372 /* 12 */ "Walk",
373 /* 13 */ "Parser",
374 /* 14 */ "Operand",
375 /* 15 */ "Node"
379 const char *
380 AcpiUtGetDescriptorName (
381 void *Object)
384 if (!Object)
386 return ("NULL OBJECT");
389 if (ACPI_GET_DESCRIPTOR_TYPE (Object) > ACPI_DESC_TYPE_MAX)
391 return ("Not a Descriptor");
394 return (AcpiGbl_DescTypeNames[ACPI_GET_DESCRIPTOR_TYPE (Object)]);
398 /*******************************************************************************
400 * FUNCTION: AcpiUtGetReferenceName
402 * PARAMETERS: Object - An ACPI reference object
404 * RETURN: Decoded name of the type of reference
406 * DESCRIPTION: Decode a reference object sub-type to a string.
408 ******************************************************************************/
410 /* Printable names of reference object sub-types */
412 static const char *AcpiGbl_RefClassNames[] =
414 /* 00 */ "Local",
415 /* 01 */ "Argument",
416 /* 02 */ "RefOf",
417 /* 03 */ "Index",
418 /* 04 */ "DdbHandle",
419 /* 05 */ "Named Object",
420 /* 06 */ "Debug"
423 const char *
424 AcpiUtGetReferenceName (
425 ACPI_OPERAND_OBJECT *Object)
428 if (!Object)
430 return ("NULL Object");
433 if (ACPI_GET_DESCRIPTOR_TYPE (Object) != ACPI_DESC_TYPE_OPERAND)
435 return ("Not an Operand object");
438 if (Object->Common.Type != ACPI_TYPE_LOCAL_REFERENCE)
440 return ("Not a Reference object");
443 if (Object->Reference.Class > ACPI_REFCLASS_MAX)
445 return ("Unknown Reference class");
448 return (AcpiGbl_RefClassNames[Object->Reference.Class]);
452 #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
454 * Strings and procedures used for debug only
457 /*******************************************************************************
459 * FUNCTION: AcpiUtGetMutexName
461 * PARAMETERS: MutexId - The predefined ID for this mutex.
463 * RETURN: Decoded name of the internal mutex
465 * DESCRIPTION: Translate a mutex ID into a name string (Debug only)
467 ******************************************************************************/
469 /* Names for internal mutex objects, used for debug output */
471 static const char *AcpiGbl_MutexNames[ACPI_NUM_MUTEX] =
473 "ACPI_MTX_Interpreter",
474 "ACPI_MTX_Namespace",
475 "ACPI_MTX_Tables",
476 "ACPI_MTX_Events",
477 "ACPI_MTX_Caches",
478 "ACPI_MTX_Memory",
481 const char *
482 AcpiUtGetMutexName (
483 UINT32 MutexId)
486 if (MutexId > ACPI_MAX_MUTEX)
488 return ("Invalid Mutex ID");
491 return (AcpiGbl_MutexNames[MutexId]);
495 /*******************************************************************************
497 * FUNCTION: AcpiUtGetNotifyName
499 * PARAMETERS: NotifyValue - Value from the Notify() request
501 * RETURN: Decoded name for the notify value
503 * DESCRIPTION: Translate a Notify Value to a notify namestring.
505 ******************************************************************************/
507 /* Names for Notify() values, used for debug output */
509 static const char *AcpiGbl_GenericNotify[ACPI_GENERIC_NOTIFY_MAX + 1] =
511 /* 00 */ "Bus Check",
512 /* 01 */ "Device Check",
513 /* 02 */ "Device Wake",
514 /* 03 */ "Eject Request",
515 /* 04 */ "Device Check Light",
516 /* 05 */ "Frequency Mismatch",
517 /* 06 */ "Bus Mode Mismatch",
518 /* 07 */ "Power Fault",
519 /* 08 */ "Capabilities Check",
520 /* 09 */ "Device PLD Check",
521 /* 0A */ "Reserved",
522 /* 0B */ "System Locality Update",
523 /* 0C */ "Shutdown Request", /* Reserved in ACPI 6.0 */
524 /* 0D */ "System Resource Affinity Update"
527 static const char *AcpiGbl_DeviceNotify[5] =
529 /* 80 */ "Status Change",
530 /* 81 */ "Information Change",
531 /* 82 */ "Device-Specific Change",
532 /* 83 */ "Device-Specific Change",
533 /* 84 */ "Reserved"
536 static const char *AcpiGbl_ProcessorNotify[5] =
538 /* 80 */ "Performance Capability Change",
539 /* 81 */ "C-State Change",
540 /* 82 */ "Throttling Capability Change",
541 /* 83 */ "Guaranteed Change",
542 /* 84 */ "Minimum Excursion"
545 static const char *AcpiGbl_ThermalNotify[5] =
547 /* 80 */ "Thermal Status Change",
548 /* 81 */ "Thermal Trip Point Change",
549 /* 82 */ "Thermal Device List Change",
550 /* 83 */ "Thermal Relationship Change",
551 /* 84 */ "Reserved"
555 const char *
556 AcpiUtGetNotifyName (
557 UINT32 NotifyValue,
558 ACPI_OBJECT_TYPE Type)
561 /* 00 - 0D are "common to all object types" (from ACPI Spec) */
563 if (NotifyValue <= ACPI_GENERIC_NOTIFY_MAX)
565 return (AcpiGbl_GenericNotify[NotifyValue]);
568 /* 0E - 7F are reserved */
570 if (NotifyValue <= ACPI_MAX_SYS_NOTIFY)
572 return ("Reserved");
575 /* 80 - 84 are per-object-type */
577 if (NotifyValue <= ACPI_SPECIFIC_NOTIFY_MAX)
579 switch (Type)
581 case ACPI_TYPE_ANY:
582 case ACPI_TYPE_DEVICE:
583 return (AcpiGbl_DeviceNotify [NotifyValue - 0x80]);
585 case ACPI_TYPE_PROCESSOR:
586 return (AcpiGbl_ProcessorNotify [NotifyValue - 0x80]);
588 case ACPI_TYPE_THERMAL:
589 return (AcpiGbl_ThermalNotify [NotifyValue - 0x80]);
591 default:
592 return ("Target object type does not support notifies");
596 /* 84 - BF are device-specific */
598 if (NotifyValue <= ACPI_MAX_DEVICE_SPECIFIC_NOTIFY)
600 return ("Device-Specific");
603 /* C0 and above are hardware-specific */
605 return ("Hardware-Specific");
607 #endif
610 /*******************************************************************************
612 * FUNCTION: AcpiUtValidObjectType
614 * PARAMETERS: Type - Object type to be validated
616 * RETURN: TRUE if valid object type, FALSE otherwise
618 * DESCRIPTION: Validate an object type
620 ******************************************************************************/
622 BOOLEAN
623 AcpiUtValidObjectType (
624 ACPI_OBJECT_TYPE Type)
627 if (Type > ACPI_TYPE_LOCAL_MAX)
629 /* Note: Assumes all TYPEs are contiguous (external/local) */
631 return (FALSE);
634 return (TRUE);