exdump.c

来自「LINUX 2.6.17.4的源码」· C语言 代码 · 共 1,069 行 · 第 1/2 页

C
1,069
字号
/****************************************************************************** * * Module Name: exdump - Interpreter debug output routines * *****************************************************************************//* * Copyright (C) 2000 - 2006, R. Byron Moore * 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 <acpi/acinterp.h>#include <acpi/amlcode.h>#include <acpi/acnamesp.h>#include <acpi/acparser.h>#define _COMPONENT          ACPI_EXECUTERACPI_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(char *title, char *value);static void acpi_ex_out_pointer(char *title, void *value);static void acpi_ex_out_address(char *title, acpi_physical_address value);static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc);static voidacpi_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[4] = {	{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_BUFFER, 0, NULL}};static struct acpi_exdump_info acpi_ex_dump_package[5] = {	{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_package), NULL},	{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.handler), "Handler"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.system_notify),	 "System Notify"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.device_notify),	 "Device Notify"}};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.semaphore), "Semaphore"}};static struct acpi_exdump_info acpi_ex_dump_method[8] = {	{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_method), NULL},	{ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.param_count), "param_count"},	{ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.concurrency), "Concurrency"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.semaphore), "Semaphore"},	{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[5] = {	{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_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.semaphore), "Semaphore"}};static struct acpi_exdump_info acpi_ex_dump_region[7] = {	{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_ADDRESS, ACPI_EXD_OFFSET(region.address), "Address"},	{ACPI_EXD_UINT32, ACPI_EXD_OFFSET(region.length), "Length"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(region.handler), "Handler"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(region.next), "Next"}};static struct acpi_exdump_info acpi_ex_dump_power[5] = {	{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.system_notify),	 "System Notify"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.device_notify),	 "Device Notify"}};static struct acpi_exdump_info acpi_ex_dump_processor[7] = {	{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_processor), NULL},	{ACPI_EXD_UINT32, ACPI_EXD_OFFSET(processor.proc_id), "Processor ID"},	{ACPI_EXD_UINT32, ACPI_EXD_OFFSET(processor.length), "Length"},	{ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(processor.address), "Address"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.system_notify),	 "System Notify"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.device_notify),	 "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.system_notify),	 "System Notify"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.device_notify),	 "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[3] = {	{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region_field), NULL},	{ACPI_EXD_FIELD, 0, NULL},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.region_obj), "Region Object"}};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[7] = {	{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_reference), NULL},	{ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.target_type), "Target Type"},	{ACPI_EXD_UINT32, ACPI_EXD_OFFSET(reference.offset), "Offset"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.object), "Object Desc"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.node), "Node"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.where), "Where"},	{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_POINTER, ACPI_EXD_OFFSET(address_space.next), "Next"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(address_space.region_list),	 "Region List"},	{ACPI_EXD_POINTER, 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[3] = {	{ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_notify), NULL},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.node), "Node"},	{ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.context), "Context"}};/* Miscellaneous tables */static struct acpi_exdump_info acpi_ex_dump_common[4] = {	{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"}};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_POINTER, ACPI_EXD_OFFSET(common_field.node), "Parent Node"}};static struct acpi_exdump_info acpi_ex_dump_node[6] = {	{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_UINT16, ACPI_EXD_NSOFFSET(reference_count),	 "Reference Count"},	{ACPI_EXD_POINTER, ACPI_EXD_NSOFFSET(child), "Child List"},	{ACPI_EXD_POINTER, ACPI_EXD_NSOFFSET(peer), "Next 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};/******************************************************************************* * * 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 voidacpi_ex_dump_object(union acpi_operand_object *obj_desc,		    struct acpi_exdump_info *info){	u8 *target;	char *name;	u8 count;	if (!info) {		acpi_os_printf		    ("ex_dump_object: 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_ex_out_string("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:			acpi_ex_out_pointer(name,					    *ACPI_CAST_PTR(void *, target));			break;		case ACPI_EXD_ADDRESS:			acpi_ex_out_address(name,					    *ACPI_CAST_PTR					    (acpi_physical_address, 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("Opcode",					   (acpi_ps_get_opcode_info					    (obj_desc->reference.opcode))->					   name);			acpi_ex_dump_reference_obj(obj_desc);			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")	    if (!		((ACPI_LV_EXEC & acpi_dbg_level)		 && (_COMPONENT & acpi_dbg_layer))) {		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 (ACPI_GET_OBJECT_TYPE(obj_desc)) {	case ACPI_TYPE_LOCAL_REFERENCE:		switch (obj_desc->reference.opcode) {		case AML_DEBUG_OP:			acpi_os_printf("Reference: Debug\n");			break;		case AML_NAME_OP:			ACPI_DUMP_PATHNAME(obj_desc->reference.object,					   "Reference: Name: ", ACPI_LV_INFO,					   _COMPONENT);			ACPI_DUMP_ENTRY(obj_desc->reference.object,					ACPI_LV_INFO);			break;		case AML_INDEX_OP:			acpi_os_printf("Reference: Index %p\n",				       obj_desc->reference.object);			break;		case AML_REF_OF_OP:			acpi_os_printf("Reference: (ref_of) %p\n",				       obj_desc->reference.object);			break;		case AML_ARG_OP:			acpi_os_printf("Reference: Arg%d",				       obj_desc->reference.offset);			if (ACPI_GET_OBJECT_TYPE(obj_desc) == ACPI_TYPE_INTEGER) {				/* Value is an Integer */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?