12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211 |
- /******************************************************************************
- *
- * Module Name: exdump - Interpreter debug output routines
- *
- *****************************************************************************/
- /*
- * Copyright (C) 2000 - 2016, Intel Corp.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions, and the following disclaimer,
- * without modification.
- * 2. Redistributions in binary form must reproduce at minimum a disclaimer
- * substantially similar to the "NO WARRANTY" disclaimer below
- * ("Disclaimer") and any redistribution must be conditioned upon
- * including a substantially similar Disclaimer requirement for further
- * binary redistribution.
- * 3. Neither the names of the above-listed copyright holders nor the names
- * of any contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * Alternatively, this software may be distributed under the terms of the
- * GNU General Public License ("GPL") version 2 as published by the Free
- * Software Foundation.
- *
- * NO WARRANTY
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
- * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGES.
- */
- #include <acpi/acpi.h>
- #include "accommon.h"
- #include "acinterp.h"
- #include "amlcode.h"
- #include "acnamesp.h"
- #define _COMPONENT ACPI_EXECUTER
- ACPI_MODULE_NAME("exdump")
- /*
- * The following routines are used for debug output only
- */
- #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
- /* Local prototypes */
- static void acpi_ex_out_string(const char *title, const char *value);
- static void acpi_ex_out_pointer(const char *title, const void *value);
- static void
- acpi_ex_dump_object(union acpi_operand_object *obj_desc,
- struct acpi_exdump_info *info);
- static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc);
- static void
- acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
- u32 level, u32 index);
- /*******************************************************************************
- *
- * Object Descriptor info tables
- *
- * Note: The first table entry must be an INIT opcode and must contain
- * the table length (number of table entries)
- *
- ******************************************************************************/
- static struct acpi_exdump_info acpi_ex_dump_integer[2] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_integer), NULL},
- {ACPI_EXD_UINT64, ACPI_EXD_OFFSET(integer.value), "Value"}
- };
- static struct acpi_exdump_info acpi_ex_dump_string[4] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_string), NULL},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(string.length), "Length"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(string.pointer), "Pointer"},
- {ACPI_EXD_STRING, 0, NULL}
- };
- static struct acpi_exdump_info acpi_ex_dump_buffer[5] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer), NULL},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(buffer.length), "Length"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer.pointer), "Pointer"},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(buffer.node), "Parent Node"},
- {ACPI_EXD_BUFFER, 0, NULL}
- };
- static struct acpi_exdump_info acpi_ex_dump_package[6] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_package), NULL},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(package.node), "Parent Node"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(package.flags), "Flags"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(package.count), "Elements"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(package.elements), "Element List"},
- {ACPI_EXD_PACKAGE, 0, NULL}
- };
- static struct acpi_exdump_info acpi_ex_dump_device[4] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_device), NULL},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[0]),
- "System Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[1]),
- "Device Notify"},
- {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(device.handler), "Handler"}
- };
- static struct acpi_exdump_info acpi_ex_dump_event[2] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_event), NULL},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(event.os_semaphore), "OsSemaphore"}
- };
- static struct acpi_exdump_info acpi_ex_dump_method[9] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_method), NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.info_flags), "Info Flags"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.param_count),
- "Parameter Count"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.sync_level), "Sync Level"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.mutex), "Mutex"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.owner_id), "Owner Id"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.thread_count), "Thread Count"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(method.aml_length), "Aml Length"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.aml_start), "Aml Start"}
- };
- static struct acpi_exdump_info acpi_ex_dump_mutex[6] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_mutex), NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(mutex.sync_level), "Sync Level"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(mutex.original_sync_level),
- "Original Sync Level"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.owner_thread), "Owner Thread"},
- {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(mutex.acquisition_depth),
- "Acquire Depth"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.os_mutex), "OsMutex"}
- };
- static struct acpi_exdump_info acpi_ex_dump_region[8] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region), NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.space_id), "Space Id"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.flags), "Flags"},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(region.node), "Parent Node"},
- {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(region.address), "Address"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(region.length), "Length"},
- {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(region.handler), "Handler"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(region.next), "Next"}
- };
- static struct acpi_exdump_info acpi_ex_dump_power[6] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_power), NULL},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.system_level),
- "System Level"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.resource_order),
- "Resource Order"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[0]),
- "System Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[1]),
- "Device Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.handler), "Handler"}
- };
- static struct acpi_exdump_info acpi_ex_dump_processor[7] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_processor), NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.proc_id), "Processor ID"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.length), "Length"},
- {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(processor.address), "Address"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[0]),
- "System Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[1]),
- "Device Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.handler), "Handler"}
- };
- static struct acpi_exdump_info acpi_ex_dump_thermal[4] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_thermal), NULL},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[0]),
- "System Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[1]),
- "Device Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.handler), "Handler"}
- };
- static struct acpi_exdump_info acpi_ex_dump_buffer_field[3] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer_field), NULL},
- {ACPI_EXD_FIELD, 0, NULL},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer_field.buffer_obj),
- "Buffer Object"}
- };
- static struct acpi_exdump_info acpi_ex_dump_region_field[5] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region_field), NULL},
- {ACPI_EXD_FIELD, 0, NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(field.access_length), "AccessLength"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.region_obj), "Region Object"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.resource_buffer),
- "ResourceBuffer"}
- };
- static struct acpi_exdump_info acpi_ex_dump_bank_field[5] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL},
- {ACPI_EXD_FIELD, 0, NULL},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(bank_field.value), "Value"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.region_obj),
- "Region Object"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.bank_obj), "Bank Object"}
- };
- static struct acpi_exdump_info acpi_ex_dump_index_field[5] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL},
- {ACPI_EXD_FIELD, 0, NULL},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(index_field.value), "Value"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.index_obj),
- "Index Object"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.data_obj), "Data Object"}
- };
- static struct acpi_exdump_info acpi_ex_dump_reference[9] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_reference), NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.class), "Class"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.target_type), "Target Type"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(reference.value), "Value"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.object), "Object Desc"},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(reference.node), "Node"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.where), "Where"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.index_pointer),
- "Index Pointer"},
- {ACPI_EXD_REFERENCE, 0, NULL}
- };
- static struct acpi_exdump_info acpi_ex_dump_address_handler[6] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_address_handler),
- NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(address_space.space_id), "Space Id"},
- {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(address_space.next), "Next"},
- {ACPI_EXD_RGN_LIST, ACPI_EXD_OFFSET(address_space.region_list),
- "Region List"},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(address_space.node), "Node"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(address_space.context), "Context"}
- };
- static struct acpi_exdump_info acpi_ex_dump_notify[7] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_notify), NULL},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(notify.node), "Node"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(notify.handler_type), "Handler Type"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.handler), "Handler"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.context), "Context"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[0]),
- "Next System Notify"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[1]), "Next Device Notify"}
- };
- static struct acpi_exdump_info acpi_ex_dump_extra[6] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_extra), NULL},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.method_REG), "_REG Method"},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(extra.scope_node), "Scope Node"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.region_context),
- "Region Context"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.aml_start), "Aml Start"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(extra.aml_length), "Aml Length"}
- };
- static struct acpi_exdump_info acpi_ex_dump_data[3] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_data), NULL},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.handler), "Handler"},
- {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.pointer), "Raw Data"}
- };
- /* Miscellaneous tables */
- static struct acpi_exdump_info acpi_ex_dump_common[5] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_common), NULL},
- {ACPI_EXD_TYPE, 0, NULL},
- {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(common.reference_count),
- "Reference Count"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common.flags), "Flags"},
- {ACPI_EXD_LIST, ACPI_EXD_OFFSET(common.next_object), "Object List"}
- };
- static struct acpi_exdump_info acpi_ex_dump_field_common[7] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_field_common), NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.field_flags),
- "Field Flags"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.access_byte_width),
- "Access Byte Width"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.bit_length),
- "Bit Length"},
- {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.start_field_bit_offset),
- "Field Bit Offset"},
- {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.base_byte_offset),
- "Base Byte Offset"},
- {ACPI_EXD_NODE, ACPI_EXD_OFFSET(common_field.node), "Parent Node"}
- };
- static struct acpi_exdump_info acpi_ex_dump_node[7] = {
- {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_node), NULL},
- {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET(flags), "Flags"},
- {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET(owner_id), "Owner Id"},
- {ACPI_EXD_LIST, ACPI_EXD_NSOFFSET(object), "Object List"},
- {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(parent), "Parent"},
- {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(child), "Child"},
- {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(peer), "Peer"}
- };
- /* Dispatch table, indexed by object type */
- static struct acpi_exdump_info *acpi_ex_dump_info[] = {
- NULL,
- acpi_ex_dump_integer,
- acpi_ex_dump_string,
- acpi_ex_dump_buffer,
- acpi_ex_dump_package,
- NULL,
- acpi_ex_dump_device,
- acpi_ex_dump_event,
- acpi_ex_dump_method,
- acpi_ex_dump_mutex,
- acpi_ex_dump_region,
- acpi_ex_dump_power,
- acpi_ex_dump_processor,
- acpi_ex_dump_thermal,
- acpi_ex_dump_buffer_field,
- NULL,
- NULL,
- acpi_ex_dump_region_field,
- acpi_ex_dump_bank_field,
- acpi_ex_dump_index_field,
- acpi_ex_dump_reference,
- NULL,
- NULL,
- acpi_ex_dump_notify,
- acpi_ex_dump_address_handler,
- NULL,
- NULL,
- NULL,
- acpi_ex_dump_extra,
- acpi_ex_dump_data
- };
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_dump_object
- *
- * PARAMETERS: obj_desc - Descriptor to dump
- * info - Info table corresponding to this object
- * type
- *
- * RETURN: None
- *
- * DESCRIPTION: Walk the info table for this object
- *
- ******************************************************************************/
- static void
- acpi_ex_dump_object(union acpi_operand_object *obj_desc,
- struct acpi_exdump_info *info)
- {
- u8 *target;
- const char *name;
- u8 count;
- union acpi_operand_object *start;
- union acpi_operand_object *data = NULL;
- union acpi_operand_object *next;
- struct acpi_namespace_node *node;
- if (!info) {
- acpi_os_printf
- ("ExDumpObject: Display not implemented for object type %s\n",
- acpi_ut_get_object_type_name(obj_desc));
- return;
- }
- /* First table entry must contain the table length (# of table entries) */
- count = info->offset;
- while (count) {
- target = ACPI_ADD_PTR(u8, obj_desc, info->offset);
- name = info->name;
- switch (info->opcode) {
- case ACPI_EXD_INIT:
- break;
- case ACPI_EXD_TYPE:
- acpi_os_printf("%20s : %2.2X [%s]\n", "Type",
- obj_desc->common.type,
- acpi_ut_get_object_type_name(obj_desc));
- break;
- case ACPI_EXD_UINT8:
- acpi_os_printf("%20s : %2.2X\n", name, *target);
- break;
- case ACPI_EXD_UINT16:
- acpi_os_printf("%20s : %4.4X\n", name,
- ACPI_GET16(target));
- break;
- case ACPI_EXD_UINT32:
- acpi_os_printf("%20s : %8.8X\n", name,
- ACPI_GET32(target));
- break;
- case ACPI_EXD_UINT64:
- acpi_os_printf("%20s : %8.8X%8.8X\n", "Value",
- ACPI_FORMAT_UINT64(ACPI_GET64(target)));
- break;
- case ACPI_EXD_POINTER:
- case ACPI_EXD_ADDRESS:
- acpi_ex_out_pointer(name,
- *ACPI_CAST_PTR(void *, target));
- break;
- case ACPI_EXD_STRING:
- acpi_ut_print_string(obj_desc->string.pointer,
- ACPI_UINT8_MAX);
- acpi_os_printf("\n");
- break;
- case ACPI_EXD_BUFFER:
- ACPI_DUMP_BUFFER(obj_desc->buffer.pointer,
- obj_desc->buffer.length);
- break;
- case ACPI_EXD_PACKAGE:
- /* Dump the package contents */
- acpi_os_printf("\nPackage Contents:\n");
- acpi_ex_dump_package_obj(obj_desc, 0, 0);
- break;
- case ACPI_EXD_FIELD:
- acpi_ex_dump_object(obj_desc,
- acpi_ex_dump_field_common);
- break;
- case ACPI_EXD_REFERENCE:
- acpi_ex_out_string("Class Name",
- acpi_ut_get_reference_name
- (obj_desc));
- acpi_ex_dump_reference_obj(obj_desc);
- break;
- case ACPI_EXD_LIST:
- start = *ACPI_CAST_PTR(void *, target);
- next = start;
- acpi_os_printf("%20s : %p", name, next);
- if (next) {
- acpi_os_printf("(%s %2.2X)",
- acpi_ut_get_object_type_name
- (next), next->common.type);
- while (next->common.next_object) {
- if ((next->common.type ==
- ACPI_TYPE_LOCAL_DATA) && !data) {
- data = next;
- }
- next = next->common.next_object;
- acpi_os_printf("->%p(%s %2.2X)", next,
- acpi_ut_get_object_type_name
- (next),
- next->common.type);
- if ((next == start) || (next == data)) {
- acpi_os_printf
- ("\n**** Error: Object list appears to be circular linked");
- break;
- }
- }
- }
- acpi_os_printf("\n");
- break;
- case ACPI_EXD_HDLR_LIST:
- start = *ACPI_CAST_PTR(void *, target);
- next = start;
- acpi_os_printf("%20s : %p", name, next);
- if (next) {
- acpi_os_printf("(%s %2.2X)",
- acpi_ut_get_object_type_name
- (next),
- next->address_space.space_id);
- while (next->address_space.next) {
- if ((next->common.type ==
- ACPI_TYPE_LOCAL_DATA) && !data) {
- data = next;
- }
- next = next->address_space.next;
- acpi_os_printf("->%p(%s %2.2X)", next,
- acpi_ut_get_object_type_name
- (next),
- next->address_space.
- space_id);
- if ((next == start) || (next == data)) {
- acpi_os_printf
- ("\n**** Error: Handler list appears to be circular linked");
- break;
- }
- }
- }
- acpi_os_printf("\n");
- break;
- case ACPI_EXD_RGN_LIST:
- start = *ACPI_CAST_PTR(void *, target);
- next = start;
- acpi_os_printf("%20s : %p", name, next);
- if (next) {
- acpi_os_printf("(%s %2.2X)",
- acpi_ut_get_object_type_name
- (next), next->common.type);
- while (next->region.next) {
- if ((next->common.type ==
- ACPI_TYPE_LOCAL_DATA) && !data) {
- data = next;
- }
- next = next->region.next;
- acpi_os_printf("->%p(%s %2.2X)", next,
- acpi_ut_get_object_type_name
- (next),
- next->common.type);
- if ((next == start) || (next == data)) {
- acpi_os_printf
- ("\n**** Error: Region list appears to be circular linked");
- break;
- }
- }
- }
- acpi_os_printf("\n");
- break;
- case ACPI_EXD_NODE:
- node =
- *ACPI_CAST_PTR(struct acpi_namespace_node *,
- target);
- acpi_os_printf("%20s : %p", name, node);
- if (node) {
- acpi_os_printf(" [%4.4s]", node->name.ascii);
- }
- acpi_os_printf("\n");
- break;
- default:
- acpi_os_printf("**** Invalid table opcode [%X] ****\n",
- info->opcode);
- return;
- }
- info++;
- count--;
- }
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_dump_operand
- *
- * PARAMETERS: *obj_desc - Pointer to entry to be dumped
- * depth - Current nesting depth
- *
- * RETURN: None
- *
- * DESCRIPTION: Dump an operand object
- *
- ******************************************************************************/
- void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
- {
- u32 length;
- u32 index;
- ACPI_FUNCTION_NAME(ex_dump_operand)
- /* Check if debug output enabled */
- if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) {
- return;
- }
- if (!obj_desc) {
- /* This could be a null element of a package */
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Null Object Descriptor\n"));
- return;
- }
- if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) {
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p Namespace Node: ",
- obj_desc));
- ACPI_DUMP_ENTRY(obj_desc, ACPI_LV_EXEC);
- return;
- }
- if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) {
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
- "%p is not a node or operand object: [%s]\n",
- obj_desc,
- acpi_ut_get_descriptor_name(obj_desc)));
- ACPI_DUMP_BUFFER(obj_desc, sizeof(union acpi_operand_object));
- return;
- }
- /* obj_desc is a valid object */
- if (depth > 0) {
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%*s[%u] %p ",
- depth, " ", depth, obj_desc));
- } else {
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p ", obj_desc));
- }
- /* Decode object type */
- switch (obj_desc->common.type) {
- case ACPI_TYPE_LOCAL_REFERENCE:
- acpi_os_printf("Reference: [%s] ",
- acpi_ut_get_reference_name(obj_desc));
- switch (obj_desc->reference.class) {
- case ACPI_REFCLASS_DEBUG:
- acpi_os_printf("\n");
- break;
- case ACPI_REFCLASS_INDEX:
- acpi_os_printf("%p\n", obj_desc->reference.object);
- break;
- case ACPI_REFCLASS_TABLE:
- acpi_os_printf("Table Index %X\n",
- obj_desc->reference.value);
- break;
- case ACPI_REFCLASS_REFOF:
- acpi_os_printf("%p [%s]\n", obj_desc->reference.object,
- acpi_ut_get_type_name(((union
- acpi_operand_object
- *)
- obj_desc->
- reference.
- object)->common.
- type));
- break;
- case ACPI_REFCLASS_NAME:
- acpi_os_printf("- [%4.4s]\n",
- obj_desc->reference.node->name.ascii);
- break;
- case ACPI_REFCLASS_ARG:
- case ACPI_REFCLASS_LOCAL:
- acpi_os_printf("%X\n", obj_desc->reference.value);
- break;
- default: /* Unknown reference class */
- acpi_os_printf("%2.2X\n", obj_desc->reference.class);
- break;
- }
- break;
- case ACPI_TYPE_BUFFER:
- acpi_os_printf("Buffer length %.2X @ %p\n",
- obj_desc->buffer.length,
- obj_desc->buffer.pointer);
- /* Debug only -- dump the buffer contents */
- if (obj_desc->buffer.pointer) {
- length = obj_desc->buffer.length;
- if (length > 128) {
- length = 128;
- }
- acpi_os_printf
- ("Buffer Contents: (displaying length 0x%.2X)\n",
- length);
- ACPI_DUMP_BUFFER(obj_desc->buffer.pointer, length);
- }
- break;
- case ACPI_TYPE_INTEGER:
- acpi_os_printf("Integer %8.8X%8.8X\n",
- ACPI_FORMAT_UINT64(obj_desc->integer.value));
- break;
- case ACPI_TYPE_PACKAGE:
- acpi_os_printf("Package [Len %X] ElementArray %p\n",
- obj_desc->package.count,
- obj_desc->package.elements);
- /*
- * If elements exist, package element pointer is valid,
- * and debug_level exceeds 1, dump package's elements.
- */
- if (obj_desc->package.count &&
- obj_desc->package.elements && acpi_dbg_level > 1) {
- for (index = 0; index < obj_desc->package.count;
- index++) {
- acpi_ex_dump_operand(obj_desc->package.
- elements[index],
- depth + 1);
- }
- }
- break;
- case ACPI_TYPE_REGION:
- acpi_os_printf("Region %s (%X)",
- acpi_ut_get_region_name(obj_desc->region.
- space_id),
- obj_desc->region.space_id);
- /*
- * If the address and length have not been evaluated,
- * don't print them.
- */
- if (!(obj_desc->region.flags & AOPOBJ_DATA_VALID)) {
- acpi_os_printf("\n");
- } else {
- acpi_os_printf(" base %8.8X%8.8X Length %X\n",
- ACPI_FORMAT_UINT64(obj_desc->region.
- address),
- obj_desc->region.length);
- }
- break;
- case ACPI_TYPE_STRING:
- acpi_os_printf("String length %X @ %p ",
- obj_desc->string.length,
- obj_desc->string.pointer);
- acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX);
- acpi_os_printf("\n");
- break;
- case ACPI_TYPE_LOCAL_BANK_FIELD:
- acpi_os_printf("BankField\n");
- break;
- case ACPI_TYPE_LOCAL_REGION_FIELD:
- acpi_os_printf
- ("RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at "
- "byte=%X bit=%X of below:\n", obj_desc->field.bit_length,
- obj_desc->field.access_byte_width,
- obj_desc->field.field_flags & AML_FIELD_LOCK_RULE_MASK,
- obj_desc->field.field_flags & AML_FIELD_UPDATE_RULE_MASK,
- obj_desc->field.base_byte_offset,
- obj_desc->field.start_field_bit_offset);
- acpi_ex_dump_operand(obj_desc->field.region_obj, depth + 1);
- break;
- case ACPI_TYPE_LOCAL_INDEX_FIELD:
- acpi_os_printf("IndexField\n");
- break;
- case ACPI_TYPE_BUFFER_FIELD:
- acpi_os_printf("BufferField: %X bits at byte %X bit %X of\n",
- obj_desc->buffer_field.bit_length,
- obj_desc->buffer_field.base_byte_offset,
- obj_desc->buffer_field.start_field_bit_offset);
- if (!obj_desc->buffer_field.buffer_obj) {
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "*NULL*\n"));
- } else if ((obj_desc->buffer_field.buffer_obj)->common.type !=
- ACPI_TYPE_BUFFER) {
- acpi_os_printf("*not a Buffer*\n");
- } else {
- acpi_ex_dump_operand(obj_desc->buffer_field.buffer_obj,
- depth + 1);
- }
- break;
- case ACPI_TYPE_EVENT:
- acpi_os_printf("Event\n");
- break;
- case ACPI_TYPE_METHOD:
- acpi_os_printf("Method(%X) @ %p:%X\n",
- obj_desc->method.param_count,
- obj_desc->method.aml_start,
- obj_desc->method.aml_length);
- break;
- case ACPI_TYPE_MUTEX:
- acpi_os_printf("Mutex\n");
- break;
- case ACPI_TYPE_DEVICE:
- acpi_os_printf("Device\n");
- break;
- case ACPI_TYPE_POWER:
- acpi_os_printf("Power\n");
- break;
- case ACPI_TYPE_PROCESSOR:
- acpi_os_printf("Processor\n");
- break;
- case ACPI_TYPE_THERMAL:
- acpi_os_printf("Thermal\n");
- break;
- default:
- /* Unknown Type */
- acpi_os_printf("Unknown Type %X\n", obj_desc->common.type);
- break;
- }
- return;
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_dump_operands
- *
- * PARAMETERS: operands - A list of Operand objects
- * opcode_name - AML opcode name
- * num_operands - Operand count for this opcode
- *
- * DESCRIPTION: Dump the operands associated with the opcode
- *
- ******************************************************************************/
- void
- acpi_ex_dump_operands(union acpi_operand_object **operands,
- const char *opcode_name, u32 num_operands)
- {
- ACPI_FUNCTION_NAME(ex_dump_operands);
- if (!opcode_name) {
- opcode_name = "UNKNOWN";
- }
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
- "**** Start operand dump for opcode [%s], %u operands\n",
- opcode_name, num_operands));
- if (num_operands == 0) {
- num_operands = 1;
- }
- /* Dump the individual operands */
- while (num_operands) {
- acpi_ex_dump_operand(*operands, 0);
- operands++;
- num_operands--;
- }
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
- "**** End operand dump for [%s]\n", opcode_name));
- return;
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_out* functions
- *
- * PARAMETERS: title - Descriptive text
- * value - Value to be displayed
- *
- * DESCRIPTION: Object dump output formatting functions. These functions
- * reduce the number of format strings required and keeps them
- * all in one place for easy modification.
- *
- ******************************************************************************/
- static void acpi_ex_out_string(const char *title, const char *value)
- {
- acpi_os_printf("%20s : %s\n", title, value);
- }
- static void acpi_ex_out_pointer(const char *title, const void *value)
- {
- acpi_os_printf("%20s : %p\n", title, value);
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_dump_namespace_node
- *
- * PARAMETERS: node - Descriptor to dump
- * flags - Force display if TRUE
- *
- * DESCRIPTION: Dumps the members of the given.Node
- *
- ******************************************************************************/
- void acpi_ex_dump_namespace_node(struct acpi_namespace_node *node, u32 flags)
- {
- ACPI_FUNCTION_ENTRY();
- if (!flags) {
- /* Check if debug output enabled */
- if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) {
- return;
- }
- }
- acpi_os_printf("%20s : %4.4s\n", "Name", acpi_ut_get_node_name(node));
- acpi_os_printf("%20s : %2.2X [%s]\n", "Type",
- node->type, acpi_ut_get_type_name(node->type));
- acpi_ex_dump_object(ACPI_CAST_PTR(union acpi_operand_object, node),
- acpi_ex_dump_node);
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_dump_reference_obj
- *
- * PARAMETERS: object - Descriptor to dump
- *
- * DESCRIPTION: Dumps a reference object
- *
- ******************************************************************************/
- static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc)
- {
- struct acpi_buffer ret_buf;
- acpi_status status;
- ret_buf.length = ACPI_ALLOCATE_LOCAL_BUFFER;
- if (obj_desc->reference.class == ACPI_REFCLASS_NAME) {
- acpi_os_printf(" %p ", obj_desc->reference.node);
- status = acpi_ns_handle_to_pathname(obj_desc->reference.node,
- &ret_buf, TRUE);
- if (ACPI_FAILURE(status)) {
- acpi_os_printf(" Could not convert name to pathname\n");
- } else {
- acpi_os_printf("%s\n", (char *)ret_buf.pointer);
- ACPI_FREE(ret_buf.pointer);
- }
- } else if (obj_desc->reference.object) {
- if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
- ACPI_DESC_TYPE_OPERAND) {
- acpi_os_printf("%22s %p", "Target :",
- obj_desc->reference.object);
- if (obj_desc->reference.class == ACPI_REFCLASS_TABLE) {
- acpi_os_printf(" Table Index: %X\n",
- obj_desc->reference.value);
- } else {
- acpi_os_printf(" [%s]\n",
- acpi_ut_get_type_name(((union
- acpi_operand_object
- *)
- obj_desc->
- reference.
- object)->
- common.
- type));
- }
- } else {
- acpi_os_printf(" Target: %p\n",
- obj_desc->reference.object);
- }
- }
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_dump_package_obj
- *
- * PARAMETERS: obj_desc - Descriptor to dump
- * level - Indentation Level
- * index - Package index for this object
- *
- * DESCRIPTION: Dumps the elements of the package
- *
- ******************************************************************************/
- static void
- acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
- u32 level, u32 index)
- {
- u32 i;
- /* Indentation and index output */
- if (level > 0) {
- for (i = 0; i < level; i++) {
- acpi_os_printf(" ");
- }
- acpi_os_printf("[%.2d] ", index);
- }
- acpi_os_printf("%p ", obj_desc);
- /* Null package elements are allowed */
- if (!obj_desc) {
- acpi_os_printf("[Null Object]\n");
- return;
- }
- /* Packages may only contain a few object types */
- switch (obj_desc->common.type) {
- case ACPI_TYPE_INTEGER:
- acpi_os_printf("[Integer] = %8.8X%8.8X\n",
- ACPI_FORMAT_UINT64(obj_desc->integer.value));
- break;
- case ACPI_TYPE_STRING:
- acpi_os_printf("[String] Value: ");
- acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX);
- acpi_os_printf("\n");
- break;
- case ACPI_TYPE_BUFFER:
- acpi_os_printf("[Buffer] Length %.2X = ",
- obj_desc->buffer.length);
- if (obj_desc->buffer.length) {
- acpi_ut_debug_dump_buffer(ACPI_CAST_PTR
- (u8,
- obj_desc->buffer.pointer),
- obj_desc->buffer.length,
- DB_DWORD_DISPLAY, _COMPONENT);
- } else {
- acpi_os_printf("\n");
- }
- break;
- case ACPI_TYPE_PACKAGE:
- acpi_os_printf("[Package] Contains %u Elements:\n",
- obj_desc->package.count);
- for (i = 0; i < obj_desc->package.count; i++) {
- acpi_ex_dump_package_obj(obj_desc->package.elements[i],
- level + 1, i);
- }
- break;
- case ACPI_TYPE_LOCAL_REFERENCE:
- acpi_os_printf("[Object Reference] Type [%s] %2.2X",
- acpi_ut_get_reference_name(obj_desc),
- obj_desc->reference.class);
- acpi_ex_dump_reference_obj(obj_desc);
- break;
- default:
- acpi_os_printf("[Unknown Type] %X\n", obj_desc->common.type);
- break;
- }
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_ex_dump_object_descriptor
- *
- * PARAMETERS: obj_desc - Descriptor to dump
- * flags - Force display if TRUE
- *
- * DESCRIPTION: Dumps the members of the object descriptor given.
- *
- ******************************************************************************/
- void
- acpi_ex_dump_object_descriptor(union acpi_operand_object *obj_desc, u32 flags)
- {
- ACPI_FUNCTION_TRACE(ex_dump_object_descriptor);
- if (!obj_desc) {
- return_VOID;
- }
- if (!flags) {
- /* Check if debug output enabled */
- if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) {
- return_VOID;
- }
- }
- if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) {
- acpi_ex_dump_namespace_node((struct acpi_namespace_node *)
- obj_desc, flags);
- acpi_os_printf("\nAttached Object (%p):\n",
- ((struct acpi_namespace_node *)obj_desc)->
- object);
- obj_desc = ((struct acpi_namespace_node *)obj_desc)->object;
- goto dump_object;
- }
- if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) {
- acpi_os_printf("%p is not an ACPI operand object: [%s]\n",
- obj_desc, acpi_ut_get_descriptor_name(obj_desc));
- return_VOID;
- }
- /* Validate the object type */
- if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) {
- acpi_os_printf("Not a known object type: %2.2X\n",
- obj_desc->common.type);
- return_VOID;
- }
- dump_object:
- /* Common Fields */
- acpi_ex_dump_object(obj_desc, acpi_ex_dump_common);
- /* Object-specific fields */
- acpi_ex_dump_object(obj_desc, acpi_ex_dump_info[obj_desc->common.type]);
- if (obj_desc->common.type == ACPI_TYPE_REGION) {
- obj_desc = obj_desc->common.next_object;
- if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) {
- acpi_os_printf
- ("Secondary object is not a known object type: %2.2X\n",
- obj_desc->common.type);
- return_VOID;
- }
- acpi_os_printf("\nExtra attached Object (%p):\n", obj_desc);
- acpi_ex_dump_object(obj_desc,
- acpi_ex_dump_info[obj_desc->common.type]);
- }
- return_VOID;
- }
- #endif
|