1 /****************************************************************************** 2 * 3 * Module Name: exdump - Interpreter debug output routines 4 * 5 *****************************************************************************/ 6 7 /* 8 * Copyright (C) 2000 - 2014, Intel Corp. 9 * 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 #include <acpi/acpi.h> 45 #include "accommon.h" 46 #include "acinterp.h" 47 #include "amlcode.h" 48 #include "acnamesp.h" 49 50 #define _COMPONENT ACPI_EXECUTER 51 ACPI_MODULE_NAME("exdump") 52 53 /* 54 * The following routines are used for debug output only 55 */ 56 #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER) 57 /* Local prototypes */ 58 static void acpi_ex_out_string(char *title, char *value); 59 60 static void acpi_ex_out_pointer(char *title, void *value); 61 62 static void 63 acpi_ex_dump_object(union acpi_operand_object *obj_desc, 64 struct acpi_exdump_info *info); 65 66 static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc); 67 68 static void 69 acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc, 70 u32 level, u32 index); 71 72 /******************************************************************************* 73 * 74 * Object Descriptor info tables 75 * 76 * Note: The first table entry must be an INIT opcode and must contain 77 * the table length (number of table entries) 78 * 79 ******************************************************************************/ 80 81 static struct acpi_exdump_info acpi_ex_dump_integer[2] = { 82 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_integer), NULL}, 83 {ACPI_EXD_UINT64, ACPI_EXD_OFFSET(integer.value), "Value"} 84 }; 85 86 static struct acpi_exdump_info acpi_ex_dump_string[4] = { 87 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_string), NULL}, 88 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(string.length), "Length"}, 89 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(string.pointer), "Pointer"}, 90 {ACPI_EXD_STRING, 0, NULL} 91 }; 92 93 static struct acpi_exdump_info acpi_ex_dump_buffer[5] = { 94 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer), NULL}, 95 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(buffer.length), "Length"}, 96 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer.pointer), "Pointer"}, 97 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(buffer.node), "Parent Node"}, 98 {ACPI_EXD_BUFFER, 0, NULL} 99 }; 100 101 static struct acpi_exdump_info acpi_ex_dump_package[6] = { 102 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_package), NULL}, 103 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(package.node), "Parent Node"}, 104 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(package.flags), "Flags"}, 105 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(package.count), "Elements"}, 106 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(package.elements), "Element List"}, 107 {ACPI_EXD_PACKAGE, 0, NULL} 108 }; 109 110 static struct acpi_exdump_info acpi_ex_dump_device[4] = { 111 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_device), NULL}, 112 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[0]), 113 "System Notify"}, 114 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[1]), 115 "Device Notify"}, 116 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(device.handler), "Handler"} 117 }; 118 119 static struct acpi_exdump_info acpi_ex_dump_event[2] = { 120 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_event), NULL}, 121 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(event.os_semaphore), "OsSemaphore"} 122 }; 123 124 static struct acpi_exdump_info acpi_ex_dump_method[9] = { 125 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_method), NULL}, 126 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.info_flags), "Info Flags"}, 127 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.param_count), 128 "Parameter Count"}, 129 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.sync_level), "Sync Level"}, 130 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.mutex), "Mutex"}, 131 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.owner_id), "Owner Id"}, 132 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.thread_count), "Thread Count"}, 133 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(method.aml_length), "Aml Length"}, 134 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.aml_start), "Aml Start"} 135 }; 136 137 static struct acpi_exdump_info acpi_ex_dump_mutex[5] = { 138 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_mutex), NULL}, 139 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(mutex.sync_level), "Sync Level"}, 140 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.owner_thread), "Owner Thread"}, 141 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(mutex.acquisition_depth), 142 "Acquire Depth"}, 143 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.os_mutex), "OsMutex"} 144 }; 145 146 static struct acpi_exdump_info acpi_ex_dump_region[8] = { 147 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region), NULL}, 148 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.space_id), "Space Id"}, 149 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.flags), "Flags"}, 150 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(region.node), "Parent Node"}, 151 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(region.address), "Address"}, 152 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(region.length), "Length"}, 153 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(region.handler), "Handler"}, 154 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(region.next), "Next"} 155 }; 156 157 static struct acpi_exdump_info acpi_ex_dump_power[6] = { 158 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_power), NULL}, 159 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.system_level), 160 "System Level"}, 161 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.resource_order), 162 "Resource Order"}, 163 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[0]), 164 "System Notify"}, 165 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[1]), 166 "Device Notify"}, 167 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.handler), "Handler"} 168 }; 169 170 static struct acpi_exdump_info acpi_ex_dump_processor[7] = { 171 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_processor), NULL}, 172 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.proc_id), "Processor ID"}, 173 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.length), "Length"}, 174 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(processor.address), "Address"}, 175 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[0]), 176 "System Notify"}, 177 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[1]), 178 "Device Notify"}, 179 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.handler), "Handler"} 180 }; 181 182 static struct acpi_exdump_info acpi_ex_dump_thermal[4] = { 183 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_thermal), NULL}, 184 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[0]), 185 "System Notify"}, 186 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[1]), 187 "Device Notify"}, 188 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.handler), "Handler"} 189 }; 190 191 static struct acpi_exdump_info acpi_ex_dump_buffer_field[3] = { 192 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer_field), NULL}, 193 {ACPI_EXD_FIELD, 0, NULL}, 194 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer_field.buffer_obj), 195 "Buffer Object"} 196 }; 197 198 static struct acpi_exdump_info acpi_ex_dump_region_field[5] = { 199 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region_field), NULL}, 200 {ACPI_EXD_FIELD, 0, NULL}, 201 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(field.access_length), "AccessLength"}, 202 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.region_obj), "Region Object"}, 203 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.resource_buffer), 204 "ResourceBuffer"} 205 }; 206 207 static struct acpi_exdump_info acpi_ex_dump_bank_field[5] = { 208 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL}, 209 {ACPI_EXD_FIELD, 0, NULL}, 210 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(bank_field.value), "Value"}, 211 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.region_obj), 212 "Region Object"}, 213 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.bank_obj), "Bank Object"} 214 }; 215 216 static struct acpi_exdump_info acpi_ex_dump_index_field[5] = { 217 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL}, 218 {ACPI_EXD_FIELD, 0, NULL}, 219 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(index_field.value), "Value"}, 220 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.index_obj), 221 "Index Object"}, 222 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.data_obj), "Data Object"} 223 }; 224 225 static struct acpi_exdump_info acpi_ex_dump_reference[8] = { 226 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_reference), NULL}, 227 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.class), "Class"}, 228 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.target_type), "Target Type"}, 229 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(reference.value), "Value"}, 230 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.object), "Object Desc"}, 231 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(reference.node), "Node"}, 232 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.where), "Where"}, 233 {ACPI_EXD_REFERENCE, 0, NULL} 234 }; 235 236 static struct acpi_exdump_info acpi_ex_dump_address_handler[6] = { 237 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_address_handler), 238 NULL}, 239 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(address_space.space_id), "Space Id"}, 240 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(address_space.next), "Next"}, 241 {ACPI_EXD_RGN_LIST, ACPI_EXD_OFFSET(address_space.region_list), 242 "Region List"}, 243 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(address_space.node), "Node"}, 244 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(address_space.context), "Context"} 245 }; 246 247 static struct acpi_exdump_info acpi_ex_dump_notify[7] = { 248 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_notify), NULL}, 249 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(notify.node), "Node"}, 250 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(notify.handler_type), "Handler Type"}, 251 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.handler), "Handler"}, 252 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.context), "Context"}, 253 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[0]), 254 "Next System Notify"}, 255 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[1]), "Next Device Notify"} 256 }; 257 258 static struct acpi_exdump_info acpi_ex_dump_extra[6] = { 259 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_extra), NULL}, 260 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.method_REG), "_REG Method"}, 261 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(extra.scope_node), "Scope Node"}, 262 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.region_context), 263 "Region Context"}, 264 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.aml_start), "Aml Start"}, 265 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(extra.aml_length), "Aml Length"} 266 }; 267 268 static struct acpi_exdump_info acpi_ex_dump_data[3] = { 269 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_data), NULL}, 270 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.handler), "Handler"}, 271 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.pointer), "Raw Data"} 272 }; 273 274 /* Miscellaneous tables */ 275 276 static struct acpi_exdump_info acpi_ex_dump_common[5] = { 277 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_common), NULL}, 278 {ACPI_EXD_TYPE, 0, NULL}, 279 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(common.reference_count), 280 "Reference Count"}, 281 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common.flags), "Flags"}, 282 {ACPI_EXD_LIST, ACPI_EXD_OFFSET(common.next_object), "Object List"} 283 }; 284 285 static struct acpi_exdump_info acpi_ex_dump_field_common[7] = { 286 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_field_common), NULL}, 287 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.field_flags), 288 "Field Flags"}, 289 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.access_byte_width), 290 "Access Byte Width"}, 291 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.bit_length), 292 "Bit Length"}, 293 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.start_field_bit_offset), 294 "Field Bit Offset"}, 295 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.base_byte_offset), 296 "Base Byte Offset"}, 297 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(common_field.node), "Parent Node"} 298 }; 299 300 static struct acpi_exdump_info acpi_ex_dump_node[7] = { 301 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_node), NULL}, 302 {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET(flags), "Flags"}, 303 {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET(owner_id), "Owner Id"}, 304 {ACPI_EXD_LIST, ACPI_EXD_NSOFFSET(object), "Object List"}, 305 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(parent), "Parent"}, 306 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(child), "Child"}, 307 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(peer), "Peer"} 308 }; 309 310 /* Dispatch table, indexed by object type */ 311 312 static struct acpi_exdump_info *acpi_ex_dump_info[] = { 313 NULL, 314 acpi_ex_dump_integer, 315 acpi_ex_dump_string, 316 acpi_ex_dump_buffer, 317 acpi_ex_dump_package, 318 NULL, 319 acpi_ex_dump_device, 320 acpi_ex_dump_event, 321 acpi_ex_dump_method, 322 acpi_ex_dump_mutex, 323 acpi_ex_dump_region, 324 acpi_ex_dump_power, 325 acpi_ex_dump_processor, 326 acpi_ex_dump_thermal, 327 acpi_ex_dump_buffer_field, 328 NULL, 329 NULL, 330 acpi_ex_dump_region_field, 331 acpi_ex_dump_bank_field, 332 acpi_ex_dump_index_field, 333 acpi_ex_dump_reference, 334 NULL, 335 NULL, 336 acpi_ex_dump_notify, 337 acpi_ex_dump_address_handler, 338 NULL, 339 NULL, 340 NULL, 341 acpi_ex_dump_extra, 342 acpi_ex_dump_data 343 }; 344 345 /******************************************************************************* 346 * 347 * FUNCTION: acpi_ex_dump_object 348 * 349 * PARAMETERS: obj_desc - Descriptor to dump 350 * info - Info table corresponding to this object 351 * type 352 * 353 * RETURN: None 354 * 355 * DESCRIPTION: Walk the info table for this object 356 * 357 ******************************************************************************/ 358 359 static void 360 acpi_ex_dump_object(union acpi_operand_object *obj_desc, 361 struct acpi_exdump_info *info) 362 { 363 u8 *target; 364 char *name; 365 const char *reference_name; 366 u8 count; 367 union acpi_operand_object *start; 368 union acpi_operand_object *data = NULL; 369 union acpi_operand_object *next; 370 struct acpi_namespace_node *node; 371 372 if (!info) { 373 acpi_os_printf 374 ("ExDumpObject: Display not implemented for object type %s\n", 375 acpi_ut_get_object_type_name(obj_desc)); 376 return; 377 } 378 379 /* First table entry must contain the table length (# of table entries) */ 380 381 count = info->offset; 382 383 while (count) { 384 target = ACPI_ADD_PTR(u8, obj_desc, info->offset); 385 name = info->name; 386 387 switch (info->opcode) { 388 case ACPI_EXD_INIT: 389 390 break; 391 392 case ACPI_EXD_TYPE: 393 394 acpi_os_printf("%20s : %2.2X [%s]\n", "Type", 395 obj_desc->common.type, 396 acpi_ut_get_object_type_name(obj_desc)); 397 break; 398 399 case ACPI_EXD_UINT8: 400 401 acpi_os_printf("%20s : %2.2X\n", name, *target); 402 break; 403 404 case ACPI_EXD_UINT16: 405 406 acpi_os_printf("%20s : %4.4X\n", name, 407 ACPI_GET16(target)); 408 break; 409 410 case ACPI_EXD_UINT32: 411 412 acpi_os_printf("%20s : %8.8X\n", name, 413 ACPI_GET32(target)); 414 break; 415 416 case ACPI_EXD_UINT64: 417 418 acpi_os_printf("%20s : %8.8X%8.8X\n", "Value", 419 ACPI_FORMAT_UINT64(ACPI_GET64(target))); 420 break; 421 422 case ACPI_EXD_POINTER: 423 case ACPI_EXD_ADDRESS: 424 425 acpi_ex_out_pointer(name, 426 *ACPI_CAST_PTR(void *, target)); 427 break; 428 429 case ACPI_EXD_STRING: 430 431 acpi_ut_print_string(obj_desc->string.pointer, 432 ACPI_UINT8_MAX); 433 acpi_os_printf("\n"); 434 break; 435 436 case ACPI_EXD_BUFFER: 437 438 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer, 439 obj_desc->buffer.length); 440 break; 441 442 case ACPI_EXD_PACKAGE: 443 444 /* Dump the package contents */ 445 446 acpi_os_printf("\nPackage Contents:\n"); 447 acpi_ex_dump_package_obj(obj_desc, 0, 0); 448 break; 449 450 case ACPI_EXD_FIELD: 451 452 acpi_ex_dump_object(obj_desc, 453 acpi_ex_dump_field_common); 454 break; 455 456 case ACPI_EXD_REFERENCE: 457 458 reference_name = acpi_ut_get_reference_name(obj_desc); 459 acpi_ex_out_string("Class Name", 460 ACPI_CAST_PTR(char, reference_name)); 461 acpi_ex_dump_reference_obj(obj_desc); 462 break; 463 464 case ACPI_EXD_LIST: 465 466 start = *ACPI_CAST_PTR(void *, target); 467 next = start; 468 469 acpi_os_printf("%20s : %p", name, next); 470 if (next) { 471 acpi_os_printf("(%s %2.2X)", 472 acpi_ut_get_object_type_name 473 (next), next->common.type); 474 475 while (next->common.next_object) { 476 if ((next->common.type == 477 ACPI_TYPE_LOCAL_DATA) && !data) { 478 data = next; 479 } 480 481 next = next->common.next_object; 482 acpi_os_printf("->%p(%s %2.2X)", next, 483 acpi_ut_get_object_type_name 484 (next), 485 next->common.type); 486 487 if ((next == start) || (next == data)) { 488 acpi_os_printf 489 ("\n**** Error: Object list appears to be circular linked"); 490 break; 491 } 492 } 493 } 494 495 acpi_os_printf("\n", next); 496 break; 497 498 case ACPI_EXD_HDLR_LIST: 499 500 start = *ACPI_CAST_PTR(void *, target); 501 next = start; 502 503 acpi_os_printf("%20s : %p", name, next); 504 if (next) { 505 acpi_os_printf("(%s %2.2X)", 506 acpi_ut_get_object_type_name 507 (next), next->common.type); 508 509 while (next->address_space.next) { 510 if ((next->common.type == 511 ACPI_TYPE_LOCAL_DATA) && !data) { 512 data = next; 513 } 514 515 next = next->address_space.next; 516 acpi_os_printf("->%p(%s %2.2X)", next, 517 acpi_ut_get_object_type_name 518 (next), 519 next->common.type); 520 521 if ((next == start) || (next == data)) { 522 acpi_os_printf 523 ("\n**** Error: Handler list appears to be circular linked"); 524 break; 525 } 526 } 527 } 528 529 acpi_os_printf("\n", next); 530 break; 531 532 case ACPI_EXD_RGN_LIST: 533 534 start = *ACPI_CAST_PTR(void *, target); 535 next = start; 536 537 acpi_os_printf("%20s : %p", name, next); 538 if (next) { 539 acpi_os_printf("(%s %2.2X)", 540 acpi_ut_get_object_type_name 541 (next), next->common.type); 542 543 while (next->region.next) { 544 if ((next->common.type == 545 ACPI_TYPE_LOCAL_DATA) && !data) { 546 data = next; 547 } 548 549 next = next->region.next; 550 acpi_os_printf("->%p(%s %2.2X)", next, 551 acpi_ut_get_object_type_name 552 (next), 553 next->common.type); 554 555 if ((next == start) || (next == data)) { 556 acpi_os_printf 557 ("\n**** Error: Region list appears to be circular linked"); 558 break; 559 } 560 } 561 } 562 563 acpi_os_printf("\n", next); 564 break; 565 566 case ACPI_EXD_NODE: 567 568 node = 569 *ACPI_CAST_PTR(struct acpi_namespace_node *, 570 target); 571 572 acpi_os_printf("%20s : %p", name, node); 573 if (node) { 574 acpi_os_printf(" [%4.4s]", node->name.ascii); 575 } 576 acpi_os_printf("\n"); 577 break; 578 579 default: 580 581 acpi_os_printf("**** Invalid table opcode [%X] ****\n", 582 info->opcode); 583 return; 584 } 585 586 info++; 587 count--; 588 } 589 } 590 591 /******************************************************************************* 592 * 593 * FUNCTION: acpi_ex_dump_operand 594 * 595 * PARAMETERS: *obj_desc - Pointer to entry to be dumped 596 * depth - Current nesting depth 597 * 598 * RETURN: None 599 * 600 * DESCRIPTION: Dump an operand object 601 * 602 ******************************************************************************/ 603 604 void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) 605 { 606 u32 length; 607 u32 index; 608 609 ACPI_FUNCTION_NAME(ex_dump_operand) 610 611 /* Check if debug output enabled */ 612 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) { 613 return; 614 } 615 616 if (!obj_desc) { 617 618 /* This could be a null element of a package */ 619 620 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Null Object Descriptor\n")); 621 return; 622 } 623 624 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) { 625 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p Namespace Node: ", 626 obj_desc)); 627 ACPI_DUMP_ENTRY(obj_desc, ACPI_LV_EXEC); 628 return; 629 } 630 631 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) { 632 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, 633 "%p is not a node or operand object: [%s]\n", 634 obj_desc, 635 acpi_ut_get_descriptor_name(obj_desc))); 636 ACPI_DUMP_BUFFER(obj_desc, sizeof(union acpi_operand_object)); 637 return; 638 } 639 640 /* obj_desc is a valid object */ 641 642 if (depth > 0) { 643 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%*s[%u] %p ", 644 depth, " ", depth, obj_desc)); 645 } else { 646 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p ", obj_desc)); 647 } 648 649 /* Decode object type */ 650 651 switch (obj_desc->common.type) { 652 case ACPI_TYPE_LOCAL_REFERENCE: 653 654 acpi_os_printf("Reference: [%s] ", 655 acpi_ut_get_reference_name(obj_desc)); 656 657 switch (obj_desc->reference.class) { 658 case ACPI_REFCLASS_DEBUG: 659 660 acpi_os_printf("\n"); 661 break; 662 663 case ACPI_REFCLASS_INDEX: 664 665 acpi_os_printf("%p\n", obj_desc->reference.object); 666 break; 667 668 case ACPI_REFCLASS_TABLE: 669 670 acpi_os_printf("Table Index %X\n", 671 obj_desc->reference.value); 672 break; 673 674 case ACPI_REFCLASS_REFOF: 675 676 acpi_os_printf("%p [%s]\n", obj_desc->reference.object, 677 acpi_ut_get_type_name(((union 678 acpi_operand_object 679 *) 680 obj_desc-> 681 reference. 682 object)->common. 683 type)); 684 break; 685 686 case ACPI_REFCLASS_NAME: 687 688 acpi_os_printf("- [%4.4s]\n", 689 obj_desc->reference.node->name.ascii); 690 break; 691 692 case ACPI_REFCLASS_ARG: 693 case ACPI_REFCLASS_LOCAL: 694 695 acpi_os_printf("%X\n", obj_desc->reference.value); 696 break; 697 698 default: /* Unknown reference class */ 699 700 acpi_os_printf("%2.2X\n", obj_desc->reference.class); 701 break; 702 } 703 break; 704 705 case ACPI_TYPE_BUFFER: 706 707 acpi_os_printf("Buffer length %.2X @ %p\n", 708 obj_desc->buffer.length, 709 obj_desc->buffer.pointer); 710 711 /* Debug only -- dump the buffer contents */ 712 713 if (obj_desc->buffer.pointer) { 714 length = obj_desc->buffer.length; 715 if (length > 128) { 716 length = 128; 717 } 718 719 acpi_os_printf 720 ("Buffer Contents: (displaying length 0x%.2X)\n", 721 length); 722 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer, length); 723 } 724 break; 725 726 case ACPI_TYPE_INTEGER: 727 728 acpi_os_printf("Integer %8.8X%8.8X\n", 729 ACPI_FORMAT_UINT64(obj_desc->integer.value)); 730 break; 731 732 case ACPI_TYPE_PACKAGE: 733 734 acpi_os_printf("Package [Len %X] ElementArray %p\n", 735 obj_desc->package.count, 736 obj_desc->package.elements); 737 738 /* 739 * If elements exist, package element pointer is valid, 740 * and debug_level exceeds 1, dump package's elements. 741 */ 742 if (obj_desc->package.count && 743 obj_desc->package.elements && acpi_dbg_level > 1) { 744 for (index = 0; index < obj_desc->package.count; 745 index++) { 746 acpi_ex_dump_operand(obj_desc->package. 747 elements[index], 748 depth + 1); 749 } 750 } 751 break; 752 753 case ACPI_TYPE_REGION: 754 755 acpi_os_printf("Region %s (%X)", 756 acpi_ut_get_region_name(obj_desc->region. 757 space_id), 758 obj_desc->region.space_id); 759 760 /* 761 * If the address and length have not been evaluated, 762 * don't print them. 763 */ 764 if (!(obj_desc->region.flags & AOPOBJ_DATA_VALID)) { 765 acpi_os_printf("\n"); 766 } else { 767 acpi_os_printf(" base %8.8X%8.8X Length %X\n", 768 ACPI_FORMAT_NATIVE_UINT(obj_desc->region. 769 address), 770 obj_desc->region.length); 771 } 772 break; 773 774 case ACPI_TYPE_STRING: 775 776 acpi_os_printf("String length %X @ %p ", 777 obj_desc->string.length, 778 obj_desc->string.pointer); 779 780 acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX); 781 acpi_os_printf("\n"); 782 break; 783 784 case ACPI_TYPE_LOCAL_BANK_FIELD: 785 786 acpi_os_printf("BankField\n"); 787 break; 788 789 case ACPI_TYPE_LOCAL_REGION_FIELD: 790 791 acpi_os_printf 792 ("RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at " 793 "byte=%X bit=%X of below:\n", obj_desc->field.bit_length, 794 obj_desc->field.access_byte_width, 795 obj_desc->field.field_flags & AML_FIELD_LOCK_RULE_MASK, 796 obj_desc->field.field_flags & AML_FIELD_UPDATE_RULE_MASK, 797 obj_desc->field.base_byte_offset, 798 obj_desc->field.start_field_bit_offset); 799 800 acpi_ex_dump_operand(obj_desc->field.region_obj, depth + 1); 801 break; 802 803 case ACPI_TYPE_LOCAL_INDEX_FIELD: 804 805 acpi_os_printf("IndexField\n"); 806 break; 807 808 case ACPI_TYPE_BUFFER_FIELD: 809 810 acpi_os_printf("BufferField: %X bits at byte %X bit %X of\n", 811 obj_desc->buffer_field.bit_length, 812 obj_desc->buffer_field.base_byte_offset, 813 obj_desc->buffer_field.start_field_bit_offset); 814 815 if (!obj_desc->buffer_field.buffer_obj) { 816 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "*NULL*\n")); 817 } else if ((obj_desc->buffer_field.buffer_obj)->common.type != 818 ACPI_TYPE_BUFFER) { 819 acpi_os_printf("*not a Buffer*\n"); 820 } else { 821 acpi_ex_dump_operand(obj_desc->buffer_field.buffer_obj, 822 depth + 1); 823 } 824 break; 825 826 case ACPI_TYPE_EVENT: 827 828 acpi_os_printf("Event\n"); 829 break; 830 831 case ACPI_TYPE_METHOD: 832 833 acpi_os_printf("Method(%X) @ %p:%X\n", 834 obj_desc->method.param_count, 835 obj_desc->method.aml_start, 836 obj_desc->method.aml_length); 837 break; 838 839 case ACPI_TYPE_MUTEX: 840 841 acpi_os_printf("Mutex\n"); 842 break; 843 844 case ACPI_TYPE_DEVICE: 845 846 acpi_os_printf("Device\n"); 847 break; 848 849 case ACPI_TYPE_POWER: 850 851 acpi_os_printf("Power\n"); 852 break; 853 854 case ACPI_TYPE_PROCESSOR: 855 856 acpi_os_printf("Processor\n"); 857 break; 858 859 case ACPI_TYPE_THERMAL: 860 861 acpi_os_printf("Thermal\n"); 862 break; 863 864 default: 865 866 /* Unknown Type */ 867 868 acpi_os_printf("Unknown Type %X\n", obj_desc->common.type); 869 break; 870 } 871 872 return; 873 } 874 875 /******************************************************************************* 876 * 877 * FUNCTION: acpi_ex_dump_operands 878 * 879 * PARAMETERS: operands - A list of Operand objects 880 * opcode_name - AML opcode name 881 * num_operands - Operand count for this opcode 882 * 883 * DESCRIPTION: Dump the operands associated with the opcode 884 * 885 ******************************************************************************/ 886 887 void 888 acpi_ex_dump_operands(union acpi_operand_object **operands, 889 const char *opcode_name, u32 num_operands) 890 { 891 ACPI_FUNCTION_NAME(ex_dump_operands); 892 893 if (!opcode_name) { 894 opcode_name = "UNKNOWN"; 895 } 896 897 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, 898 "**** Start operand dump for opcode [%s], %u operands\n", 899 opcode_name, num_operands)); 900 901 if (num_operands == 0) { 902 num_operands = 1; 903 } 904 905 /* Dump the individual operands */ 906 907 while (num_operands) { 908 acpi_ex_dump_operand(*operands, 0); 909 operands++; 910 num_operands--; 911 } 912 913 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, 914 "**** End operand dump for [%s]\n", opcode_name)); 915 return; 916 } 917 918 /******************************************************************************* 919 * 920 * FUNCTION: acpi_ex_out* functions 921 * 922 * PARAMETERS: title - Descriptive text 923 * value - Value to be displayed 924 * 925 * DESCRIPTION: Object dump output formatting functions. These functions 926 * reduce the number of format strings required and keeps them 927 * all in one place for easy modification. 928 * 929 ******************************************************************************/ 930 931 static void acpi_ex_out_string(char *title, char *value) 932 { 933 acpi_os_printf("%20s : %s\n", title, value); 934 } 935 936 static void acpi_ex_out_pointer(char *title, void *value) 937 { 938 acpi_os_printf("%20s : %p\n", title, value); 939 } 940 941 /******************************************************************************* 942 * 943 * FUNCTION: acpi_ex_dump_namespace_node 944 * 945 * PARAMETERS: node - Descriptor to dump 946 * flags - Force display if TRUE 947 * 948 * DESCRIPTION: Dumps the members of the given.Node 949 * 950 ******************************************************************************/ 951 952 void acpi_ex_dump_namespace_node(struct acpi_namespace_node *node, u32 flags) 953 { 954 955 ACPI_FUNCTION_ENTRY(); 956 957 if (!flags) { 958 959 /* Check if debug output enabled */ 960 961 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) { 962 return; 963 } 964 } 965 966 acpi_os_printf("%20s : %4.4s\n", "Name", acpi_ut_get_node_name(node)); 967 acpi_os_printf("%20s : %2.2X [%s]\n", "Type", 968 node->type, acpi_ut_get_type_name(node->type)); 969 970 acpi_ex_dump_object(ACPI_CAST_PTR(union acpi_operand_object, node), 971 acpi_ex_dump_node); 972 } 973 974 /******************************************************************************* 975 * 976 * FUNCTION: acpi_ex_dump_reference_obj 977 * 978 * PARAMETERS: object - Descriptor to dump 979 * 980 * DESCRIPTION: Dumps a reference object 981 * 982 ******************************************************************************/ 983 984 static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc) 985 { 986 struct acpi_buffer ret_buf; 987 acpi_status status; 988 989 ret_buf.length = ACPI_ALLOCATE_LOCAL_BUFFER; 990 991 if (obj_desc->reference.class == ACPI_REFCLASS_NAME) { 992 acpi_os_printf(" %p ", obj_desc->reference.node); 993 994 status = 995 acpi_ns_handle_to_pathname(obj_desc->reference.node, 996 &ret_buf); 997 if (ACPI_FAILURE(status)) { 998 acpi_os_printf(" Could not convert name to pathname\n"); 999 } else { 1000 acpi_os_printf("%s\n", (char *)ret_buf.pointer); 1001 ACPI_FREE(ret_buf.pointer); 1002 } 1003 } else if (obj_desc->reference.object) { 1004 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == 1005 ACPI_DESC_TYPE_OPERAND) { 1006 acpi_os_printf(" Target: %p", 1007 obj_desc->reference.object); 1008 if (obj_desc->reference.class == ACPI_REFCLASS_TABLE) { 1009 acpi_os_printf(" Table Index: %X\n", 1010 obj_desc->reference.value); 1011 } else { 1012 acpi_os_printf(" Target: %p [%s]\n", 1013 obj_desc->reference.object, 1014 acpi_ut_get_type_name(((union 1015 acpi_operand_object 1016 *) 1017 obj_desc-> 1018 reference. 1019 object)-> 1020 common. 1021 type)); 1022 } 1023 } else { 1024 acpi_os_printf(" Target: %p\n", 1025 obj_desc->reference.object); 1026 } 1027 } 1028 } 1029 1030 /******************************************************************************* 1031 * 1032 * FUNCTION: acpi_ex_dump_package_obj 1033 * 1034 * PARAMETERS: obj_desc - Descriptor to dump 1035 * level - Indentation Level 1036 * index - Package index for this object 1037 * 1038 * DESCRIPTION: Dumps the elements of the package 1039 * 1040 ******************************************************************************/ 1041 1042 static void 1043 acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc, 1044 u32 level, u32 index) 1045 { 1046 u32 i; 1047 1048 /* Indentation and index output */ 1049 1050 if (level > 0) { 1051 for (i = 0; i < level; i++) { 1052 acpi_os_printf(" "); 1053 } 1054 1055 acpi_os_printf("[%.2d] ", index); 1056 } 1057 1058 acpi_os_printf("%p ", obj_desc); 1059 1060 /* Null package elements are allowed */ 1061 1062 if (!obj_desc) { 1063 acpi_os_printf("[Null Object]\n"); 1064 return; 1065 } 1066 1067 /* Packages may only contain a few object types */ 1068 1069 switch (obj_desc->common.type) { 1070 case ACPI_TYPE_INTEGER: 1071 1072 acpi_os_printf("[Integer] = %8.8X%8.8X\n", 1073 ACPI_FORMAT_UINT64(obj_desc->integer.value)); 1074 break; 1075 1076 case ACPI_TYPE_STRING: 1077 1078 acpi_os_printf("[String] Value: "); 1079 acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX); 1080 acpi_os_printf("\n"); 1081 break; 1082 1083 case ACPI_TYPE_BUFFER: 1084 1085 acpi_os_printf("[Buffer] Length %.2X = ", 1086 obj_desc->buffer.length); 1087 if (obj_desc->buffer.length) { 1088 acpi_ut_debug_dump_buffer(ACPI_CAST_PTR 1089 (u8, 1090 obj_desc->buffer.pointer), 1091 obj_desc->buffer.length, 1092 DB_DWORD_DISPLAY, _COMPONENT); 1093 } else { 1094 acpi_os_printf("\n"); 1095 } 1096 break; 1097 1098 case ACPI_TYPE_PACKAGE: 1099 1100 acpi_os_printf("[Package] Contains %u Elements:\n", 1101 obj_desc->package.count); 1102 1103 for (i = 0; i < obj_desc->package.count; i++) { 1104 acpi_ex_dump_package_obj(obj_desc->package.elements[i], 1105 level + 1, i); 1106 } 1107 break; 1108 1109 case ACPI_TYPE_LOCAL_REFERENCE: 1110 1111 acpi_os_printf("[Object Reference] Type [%s] %2.2X", 1112 acpi_ut_get_reference_name(obj_desc), 1113 obj_desc->reference.class); 1114 acpi_ex_dump_reference_obj(obj_desc); 1115 break; 1116 1117 default: 1118 1119 acpi_os_printf("[Unknown Type] %X\n", obj_desc->common.type); 1120 break; 1121 } 1122 } 1123 1124 /******************************************************************************* 1125 * 1126 * FUNCTION: acpi_ex_dump_object_descriptor 1127 * 1128 * PARAMETERS: obj_desc - Descriptor to dump 1129 * flags - Force display if TRUE 1130 * 1131 * DESCRIPTION: Dumps the members of the object descriptor given. 1132 * 1133 ******************************************************************************/ 1134 1135 void 1136 acpi_ex_dump_object_descriptor(union acpi_operand_object *obj_desc, u32 flags) 1137 { 1138 ACPI_FUNCTION_TRACE(ex_dump_object_descriptor); 1139 1140 if (!obj_desc) { 1141 return_VOID; 1142 } 1143 1144 if (!flags) { 1145 1146 /* Check if debug output enabled */ 1147 1148 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) { 1149 return_VOID; 1150 } 1151 } 1152 1153 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) { 1154 acpi_ex_dump_namespace_node((struct acpi_namespace_node *) 1155 obj_desc, flags); 1156 1157 acpi_os_printf("\nAttached Object (%p):\n", 1158 ((struct acpi_namespace_node *)obj_desc)-> 1159 object); 1160 1161 obj_desc = ((struct acpi_namespace_node *)obj_desc)->object; 1162 goto dump_object; 1163 } 1164 1165 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) { 1166 acpi_os_printf("%p is not an ACPI operand object: [%s]\n", 1167 obj_desc, acpi_ut_get_descriptor_name(obj_desc)); 1168 return_VOID; 1169 } 1170 1171 /* Validate the object type */ 1172 1173 if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) { 1174 acpi_os_printf("Not a known object type: %2.2X\n", 1175 obj_desc->common.type); 1176 return_VOID; 1177 } 1178 1179 dump_object: 1180 1181 /* Common Fields */ 1182 1183 acpi_ex_dump_object(obj_desc, acpi_ex_dump_common); 1184 1185 /* Object-specific fields */ 1186 1187 acpi_ex_dump_object(obj_desc, acpi_ex_dump_info[obj_desc->common.type]); 1188 1189 if (obj_desc->common.type == ACPI_TYPE_REGION) { 1190 obj_desc = obj_desc->common.next_object; 1191 if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) { 1192 acpi_os_printf 1193 ("Secondary object is not a known object type: %2.2X\n", 1194 obj_desc->common.type); 1195 1196 return_VOID; 1197 } 1198 1199 acpi_os_printf("\nExtra attached Object (%p):\n", obj_desc); 1200 acpi_ex_dump_object(obj_desc, 1201 acpi_ex_dump_info[obj_desc->common.type]); 1202 } 1203 1204 return_VOID; 1205 } 1206 1207 #endif 1208