blob: 925202acc3e4f2c19a9d2a138fc3e697577f4ca1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exdump - Interpreter debug output routines
4 *
5 *****************************************************************************/
6
7/*
Bob Moorefbb7a2d2014-02-08 09:42:25 +08008 * Copyright (C) 2000 - 2014, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acinterp.h"
47#include "amlcode.h"
48#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("exdump")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore6f42ccf2005-05-13 00:00:00 -040053/*
54 * The following routines are used for debug output only
55 */
56#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
Robert Moore44f6c012005-04-18 22:49:35 -040057/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040058static void acpi_ex_out_string(char *title, char *value);
59
60static void acpi_ex_out_pointer(char *title, void *value);
61
Bob Moore793c2382006-03-31 00:00:00 -050062static void
63acpi_ex_dump_object(union acpi_operand_object *obj_desc,
64 struct acpi_exdump_info *info);
65
Bob Moore96db2552005-11-02 00:00:00 -050066static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc);
Robert Moore44f6c012005-04-18 22:49:35 -040067
68static void
Bob Moore96db2552005-11-02 00:00:00 -050069acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
70 u32 level, u32 index);
71
72/*******************************************************************************
73 *
74 * Object Descriptor info tables
75 *
76 * Note: The first table entry must be an INIT opcode and must contain
77 * the table length (number of table entries)
78 *
79 ******************************************************************************/
80
81static struct acpi_exdump_info acpi_ex_dump_integer[2] = {
82 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_integer), NULL},
83 {ACPI_EXD_UINT64, ACPI_EXD_OFFSET(integer.value), "Value"}
84};
85
86static struct acpi_exdump_info acpi_ex_dump_string[4] = {
87 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_string), NULL},
88 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(string.length), "Length"},
89 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(string.pointer), "Pointer"},
90 {ACPI_EXD_STRING, 0, NULL}
91};
92
Bob Moore77f6a9f2007-02-02 19:48:22 +030093static struct acpi_exdump_info acpi_ex_dump_buffer[5] = {
Bob Moore96db2552005-11-02 00:00:00 -050094 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer), NULL},
95 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(buffer.length), "Length"},
96 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer.pointer), "Pointer"},
Bob Moorea487af32014-02-26 10:33:32 +080097 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(buffer.node), "Parent Node"},
Bob Moore96db2552005-11-02 00:00:00 -050098 {ACPI_EXD_BUFFER, 0, NULL}
99};
100
Bob Moorea487af32014-02-26 10:33:32 +0800101static struct acpi_exdump_info acpi_ex_dump_package[6] = {
Bob Moore96db2552005-11-02 00:00:00 -0500102 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_package), NULL},
Bob Moorea487af32014-02-26 10:33:32 +0800103 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(package.node), "Parent Node"},
Bob Moore96db2552005-11-02 00:00:00 -0500104 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(package.flags), "Flags"},
105 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(package.count), "Elements"},
106 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(package.elements), "Element List"},
107 {ACPI_EXD_PACKAGE, 0, NULL}
108};
109
110static struct acpi_exdump_info acpi_ex_dump_device[4] = {
111 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_device), NULL},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800112 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -0500113 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800114 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(device.notify_list[1]),
Bob Moorea487af32014-02-26 10:33:32 +0800115 "Device Notify"},
116 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(device.handler), "Handler"}
Bob Moore96db2552005-11-02 00:00:00 -0500117};
118
119static struct acpi_exdump_info acpi_ex_dump_event[2] = {
120 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_event), NULL},
Bob Moore967440e32006-06-23 17:04:00 -0400121 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(event.os_semaphore), "OsSemaphore"}
Bob Moore96db2552005-11-02 00:00:00 -0500122};
123
Lin Mingb2f7ddc2009-05-21 10:42:09 +0800124static struct acpi_exdump_info acpi_ex_dump_method[9] = {
Bob Moore96db2552005-11-02 00:00:00 -0500125 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_method), NULL},
Lin Ming26294842011-01-12 09:19:43 +0800126 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.info_flags), "Info Flags"},
Lin Mingb2f7ddc2009-05-21 10:42:09 +0800127 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.param_count),
128 "Parameter Count"},
Bob Moore967440e32006-06-23 17:04:00 -0400129 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.sync_level), "Sync Level"},
130 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.mutex), "Mutex"},
Bob Moore96db2552005-11-02 00:00:00 -0500131 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.owner_id), "Owner Id"},
Bob Moorec51a4de2005-11-17 13:07:00 -0500132 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.thread_count), "Thread Count"},
Bob Moore96db2552005-11-02 00:00:00 -0500133 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(method.aml_length), "Aml Length"},
134 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.aml_start), "Aml Start"}
135};
136
Bob Moore0745fb42014-04-04 12:38:12 +0800137static struct acpi_exdump_info acpi_ex_dump_mutex[6] = {
Bob Moore96db2552005-11-02 00:00:00 -0500138 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_mutex), NULL},
139 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(mutex.sync_level), "Sync Level"},
Bob Moore0745fb42014-04-04 12:38:12 +0800140 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(mutex.original_sync_level),
141 "Original Sync Level"},
Len Brown262a7a22007-05-09 23:01:59 -0400142 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.owner_thread), "Owner Thread"},
Bob Moore96db2552005-11-02 00:00:00 -0500143 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(mutex.acquisition_depth),
144 "Acquire Depth"},
Bob Moore967440e32006-06-23 17:04:00 -0400145 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(mutex.os_mutex), "OsMutex"}
Bob Moore96db2552005-11-02 00:00:00 -0500146};
147
Bob Moorea487af32014-02-26 10:33:32 +0800148static struct acpi_exdump_info acpi_ex_dump_region[8] = {
Bob Moore96db2552005-11-02 00:00:00 -0500149 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region), NULL},
150 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.space_id), "Space Id"},
151 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(region.flags), "Flags"},
Bob Moorea487af32014-02-26 10:33:32 +0800152 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(region.node), "Parent Node"},
Bob Moore96db2552005-11-02 00:00:00 -0500153 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(region.address), "Address"},
154 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(region.length), "Length"},
Bob Moorea487af32014-02-26 10:33:32 +0800155 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(region.handler), "Handler"},
Bob Moore96db2552005-11-02 00:00:00 -0500156 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(region.next), "Next"}
157};
158
Bob Moorea487af32014-02-26 10:33:32 +0800159static struct acpi_exdump_info acpi_ex_dump_power[6] = {
Bob Moore96db2552005-11-02 00:00:00 -0500160 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_power), NULL},
161 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.system_level),
162 "System Level"},
163 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(power_resource.resource_order),
164 "Resource Order"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800165 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -0500166 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800167 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.notify_list[1]),
Bob Moorea487af32014-02-26 10:33:32 +0800168 "Device Notify"},
169 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(power_resource.handler), "Handler"}
Bob Moore96db2552005-11-02 00:00:00 -0500170};
171
172static struct acpi_exdump_info acpi_ex_dump_processor[7] = {
173 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_processor), NULL},
Bob Moore77f6a9f2007-02-02 19:48:22 +0300174 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.proc_id), "Processor ID"},
175 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(processor.length), "Length"},
Bob Moore96db2552005-11-02 00:00:00 -0500176 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET(processor.address), "Address"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800177 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -0500178 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800179 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.notify_list[1]),
Bob Moore96db2552005-11-02 00:00:00 -0500180 "Device Notify"},
181 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(processor.handler), "Handler"}
182};
183
184static struct acpi_exdump_info acpi_ex_dump_thermal[4] = {
185 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_thermal), NULL},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800186 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[0]),
Bob Moore96db2552005-11-02 00:00:00 -0500187 "System Notify"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800188 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.notify_list[1]),
Bob Moore96db2552005-11-02 00:00:00 -0500189 "Device Notify"},
190 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(thermal_zone.handler), "Handler"}
191};
192
193static struct acpi_exdump_info acpi_ex_dump_buffer_field[3] = {
194 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_buffer_field), NULL},
195 {ACPI_EXD_FIELD, 0, NULL},
196 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer_field.buffer_obj),
197 "Buffer Object"}
198};
199
Bob Moore9ce81782011-11-16 13:39:07 +0800200static struct acpi_exdump_info acpi_ex_dump_region_field[5] = {
Bob Moore96db2552005-11-02 00:00:00 -0500201 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_region_field), NULL},
202 {ACPI_EXD_FIELD, 0, NULL},
Bob Moore9ce81782011-11-16 13:39:07 +0800203 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(field.access_length), "AccessLength"},
204 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.region_obj), "Region Object"},
205 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(field.resource_buffer),
206 "ResourceBuffer"}
Bob Moore96db2552005-11-02 00:00:00 -0500207};
208
209static struct acpi_exdump_info acpi_ex_dump_bank_field[5] = {
210 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL},
211 {ACPI_EXD_FIELD, 0, NULL},
212 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(bank_field.value), "Value"},
213 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.region_obj),
214 "Region Object"},
215 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(bank_field.bank_obj), "Bank Object"}
216};
217
218static struct acpi_exdump_info acpi_ex_dump_index_field[5] = {
219 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_bank_field), NULL},
220 {ACPI_EXD_FIELD, 0, NULL},
221 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(index_field.value), "Value"},
222 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.index_obj),
223 "Index Object"},
224 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(index_field.data_obj), "Data Object"}
225};
226
Bob Moore57e664c2008-09-27 10:40:39 +0800227static struct acpi_exdump_info acpi_ex_dump_reference[8] = {
Bob Moore96db2552005-11-02 00:00:00 -0500228 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_reference), NULL},
Bob Moore1044f1f2008-09-27 11:08:41 +0800229 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.class), "Class"},
Bob Moore96db2552005-11-02 00:00:00 -0500230 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(reference.target_type), "Target Type"},
Bob Moore57e664c2008-09-27 10:40:39 +0800231 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(reference.value), "Value"},
Bob Moore96db2552005-11-02 00:00:00 -0500232 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.object), "Object Desc"},
Bob Moorea487af32014-02-26 10:33:32 +0800233 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(reference.node), "Node"},
Bob Moore96db2552005-11-02 00:00:00 -0500234 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(reference.where), "Where"},
235 {ACPI_EXD_REFERENCE, 0, NULL}
236};
237
238static struct acpi_exdump_info acpi_ex_dump_address_handler[6] = {
239 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_address_handler),
240 NULL},
241 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(address_space.space_id), "Space Id"},
Bob Moorea487af32014-02-26 10:33:32 +0800242 {ACPI_EXD_HDLR_LIST, ACPI_EXD_OFFSET(address_space.next), "Next"},
243 {ACPI_EXD_RGN_LIST, ACPI_EXD_OFFSET(address_space.region_list),
Bob Moore96db2552005-11-02 00:00:00 -0500244 "Region List"},
Bob Moorea487af32014-02-26 10:33:32 +0800245 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(address_space.node), "Node"},
Bob Moore96db2552005-11-02 00:00:00 -0500246 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(address_space.context), "Context"}
247};
248
Bob Moore86ed4bc2012-05-03 11:08:19 +0800249static struct acpi_exdump_info acpi_ex_dump_notify[7] = {
Bob Moore96db2552005-11-02 00:00:00 -0500250 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_notify), NULL},
Bob Moorea487af32014-02-26 10:33:32 +0800251 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(notify.node), "Node"},
Bob Moore86ed4bc2012-05-03 11:08:19 +0800252 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(notify.handler_type), "Handler Type"},
253 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.handler), "Handler"},
254 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.context), "Context"},
255 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[0]),
256 "Next System Notify"},
257 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(notify.next[1]), "Next Device Notify"}
Bob Moore96db2552005-11-02 00:00:00 -0500258};
259
Bob Moorea487af32014-02-26 10:33:32 +0800260static struct acpi_exdump_info acpi_ex_dump_extra[6] = {
261 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_extra), NULL},
262 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.method_REG), "_REG Method"},
263 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(extra.scope_node), "Scope Node"},
264 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.region_context),
265 "Region Context"},
266 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(extra.aml_start), "Aml Start"},
267 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(extra.aml_length), "Aml Length"}
268};
269
270static struct acpi_exdump_info acpi_ex_dump_data[3] = {
271 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_data), NULL},
272 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.handler), "Handler"},
273 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(data.pointer), "Raw Data"}
274};
275
Bob Moore96db2552005-11-02 00:00:00 -0500276/* Miscellaneous tables */
277
Bob Moorea487af32014-02-26 10:33:32 +0800278static struct acpi_exdump_info acpi_ex_dump_common[5] = {
Bob Moore96db2552005-11-02 00:00:00 -0500279 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_common), NULL},
280 {ACPI_EXD_TYPE, 0, NULL},
281 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(common.reference_count),
282 "Reference Count"},
Bob Moorea487af32014-02-26 10:33:32 +0800283 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common.flags), "Flags"},
284 {ACPI_EXD_LIST, ACPI_EXD_OFFSET(common.next_object), "Object List"}
Bob Moore96db2552005-11-02 00:00:00 -0500285};
286
287static struct acpi_exdump_info acpi_ex_dump_field_common[7] = {
288 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_field_common), NULL},
289 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.field_flags),
290 "Field Flags"},
291 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.access_byte_width),
292 "Access Byte Width"},
293 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.bit_length),
294 "Bit Length"},
295 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common_field.start_field_bit_offset),
296 "Field Bit Offset"},
297 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(common_field.base_byte_offset),
298 "Base Byte Offset"},
Bob Moorea487af32014-02-26 10:33:32 +0800299 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(common_field.node), "Parent Node"}
Bob Moore96db2552005-11-02 00:00:00 -0500300};
301
Bob Moorea487af32014-02-26 10:33:32 +0800302static struct acpi_exdump_info acpi_ex_dump_node[7] = {
Bob Moore96db2552005-11-02 00:00:00 -0500303 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_node), NULL},
304 {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET(flags), "Flags"},
305 {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET(owner_id), "Owner Id"},
Bob Moorea487af32014-02-26 10:33:32 +0800306 {ACPI_EXD_LIST, ACPI_EXD_NSOFFSET(object), "Object List"},
307 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(parent), "Parent"},
308 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(child), "Child"},
309 {ACPI_EXD_NODE, ACPI_EXD_NSOFFSET(peer), "Peer"}
Bob Moore96db2552005-11-02 00:00:00 -0500310};
311
312/* Dispatch table, indexed by object type */
313
314static struct acpi_exdump_info *acpi_ex_dump_info[] = {
315 NULL,
316 acpi_ex_dump_integer,
317 acpi_ex_dump_string,
318 acpi_ex_dump_buffer,
319 acpi_ex_dump_package,
320 NULL,
321 acpi_ex_dump_device,
322 acpi_ex_dump_event,
323 acpi_ex_dump_method,
324 acpi_ex_dump_mutex,
325 acpi_ex_dump_region,
326 acpi_ex_dump_power,
327 acpi_ex_dump_processor,
328 acpi_ex_dump_thermal,
329 acpi_ex_dump_buffer_field,
330 NULL,
331 NULL,
332 acpi_ex_dump_region_field,
333 acpi_ex_dump_bank_field,
334 acpi_ex_dump_index_field,
335 acpi_ex_dump_reference,
336 NULL,
337 NULL,
338 acpi_ex_dump_notify,
339 acpi_ex_dump_address_handler,
340 NULL,
341 NULL,
Bob Moorea487af32014-02-26 10:33:32 +0800342 NULL,
343 acpi_ex_dump_extra,
344 acpi_ex_dump_data
Bob Moore96db2552005-11-02 00:00:00 -0500345};
346
347/*******************************************************************************
348 *
349 * FUNCTION: acpi_ex_dump_object
350 *
351 * PARAMETERS: obj_desc - Descriptor to dump
Bob Mooreba494be2012-07-12 09:40:10 +0800352 * info - Info table corresponding to this object
Bob Moore96db2552005-11-02 00:00:00 -0500353 * type
354 *
355 * RETURN: None
356 *
357 * DESCRIPTION: Walk the info table for this object
358 *
359 ******************************************************************************/
360
361static void
362acpi_ex_dump_object(union acpi_operand_object *obj_desc,
363 struct acpi_exdump_info *info)
364{
365 u8 *target;
366 char *name;
Jung-uk Kimbbe707e2013-07-17 09:48:58 +0800367 const char *reference_name;
Bob Moore96db2552005-11-02 00:00:00 -0500368 u8 count;
Bob Moorea487af32014-02-26 10:33:32 +0800369 union acpi_operand_object *start;
370 union acpi_operand_object *data = NULL;
371 union acpi_operand_object *next;
372 struct acpi_namespace_node *node;
Bob Moore96db2552005-11-02 00:00:00 -0500373
374 if (!info) {
375 acpi_os_printf
Bob Mooreb229cf92006-04-21 17:15:00 -0400376 ("ExDumpObject: Display not implemented for object type %s\n",
Bob Moore96db2552005-11-02 00:00:00 -0500377 acpi_ut_get_object_type_name(obj_desc));
378 return;
379 }
380
381 /* First table entry must contain the table length (# of table entries) */
382
383 count = info->offset;
384
385 while (count) {
Bob Moorec51a4de2005-11-17 13:07:00 -0500386 target = ACPI_ADD_PTR(u8, obj_desc, info->offset);
Bob Moore96db2552005-11-02 00:00:00 -0500387 name = info->name;
388
389 switch (info->opcode) {
390 case ACPI_EXD_INIT:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000391
Bob Moore96db2552005-11-02 00:00:00 -0500392 break;
393
394 case ACPI_EXD_TYPE:
Bob Moore91a56e62009-03-19 09:52:34 +0800395
Bob Moorea487af32014-02-26 10:33:32 +0800396 acpi_os_printf("%20s : %2.2X [%s]\n", "Type",
397 obj_desc->common.type,
398 acpi_ut_get_object_type_name(obj_desc));
Bob Moore96db2552005-11-02 00:00:00 -0500399 break;
400
401 case ACPI_EXD_UINT8:
402
403 acpi_os_printf("%20s : %2.2X\n", name, *target);
404 break;
405
406 case ACPI_EXD_UINT16:
407
408 acpi_os_printf("%20s : %4.4X\n", name,
Bob Moorec51a4de2005-11-17 13:07:00 -0500409 ACPI_GET16(target));
Bob Moore96db2552005-11-02 00:00:00 -0500410 break;
411
412 case ACPI_EXD_UINT32:
413
414 acpi_os_printf("%20s : %8.8X\n", name,
Bob Moorec51a4de2005-11-17 13:07:00 -0500415 ACPI_GET32(target));
Bob Moore96db2552005-11-02 00:00:00 -0500416 break;
417
418 case ACPI_EXD_UINT64:
419
420 acpi_os_printf("%20s : %8.8X%8.8X\n", "Value",
Bob Moorec51a4de2005-11-17 13:07:00 -0500421 ACPI_FORMAT_UINT64(ACPI_GET64(target)));
Bob Moore96db2552005-11-02 00:00:00 -0500422 break;
423
424 case ACPI_EXD_POINTER:
Bob Moore77f6a9f2007-02-02 19:48:22 +0300425 case ACPI_EXD_ADDRESS:
Bob Moore96db2552005-11-02 00:00:00 -0500426
427 acpi_ex_out_pointer(name,
428 *ACPI_CAST_PTR(void *, target));
429 break;
430
Bob Moore96db2552005-11-02 00:00:00 -0500431 case ACPI_EXD_STRING:
432
433 acpi_ut_print_string(obj_desc->string.pointer,
434 ACPI_UINT8_MAX);
435 acpi_os_printf("\n");
436 break;
437
438 case ACPI_EXD_BUFFER:
439
440 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer,
441 obj_desc->buffer.length);
442 break;
443
444 case ACPI_EXD_PACKAGE:
445
446 /* Dump the package contents */
447
448 acpi_os_printf("\nPackage Contents:\n");
449 acpi_ex_dump_package_obj(obj_desc, 0, 0);
450 break;
451
452 case ACPI_EXD_FIELD:
453
454 acpi_ex_dump_object(obj_desc,
455 acpi_ex_dump_field_common);
456 break;
457
458 case ACPI_EXD_REFERENCE:
459
Jung-uk Kimbbe707e2013-07-17 09:48:58 +0800460 reference_name = acpi_ut_get_reference_name(obj_desc);
Bob Moore1044f1f2008-09-27 11:08:41 +0800461 acpi_ex_out_string("Class Name",
Jung-uk Kimbbe707e2013-07-17 09:48:58 +0800462 ACPI_CAST_PTR(char, reference_name));
Bob Moore96db2552005-11-02 00:00:00 -0500463 acpi_ex_dump_reference_obj(obj_desc);
464 break;
465
Bob Moorea487af32014-02-26 10:33:32 +0800466 case ACPI_EXD_LIST:
467
468 start = *ACPI_CAST_PTR(void *, target);
469 next = start;
470
471 acpi_os_printf("%20s : %p", name, next);
472 if (next) {
473 acpi_os_printf("(%s %2.2X)",
474 acpi_ut_get_object_type_name
475 (next), next->common.type);
476
477 while (next->common.next_object) {
478 if ((next->common.type ==
479 ACPI_TYPE_LOCAL_DATA) && !data) {
480 data = next;
481 }
482
483 next = next->common.next_object;
484 acpi_os_printf("->%p(%s %2.2X)", next,
485 acpi_ut_get_object_type_name
486 (next),
487 next->common.type);
488
489 if ((next == start) || (next == data)) {
490 acpi_os_printf
491 ("\n**** Error: Object list appears to be circular linked");
492 break;
493 }
494 }
495 }
496
497 acpi_os_printf("\n", next);
498 break;
499
500 case ACPI_EXD_HDLR_LIST:
501
502 start = *ACPI_CAST_PTR(void *, target);
503 next = start;
504
505 acpi_os_printf("%20s : %p", name, next);
506 if (next) {
507 acpi_os_printf("(%s %2.2X)",
508 acpi_ut_get_object_type_name
509 (next), next->common.type);
510
511 while (next->address_space.next) {
512 if ((next->common.type ==
513 ACPI_TYPE_LOCAL_DATA) && !data) {
514 data = next;
515 }
516
517 next = next->address_space.next;
518 acpi_os_printf("->%p(%s %2.2X)", next,
519 acpi_ut_get_object_type_name
520 (next),
521 next->common.type);
522
523 if ((next == start) || (next == data)) {
524 acpi_os_printf
525 ("\n**** Error: Handler list appears to be circular linked");
526 break;
527 }
528 }
529 }
530
531 acpi_os_printf("\n", next);
532 break;
533
534 case ACPI_EXD_RGN_LIST:
535
536 start = *ACPI_CAST_PTR(void *, target);
537 next = start;
538
539 acpi_os_printf("%20s : %p", name, next);
540 if (next) {
541 acpi_os_printf("(%s %2.2X)",
542 acpi_ut_get_object_type_name
543 (next), next->common.type);
544
545 while (next->region.next) {
546 if ((next->common.type ==
547 ACPI_TYPE_LOCAL_DATA) && !data) {
548 data = next;
549 }
550
551 next = next->region.next;
552 acpi_os_printf("->%p(%s %2.2X)", next,
553 acpi_ut_get_object_type_name
554 (next),
555 next->common.type);
556
557 if ((next == start) || (next == data)) {
558 acpi_os_printf
559 ("\n**** Error: Region list appears to be circular linked");
560 break;
561 }
562 }
563 }
564
565 acpi_os_printf("\n", next);
566 break;
567
568 case ACPI_EXD_NODE:
569
570 node =
571 *ACPI_CAST_PTR(struct acpi_namespace_node *,
572 target);
573
574 acpi_os_printf("%20s : %p", name, node);
575 if (node) {
576 acpi_os_printf(" [%4.4s]", node->name.ascii);
577 }
578 acpi_os_printf("\n");
579 break;
580
Bob Moore96db2552005-11-02 00:00:00 -0500581 default:
Bob Moore91a56e62009-03-19 09:52:34 +0800582
Bob Moore96db2552005-11-02 00:00:00 -0500583 acpi_os_printf("**** Invalid table opcode [%X] ****\n",
584 info->opcode);
585 return;
586 }
587
588 info++;
589 count--;
590 }
591}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Robert Moore44f6c012005-04-18 22:49:35 -0400593/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 *
595 * FUNCTION: acpi_ex_dump_operand
596 *
Robert Moore44f6c012005-04-18 22:49:35 -0400597 * PARAMETERS: *obj_desc - Pointer to entry to be dumped
Bob Mooreba494be2012-07-12 09:40:10 +0800598 * depth - Current nesting depth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 *
600 * RETURN: None
601 *
602 * DESCRIPTION: Dump an operand object
603 *
Robert Moore44f6c012005-04-18 22:49:35 -0400604 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Len Brown4be44fc2005-08-05 00:44:28 -0400606void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Len Brown4be44fc2005-08-05 00:44:28 -0400608 u32 length;
609 u32 index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Bob Mooreb229cf92006-04-21 17:15:00 -0400611 ACPI_FUNCTION_NAME(ex_dump_operand)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Bob Moore10e9e752012-12-31 00:06:27 +0000613 /* Check if debug output enabled */
614 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return;
616 }
617
618 if (!obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400619
Robert Moore44f6c012005-04-18 22:49:35 -0400620 /* This could be a null element of a package */
621
Len Brown4be44fc2005-08-05 00:44:28 -0400622 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Null Object Descriptor\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return;
624 }
625
Len Brown4be44fc2005-08-05 00:44:28 -0400626 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) {
627 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p Namespace Node: ",
628 obj_desc));
629 ACPI_DUMP_ENTRY(obj_desc, ACPI_LV_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return;
631 }
632
Len Brown4be44fc2005-08-05 00:44:28 -0400633 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) {
634 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
635 "%p is not a node or operand object: [%s]\n",
636 obj_desc,
637 acpi_ut_get_descriptor_name(obj_desc)));
638 ACPI_DUMP_BUFFER(obj_desc, sizeof(union acpi_operand_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return;
640 }
641
642 /* obj_desc is a valid object */
643
644 if (depth > 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400645 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%*s[%u] %p ",
646 depth, " ", depth, obj_desc));
647 } else {
648 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p ", obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
Robert Moore44f6c012005-04-18 22:49:35 -0400651 /* Decode object type */
652
Bob Moore3371c192009-02-18 14:44:03 +0800653 switch (obj_desc->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 case ACPI_TYPE_LOCAL_REFERENCE:
655
Bob Moore1044f1f2008-09-27 11:08:41 +0800656 acpi_os_printf("Reference: [%s] ",
657 acpi_ut_get_reference_name(obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Bob Moore1044f1f2008-09-27 11:08:41 +0800659 switch (obj_desc->reference.class) {
660 case ACPI_REFCLASS_DEBUG:
661
662 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 break;
664
Bob Moore1044f1f2008-09-27 11:08:41 +0800665 case ACPI_REFCLASS_INDEX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Bob Moore1044f1f2008-09-27 11:08:41 +0800667 acpi_os_printf("%p\n", obj_desc->reference.object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 break;
669
Bob Moore1044f1f2008-09-27 11:08:41 +0800670 case ACPI_REFCLASS_TABLE:
Bob Mooreb7f9f042008-04-10 19:06:40 +0400671
Bob Moore1044f1f2008-09-27 11:08:41 +0800672 acpi_os_printf("Table Index %X\n",
Bob Moore57e664c2008-09-27 10:40:39 +0800673 obj_desc->reference.value);
Bob Mooreb7f9f042008-04-10 19:06:40 +0400674 break;
675
Bob Moore1044f1f2008-09-27 11:08:41 +0800676 case ACPI_REFCLASS_REFOF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Bob Moore1044f1f2008-09-27 11:08:41 +0800678 acpi_os_printf("%p [%s]\n", obj_desc->reference.object,
Bob Mooref2d69552008-04-10 19:06:40 +0400679 acpi_ut_get_type_name(((union
680 acpi_operand_object
Bob Moore1044f1f2008-09-27 11:08:41 +0800681 *)
682 obj_desc->
Bob Mooref2d69552008-04-10 19:06:40 +0400683 reference.
684 object)->common.
685 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 break;
687
Bob Moore1044f1f2008-09-27 11:08:41 +0800688 case ACPI_REFCLASS_NAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Bob Moore1044f1f2008-09-27 11:08:41 +0800690 acpi_os_printf("- [%4.4s]\n",
Bob Mooref2d69552008-04-10 19:06:40 +0400691 obj_desc->reference.node->name.ascii);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 break;
693
Bob Moore91a56e62009-03-19 09:52:34 +0800694 case ACPI_REFCLASS_ARG:
695 case ACPI_REFCLASS_LOCAL:
696
697 acpi_os_printf("%X\n", obj_desc->reference.value);
698 break;
699
Bob Moore1044f1f2008-09-27 11:08:41 +0800700 default: /* Unknown reference class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Bob Moore1044f1f2008-09-27 11:08:41 +0800702 acpi_os_printf("%2.2X\n", obj_desc->reference.class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705 break;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 case ACPI_TYPE_BUFFER:
708
Bob Moore71d993e2008-06-10 14:25:05 +0800709 acpi_os_printf("Buffer length %.2X @ %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400710 obj_desc->buffer.length,
711 obj_desc->buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Debug only -- dump the buffer contents */
714
715 if (obj_desc->buffer.pointer) {
Bob Moore71d993e2008-06-10 14:25:05 +0800716 length = obj_desc->buffer.length;
717 if (length > 128) {
718 length = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
Bob Moore71d993e2008-06-10 14:25:05 +0800720
721 acpi_os_printf
722 ("Buffer Contents: (displaying length 0x%.2X)\n",
723 length);
724 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726 break;
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 case ACPI_TYPE_INTEGER:
729
Len Brown4be44fc2005-08-05 00:44:28 -0400730 acpi_os_printf("Integer %8.8X%8.8X\n",
731 ACPI_FORMAT_UINT64(obj_desc->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 break;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 case ACPI_TYPE_PACKAGE:
735
Bob Mooreb229cf92006-04-21 17:15:00 -0400736 acpi_os_printf("Package [Len %X] ElementArray %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400737 obj_desc->package.count,
738 obj_desc->package.elements);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /*
741 * If elements exist, package element pointer is valid,
742 * and debug_level exceeds 1, dump package's elements.
743 */
744 if (obj_desc->package.count &&
Len Brown4be44fc2005-08-05 00:44:28 -0400745 obj_desc->package.elements && acpi_dbg_level > 1) {
746 for (index = 0; index < obj_desc->package.count;
747 index++) {
748 acpi_ex_dump_operand(obj_desc->package.
749 elements[index],
750 depth + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752 }
753 break;
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 case ACPI_TYPE_REGION:
756
Len Brown4be44fc2005-08-05 00:44:28 -0400757 acpi_os_printf("Region %s (%X)",
758 acpi_ut_get_region_name(obj_desc->region.
759 space_id),
760 obj_desc->region.space_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /*
763 * If the address and length have not been evaluated,
764 * don't print them.
765 */
766 if (!(obj_desc->region.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400767 acpi_os_printf("\n");
768 } else {
769 acpi_os_printf(" base %8.8X%8.8X Length %X\n",
Bob Mooreb7f9f042008-04-10 19:06:40 +0400770 ACPI_FORMAT_NATIVE_UINT(obj_desc->region.
771 address),
Len Brown4be44fc2005-08-05 00:44:28 -0400772 obj_desc->region.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774 break;
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 case ACPI_TYPE_STRING:
777
Len Brown4be44fc2005-08-05 00:44:28 -0400778 acpi_os_printf("String length %X @ %p ",
779 obj_desc->string.length,
780 obj_desc->string.pointer);
Robert Moore44f6c012005-04-18 22:49:35 -0400781
Len Brown4be44fc2005-08-05 00:44:28 -0400782 acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX);
783 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 break;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 case ACPI_TYPE_LOCAL_BANK_FIELD:
787
Bob Mooreb229cf92006-04-21 17:15:00 -0400788 acpi_os_printf("BankField\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 case ACPI_TYPE_LOCAL_REGION_FIELD:
792
Len Brown4be44fc2005-08-05 00:44:28 -0400793 acpi_os_printf
Bob Moore91a56e62009-03-19 09:52:34 +0800794 ("RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at "
795 "byte=%X bit=%X of below:\n", obj_desc->field.bit_length,
Len Brown4be44fc2005-08-05 00:44:28 -0400796 obj_desc->field.access_byte_width,
797 obj_desc->field.field_flags & AML_FIELD_LOCK_RULE_MASK,
798 obj_desc->field.field_flags & AML_FIELD_UPDATE_RULE_MASK,
799 obj_desc->field.base_byte_offset,
800 obj_desc->field.start_field_bit_offset);
Robert Moore44f6c012005-04-18 22:49:35 -0400801
Len Brown4be44fc2005-08-05 00:44:28 -0400802 acpi_ex_dump_operand(obj_desc->field.region_obj, depth + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 break;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 case ACPI_TYPE_LOCAL_INDEX_FIELD:
806
Bob Mooreb229cf92006-04-21 17:15:00 -0400807 acpi_os_printf("IndexField\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 break;
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 case ACPI_TYPE_BUFFER_FIELD:
811
Bob Mooreb229cf92006-04-21 17:15:00 -0400812 acpi_os_printf("BufferField: %X bits at byte %X bit %X of\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400813 obj_desc->buffer_field.bit_length,
814 obj_desc->buffer_field.base_byte_offset,
815 obj_desc->buffer_field.start_field_bit_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 if (!obj_desc->buffer_field.buffer_obj) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400818 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "*NULL*\n"));
Bob Moore3371c192009-02-18 14:44:03 +0800819 } else if ((obj_desc->buffer_field.buffer_obj)->common.type !=
820 ACPI_TYPE_BUFFER) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400821 acpi_os_printf("*not a Buffer*\n");
Len Brown4be44fc2005-08-05 00:44:28 -0400822 } else {
823 acpi_ex_dump_operand(obj_desc->buffer_field.buffer_obj,
824 depth + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826 break;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 case ACPI_TYPE_EVENT:
829
Len Brown4be44fc2005-08-05 00:44:28 -0400830 acpi_os_printf("Event\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 break;
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 case ACPI_TYPE_METHOD:
834
Len Brown4be44fc2005-08-05 00:44:28 -0400835 acpi_os_printf("Method(%X) @ %p:%X\n",
836 obj_desc->method.param_count,
837 obj_desc->method.aml_start,
838 obj_desc->method.aml_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 break;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 case ACPI_TYPE_MUTEX:
842
Len Brown4be44fc2005-08-05 00:44:28 -0400843 acpi_os_printf("Mutex\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 break;
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 case ACPI_TYPE_DEVICE:
847
Len Brown4be44fc2005-08-05 00:44:28 -0400848 acpi_os_printf("Device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 break;
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 case ACPI_TYPE_POWER:
852
Len Brown4be44fc2005-08-05 00:44:28 -0400853 acpi_os_printf("Power\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 break;
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 case ACPI_TYPE_PROCESSOR:
857
Len Brown4be44fc2005-08-05 00:44:28 -0400858 acpi_os_printf("Processor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 break;
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 case ACPI_TYPE_THERMAL:
862
Len Brown4be44fc2005-08-05 00:44:28 -0400863 acpi_os_printf("Thermal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 break;
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /* Unknown Type */
869
Bob Moore3371c192009-02-18 14:44:03 +0800870 acpi_os_printf("Unknown Type %X\n", obj_desc->common.type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 break;
872 }
873
874 return;
875}
876
Robert Moore44f6c012005-04-18 22:49:35 -0400877/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 *
879 * FUNCTION: acpi_ex_dump_operands
880 *
Bob Mooreba494be2012-07-12 09:40:10 +0800881 * PARAMETERS: operands - A list of Operand objects
Bob Moore71d993e2008-06-10 14:25:05 +0800882 * opcode_name - AML opcode name
883 * num_operands - Operand count for this opcode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 *
Bob Moore71d993e2008-06-10 14:25:05 +0800885 * DESCRIPTION: Dump the operands associated with the opcode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 *
Robert Moore44f6c012005-04-18 22:49:35 -0400887 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889void
Len Brown4be44fc2005-08-05 00:44:28 -0400890acpi_ex_dump_operands(union acpi_operand_object **operands,
Bob Moore71d993e2008-06-10 14:25:05 +0800891 const char *opcode_name, u32 num_operands)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Bob Mooreb229cf92006-04-21 17:15:00 -0400893 ACPI_FUNCTION_NAME(ex_dump_operands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Bob Moore71d993e2008-06-10 14:25:05 +0800895 if (!opcode_name) {
896 opcode_name = "UNKNOWN";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
Len Brown4be44fc2005-08-05 00:44:28 -0400899 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Mooreb27d6592010-05-26 11:47:13 +0800900 "**** Start operand dump for opcode [%s], %u operands\n",
Bob Moore71d993e2008-06-10 14:25:05 +0800901 opcode_name, num_operands));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Bob Moore71d993e2008-06-10 14:25:05 +0800903 if (num_operands == 0) {
904 num_operands = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906
Bob Moore71d993e2008-06-10 14:25:05 +0800907 /* Dump the individual operands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Bob Moore71d993e2008-06-10 14:25:05 +0800909 while (num_operands) {
910 acpi_ex_dump_operand(*operands, 0);
911 operands++;
912 num_operands--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914
Len Brown4be44fc2005-08-05 00:44:28 -0400915 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Moore71d993e2008-06-10 14:25:05 +0800916 "**** End operand dump for [%s]\n", opcode_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return;
918}
919
Robert Moore44f6c012005-04-18 22:49:35 -0400920/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 *
Robert Moore44f6c012005-04-18 22:49:35 -0400922 * FUNCTION: acpi_ex_out* functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 *
Bob Mooreba494be2012-07-12 09:40:10 +0800924 * PARAMETERS: title - Descriptive text
925 * value - Value to be displayed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 *
Bob Moore73a30902012-10-31 02:26:55 +0000927 * DESCRIPTION: Object dump output formatting functions. These functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 * reduce the number of format strings required and keeps them
929 * all in one place for easy modification.
930 *
Robert Moore44f6c012005-04-18 22:49:35 -0400931 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Len Brown4be44fc2005-08-05 00:44:28 -0400933static void acpi_ex_out_string(char *title, char *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Len Brown4be44fc2005-08-05 00:44:28 -0400935 acpi_os_printf("%20s : %s\n", title, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Len Brown4be44fc2005-08-05 00:44:28 -0400938static void acpi_ex_out_pointer(char *title, void *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Len Brown4be44fc2005-08-05 00:44:28 -0400940 acpi_os_printf("%20s : %p\n", title, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Robert Moore44f6c012005-04-18 22:49:35 -0400943/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 *
Bob Moore96db2552005-11-02 00:00:00 -0500945 * FUNCTION: acpi_ex_dump_namespace_node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 *
Bob Mooreba494be2012-07-12 09:40:10 +0800947 * PARAMETERS: node - Descriptor to dump
948 * flags - Force display if TRUE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 *
950 * DESCRIPTION: Dumps the members of the given.Node
951 *
Robert Moore44f6c012005-04-18 22:49:35 -0400952 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Bob Moore96db2552005-11-02 00:00:00 -0500954void acpi_ex_dump_namespace_node(struct acpi_namespace_node *node, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956
Len Brown4be44fc2005-08-05 00:44:28 -0400957 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 if (!flags) {
Bob Moore10e9e752012-12-31 00:06:27 +0000960
961 /* Check if debug output enabled */
962
963 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return;
965 }
966 }
967
Len Brown4be44fc2005-08-05 00:44:28 -0400968 acpi_os_printf("%20s : %4.4s\n", "Name", acpi_ut_get_node_name(node));
Bob Moorea487af32014-02-26 10:33:32 +0800969 acpi_os_printf("%20s : %2.2X [%s]\n", "Type",
970 node->type, acpi_ut_get_type_name(node->type));
Bob Moore96db2552005-11-02 00:00:00 -0500971
972 acpi_ex_dump_object(ACPI_CAST_PTR(union acpi_operand_object, node),
973 acpi_ex_dump_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
Robert Moore44f6c012005-04-18 22:49:35 -0400976/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 *
Bob Moore96db2552005-11-02 00:00:00 -0500978 * FUNCTION: acpi_ex_dump_reference_obj
Robert Moore73459f72005-06-24 00:00:00 -0400979 *
Bob Mooreba494be2012-07-12 09:40:10 +0800980 * PARAMETERS: object - Descriptor to dump
Robert Moore73459f72005-06-24 00:00:00 -0400981 *
982 * DESCRIPTION: Dumps a reference object
983 *
984 ******************************************************************************/
985
Bob Moore96db2552005-11-02 00:00:00 -0500986static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc)
Robert Moore73459f72005-06-24 00:00:00 -0400987{
Len Brown4be44fc2005-08-05 00:44:28 -0400988 struct acpi_buffer ret_buf;
989 acpi_status status;
Robert Moore73459f72005-06-24 00:00:00 -0400990
Bob Moore96db2552005-11-02 00:00:00 -0500991 ret_buf.length = ACPI_ALLOCATE_LOCAL_BUFFER;
992
Bob Moore1044f1f2008-09-27 11:08:41 +0800993 if (obj_desc->reference.class == ACPI_REFCLASS_NAME) {
994 acpi_os_printf(" %p ", obj_desc->reference.node);
Bob Moore96db2552005-11-02 00:00:00 -0500995
Len Brown4be44fc2005-08-05 00:44:28 -0400996 status =
997 acpi_ns_handle_to_pathname(obj_desc->reference.node,
998 &ret_buf);
999 if (ACPI_FAILURE(status)) {
Bob Mooref2d69552008-04-10 19:06:40 +04001000 acpi_os_printf(" Could not convert name to pathname\n");
Len Brown4be44fc2005-08-05 00:44:28 -04001001 } else {
1002 acpi_os_printf("%s\n", (char *)ret_buf.pointer);
Bob Moore83135242006-10-03 00:00:00 -04001003 ACPI_FREE(ret_buf.pointer);
Robert Moore73459f72005-06-24 00:00:00 -04001004 }
Len Brown4be44fc2005-08-05 00:44:28 -04001005 } else if (obj_desc->reference.object) {
Bob Mooref2d69552008-04-10 19:06:40 +04001006 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
1007 ACPI_DESC_TYPE_OPERAND) {
Lin Mingbc7a36a2008-04-10 19:06:42 +04001008 acpi_os_printf(" Target: %p",
1009 obj_desc->reference.object);
Bob Moore1044f1f2008-09-27 11:08:41 +08001010 if (obj_desc->reference.class == ACPI_REFCLASS_TABLE) {
1011 acpi_os_printf(" Table Index: %X\n",
Bob Moore57e664c2008-09-27 10:40:39 +08001012 obj_desc->reference.value);
Lin Mingbc7a36a2008-04-10 19:06:42 +04001013 } else {
Bob Moore57e664c2008-09-27 10:40:39 +08001014 acpi_os_printf(" Target: %p [%s]\n",
1015 obj_desc->reference.object,
Lin Mingbc7a36a2008-04-10 19:06:42 +04001016 acpi_ut_get_type_name(((union
1017 acpi_operand_object
1018 *)
1019 obj_desc->
1020 reference.
1021 object)->
1022 common.
1023 type));
1024 }
Bob Mooref2d69552008-04-10 19:06:40 +04001025 } else {
1026 acpi_os_printf(" Target: %p\n",
1027 obj_desc->reference.object);
1028 }
Robert Moore73459f72005-06-24 00:00:00 -04001029 }
1030}
1031
Robert Moore73459f72005-06-24 00:00:00 -04001032/*******************************************************************************
1033 *
Bob Moore96db2552005-11-02 00:00:00 -05001034 * FUNCTION: acpi_ex_dump_package_obj
Robert Moore73459f72005-06-24 00:00:00 -04001035 *
Bob Moore96db2552005-11-02 00:00:00 -05001036 * PARAMETERS: obj_desc - Descriptor to dump
Bob Mooreba494be2012-07-12 09:40:10 +08001037 * level - Indentation Level
1038 * index - Package index for this object
Robert Moore73459f72005-06-24 00:00:00 -04001039 *
1040 * DESCRIPTION: Dumps the elements of the package
1041 *
1042 ******************************************************************************/
1043
1044static void
Bob Moore96db2552005-11-02 00:00:00 -05001045acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
1046 u32 level, u32 index)
Robert Moore73459f72005-06-24 00:00:00 -04001047{
Len Brown4be44fc2005-08-05 00:44:28 -04001048 u32 i;
Robert Moore73459f72005-06-24 00:00:00 -04001049
1050 /* Indentation and index output */
1051
1052 if (level > 0) {
1053 for (i = 0; i < level; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -04001054 acpi_os_printf(" ");
Robert Moore73459f72005-06-24 00:00:00 -04001055 }
1056
Len Brown4be44fc2005-08-05 00:44:28 -04001057 acpi_os_printf("[%.2d] ", index);
Robert Moore73459f72005-06-24 00:00:00 -04001058 }
1059
Len Brown4be44fc2005-08-05 00:44:28 -04001060 acpi_os_printf("%p ", obj_desc);
Robert Moore73459f72005-06-24 00:00:00 -04001061
1062 /* Null package elements are allowed */
1063
1064 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -04001065 acpi_os_printf("[Null Object]\n");
Robert Moore73459f72005-06-24 00:00:00 -04001066 return;
1067 }
1068
1069 /* Packages may only contain a few object types */
1070
Bob Moore3371c192009-02-18 14:44:03 +08001071 switch (obj_desc->common.type) {
Robert Moore73459f72005-06-24 00:00:00 -04001072 case ACPI_TYPE_INTEGER:
1073
Len Brown4be44fc2005-08-05 00:44:28 -04001074 acpi_os_printf("[Integer] = %8.8X%8.8X\n",
1075 ACPI_FORMAT_UINT64(obj_desc->integer.value));
Robert Moore73459f72005-06-24 00:00:00 -04001076 break;
1077
Robert Moore73459f72005-06-24 00:00:00 -04001078 case ACPI_TYPE_STRING:
1079
Len Brown4be44fc2005-08-05 00:44:28 -04001080 acpi_os_printf("[String] Value: ");
Bob Moore579e3822012-05-03 09:41:41 +08001081 acpi_ut_print_string(obj_desc->string.pointer, ACPI_UINT8_MAX);
Len Brown4be44fc2005-08-05 00:44:28 -04001082 acpi_os_printf("\n");
Robert Moore73459f72005-06-24 00:00:00 -04001083 break;
1084
Robert Moore73459f72005-06-24 00:00:00 -04001085 case ACPI_TYPE_BUFFER:
1086
Len Brown4be44fc2005-08-05 00:44:28 -04001087 acpi_os_printf("[Buffer] Length %.2X = ",
1088 obj_desc->buffer.length);
Robert Moore73459f72005-06-24 00:00:00 -04001089 if (obj_desc->buffer.length) {
Bob Moore97171c62012-10-31 02:28:11 +00001090 acpi_ut_debug_dump_buffer(ACPI_CAST_PTR
1091 (u8,
1092 obj_desc->buffer.pointer),
1093 obj_desc->buffer.length,
1094 DB_DWORD_DISPLAY, _COMPONENT);
Len Brown4be44fc2005-08-05 00:44:28 -04001095 } else {
1096 acpi_os_printf("\n");
Robert Moore73459f72005-06-24 00:00:00 -04001097 }
1098 break;
1099
Robert Moore73459f72005-06-24 00:00:00 -04001100 case ACPI_TYPE_PACKAGE:
1101
Bob Mooreb27d6592010-05-26 11:47:13 +08001102 acpi_os_printf("[Package] Contains %u Elements:\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001103 obj_desc->package.count);
Robert Moore73459f72005-06-24 00:00:00 -04001104
1105 for (i = 0; i < obj_desc->package.count; i++) {
Bob Moore96db2552005-11-02 00:00:00 -05001106 acpi_ex_dump_package_obj(obj_desc->package.elements[i],
1107 level + 1, i);
Robert Moore73459f72005-06-24 00:00:00 -04001108 }
1109 break;
1110
Robert Moore73459f72005-06-24 00:00:00 -04001111 case ACPI_TYPE_LOCAL_REFERENCE:
1112
Bob Moore1044f1f2008-09-27 11:08:41 +08001113 acpi_os_printf("[Object Reference] Type [%s] %2.2X",
1114 acpi_ut_get_reference_name(obj_desc),
1115 obj_desc->reference.class);
Bob Moore96db2552005-11-02 00:00:00 -05001116 acpi_ex_dump_reference_obj(obj_desc);
Robert Moore73459f72005-06-24 00:00:00 -04001117 break;
1118
Robert Moore73459f72005-06-24 00:00:00 -04001119 default:
1120
Bob Moore3371c192009-02-18 14:44:03 +08001121 acpi_os_printf("[Unknown Type] %X\n", obj_desc->common.type);
Robert Moore73459f72005-06-24 00:00:00 -04001122 break;
1123 }
1124}
1125
Robert Moore73459f72005-06-24 00:00:00 -04001126/*******************************************************************************
1127 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 * FUNCTION: acpi_ex_dump_object_descriptor
1129 *
Bob Moore96db2552005-11-02 00:00:00 -05001130 * PARAMETERS: obj_desc - Descriptor to dump
Bob Mooreba494be2012-07-12 09:40:10 +08001131 * flags - Force display if TRUE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 *
1133 * DESCRIPTION: Dumps the members of the object descriptor given.
1134 *
Robert Moore44f6c012005-04-18 22:49:35 -04001135 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137void
Len Brown4be44fc2005-08-05 00:44:28 -04001138acpi_ex_dump_object_descriptor(union acpi_operand_object *obj_desc, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Bob Mooreb229cf92006-04-21 17:15:00 -04001140 ACPI_FUNCTION_TRACE(ex_dump_object_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Robert Moore44f6c012005-04-18 22:49:35 -04001142 if (!obj_desc) {
1143 return_VOID;
1144 }
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (!flags) {
Bob Moore10e9e752012-12-31 00:06:27 +00001147
1148 /* Check if debug output enabled */
1149
1150 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_OBJECTS, _COMPONENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 return_VOID;
1152 }
1153 }
1154
Len Brown4be44fc2005-08-05 00:44:28 -04001155 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_NAMED) {
Bob Moore96db2552005-11-02 00:00:00 -05001156 acpi_ex_dump_namespace_node((struct acpi_namespace_node *)
1157 obj_desc, flags);
1158
Len Brown4be44fc2005-08-05 00:44:28 -04001159 acpi_os_printf("\nAttached Object (%p):\n",
1160 ((struct acpi_namespace_node *)obj_desc)->
1161 object);
Bob Moore96db2552005-11-02 00:00:00 -05001162
Bob Moorea487af32014-02-26 10:33:32 +08001163 obj_desc = ((struct acpi_namespace_node *)obj_desc)->object;
1164 goto dump_object;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166
Len Brown4be44fc2005-08-05 00:44:28 -04001167 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) {
Bob Moorea487af32014-02-26 10:33:32 +08001168 acpi_os_printf("%p is not an ACPI operand object: [%s]\n",
1169 obj_desc, acpi_ut_get_descriptor_name(obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return_VOID;
1171 }
1172
Bob Moorea487af32014-02-26 10:33:32 +08001173 /* Validate the object type */
1174
1175 if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) {
1176 acpi_os_printf("Not a known object type: %2.2X\n",
1177 obj_desc->common.type);
Bob Moore96db2552005-11-02 00:00:00 -05001178 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180
Bob Moorea487af32014-02-26 10:33:32 +08001181dump_object:
1182
Bob Moore96db2552005-11-02 00:00:00 -05001183 /* Common Fields */
1184
1185 acpi_ex_dump_object(obj_desc, acpi_ex_dump_common);
1186
1187 /* Object-specific fields */
1188
1189 acpi_ex_dump_object(obj_desc, acpi_ex_dump_info[obj_desc->common.type]);
Bob Moorea487af32014-02-26 10:33:32 +08001190
1191 if (obj_desc->common.type == ACPI_TYPE_REGION) {
1192 obj_desc = obj_desc->common.next_object;
1193 if (obj_desc->common.type > ACPI_TYPE_LOCAL_MAX) {
1194 acpi_os_printf
1195 ("Secondary object is not a known object type: %2.2X\n",
1196 obj_desc->common.type);
1197
1198 return_VOID;
1199 }
1200
1201 acpi_os_printf("\nExtra attached Object (%p):\n", obj_desc);
1202 acpi_ex_dump_object(obj_desc,
1203 acpi_ex_dump_info[obj_desc->common.type]);
1204 }
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return_VOID;
1207}
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209#endif