Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 2 | /****************************************************************************** |
| 3 | * |
| 4 | * Module Name: utdecode - Utility decoding routines (value-to-string) |
| 5 | * |
Bob Moore | da6f832 | 2018-01-04 10:06:38 -0800 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2018, Intel Corp. |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 7 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 8 | *****************************************************************************/ |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 9 | |
| 10 | #include <acpi/acpi.h> |
| 11 | #include "accommon.h" |
| 12 | #include "acnamesp.h" |
Bob Moore | 5a6e7ec | 2016-11-30 15:21:57 +0800 | [diff] [blame] | 13 | #include "amlcode.h" |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 14 | |
| 15 | #define _COMPONENT ACPI_UTILITIES |
| 16 | ACPI_MODULE_NAME("utdecode") |
| 17 | |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 18 | /* |
| 19 | * Properties of the ACPI Object Types, both internal and external. |
| 20 | * The table is indexed by values of acpi_object_type |
| 21 | */ |
| 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 */ |
| 54 | }; |
| 55 | |
| 56 | /******************************************************************************* |
| 57 | * |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 58 | * FUNCTION: acpi_ut_get_region_name |
| 59 | * |
| 60 | * PARAMETERS: Space ID - ID for the region |
| 61 | * |
| 62 | * RETURN: Decoded region space_id name |
| 63 | * |
| 64 | * DESCRIPTION: Translate a Space ID into a name string (Debug only) |
| 65 | * |
| 66 | ******************************************************************************/ |
| 67 | |
| 68 | /* Region type decoding */ |
| 69 | |
| 70 | const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = { |
Bob Moore | 540b85a | 2012-07-16 10:01:36 +0800 | [diff] [blame] | 71 | "SystemMemory", /* 0x00 */ |
| 72 | "SystemIO", /* 0x01 */ |
| 73 | "PCI_Config", /* 0x02 */ |
| 74 | "EmbeddedControl", /* 0x03 */ |
| 75 | "SMBus", /* 0x04 */ |
| 76 | "SystemCMOS", /* 0x05 */ |
| 77 | "PCIBARTarget", /* 0x06 */ |
| 78 | "IPMI", /* 0x07 */ |
| 79 | "GeneralPurposeIo", /* 0x08 */ |
| 80 | "GenericSerialBus", /* 0x09 */ |
| 81 | "PCC" /* 0x0A */ |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 82 | }; |
| 83 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 84 | const char *acpi_ut_get_region_name(u8 space_id) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 85 | { |
| 86 | |
| 87 | if (space_id >= ACPI_USER_REGION_BEGIN) { |
| 88 | return ("UserDefinedRegion"); |
Bob Moore | 82a1b7c | 2011-04-13 13:19:35 +0800 | [diff] [blame] | 89 | } else if (space_id == ACPI_ADR_SPACE_DATA_TABLE) { |
| 90 | return ("DataTable"); |
Bob Moore | 47863b9 | 2011-02-14 16:11:43 +0800 | [diff] [blame] | 91 | } else if (space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) { |
| 92 | return ("FunctionalFixedHW"); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 93 | } else if (space_id >= ACPI_NUM_PREDEFINED_REGIONS) { |
| 94 | return ("InvalidSpaceId"); |
| 95 | } |
| 96 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 97 | return (acpi_gbl_region_types[space_id]); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /******************************************************************************* |
| 101 | * |
| 102 | * FUNCTION: acpi_ut_get_event_name |
| 103 | * |
| 104 | * PARAMETERS: event_id - Fixed event ID |
| 105 | * |
| 106 | * RETURN: Decoded event ID name |
| 107 | * |
| 108 | * DESCRIPTION: Translate a Event ID into a name string (Debug only) |
| 109 | * |
| 110 | ******************************************************************************/ |
| 111 | |
| 112 | /* Event type decoding */ |
| 113 | |
| 114 | static const char *acpi_gbl_event_types[ACPI_NUM_FIXED_EVENTS] = { |
| 115 | "PM_Timer", |
| 116 | "GlobalLock", |
| 117 | "PowerButton", |
| 118 | "SleepButton", |
| 119 | "RealTimeClock", |
| 120 | }; |
| 121 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 122 | const char *acpi_ut_get_event_name(u32 event_id) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 123 | { |
| 124 | |
| 125 | if (event_id > ACPI_EVENT_MAX) { |
| 126 | return ("InvalidEventID"); |
| 127 | } |
| 128 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 129 | return (acpi_gbl_event_types[event_id]); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | /******************************************************************************* |
| 133 | * |
| 134 | * FUNCTION: acpi_ut_get_type_name |
| 135 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 136 | * PARAMETERS: type - An ACPI object type |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 137 | * |
| 138 | * RETURN: Decoded ACPI object type name |
| 139 | * |
| 140 | * DESCRIPTION: Translate a Type ID into a name string (Debug only) |
| 141 | * |
| 142 | ******************************************************************************/ |
| 143 | |
| 144 | /* |
| 145 | * Elements of acpi_gbl_ns_type_names below must match |
| 146 | * one-to-one with values of acpi_object_type |
| 147 | * |
| 148 | * The type ACPI_TYPE_ANY (Untyped) is used as a "don't care" when searching; |
| 149 | * when stored in a table it really means that we have thus far seen no |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 150 | * evidence to indicate what type is actually going to be stored for this |
| 151 | & entry. |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 152 | */ |
| 153 | static const char acpi_gbl_bad_type[] = "UNDEFINED"; |
| 154 | |
| 155 | /* Printable names of the ACPI object types */ |
| 156 | |
| 157 | static const char *acpi_gbl_ns_type_names[] = { |
| 158 | /* 00 */ "Untyped", |
| 159 | /* 01 */ "Integer", |
| 160 | /* 02 */ "String", |
| 161 | /* 03 */ "Buffer", |
| 162 | /* 04 */ "Package", |
| 163 | /* 05 */ "FieldUnit", |
| 164 | /* 06 */ "Device", |
| 165 | /* 07 */ "Event", |
| 166 | /* 08 */ "Method", |
| 167 | /* 09 */ "Mutex", |
| 168 | /* 10 */ "Region", |
| 169 | /* 11 */ "Power", |
| 170 | /* 12 */ "Processor", |
| 171 | /* 13 */ "Thermal", |
| 172 | /* 14 */ "BufferField", |
| 173 | /* 15 */ "DdbHandle", |
| 174 | /* 16 */ "DebugObject", |
| 175 | /* 17 */ "RegionField", |
| 176 | /* 18 */ "BankField", |
| 177 | /* 19 */ "IndexField", |
| 178 | /* 20 */ "Reference", |
| 179 | /* 21 */ "Alias", |
| 180 | /* 22 */ "MethodAlias", |
| 181 | /* 23 */ "Notify", |
| 182 | /* 24 */ "AddrHandler", |
| 183 | /* 25 */ "ResourceDesc", |
| 184 | /* 26 */ "ResourceFld", |
| 185 | /* 27 */ "Scope", |
| 186 | /* 28 */ "Extra", |
| 187 | /* 29 */ "Data", |
| 188 | /* 30 */ "Invalid" |
| 189 | }; |
| 190 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 191 | const char *acpi_ut_get_type_name(acpi_object_type type) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 192 | { |
| 193 | |
| 194 | if (type > ACPI_TYPE_INVALID) { |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 195 | return (acpi_gbl_bad_type); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 196 | } |
| 197 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 198 | return (acpi_gbl_ns_type_names[type]); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 199 | } |
| 200 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 201 | const char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 202 | { |
Bob Moore | a5922a1 | 2015-10-19 10:24:58 +0800 | [diff] [blame] | 203 | ACPI_FUNCTION_TRACE(ut_get_object_type_name); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 204 | |
| 205 | if (!obj_desc) { |
Bob Moore | a5922a1 | 2015-10-19 10:24:58 +0800 | [diff] [blame] | 206 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Null Object Descriptor\n")); |
Bob Moore | 7225d04 | 2016-12-28 15:29:22 +0800 | [diff] [blame] | 207 | return_STR("[NULL Object Descriptor]"); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 208 | } |
| 209 | |
Bob Moore | a5922a1 | 2015-10-19 10:24:58 +0800 | [diff] [blame] | 210 | /* These descriptor types share a common area */ |
| 211 | |
| 212 | if ((ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) && |
| 213 | (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_NAMED)) { |
| 214 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 215 | "Invalid object descriptor type: 0x%2.2X [%s] (%p)\n", |
| 216 | ACPI_GET_DESCRIPTOR_TYPE(obj_desc), |
| 217 | acpi_ut_get_descriptor_name(obj_desc), |
| 218 | obj_desc)); |
| 219 | |
Bob Moore | 7225d04 | 2016-12-28 15:29:22 +0800 | [diff] [blame] | 220 | return_STR("Invalid object"); |
Bob Moore | a5922a1 | 2015-10-19 10:24:58 +0800 | [diff] [blame] | 221 | } |
| 222 | |
Jung-uk Kim | 4857a94 | 2016-08-04 16:42:19 +0800 | [diff] [blame] | 223 | return_STR(acpi_ut_get_type_name(obj_desc->common.type)); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | /******************************************************************************* |
| 227 | * |
| 228 | * FUNCTION: acpi_ut_get_node_name |
| 229 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 230 | * PARAMETERS: object - A namespace node |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 231 | * |
| 232 | * RETURN: ASCII name of the node |
| 233 | * |
| 234 | * DESCRIPTION: Validate the node and return the node's ACPI name. |
| 235 | * |
| 236 | ******************************************************************************/ |
| 237 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 238 | const char *acpi_ut_get_node_name(void *object) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 239 | { |
| 240 | struct acpi_namespace_node *node = (struct acpi_namespace_node *)object; |
| 241 | |
| 242 | /* Must return a string of exactly 4 characters == ACPI_NAME_SIZE */ |
| 243 | |
| 244 | if (!object) { |
| 245 | return ("NULL"); |
| 246 | } |
| 247 | |
| 248 | /* Check for Root node */ |
| 249 | |
| 250 | if ((object == ACPI_ROOT_OBJECT) || (object == acpi_gbl_root_node)) { |
| 251 | return ("\"\\\" "); |
| 252 | } |
| 253 | |
| 254 | /* Descriptor must be a namespace node */ |
| 255 | |
| 256 | if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) { |
| 257 | return ("####"); |
| 258 | } |
| 259 | |
| 260 | /* |
| 261 | * Ensure name is valid. The name was validated/repaired when the node |
| 262 | * was created, but make sure it has not been corrupted. |
| 263 | */ |
| 264 | acpi_ut_repair_name(node->name.ascii); |
| 265 | |
| 266 | /* Return the name */ |
| 267 | |
| 268 | return (node->name.ascii); |
| 269 | } |
| 270 | |
| 271 | /******************************************************************************* |
| 272 | * |
| 273 | * FUNCTION: acpi_ut_get_descriptor_name |
| 274 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 275 | * PARAMETERS: object - An ACPI object |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 276 | * |
| 277 | * RETURN: Decoded name of the descriptor type |
| 278 | * |
| 279 | * DESCRIPTION: Validate object and return the descriptor type |
| 280 | * |
| 281 | ******************************************************************************/ |
| 282 | |
| 283 | /* Printable names of object descriptor types */ |
| 284 | |
| 285 | static const char *acpi_gbl_desc_type_names[] = { |
| 286 | /* 00 */ "Not a Descriptor", |
| 287 | /* 01 */ "Cached", |
| 288 | /* 02 */ "State-Generic", |
| 289 | /* 03 */ "State-Update", |
| 290 | /* 04 */ "State-Package", |
| 291 | /* 05 */ "State-Control", |
| 292 | /* 06 */ "State-RootParseScope", |
| 293 | /* 07 */ "State-ParseScope", |
| 294 | /* 08 */ "State-WalkScope", |
| 295 | /* 09 */ "State-Result", |
| 296 | /* 10 */ "State-Notify", |
| 297 | /* 11 */ "State-Thread", |
| 298 | /* 12 */ "Walk", |
| 299 | /* 13 */ "Parser", |
| 300 | /* 14 */ "Operand", |
| 301 | /* 15 */ "Node" |
| 302 | }; |
| 303 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 304 | const char *acpi_ut_get_descriptor_name(void *object) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 305 | { |
| 306 | |
| 307 | if (!object) { |
| 308 | return ("NULL OBJECT"); |
| 309 | } |
| 310 | |
| 311 | if (ACPI_GET_DESCRIPTOR_TYPE(object) > ACPI_DESC_TYPE_MAX) { |
| 312 | return ("Not a Descriptor"); |
| 313 | } |
| 314 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 315 | return (acpi_gbl_desc_type_names[ACPI_GET_DESCRIPTOR_TYPE(object)]); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | /******************************************************************************* |
| 319 | * |
| 320 | * FUNCTION: acpi_ut_get_reference_name |
| 321 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 322 | * PARAMETERS: object - An ACPI reference object |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 323 | * |
| 324 | * RETURN: Decoded name of the type of reference |
| 325 | * |
| 326 | * DESCRIPTION: Decode a reference object sub-type to a string. |
| 327 | * |
| 328 | ******************************************************************************/ |
| 329 | |
| 330 | /* Printable names of reference object sub-types */ |
| 331 | |
| 332 | static const char *acpi_gbl_ref_class_names[] = { |
| 333 | /* 00 */ "Local", |
| 334 | /* 01 */ "Argument", |
| 335 | /* 02 */ "RefOf", |
| 336 | /* 03 */ "Index", |
| 337 | /* 04 */ "DdbHandle", |
| 338 | /* 05 */ "Named Object", |
| 339 | /* 06 */ "Debug" |
| 340 | }; |
| 341 | |
| 342 | const char *acpi_ut_get_reference_name(union acpi_operand_object *object) |
| 343 | { |
| 344 | |
| 345 | if (!object) { |
| 346 | return ("NULL Object"); |
| 347 | } |
| 348 | |
| 349 | if (ACPI_GET_DESCRIPTOR_TYPE(object) != ACPI_DESC_TYPE_OPERAND) { |
| 350 | return ("Not an Operand object"); |
| 351 | } |
| 352 | |
| 353 | if (object->common.type != ACPI_TYPE_LOCAL_REFERENCE) { |
| 354 | return ("Not a Reference object"); |
| 355 | } |
| 356 | |
| 357 | if (object->reference.class > ACPI_REFCLASS_MAX) { |
| 358 | return ("Unknown Reference class"); |
| 359 | } |
| 360 | |
| 361 | return (acpi_gbl_ref_class_names[object->reference.class]); |
| 362 | } |
| 363 | |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 364 | /******************************************************************************* |
| 365 | * |
| 366 | * FUNCTION: acpi_ut_get_mutex_name |
| 367 | * |
| 368 | * PARAMETERS: mutex_id - The predefined ID for this mutex. |
| 369 | * |
| 370 | * RETURN: Decoded name of the internal mutex |
| 371 | * |
| 372 | * DESCRIPTION: Translate a mutex ID into a name string (Debug only) |
| 373 | * |
| 374 | ******************************************************************************/ |
| 375 | |
| 376 | /* Names for internal mutex objects, used for debug output */ |
| 377 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 378 | static const char *acpi_gbl_mutex_names[ACPI_NUM_MUTEX] = { |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 379 | "ACPI_MTX_Interpreter", |
| 380 | "ACPI_MTX_Namespace", |
| 381 | "ACPI_MTX_Tables", |
| 382 | "ACPI_MTX_Events", |
| 383 | "ACPI_MTX_Caches", |
| 384 | "ACPI_MTX_Memory", |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 385 | }; |
| 386 | |
LABBE Corentin | c118abc | 2015-12-29 13:54:04 +0800 | [diff] [blame] | 387 | const char *acpi_ut_get_mutex_name(u32 mutex_id) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 388 | { |
| 389 | |
| 390 | if (mutex_id > ACPI_MAX_MUTEX) { |
| 391 | return ("Invalid Mutex ID"); |
| 392 | } |
| 393 | |
| 394 | return (acpi_gbl_mutex_names[mutex_id]); |
| 395 | } |
| 396 | |
Bob Moore | 3e1dc64 | 2017-11-17 15:42:28 -0800 | [diff] [blame] | 397 | #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER) |
| 398 | |
| 399 | /* |
| 400 | * Strings and procedures used for debug only |
| 401 | */ |
| 402 | |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 403 | /******************************************************************************* |
| 404 | * |
| 405 | * FUNCTION: acpi_ut_get_notify_name |
| 406 | * |
| 407 | * PARAMETERS: notify_value - Value from the Notify() request |
| 408 | * |
| 409 | * RETURN: Decoded name for the notify value |
| 410 | * |
| 411 | * DESCRIPTION: Translate a Notify Value to a notify namestring. |
| 412 | * |
| 413 | ******************************************************************************/ |
| 414 | |
| 415 | /* Names for Notify() values, used for debug output */ |
| 416 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 417 | static const char *acpi_gbl_generic_notify[ACPI_GENERIC_NOTIFY_MAX + 1] = { |
Bob Moore | ea14360 | 2012-02-14 18:23:39 +0800 | [diff] [blame] | 418 | /* 00 */ "Bus Check", |
| 419 | /* 01 */ "Device Check", |
| 420 | /* 02 */ "Device Wake", |
| 421 | /* 03 */ "Eject Request", |
| 422 | /* 04 */ "Device Check Light", |
| 423 | /* 05 */ "Frequency Mismatch", |
| 424 | /* 06 */ "Bus Mode Mismatch", |
| 425 | /* 07 */ "Power Fault", |
| 426 | /* 08 */ "Capabilities Check", |
| 427 | /* 09 */ "Device PLD Check", |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 428 | /* 0A */ "Reserved", |
| 429 | /* 0B */ "System Locality Update", |
Bob Moore | a69b438 | 2017-06-05 16:45:22 +0800 | [diff] [blame] | 430 | /* 0C */ "Reserved (was previously Shutdown Request)", |
| 431 | /* Reserved in ACPI 6.0 */ |
Bob Moore | e6f9193 | 2017-06-05 16:37:23 +0800 | [diff] [blame] | 432 | /* 0D */ "System Resource Affinity Update", |
| 433 | /* 0E */ "Heterogeneous Memory Attributes Update" |
| 434 | /* ACPI 6.2 */ |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 435 | }; |
| 436 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 437 | static const char *acpi_gbl_device_notify[5] = { |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 438 | /* 80 */ "Status Change", |
| 439 | /* 81 */ "Information Change", |
| 440 | /* 82 */ "Device-Specific Change", |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 441 | /* 83 */ "Device-Specific Change", |
| 442 | /* 84 */ "Reserved" |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 443 | }; |
| 444 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 445 | static const char *acpi_gbl_processor_notify[5] = { |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 446 | /* 80 */ "Performance Capability Change", |
| 447 | /* 81 */ "C-State Change", |
| 448 | /* 82 */ "Throttling Capability Change", |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 449 | /* 83 */ "Guaranteed Change", |
| 450 | /* 84 */ "Minimum Excursion" |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 451 | }; |
| 452 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 453 | static const char *acpi_gbl_thermal_notify[5] = { |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 454 | /* 80 */ "Thermal Status Change", |
| 455 | /* 81 */ "Thermal Trip Point Change", |
| 456 | /* 82 */ "Thermal Device List Change", |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 457 | /* 83 */ "Thermal Relationship Change", |
| 458 | /* 84 */ "Reserved" |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 459 | }; |
| 460 | |
| 461 | const char *acpi_ut_get_notify_name(u32 notify_value, acpi_object_type type) |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 462 | { |
| 463 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 464 | /* 00 - 0D are "common to all object types" (from ACPI Spec) */ |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 465 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 466 | if (notify_value <= ACPI_GENERIC_NOTIFY_MAX) { |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 467 | return (acpi_gbl_generic_notify[notify_value]); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 468 | } |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 469 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 470 | /* 0E - 7F are reserved */ |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 471 | |
| 472 | if (notify_value <= ACPI_MAX_SYS_NOTIFY) { |
| 473 | return ("Reserved"); |
| 474 | } |
| 475 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 476 | /* 80 - 84 are per-object-type */ |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 477 | |
Bob Moore | a88e0ce | 2016-03-24 09:39:36 +0800 | [diff] [blame] | 478 | if (notify_value <= ACPI_SPECIFIC_NOTIFY_MAX) { |
Bob Moore | 06a63e3 | 2014-04-04 12:37:44 +0800 | [diff] [blame] | 479 | switch (type) { |
| 480 | case ACPI_TYPE_ANY: |
| 481 | case ACPI_TYPE_DEVICE: |
| 482 | return (acpi_gbl_device_notify[notify_value - 0x80]); |
| 483 | |
| 484 | case ACPI_TYPE_PROCESSOR: |
| 485 | return (acpi_gbl_processor_notify[notify_value - 0x80]); |
| 486 | |
| 487 | case ACPI_TYPE_THERMAL: |
| 488 | return (acpi_gbl_thermal_notify[notify_value - 0x80]); |
| 489 | |
| 490 | default: |
| 491 | return ("Target object type does not support notifies"); |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | /* 84 - BF are device-specific */ |
| 496 | |
| 497 | if (notify_value <= ACPI_MAX_DEVICE_SPECIFIC_NOTIFY) { |
| 498 | return ("Device-Specific"); |
| 499 | } |
| 500 | |
| 501 | /* C0 and above are hardware-specific */ |
| 502 | |
| 503 | return ("Hardware-Specific"); |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 504 | } |
Bob Moore | 5a6e7ec | 2016-11-30 15:21:57 +0800 | [diff] [blame] | 505 | |
| 506 | /******************************************************************************* |
| 507 | * |
| 508 | * FUNCTION: acpi_ut_get_argument_type_name |
| 509 | * |
| 510 | * PARAMETERS: arg_type - an ARGP_* parser argument type |
| 511 | * |
| 512 | * RETURN: Decoded ARGP_* type |
| 513 | * |
| 514 | * DESCRIPTION: Decode an ARGP_* parser type, as defined in the amlcode.h file, |
| 515 | * and used in the acopcode.h file. For example, ARGP_TERMARG. |
| 516 | * Used for debug only. |
| 517 | * |
| 518 | ******************************************************************************/ |
| 519 | |
| 520 | static const char *acpi_gbl_argument_type[20] = { |
| 521 | /* 00 */ "Unknown ARGP", |
| 522 | /* 01 */ "ByteData", |
| 523 | /* 02 */ "ByteList", |
| 524 | /* 03 */ "CharList", |
| 525 | /* 04 */ "DataObject", |
| 526 | /* 05 */ "DataObjectList", |
| 527 | /* 06 */ "DWordData", |
| 528 | /* 07 */ "FieldList", |
| 529 | /* 08 */ "Name", |
| 530 | /* 09 */ "NameString", |
| 531 | /* 0A */ "ObjectList", |
| 532 | /* 0B */ "PackageLength", |
| 533 | /* 0C */ "SuperName", |
| 534 | /* 0D */ "Target", |
| 535 | /* 0E */ "TermArg", |
| 536 | /* 0F */ "TermList", |
| 537 | /* 10 */ "WordData", |
| 538 | /* 11 */ "QWordData", |
| 539 | /* 12 */ "SimpleName", |
| 540 | /* 13 */ "NameOrRef" |
| 541 | }; |
| 542 | |
| 543 | const char *acpi_ut_get_argument_type_name(u32 arg_type) |
| 544 | { |
| 545 | |
| 546 | if (arg_type > ARGP_MAX) { |
| 547 | return ("Unknown ARGP"); |
| 548 | } |
| 549 | |
| 550 | return (acpi_gbl_argument_type[arg_type]); |
| 551 | } |
| 552 | |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 553 | #endif |
| 554 | |
| 555 | /******************************************************************************* |
| 556 | * |
| 557 | * FUNCTION: acpi_ut_valid_object_type |
| 558 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 559 | * PARAMETERS: type - Object type to be validated |
Bob Moore | a257e07 | 2011-02-14 16:00:21 +0800 | [diff] [blame] | 560 | * |
| 561 | * RETURN: TRUE if valid object type, FALSE otherwise |
| 562 | * |
| 563 | * DESCRIPTION: Validate an object type |
| 564 | * |
| 565 | ******************************************************************************/ |
| 566 | |
| 567 | u8 acpi_ut_valid_object_type(acpi_object_type type) |
| 568 | { |
| 569 | |
| 570 | if (type > ACPI_TYPE_LOCAL_MAX) { |
| 571 | |
| 572 | /* Note: Assumes all TYPEs are contiguous (external/local) */ |
| 573 | |
| 574 | return (FALSE); |
| 575 | } |
| 576 | |
| 577 | return (TRUE); |
| 578 | } |