blob: 47a4d9a40d6b72cc5ef932bf62f152c0d3f544a5 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/******************************************************************************
3 *
4 * Module Name: exdump - Interpreter debug output routines
5 *
Bob Moore800ba7c2020-01-10 11:31:49 -08006 * Copyright (C) 2000 - 2020, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050011#include "accommon.h"
12#include "acinterp.h"
13#include "amlcode.h"
14#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040017ACPI_MODULE_NAME("exdump")
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Robert Moore6f42ccf2005-05-13 00:00:00 -040019/*
20 * The following routines are used for debug output only
21 */
22#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
Robert Moore44f6c012005-04-18 22:49:35 -040023/* Local prototypes */
Bob Moore0dfaaa32016-03-24 09:40:40 +080024static void acpi_ex_out_string(const char *title, const char *value);
Len Brown4be44fc2005-08-05 00:44:28 -040025
Bob Moore0dfaaa32016-03-24 09:40:40 +080026static void acpi_ex_out_pointer(const char *title, const void *value);
Len Brown4be44fc2005-08-05 00:44:28 -040027
Bob Moore793c2382006-03-31 00:00:00 -050028static void
29acpi_ex_dump_object(union acpi_operand_object *obj_desc,
30 struct acpi_exdump_info *info);
31
Bob Moore96db2552005-11-02 00:00:00 -050032static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc);
Robert Moore44f6c012005-04-18 22:49:35 -040033
34static void
Bob Moore96db2552005-11-02 00:00:00 -050035acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
36 u32 level, u32 index);
37
38/*******************************************************************************
39 *
40 * Object Descriptor info tables
41 *
42 * Note: The first table entry must be an INIT opcode and must contain
43 * the table length (number of table entries)
44 *
45 ******************************************************************************/
46
47static struct acpi_exdump_info acpi_ex_dump_integer[2] = {
48 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_integer), NULL},
49 {ACPI_EXD_UINT64, ACPI_EXD_OFFSET(integer.value), "Value"}
50};
51
52static struct acpi_exdump_info acpi_ex_dump_string[4] = {
53 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_string), NULL},
54 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(string.length), "Length"},
55 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(string.pointer), "Pointer"},
56 {ACPI_EXD_STRING, 0, NULL}
57};
58
Bob Moore77f6a9f2007-02-02 19:48:22 +030059static struct acpi_exdump_info acpi_ex_dump_buffer[5] = {
Bob Moore96db2552005-11-02 00:00:00 -050060 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer), NULL},
61 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(buffer.length), "Length"},
62 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer.pointer), "Pointer"},
Bob Moorea487af32014-02-26 10:33:32 +080063 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(buffer.node), "Parent Node"},
Bob Moore96db2552005-11-02 00:00:00 -050064 {ACPI_EXD_BUFFER, 0, NULL}
65};
66
Bob Moorea487af32014-02-26 10:33:32 +080067static struct acpi_exdump_info acpi_ex_dump_package[6] = {
Bob Moore96db2552005-11-02 00:00:00 -050068 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_package), NULL},
Bob Moorea487af32014-02-26 10:33:32 +080069 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(package.node), "Parent Node"},
Bob Moore96db2552005-11-02 00:00:00 -050070 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(package.flags), "Flags"},
Bob Moore7ab58192017-08-03 14:27:15 +080071 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(package.count), "Element Count"},
Bob Moore96db2552005-11-02 00:00:00 -050072 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(package.elements), "Element List"},
73 {ACPI_EXD_PACKAGE, 0, NULL}
74};
75
76static struct acpi_exdump_info acpi_ex_dump_device[4] = {
77 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_device), NULL},
Bob Moore86ed4bc2012-05-03 11:08:19 +080078 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -050079 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +080080 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[1]),
Bob Moorea487af32014-02-26 10:33:32 +080081 "Device Notify"},
82 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(device.handler), "Handler"}
Bob Moore96db2552005-11-02 00:00:00 -050083};
84
85static struct acpi_exdump_info acpi_ex_dump_event[2] = {
86 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_event), NULL},
Bob Moore967440e32006-06-23 17:04:00 -040087 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(event.os_semaphore), "OsSemaphore"}
Bob Moore96db2552005-11-02 00:00:00 -050088};
89
Lin Mingb2f7ddc2009-05-21 10:42:09 +080090static struct acpi_exdump_info acpi_ex_dump_method[9] = {
Bob Moore96db2552005-11-02 00:00:00 -050091 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_method), NULL},
Lin Ming26294842011-01-12 09:19:43 +080092 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.info_flags), "Info Flags"},
Lin Mingb2f7ddc2009-05-21 10:42:09 +080093 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.param_count),
94 "Parameter Count"},
Bob Moore967440e32006-06-23 17:04:00 -040095 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.sync_level), "Sync Level"},
96 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.mutex), "Mutex"},
Bob Moore67a72422019-08-16 14:43:21 -070097 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(method.owner_id), "Owner Id"},
Bob Moorec51a4de2005-11-17 13:07:00 -050098 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.thread_count), "Thread Count"},
Bob Moore96db2552005-11-02 00:00:00 -050099 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(method.aml_length), "Aml Length"},
100 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.aml_start), "Aml Start"}
101};
102
Bob Moore0745fb42014-04-04 12:38:12 +0800103static struct acpi_exdump_info acpi_ex_dump_mutex[6] = {
Bob Moore96db2552005-11-02 00:00:00 -0500104 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_mutex), NULL},
105 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(mutex.sync_level), "Sync Level"},
Bob Moore0745fb42014-04-04 12:38:12 +0800106 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(mutex.original_sync_level),
107 "Original Sync Level"},
Len Brown262a7a22007-05-09 23:01:59 -0400108 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.owner_thread), "Owner Thread"},
Bob Moore96db2552005-11-02 00:00:00 -0500109 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(mutex.acquisition_depth),
110 "Acquire Depth"},
Bob Moore967440e32006-06-23 17:04:00 -0400111 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.os_mutex), "OsMutex"}
Bob Moore96db2552005-11-02 00:00:00 -0500112};
113
Bob Moorea487af32014-02-26 10:33:32 +0800114static struct acpi_exdump_info acpi_ex_dump_region[8] = {
Bob Moore96db2552005-11-02 00:00:00 -0500115 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region), NULL},
116 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.space_id), "Space Id"},
117 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.flags), "Flags"},
Bob Moorea487af32014-02-26 10:33:32 +0800118 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(region.node), "Parent Node"},
Bob Moore96db2552005-11-02 00:00:00 -0500119 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(region.address), "Address"},
120 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(region.length), "Length"},
Bob Moorea487af32014-02-26 10:33:32 +0800121 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(region.handler), "Handler"},
Bob Moore96db2552005-11-02 00:00:00 -0500122 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(region.next), "Next"}
123};
124
Bob Moorea487af32014-02-26 10:33:32 +0800125static struct acpi_exdump_info acpi_ex_dump_power[6] = {
Bob Moore96db2552005-11-02 00:00:00 -0500126 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_power), NULL},
127 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.system_level),
128 "System Level"},
129 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.resource_order),
130 "Resource Order"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800131 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -0500132 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800133 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[1]),
Bob Moorea487af32014-02-26 10:33:32 +0800134 "Device Notify"},
135 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.handler), "Handler"}
Bob Moore96db2552005-11-02 00:00:00 -0500136};
137
138static struct acpi_exdump_info acpi_ex_dump_processor[7] = {
139 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_processor), NULL},
Bob Moore77f6a9f2007-02-02 19:48:22 +0300140 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.proc_id), "Processor ID"},
141 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.length), "Length"},
Bob Moore96db2552005-11-02 00:00:00 -0500142 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(processor.address), "Address"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800143 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -0500144 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800145 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[1]),
Bob Moore96db2552005-11-02 00:00:00 -0500146 "Device Notify"},
147 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.handler), "Handler"}
148};
149
150static struct acpi_exdump_info acpi_ex_dump_thermal[4] = {
151 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_thermal), NULL},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800152 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -0500153 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800154 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[1]),
Bob Moore96db2552005-11-02 00:00:00 -0500155 "Device Notify"},
156 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.handler), "Handler"}
157};
158
159static struct acpi_exdump_info acpi_ex_dump_buffer_field[3] = {
160 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer_field), NULL},
161 {ACPI_EXD_FIELD, 0, NULL},
162 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer_field.buffer_obj),
163 "Buffer Object"}
164};
165
Bob Moore9ce81782011-11-16 13:39:07 +0800166static struct acpi_exdump_info acpi_ex_dump_region_field[5] = {
Bob Moore96db2552005-11-02 00:00:00 -0500167 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region_field), NULL},
168 {ACPI_EXD_FIELD, 0, NULL},
Bob Moore9ce81782011-11-16 13:39:07 +0800169 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(field.access_length), "AccessLength"},
170 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.region_obj), "Region Object"},
171 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.resource_buffer),
172 "ResourceBuffer"}
Bob Moore96db2552005-11-02 00:00:00 -0500173};
174
175static struct acpi_exdump_info acpi_ex_dump_bank_field[5] = {
176 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL},
177 {ACPI_EXD_FIELD, 0, NULL},
178 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(bank_field.value), "Value"},
179 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.region_obj),
180 "Region Object"},
181 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.bank_obj), "Bank Object"}
182};
183
184static struct acpi_exdump_info acpi_ex_dump_index_field[5] = {
185 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL},
186 {ACPI_EXD_FIELD, 0, NULL},
187 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(index_field.value), "Value"},
188 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.index_obj),
189 "Index Object"},
190 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.data_obj), "Data Object"}
191};
192
Bob Moorefde175e2015-07-01 14:44:44 +0800193static struct acpi_exdump_info acpi_ex_dump_reference[9] = {
Bob Moore96db2552005-11-02 00:00:00 -0500194 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_reference), NULL},
Bob Moore1044f1f2008-09-27 11:08:41 +0800195 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.class), "Class"},
Bob Moore96db2552005-11-02 00:00:00 -0500196 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.target_type), "Target Type"},
Bob Moore57e664c2008-09-27 10:40:39 +0800197 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(reference.value), "Value"},
Bob Moore96db2552005-11-02 00:00:00 -0500198 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.object), "Object Desc"},
Bob Moorea487af32014-02-26 10:33:32 +0800199 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(reference.node), "Node"},
Bob Moore96db2552005-11-02 00:00:00 -0500200 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.where), "Where"},
Bob Moorefde175e2015-07-01 14:44:44 +0800201 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.index_pointer),
202 "Index Pointer"},
Bob Moore96db2552005-11-02 00:00:00 -0500203 {ACPI_EXD_REFERENCE, 0, NULL}
204};
205
206static struct acpi_exdump_info acpi_ex_dump_address_handler[6] = {
207 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_address_handler),
208 NULL},
209 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(address_space.space_id), "Space Id"},
Bob Moorea487af32014-02-26 10:33:32 +0800210 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(address_space.next), "Next"},
211 {ACPI_EXD_RGN_LIST, ACPI_EXD_OFFSET(address_space.region_list),
Bob Moore96db2552005-11-02 00:00:00 -0500212 "Region List"},
Bob Moorea487af32014-02-26 10:33:32 +0800213 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(address_space.node), "Node"},
Bob Moore96db2552005-11-02 00:00:00 -0500214 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(address_space.context), "Context"}
215};
216
Bob Moore86ed4bc2012-05-03 11:08:19 +0800217static struct acpi_exdump_info acpi_ex_dump_notify[7] = {
Bob Moore96db2552005-11-02 00:00:00 -0500218 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_notify), NULL},
Bob Moorea487af32014-02-26 10:33:32 +0800219 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(notify.node), "Node"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800220 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(notify.handler_type), "Handler Type"},
221 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.handler), "Handler"},
222 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.context), "Context"},
223 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[0]),
224 "Next System Notify"},
225 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[1]), "Next Device Notify"}
Bob Moore96db2552005-11-02 00:00:00 -0500226};
227
Bob Moorea487af32014-02-26 10:33:32 +0800228static struct acpi_exdump_info acpi_ex_dump_extra[6] = {
229 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_extra), NULL},
230 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.method_REG), "_REG Method"},
231 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(extra.scope_node), "Scope Node"},
232 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.region_context),
233 "Region Context"},
234 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.aml_start), "Aml Start"},
235 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(extra.aml_length), "Aml Length"}
236};
237
238static struct acpi_exdump_info acpi_ex_dump_data[3] = {
239 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_data), NULL},
240 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.handler), "Handler"},
241 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.pointer), "Raw Data"}
242};
243
Bob Moore96db2552005-11-02 00:00:00 -0500244/* Miscellaneous tables */
245
Bob Moorea487af32014-02-26 10:33:32 +0800246static struct acpi_exdump_info acpi_ex_dump_common[5] = {
Bob Moore96db2552005-11-02 00:00:00 -0500247 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_common), NULL},
248 {ACPI_EXD_TYPE, 0, NULL},
249 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(common.reference_count),
250 "Reference Count"},
Bob Moorea487af32014-02-26 10:33:32 +0800251 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common.flags), "Flags"},
252 {ACPI_EXD_LIST, ACPI_EXD_OFFSET(common.next_object), "Object List"}
Bob Moore96db2552005-11-02 00:00:00 -0500253};
254
255static struct acpi_exdump_info acpi_ex_dump_field_common[7] = {
256 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_field_common), NULL},
257 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.field_flags),
258 "Field Flags"},
259 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.access_byte_width),
260 "Access Byte Width"},
261 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.bit_length),
262 "Bit Length"},
263 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.start_field_bit_offset),
264 "Field Bit Offset"},
265 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.base_byte_offset),
266 "Base Byte Offset"},
Bob Moorea487af32014-02-26 10:33:32 +0800267 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(common_field.node), "Parent Node"}
Bob Moore96db2552005-11-02 00:00:00 -0500268};
269
Bob Moorea487af32014-02-26 10:33:32 +0800270static struct acpi_exdump_info acpi_ex_dump_node[7] = {
Bob Moore96db2552005-11-02 00:00:00 -0500271 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_node), NULL},
Bob Moore67a72422019-08-16 14:43:21 -0700272 {ACPI_EXD_UINT16, ACPI_EXD_NSOFFSET(flags), "Flags"},
273 {ACPI_EXD_UINT16, ACPI_EXD_NSOFFSET(owner_id), "Owner Id"},
Bob Moorea487af32014-02-26 10:33:32 +0800274 {ACPI_EXD_LIST, ACPI_EXD_NSOFFSET(object), "Object List"},
275 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(parent), "Parent"},
276 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(child), "Child"},
277 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(peer), "Peer"}
Bob Moore96db2552005-11-02 00:00:00 -0500278};
279
280/* Dispatch table, indexed by object type */
281
282static struct acpi_exdump_info *acpi_ex_dump_info[] = {
283 NULL,
284 acpi_ex_dump_integer,
285 acpi_ex_dump_string,
286 acpi_ex_dump_buffer,
287 acpi_ex_dump_package,
288 NULL,
289 acpi_ex_dump_device,
290 acpi_ex_dump_event,
291 acpi_ex_dump_method,
292 acpi_ex_dump_mutex,
293 acpi_ex_dump_region,
294 acpi_ex_dump_power,
295 acpi_ex_dump_processor,
296 acpi_ex_dump_thermal,
297 acpi_ex_dump_buffer_field,
298 NULL,
299 NULL,
300 acpi_ex_dump_region_field,
301 acpi_ex_dump_bank_field,
302 acpi_ex_dump_index_field,
303 acpi_ex_dump_reference,
304 NULL,
305 NULL,
306 acpi_ex_dump_notify,
307 acpi_ex_dump_address_handler,
308 NULL,
309 NULL,
Bob Moorea487af32014-02-26 10:33:32 +0800310 NULL,
311 acpi_ex_dump_extra,
312 acpi_ex_dump_data
Bob Moore96db2552005-11-02 00:00:00 -0500313};
314
315/*******************************************************************************
316 *
317 * FUNCTION: acpi_ex_dump_object
318 *
319 * PARAMETERS: obj_desc - Descriptor to dump
Bob Mooreba494be2012-07-12 09:40:10 +0800320 * info - Info table corresponding to this object
Bob Moore96db2552005-11-02 00:00:00 -0500321 * type
322 *
323 * RETURN: None
324 *
325 * DESCRIPTION: Walk the info table for this object
326 *
327 ******************************************************************************/
328
329static void
330acpi_ex_dump_object(union acpi_operand_object *obj_desc,
331 struct acpi_exdump_info *info)
332{
333 u8 *target;
Bob Moore0dfaaa32016-03-24 09:40:40 +0800334 const char *name;
Bob Moore96db2552005-11-02 00:00:00 -0500335 u8 count;
Bob Moorea487af32014-02-26 10:33:32 +0800336 union acpi_operand_object *start;
337 union acpi_operand_object *data = NULL;
338 union acpi_operand_object *next;
339 struct acpi_namespace_node *node;
Bob Moore96db2552005-11-02 00:00:00 -0500340
341 if (!info) {
342 acpi_os_printf
Bob Mooreb229cf92006-04-21 17:15:00 -0400343 ("ExDumpObject: Display not implemented for object type %s\n",
Bob Moore96db2552005-11-02 00:00:00 -0500344 acpi_ut_get_object_type_name(obj_desc));
345 return;
346 }
347
348 /* First table entry must contain the table length (# of table entries) */
349
350 count = info->offset;
351
352 while (count) {
Bob Moore7ab58192017-08-03 14:27:15 +0800353 if (!obj_desc) {
354 return;
355 }
356
Bob Moorec51a4de2005-11-17 13:07:00 -0500357 target = ACPI_ADD_PTR(u8, obj_desc, info->offset);
Bob Moore96db2552005-11-02 00:00:00 -0500358 name = info->name;
359
360 switch (info->opcode) {
361 case ACPI_EXD_INIT:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000362
Bob Moore96db2552005-11-02 00:00:00 -0500363 break;
364
365 case ACPI_EXD_TYPE:
Bob Moore91a56e62009-03-19 09:52:34 +0800366
Bob Moorea487af32014-02-26 10:33:32 +0800367 acpi_os_printf("%20s : %2.2X [%s]\n", "Type",
368 obj_desc->common.type,
369 acpi_ut_get_object_type_name(obj_desc));
Bob Moore96db2552005-11-02 00:00:00 -0500370 break;
371
372 case ACPI_EXD_UINT8:
373
374 acpi_os_printf("%20s : %2.2X\n", name, *target);
375 break;
376
377 case ACPI_EXD_UINT16:
378
379 acpi_os_printf("%20s : %4.4X\n", name,
Bob Moorec51a4de2005-11-17 13:07:00 -0500380 ACPI_GET16(target));
Bob Moore96db2552005-11-02 00:00:00 -0500381 break;
382
383 case ACPI_EXD_UINT32:
384
385 acpi_os_printf("%20s : %8.8X\n", name,
Bob Moorec51a4de2005-11-17 13:07:00 -0500386 ACPI_GET32(target));
Bob Moore96db2552005-11-02 00:00:00 -0500387 break;
388
389 case ACPI_EXD_UINT64:
390
391 acpi_os_printf("%20s : %8.8X%8.8X\n", "Value",
Bob Moorec51a4de2005-11-17 13:07:00 -0500392 ACPI_FORMAT_UINT64(ACPI_GET64(target)));
Bob Moore96db2552005-11-02 00:00:00 -0500393 break;
394
395 case ACPI_EXD_POINTER:
Bob Moore77f6a9f2007-02-02 19:48:22 +0300396 case ACPI_EXD_ADDRESS:
Bob Moore96db2552005-11-02 00:00:00 -0500397
398 acpi_ex_out_pointer(name,
399 *ACPI_CAST_PTR(void *, target));
400 break;
401
Bob Moore96db2552005-11-02 00:00:00 -0500402 case ACPI_EXD_STRING:
403
404 acpi_ut_print_string(obj_desc->string.pointer,
405 ACPI_UINT8_MAX);
406 acpi_os_printf("\n");
407 break;
408
409 case ACPI_EXD_BUFFER:
410
411 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer,
412 obj_desc->buffer.length);
413 break;
414
415 case ACPI_EXD_PACKAGE:
416
417 /* Dump the package contents */
418
419 acpi_os_printf("\nPackage Contents:\n");
420 acpi_ex_dump_package_obj(obj_desc, 0, 0);
421 break;
422
423 case ACPI_EXD_FIELD:
424
425 acpi_ex_dump_object(obj_desc,
426 acpi_ex_dump_field_common);
427 break;
428
429 case ACPI_EXD_REFERENCE:
430
Bob Moore1044f1f2008-09-27 11:08:41 +0800431 acpi_ex_out_string("Class Name",
Bob Moore0dfaaa32016-03-24 09:40:40 +0800432 acpi_ut_get_reference_name
433 (obj_desc));
Bob Moore96db2552005-11-02 00:00:00 -0500434 acpi_ex_dump_reference_obj(obj_desc);
435 break;
436
Bob Moorea487af32014-02-26 10:33:32 +0800437 case ACPI_EXD_LIST:
438
439 start = *ACPI_CAST_PTR(void *, target);
440 next = start;
441
Bob Moore7ab58192017-08-03 14:27:15 +0800442 acpi_os_printf("%20s : %p ", name, next);
Bob Moorea487af32014-02-26 10:33:32 +0800443 if (next) {
Bob Moore7ab58192017-08-03 14:27:15 +0800444 acpi_os_printf("%s (Type %2.2X)",
Bob Moorea487af32014-02-26 10:33:32 +0800445 acpi_ut_get_object_type_name
446 (next), next->common.type);
447
448 while (next->common.next_object) {
449 if ((next->common.type ==
450 ACPI_TYPE_LOCAL_DATA) && !data) {
451 data = next;
452 }
453
454 next = next->common.next_object;
455 acpi_os_printf("->%p(%s %2.2X)", next,
456 acpi_ut_get_object_type_name
457 (next),
458 next->common.type);
459
460 if ((next == start) || (next == data)) {
461 acpi_os_printf
462 ("\n**** Error: Object list appears to be circular linked");
463 break;
464 }
465 }
Bob Moore7ab58192017-08-03 14:27:15 +0800466 } else {
467 acpi_os_printf("- No attached objects");
Bob Moorea487af32014-02-26 10:33:32 +0800468 }
469
Sascha Wildnerb95dd172014-07-30 12:20:53 +0800470 acpi_os_printf("\n");
Bob Moorea487af32014-02-26 10:33:32 +0800471 break;
472
473 case ACPI_EXD_HDLR_LIST:
474
475 start = *ACPI_CAST_PTR(void *, target);
476 next = start;
477
478 acpi_os_printf("%20s : %p", name, next);
479 if (next) {
480 acpi_os_printf("(%s %2.2X)",
481 acpi_ut_get_object_type_name
Bob Moore7b738062015-12-29 14:01:53 +0800482 (next),
483 next->address_space.space_id);
Bob Moorea487af32014-02-26 10:33:32 +0800484
485 while (next->address_space.next) {
486 if ((next->common.type ==
487 ACPI_TYPE_LOCAL_DATA) && !data) {
488 data = next;
489 }
490
491 next = next->address_space.next;
492 acpi_os_printf("->%p(%s %2.2X)", next,
493 acpi_ut_get_object_type_name
494 (next),
Bob Moore7b738062015-12-29 14:01:53 +0800495 next->address_space.
496 space_id);
Bob Moorea487af32014-02-26 10:33:32 +0800497
498 if ((next == start) || (next == data)) {
499 acpi_os_printf
500 ("\n**** Error: Handler list appears to be circular linked");
501 break;
502 }
503 }
504 }
505
Sascha Wildnerb95dd172014-07-30 12:20:53 +0800506 acpi_os_printf("\n");
Bob Moorea487af32014-02-26 10:33:32 +0800507 break;
508
509 case ACPI_EXD_RGN_LIST:
510
511 start = *ACPI_CAST_PTR(void *, target);
512 next = start;
513
514 acpi_os_printf("%20s : %p", name, next);
515 if (next) {
516 acpi_os_printf("(%s %2.2X)",
517 acpi_ut_get_object_type_name
518 (next), next->common.type);
519
520 while (next->region.next) {
521 if ((next->common.type ==
522 ACPI_TYPE_LOCAL_DATA) && !data) {
523 data = next;
524 }
525
526 next = next->region.next;
527 acpi_os_printf("->%p(%s %2.2X)", next,
528 acpi_ut_get_object_type_name
529 (next),
530 next->common.type);
531
532 if ((next == start) || (next == data)) {
533 acpi_os_printf
534 ("\n**** Error: Region list appears to be circular linked");
535 break;
536 }
537 }
538 }
539
Sascha Wildnerb95dd172014-07-30 12:20:53 +0800540 acpi_os_printf("\n");
Bob Moorea487af32014-02-26 10:33:32 +0800541 break;
542
543 case ACPI_EXD_NODE:
544
545 node =
546 *ACPI_CAST_PTR(struct acpi_namespace_node *,
547 target);
548
549 acpi_os_printf("%20s : %p", name, node);
550 if (node) {
551 acpi_os_printf(" [%4.4s]", node->name.ascii);
552 }
553 acpi_os_printf("\n");
554 break;
555
Bob Moore96db2552005-11-02 00:00:00 -0500556 default:
Bob Moore91a56e62009-03-19 09:52:34 +0800557
Bob Moore96db2552005-11-02 00:00:00 -0500558 acpi_os_printf("**** Invalid table opcode [%X] ****\n",
559 info->opcode);
560 return;
561 }
562
563 info++;
564 count--;
565 }
566}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Robert Moore44f6c012005-04-18 22:49:35 -0400568/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 *
570 * FUNCTION: acpi_ex_dump_operand
571 *
Robert Moore44f6c012005-04-18 22:49:35 -0400572 * PARAMETERS: *obj_desc - Pointer to entry to be dumped
Bob Mooreba494be2012-07-12 09:40:10 +0800573 * depth - Current nesting depth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
575 * RETURN: None
576 *
577 * DESCRIPTION: Dump an operand object
578 *
Robert Moore44f6c012005-04-18 22:49:35 -0400579 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Len Brown4be44fc2005-08-05 00:44:28 -0400581void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Len Brown4be44fc2005-08-05 00:44:28 -0400583 u32 length;
584 u32 index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Erik Schmaussa8c314b2018-01-03 15:06:30 -0800586 ACPI_FUNCTION_NAME(ex_dump_operand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Erik Schmaussa8c314b2018-01-03 15:06:30 -0800588 /* Check if debug output enabled */
589
590 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return;
592 }
593
594 if (!obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400595
Robert Moore44f6c012005-04-18 22:49:35 -0400596 /* This could be a null element of a package */
597
Len Brown4be44fc2005-08-05 00:44:28 -0400598 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Null Object Descriptor\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return;
600 }
601
Len Brown4be44fc2005-08-05 00:44:28 -0400602 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) {
603 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p Namespace Node: ",
604 obj_desc));
605 ACPI_DUMP_ENTRY(obj_desc, ACPI_LV_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return;
607 }
608
Len Brown4be44fc2005-08-05 00:44:28 -0400609 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) {
610 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
611 "%p is not a node or operand object: [%s]\n",
612 obj_desc,
613 acpi_ut_get_descriptor_name(obj_desc)));
614 ACPI_DUMP_BUFFER(obj_desc, sizeof(union acpi_operand_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return;
616 }
617
618 /* obj_desc is a valid object */
619
620 if (depth > 0) {
Bob Mooreb9ef2ab2017-06-05 16:42:02 +0800621 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%*s[%u] %p Refs=%u ",
622 depth, " ", depth, obj_desc,
623 obj_desc->common.reference_count));
Len Brown4be44fc2005-08-05 00:44:28 -0400624 } else {
Bob Mooreb9ef2ab2017-06-05 16:42:02 +0800625 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p Refs=%u ",
626 obj_desc, obj_desc->common.reference_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628
Robert Moore44f6c012005-04-18 22:49:35 -0400629 /* Decode object type */
630
Bob Moore3371c192009-02-18 14:44:03 +0800631 switch (obj_desc->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 case ACPI_TYPE_LOCAL_REFERENCE:
633
Bob Moore1044f1f2008-09-27 11:08:41 +0800634 acpi_os_printf("Reference: [%s] ",
635 acpi_ut_get_reference_name(obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Bob Moore1044f1f2008-09-27 11:08:41 +0800637 switch (obj_desc->reference.class) {
638 case ACPI_REFCLASS_DEBUG:
639
640 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 break;
642
Bob Moore1044f1f2008-09-27 11:08:41 +0800643 case ACPI_REFCLASS_INDEX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Bob Moore1044f1f2008-09-27 11:08:41 +0800645 acpi_os_printf("%p\n", obj_desc->reference.object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 break;
647
Bob Moore1044f1f2008-09-27 11:08:41 +0800648 case ACPI_REFCLASS_TABLE:
Bob Mooreb7f9f042008-04-10 19:06:40 +0400649
Bob Moore1044f1f2008-09-27 11:08:41 +0800650 acpi_os_printf("Table Index %X\n",
Bob Moore57e664c2008-09-27 10:40:39 +0800651 obj_desc->reference.value);
Bob Mooreb7f9f042008-04-10 19:06:40 +0400652 break;
653
Bob Moore1044f1f2008-09-27 11:08:41 +0800654 case ACPI_REFCLASS_REFOF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Bob Moore1044f1f2008-09-27 11:08:41 +0800656 acpi_os_printf("%p [%s]\n", obj_desc->reference.object,
Bob Mooref2d69552008-04-10 19:06:40 +0400657 acpi_ut_get_type_name(((union
658 acpi_operand_object
Bob Moore1044f1f2008-09-27 11:08:41 +0800659 *)
660 obj_desc->
Bob Mooref2d69552008-04-10 19:06:40 +0400661 reference.
662 object)->common.
663 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 break;
665
Bob Moore1044f1f2008-09-27 11:08:41 +0800666 case ACPI_REFCLASS_NAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Bob Mooreb9ef2ab2017-06-05 16:42:02 +0800668 acpi_ut_repair_name(obj_desc->reference.node->name.
669 ascii);
670 acpi_os_printf("- [%4.4s] (Node %p)\n",
671 obj_desc->reference.node->name.ascii,
672 obj_desc->reference.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
674
Bob Moore91a56e62009-03-19 09:52:34 +0800675 case ACPI_REFCLASS_ARG:
676 case ACPI_REFCLASS_LOCAL:
677
678 acpi_os_printf("%X\n", obj_desc->reference.value);
679 break;
680
Bob Moore1044f1f2008-09-27 11:08:41 +0800681 default: /* Unknown reference class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Bob Moore1044f1f2008-09-27 11:08:41 +0800683 acpi_os_printf("%2.2X\n", obj_desc->reference.class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 break;
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 case ACPI_TYPE_BUFFER:
689
Bob Moore71d993e2008-06-10 14:25:05 +0800690 acpi_os_printf("Buffer length %.2X @ %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400691 obj_desc->buffer.length,
692 obj_desc->buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* Debug only -- dump the buffer contents */
695
696 if (obj_desc->buffer.pointer) {
Bob Moore71d993e2008-06-10 14:25:05 +0800697 length = obj_desc->buffer.length;
698 if (length > 128) {
699 length = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Bob Moore71d993e2008-06-10 14:25:05 +0800701
702 acpi_os_printf
703 ("Buffer Contents: (displaying length 0x%.2X)\n",
704 length);
705 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707 break;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 case ACPI_TYPE_INTEGER:
710
Len Brown4be44fc2005-08-05 00:44:28 -0400711 acpi_os_printf("Integer %8.8X%8.8X\n",
712 ACPI_FORMAT_UINT64(obj_desc->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 break;
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 case ACPI_TYPE_PACKAGE:
716
Bob Mooreb229cf92006-04-21 17:15:00 -0400717 acpi_os_printf("Package [Len %X] ElementArray %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400718 obj_desc->package.count,
719 obj_desc->package.elements);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 /*
722 * If elements exist, package element pointer is valid,
723 * and debug_level exceeds 1, dump package's elements.
724 */
725 if (obj_desc->package.count &&
Len Brown4be44fc2005-08-05 00:44:28 -0400726 obj_desc->package.elements && acpi_dbg_level > 1) {
727 for (index = 0; index < obj_desc->package.count;
728 index++) {
729 acpi_ex_dump_operand(obj_desc->package.
730 elements[index],
731 depth + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733 }
734 break;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 case ACPI_TYPE_REGION:
737
Len Brown4be44fc2005-08-05 00:44:28 -0400738 acpi_os_printf("Region %s (%X)",
739 acpi_ut_get_region_name(obj_desc->region.
740 space_id),
741 obj_desc->region.space_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /*
744 * If the address and length have not been evaluated,
745 * don't print them.
746 */
747 if (!(obj_desc->region.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400748 acpi_os_printf("\n");
749 } else {
750 acpi_os_printf(" base %8.8X%8.8X Length %X\n",
Lv Zheng1d0a0b22015-04-13 11:48:52 +0800751 ACPI_FORMAT_UINT64(obj_desc->region.
752 address),
Len Brown4be44fc2005-08-05 00:44:28 -0400753 obj_desc->region.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755 break;
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 case ACPI_TYPE_STRING:
758
Len Brown4be44fc2005-08-05 00:44:28 -0400759 acpi_os_printf("String length %X @ %p ",
760 obj_desc->string.length,
761 obj_desc->string.pointer);
Robert Moore44f6c012005-04-18 22:49:35 -0400762
Len Brown4be44fc2005-08-05 00:44:28 -0400763 acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX);
764 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 break;
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 case ACPI_TYPE_LOCAL_BANK_FIELD:
768
Bob Mooreb229cf92006-04-21 17:15:00 -0400769 acpi_os_printf("BankField\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 break;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 case ACPI_TYPE_LOCAL_REGION_FIELD:
773
Len Brown4be44fc2005-08-05 00:44:28 -0400774 acpi_os_printf
Bob Moore91a56e62009-03-19 09:52:34 +0800775 ("RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at "
776 "byte=%X bit=%X of below:\n", obj_desc->field.bit_length,
Len Brown4be44fc2005-08-05 00:44:28 -0400777 obj_desc->field.access_byte_width,
778 obj_desc->field.field_flags & AML_FIELD_LOCK_RULE_MASK,
779 obj_desc->field.field_flags & AML_FIELD_UPDATE_RULE_MASK,
780 obj_desc->field.base_byte_offset,
781 obj_desc->field.start_field_bit_offset);
Robert Moore44f6c012005-04-18 22:49:35 -0400782
Len Brown4be44fc2005-08-05 00:44:28 -0400783 acpi_ex_dump_operand(obj_desc->field.region_obj, depth + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 break;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 case ACPI_TYPE_LOCAL_INDEX_FIELD:
787
Bob Mooreb229cf92006-04-21 17:15:00 -0400788 acpi_os_printf("IndexField\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 case ACPI_TYPE_BUFFER_FIELD:
792
Bob Mooreb229cf92006-04-21 17:15:00 -0400793 acpi_os_printf("BufferField: %X bits at byte %X bit %X of\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400794 obj_desc->buffer_field.bit_length,
795 obj_desc->buffer_field.base_byte_offset,
796 obj_desc->buffer_field.start_field_bit_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 if (!obj_desc->buffer_field.buffer_obj) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400799 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "*NULL*\n"));
Bob Moore3371c192009-02-18 14:44:03 +0800800 } else if ((obj_desc->buffer_field.buffer_obj)->common.type !=
801 ACPI_TYPE_BUFFER) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400802 acpi_os_printf("*not a Buffer*\n");
Len Brown4be44fc2005-08-05 00:44:28 -0400803 } else {
804 acpi_ex_dump_operand(obj_desc->buffer_field.buffer_obj,
805 depth + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807 break;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 case ACPI_TYPE_EVENT:
810
Len Brown4be44fc2005-08-05 00:44:28 -0400811 acpi_os_printf("Event\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 break;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 case ACPI_TYPE_METHOD:
815
Len Brown4be44fc2005-08-05 00:44:28 -0400816 acpi_os_printf("Method(%X) @ %p:%X\n",
817 obj_desc->method.param_count,
818 obj_desc->method.aml_start,
819 obj_desc->method.aml_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 break;
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 case ACPI_TYPE_MUTEX:
823
Len Brown4be44fc2005-08-05 00:44:28 -0400824 acpi_os_printf("Mutex\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 break;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 case ACPI_TYPE_DEVICE:
828
Len Brown4be44fc2005-08-05 00:44:28 -0400829 acpi_os_printf("Device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 break;
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 case ACPI_TYPE_POWER:
833
Len Brown4be44fc2005-08-05 00:44:28 -0400834 acpi_os_printf("Power\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 break;
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 case ACPI_TYPE_PROCESSOR:
838
Len Brown4be44fc2005-08-05 00:44:28 -0400839 acpi_os_printf("Processor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 break;
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 case ACPI_TYPE_THERMAL:
843
Len Brown4be44fc2005-08-05 00:44:28 -0400844 acpi_os_printf("Thermal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 break;
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 default:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /* Unknown Type */
850
Bob Moore3371c192009-02-18 14:44:03 +0800851 acpi_os_printf("Unknown Type %X\n", obj_desc->common.type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 break;
853 }
854
855 return;
856}
857
Robert Moore44f6c012005-04-18 22:49:35 -0400858/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 *
860 * FUNCTION: acpi_ex_dump_operands
861 *
Bob Mooreba494be2012-07-12 09:40:10 +0800862 * PARAMETERS: operands - A list of Operand objects
Bob Moore71d993e2008-06-10 14:25:05 +0800863 * opcode_name - AML opcode name
864 * num_operands - Operand count for this opcode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 *
Bob Moore71d993e2008-06-10 14:25:05 +0800866 * DESCRIPTION: Dump the operands associated with the opcode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 *
Robert Moore44f6c012005-04-18 22:49:35 -0400868 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870void
Len Brown4be44fc2005-08-05 00:44:28 -0400871acpi_ex_dump_operands(union acpi_operand_object **operands,
Bob Moore71d993e2008-06-10 14:25:05 +0800872 const char *opcode_name, u32 num_operands)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Bob Moore6be2d722018-01-03 15:06:21 -0800874 ACPI_FUNCTION_TRACE(ex_dump_operands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Bob Moore71d993e2008-06-10 14:25:05 +0800876 if (!opcode_name) {
877 opcode_name = "UNKNOWN";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879
Len Brown4be44fc2005-08-05 00:44:28 -0400880 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Mooreb27d6592010-05-26 11:47:13 +0800881 "**** Start operand dump for opcode [%s], %u operands\n",
Bob Moore71d993e2008-06-10 14:25:05 +0800882 opcode_name, num_operands));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Bob Moore71d993e2008-06-10 14:25:05 +0800884 if (num_operands == 0) {
885 num_operands = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887
Bob Moore71d993e2008-06-10 14:25:05 +0800888 /* Dump the individual operands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Bob Moore71d993e2008-06-10 14:25:05 +0800890 while (num_operands) {
891 acpi_ex_dump_operand(*operands, 0);
892 operands++;
893 num_operands--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
Len Brown4be44fc2005-08-05 00:44:28 -0400896 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Moore71d993e2008-06-10 14:25:05 +0800897 "**** End operand dump for [%s]\n", opcode_name));
Bob Moore6be2d722018-01-03 15:06:21 -0800898 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Robert Moore44f6c012005-04-18 22:49:35 -0400901/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 *
Robert Moore44f6c012005-04-18 22:49:35 -0400903 * FUNCTION: acpi_ex_out* functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 *
Bob Mooreba494be2012-07-12 09:40:10 +0800905 * PARAMETERS: title - Descriptive text
906 * value - Value to be displayed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 *
Bob Moore73a30902012-10-31 02:26:55 +0000908 * DESCRIPTION: Object dump output formatting functions. These functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 * reduce the number of format strings required and keeps them
910 * all in one place for easy modification.
911 *
Robert Moore44f6c012005-04-18 22:49:35 -0400912 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Bob Moore0dfaaa32016-03-24 09:40:40 +0800914static void acpi_ex_out_string(const char *title, const char *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Len Brown4be44fc2005-08-05 00:44:28 -0400916 acpi_os_printf("%20s : %s\n", title, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Bob Moore0dfaaa32016-03-24 09:40:40 +0800919static void acpi_ex_out_pointer(const char *title, const void *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Len Brown4be44fc2005-08-05 00:44:28 -0400921 acpi_os_printf("%20s : %p\n", title, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Robert Moore44f6c012005-04-18 22:49:35 -0400924/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 *
Bob Moore96db2552005-11-02 00:00:00 -0500926 * FUNCTION: acpi_ex_dump_namespace_node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 *
Bob Mooreba494be2012-07-12 09:40:10 +0800928 * PARAMETERS: node - Descriptor to dump
929 * flags - Force display if TRUE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 *
931 * DESCRIPTION: Dumps the members of the given.Node
932 *
Robert Moore44f6c012005-04-18 22:49:35 -0400933 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Bob Moore96db2552005-11-02 00:00:00 -0500935void acpi_ex_dump_namespace_node(struct acpi_namespace_node *node, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937
Len Brown4be44fc2005-08-05 00:44:28 -0400938 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 if (!flags) {
Bob Moore10e9e752012-12-31 00:06:27 +0000941
942 /* Check if debug output enabled */
943
944 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return;
946 }
947 }
948
Len Brown4be44fc2005-08-05 00:44:28 -0400949 acpi_os_printf("%20s : %4.4s\n", "Name", acpi_ut_get_node_name(node));
Bob Moorea487af32014-02-26 10:33:32 +0800950 acpi_os_printf("%20s : %2.2X [%s]\n", "Type",
951 node->type, acpi_ut_get_type_name(node->type));
Bob Moore96db2552005-11-02 00:00:00 -0500952
953 acpi_ex_dump_object(ACPI_CAST_PTR(union acpi_operand_object, node),
954 acpi_ex_dump_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Robert Moore44f6c012005-04-18 22:49:35 -0400957/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 *
Bob Moore96db2552005-11-02 00:00:00 -0500959 * FUNCTION: acpi_ex_dump_reference_obj
Robert Moore73459f72005-06-24 00:00:00 -0400960 *
Bob Mooreba494be2012-07-12 09:40:10 +0800961 * PARAMETERS: object - Descriptor to dump
Robert Moore73459f72005-06-24 00:00:00 -0400962 *
963 * DESCRIPTION: Dumps a reference object
964 *
965 ******************************************************************************/
966
Bob Moore96db2552005-11-02 00:00:00 -0500967static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc)
Robert Moore73459f72005-06-24 00:00:00 -0400968{
Len Brown4be44fc2005-08-05 00:44:28 -0400969 struct acpi_buffer ret_buf;
970 acpi_status status;
Robert Moore73459f72005-06-24 00:00:00 -0400971
Bob Moore96db2552005-11-02 00:00:00 -0500972 ret_buf.length = ACPI_ALLOCATE_LOCAL_BUFFER;
973
Bob Moore1044f1f2008-09-27 11:08:41 +0800974 if (obj_desc->reference.class == ACPI_REFCLASS_NAME) {
975 acpi_os_printf(" %p ", obj_desc->reference.node);
Bob Moore96db2552005-11-02 00:00:00 -0500976
Lv Zhengd1e7ffe2015-07-23 12:52:39 +0800977 status = acpi_ns_handle_to_pathname(obj_desc->reference.node,
Lv Zheng2e5321c2015-08-25 10:30:41 +0800978 &ret_buf, TRUE);
Len Brown4be44fc2005-08-05 00:44:28 -0400979 if (ACPI_FAILURE(status)) {
Bob Mooreb9ef2ab2017-06-05 16:42:02 +0800980 acpi_os_printf
981 (" Could not convert name to pathname: %s\n",
982 acpi_format_exception(status));
Len Brown4be44fc2005-08-05 00:44:28 -0400983 } else {
Bob Mooreb9ef2ab2017-06-05 16:42:02 +0800984 acpi_os_printf("%s: %s\n",
985 acpi_ut_get_type_name(obj_desc->
986 reference.node->
987 type),
988 (char *)ret_buf.pointer);
Bob Moore83135242006-10-03 00:00:00 -0400989 ACPI_FREE(ret_buf.pointer);
Robert Moore73459f72005-06-24 00:00:00 -0400990 }
Len Brown4be44fc2005-08-05 00:44:28 -0400991 } else if (obj_desc->reference.object) {
Bob Mooref2d69552008-04-10 19:06:40 +0400992 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
993 ACPI_DESC_TYPE_OPERAND) {
Bob Moorefde175e2015-07-01 14:44:44 +0800994 acpi_os_printf("%22s %p", "Target :",
Lin Mingbc7a36a2008-04-10 19:06:42 +0400995 obj_desc->reference.object);
Bob Moore1044f1f2008-09-27 11:08:41 +0800996 if (obj_desc->reference.class == ACPI_REFCLASS_TABLE) {
997 acpi_os_printf(" Table Index: %X\n",
Bob Moore57e664c2008-09-27 10:40:39 +0800998 obj_desc->reference.value);
Lin Mingbc7a36a2008-04-10 19:06:42 +0400999 } else {
Bob Moorefde175e2015-07-01 14:44:44 +08001000 acpi_os_printf(" [%s]\n",
Lin Mingbc7a36a2008-04-10 19:06:42 +04001001 acpi_ut_get_type_name(((union
1002 acpi_operand_object
1003 *)
1004 obj_desc->
1005 reference.
1006 object)->
1007 common.
1008 type));
1009 }
Bob Mooref2d69552008-04-10 19:06:40 +04001010 } else {
1011 acpi_os_printf(" Target: %p\n",
1012 obj_desc->reference.object);
1013 }
Robert Moore73459f72005-06-24 00:00:00 -04001014 }
1015}
1016
Robert Moore73459f72005-06-24 00:00:00 -04001017/*******************************************************************************
1018 *
Bob Moore96db2552005-11-02 00:00:00 -05001019 * FUNCTION: acpi_ex_dump_package_obj
Robert Moore73459f72005-06-24 00:00:00 -04001020 *
Bob Moore96db2552005-11-02 00:00:00 -05001021 * PARAMETERS: obj_desc - Descriptor to dump
Bob Mooreba494be2012-07-12 09:40:10 +08001022 * level - Indentation Level
1023 * index - Package index for this object
Robert Moore73459f72005-06-24 00:00:00 -04001024 *
1025 * DESCRIPTION: Dumps the elements of the package
1026 *
1027 ******************************************************************************/
1028
1029static void
Bob Moore96db2552005-11-02 00:00:00 -05001030acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
1031 u32 level, u32 index)
Robert Moore73459f72005-06-24 00:00:00 -04001032{
Len Brown4be44fc2005-08-05 00:44:28 -04001033 u32 i;
Robert Moore73459f72005-06-24 00:00:00 -04001034
1035 /* Indentation and index output */
1036
1037 if (level > 0) {
1038 for (i = 0; i < level; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -04001039 acpi_os_printf(" ");
Robert Moore73459f72005-06-24 00:00:00 -04001040 }
1041
Len Brown4be44fc2005-08-05 00:44:28 -04001042 acpi_os_printf("[%.2d] ", index);
Robert Moore73459f72005-06-24 00:00:00 -04001043 }
1044
Len Brown4be44fc2005-08-05 00:44:28 -04001045 acpi_os_printf("%p ", obj_desc);
Robert Moore73459f72005-06-24 00:00:00 -04001046
1047 /* Null package elements are allowed */
1048
1049 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -04001050 acpi_os_printf("[Null Object]\n");
Robert Moore73459f72005-06-24 00:00:00 -04001051 return;
1052 }
1053
1054 /* Packages may only contain a few object types */
1055
Bob Moore3371c192009-02-18 14:44:03 +08001056 switch (obj_desc->common.type) {
Robert Moore73459f72005-06-24 00:00:00 -04001057 case ACPI_TYPE_INTEGER:
1058
Len Brown4be44fc2005-08-05 00:44:28 -04001059 acpi_os_printf("[Integer] = %8.8X%8.8X\n",
1060 ACPI_FORMAT_UINT64(obj_desc->integer.value));
Robert Moore73459f72005-06-24 00:00:00 -04001061 break;
1062
Robert Moore73459f72005-06-24 00:00:00 -04001063 case ACPI_TYPE_STRING:
1064
Len Brown4be44fc2005-08-05 00:44:28 -04001065 acpi_os_printf("[String] Value: ");
Bob Moore579e3822012-05-03 09:41:41 +08001066 acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX);
Len Brown4be44fc2005-08-05 00:44:28 -04001067 acpi_os_printf("\n");
Robert Moore73459f72005-06-24 00:00:00 -04001068 break;
1069
Robert Moore73459f72005-06-24 00:00:00 -04001070 case ACPI_TYPE_BUFFER:
1071
Len Brown4be44fc2005-08-05 00:44:28 -04001072 acpi_os_printf("[Buffer] Length %.2X = ",
1073 obj_desc->buffer.length);
Robert Moore73459f72005-06-24 00:00:00 -04001074 if (obj_desc->buffer.length) {
Bob Moore97171c62012-10-31 02:28:11 +00001075 acpi_ut_debug_dump_buffer(ACPI_CAST_PTR
1076 (u8,
1077 obj_desc->buffer.pointer),
1078 obj_desc->buffer.length,
1079 DB_DWORD_DISPLAY, _COMPONENT);
Len Brown4be44fc2005-08-05 00:44:28 -04001080 } else {
1081 acpi_os_printf("\n");
Robert Moore73459f72005-06-24 00:00:00 -04001082 }
1083 break;
1084
Robert Moore73459f72005-06-24 00:00:00 -04001085 case ACPI_TYPE_PACKAGE:
1086
Bob Mooreb27d6592010-05-26 11:47:13 +08001087 acpi_os_printf("[Package] Contains %u Elements:\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001088 obj_desc->package.count);
Robert Moore73459f72005-06-24 00:00:00 -04001089
1090 for (i = 0; i < obj_desc->package.count; i++) {
Bob Moore96db2552005-11-02 00:00:00 -05001091 acpi_ex_dump_package_obj(obj_desc->package.elements[i],
1092 level + 1, i);
Robert Moore73459f72005-06-24 00:00:00 -04001093 }
1094 break;
1095
Robert Moore73459f72005-06-24 00:00:00 -04001096 case ACPI_TYPE_LOCAL_REFERENCE:
1097
Bob Mooreb9ef2ab2017-06-05 16:42:02 +08001098 acpi_os_printf("[Object Reference] Class [%s]",
1099 acpi_ut_get_reference_name(obj_desc));
Bob Moore96db2552005-11-02 00:00:00 -05001100 acpi_ex_dump_reference_obj(obj_desc);
Robert Moore73459f72005-06-24 00:00:00 -04001101 break;
1102
Robert Moore73459f72005-06-24 00:00:00 -04001103 default:
1104
Bob Moore7ab58192017-08-03 14:27:15 +08001105 acpi_os_printf("[%s] Type: %2.2X\n",
1106 acpi_ut_get_type_name(obj_desc->common.type),
1107 obj_desc->common.type);
Robert Moore73459f72005-06-24 00:00:00 -04001108 break;
1109 }
1110}
1111
Robert Moore73459f72005-06-24 00:00:00 -04001112/*******************************************************************************
1113 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * FUNCTION: acpi_ex_dump_object_descriptor
1115 *
Bob Moore96db2552005-11-02 00:00:00 -05001116 * PARAMETERS: obj_desc - Descriptor to dump
Bob Mooreba494be2012-07-12 09:40:10 +08001117 * flags - Force display if TRUE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 *
1119 * DESCRIPTION: Dumps the members of the object descriptor given.
1120 *
Robert Moore44f6c012005-04-18 22:49:35 -04001121 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123void
Len Brown4be44fc2005-08-05 00:44:28 -04001124acpi_ex_dump_object_descriptor(union acpi_operand_object *obj_desc, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Bob Mooreb229cf92006-04-21 17:15:00 -04001126 ACPI_FUNCTION_TRACE(ex_dump_object_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Robert Moore44f6c012005-04-18 22:49:35 -04001128 if (!obj_desc) {
1129 return_VOID;
1130 }
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (!flags) {
Bob Moore10e9e752012-12-31 00:06:27 +00001133
1134 /* Check if debug output enabled */
1135
1136 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return_VOID;
1138 }
1139 }
1140
Len Brown4be44fc2005-08-05 00:44:28 -04001141 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) {
Bob Moore96db2552005-11-02 00:00:00 -05001142 acpi_ex_dump_namespace_node((struct acpi_namespace_node *)
1143 obj_desc, flags);
1144
Bob Moorea487af32014-02-26 10:33:32 +08001145 obj_desc = ((struct acpi_namespace_node *)obj_desc)->object;
Bob Moore7ab58192017-08-03 14:27:15 +08001146 if (!obj_desc) {
1147 return_VOID;
1148 }
1149
1150 acpi_os_printf("\nAttached Object %p", obj_desc);
1151 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) {
1152 acpi_os_printf(" - Namespace Node");
1153 }
1154
1155 acpi_os_printf(":\n");
Bob Moorea487af32014-02-26 10:33:32 +08001156 goto dump_object;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158
Len Brown4be44fc2005-08-05 00:44:28 -04001159 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) {
Bob Moorea487af32014-02-26 10:33:32 +08001160 acpi_os_printf("%p is not an ACPI operand object: [%s]\n",
1161 obj_desc, acpi_ut_get_descriptor_name(obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return_VOID;
1163 }
1164
Bob Moorea487af32014-02-26 10:33:32 +08001165 /* Validate the object type */
1166
1167 if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) {
1168 acpi_os_printf("Not a known object type: %2.2X\n",
1169 obj_desc->common.type);
Bob Moore96db2552005-11-02 00:00:00 -05001170 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
Bob Moorea487af32014-02-26 10:33:32 +08001173dump_object:
1174
Bob Moore7ab58192017-08-03 14:27:15 +08001175 if (!obj_desc) {
1176 return_VOID;
1177 }
1178
Bob Moore96db2552005-11-02 00:00:00 -05001179 /* Common Fields */
1180
1181 acpi_ex_dump_object(obj_desc, acpi_ex_dump_common);
1182
1183 /* Object-specific fields */
1184
1185 acpi_ex_dump_object(obj_desc, acpi_ex_dump_info[obj_desc->common.type]);
Bob Moorea487af32014-02-26 10:33:32 +08001186
1187 if (obj_desc->common.type == ACPI_TYPE_REGION) {
1188 obj_desc = obj_desc->common.next_object;
1189 if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) {
1190 acpi_os_printf
1191 ("Secondary object is not a known object type: %2.2X\n",
1192 obj_desc->common.type);
1193
1194 return_VOID;
1195 }
1196
1197 acpi_os_printf("\nExtra attached Object (%p):\n", obj_desc);
1198 acpi_ex_dump_object(obj_desc,
1199 acpi_ex_dump_info[obj_desc->common.type]);
1200 }
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return_VOID;
1203}
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205#endif