kernel: scheduling fix for ARM
[minix.git] / drivers / acpi / executer / exdump.c
blob404a54351f442c5811b44e0d4c11308b8b1e6155
1 /******************************************************************************
3 * Module Name: exdump - Interpreter debug output routines
5 *****************************************************************************/
7 /******************************************************************************
9 * 1. Copyright Notice
11 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
12 * All rights reserved.
14 * 2. License
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
19 * property rights.
21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24 * base code distributed originally by Intel ("Original Intel Code") to copy,
25 * make derivatives, distribute, use and display any portion of the Covered
26 * Code in any form, with the right to sublicense such rights; and
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29 * license (with the right to sublicense), under only those claims of Intel
30 * patents that are infringed by the Original Intel Code, to make, use, sell,
31 * offer to sell, and import the Covered Code and derivative works thereof
32 * solely to the minimum extent necessary to exercise the above copyright
33 * license, and in no event shall the patent license extend to any additions
34 * to or modifications of the Original Intel Code. No other license or right
35 * is granted directly or by implication, estoppel or otherwise;
37 * The above copyright and patent license is granted only if the following
38 * conditions are met:
40 * 3. Conditions
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
45 * the above Copyright Notice, the above License, this list of Conditions,
46 * and the following Disclaimer and Export Compliance provision. In addition,
47 * Licensee must cause all Covered Code to which Licensee contributes to
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
50 * documentation of any changes made by any predecessor Licensee. Licensee
51 * must include a prominent statement that the modification is derived,
52 * directly or indirectly, from Original Intel Code.
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
59 * addition, Licensee may not authorize further sublicense of source of any
60 * portion of the Covered Code, and must include terms to the effect that the
61 * license from Licensee to its licensee is limited to the intellectual
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee may
64 * make.
66 * 3.3. Redistribution of Executable. Redistribution in executable form of any
67 * substantial portion of the Covered Code or modification must reproduce the
68 * above Copyright Notice, and the following Disclaimer and Export Compliance
69 * provision in the documentation and/or other materials provided with the
70 * distribution.
72 * 3.4. Intel retains all right, title, and interest in and to the Original
73 * Intel Code.
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76 * Intel shall be used in advertising or otherwise to promote the sale, use or
77 * other dealings in products derived from or relating to the Covered Code
78 * without prior written authorization from Intel.
80 * 4. Disclaimer and Export Compliance
82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
88 * PARTICULAR PURPOSE.
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
97 * LIMITED REMEDY.
99 * 4.3. Licensee shall not export, either directly or indirectly, any of this
100 * software or system incorporating such software without first obtaining any
101 * required license or other approval from the U. S. Department of Commerce or
102 * any other agency or department of the United States Government. In the
103 * event Licensee exports any such software from the United States or
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108 * any of its subsidiaries will export/re-export any technical data, process,
109 * software, or service, directly or indirectly, to any country for which the
110 * United States government or any agency thereof requires an export license,
111 * other governmental approval, or letter of assurance, without first obtaining
112 * such license, approval or letter.
114 *****************************************************************************/
116 #define __EXDUMP_C__
118 #include "acpi.h"
119 #include "accommon.h"
120 #include "acinterp.h"
121 #include "amlcode.h"
122 #include "acnamesp.h"
125 #define _COMPONENT ACPI_EXECUTER
126 ACPI_MODULE_NAME ("exdump")
129 * The following routines are used for debug output only
131 #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
133 /* Local prototypes */
135 static void
136 AcpiExOutString (
137 char *Title,
138 char *Value);
140 static void
141 AcpiExOutPointer (
142 char *Title,
143 void *Value);
145 static void
146 AcpiExDumpObject (
147 ACPI_OPERAND_OBJECT *ObjDesc,
148 ACPI_EXDUMP_INFO *Info);
150 static void
151 AcpiExDumpReferenceObj (
152 ACPI_OPERAND_OBJECT *ObjDesc);
154 static void
155 AcpiExDumpPackageObj (
156 ACPI_OPERAND_OBJECT *ObjDesc,
157 UINT32 Level,
158 UINT32 Index);
161 /*******************************************************************************
163 * Object Descriptor info tables
165 * Note: The first table entry must be an INIT opcode and must contain
166 * the table length (number of table entries)
168 ******************************************************************************/
170 static ACPI_EXDUMP_INFO AcpiExDumpInteger[2] =
172 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpInteger), NULL},
173 {ACPI_EXD_UINT64, ACPI_EXD_OFFSET (Integer.Value), "Value"}
176 static ACPI_EXDUMP_INFO AcpiExDumpString[4] =
178 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpString), NULL},
179 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (String.Length), "Length"},
180 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (String.Pointer), "Pointer"},
181 {ACPI_EXD_STRING, 0, NULL}
184 static ACPI_EXDUMP_INFO AcpiExDumpBuffer[5] =
186 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpBuffer), NULL},
187 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Buffer.Length), "Length"},
188 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Buffer.Pointer), "Pointer"},
189 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Buffer.Node), "Parent Node"},
190 {ACPI_EXD_BUFFER, 0, NULL}
193 static ACPI_EXDUMP_INFO AcpiExDumpPackage[5] =
195 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpPackage), NULL},
196 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Package.Flags), "Flags"},
197 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Package.Count), "Elements"},
198 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Package.Elements), "Element List"},
199 {ACPI_EXD_PACKAGE, 0, NULL}
202 static ACPI_EXDUMP_INFO AcpiExDumpDevice[4] =
204 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpDevice), NULL},
205 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Device.Handler), "Handler"},
206 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Device.SystemNotify), "System Notify"},
207 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Device.DeviceNotify), "Device Notify"}
210 static ACPI_EXDUMP_INFO AcpiExDumpEvent[2] =
212 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpEvent), NULL},
213 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Event.OsSemaphore), "OsSemaphore"}
216 static ACPI_EXDUMP_INFO AcpiExDumpMethod[9] =
218 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpMethod), NULL},
219 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.MethodFlags), "Method Flags"},
220 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.ParamCount), "Parameter Count"},
221 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.SyncLevel), "Sync Level"},
222 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Method.Mutex), "Mutex"},
223 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.OwnerId), "Owner Id"},
224 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.ThreadCount), "Thread Count"},
225 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Method.AmlLength), "Aml Length"},
226 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Method.AmlStart), "Aml Start"}
229 static ACPI_EXDUMP_INFO AcpiExDumpMutex[5] =
231 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpMutex), NULL},
232 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Mutex.SyncLevel), "Sync Level"},
233 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Mutex.OwnerThread), "Owner Thread"},
234 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET (Mutex.AcquisitionDepth), "Acquire Depth"},
235 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Mutex.OsMutex), "OsMutex"}
238 static ACPI_EXDUMP_INFO AcpiExDumpRegion[7] =
240 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpRegion), NULL},
241 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Region.SpaceId), "Space Id"},
242 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Region.Flags), "Flags"},
243 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET (Region.Address), "Address"},
244 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Region.Length), "Length"},
245 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Region.Handler), "Handler"},
246 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Region.Next), "Next"}
249 static ACPI_EXDUMP_INFO AcpiExDumpPower[5] =
251 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpPower), NULL},
252 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (PowerResource.SystemLevel), "System Level"},
253 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (PowerResource.ResourceOrder), "Resource Order"},
254 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (PowerResource.SystemNotify), "System Notify"},
255 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (PowerResource.DeviceNotify), "Device Notify"}
258 static ACPI_EXDUMP_INFO AcpiExDumpProcessor[7] =
260 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpProcessor), NULL},
261 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Processor.ProcId), "Processor ID"},
262 {ACPI_EXD_UINT8 , ACPI_EXD_OFFSET (Processor.Length), "Length"},
263 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET (Processor.Address), "Address"},
264 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Processor.SystemNotify), "System Notify"},
265 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Processor.DeviceNotify), "Device Notify"},
266 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Processor.Handler), "Handler"}
269 static ACPI_EXDUMP_INFO AcpiExDumpThermal[4] =
271 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpThermal), NULL},
272 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (ThermalZone.SystemNotify), "System Notify"},
273 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (ThermalZone.DeviceNotify), "Device Notify"},
274 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (ThermalZone.Handler), "Handler"}
277 static ACPI_EXDUMP_INFO AcpiExDumpBufferField[3] =
279 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpBufferField), NULL},
280 {ACPI_EXD_FIELD, 0, NULL},
281 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (BufferField.BufferObj), "Buffer Object"}
284 static ACPI_EXDUMP_INFO AcpiExDumpRegionField[3] =
286 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpRegionField), NULL},
287 {ACPI_EXD_FIELD, 0, NULL},
288 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Field.RegionObj), "Region Object"}
291 static ACPI_EXDUMP_INFO AcpiExDumpBankField[5] =
293 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpBankField), NULL},
294 {ACPI_EXD_FIELD, 0, NULL},
295 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (BankField.Value), "Value"},
296 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (BankField.RegionObj), "Region Object"},
297 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (BankField.BankObj), "Bank Object"}
300 static ACPI_EXDUMP_INFO AcpiExDumpIndexField[5] =
302 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpBankField), NULL},
303 {ACPI_EXD_FIELD, 0, NULL},
304 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (IndexField.Value), "Value"},
305 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (IndexField.IndexObj), "Index Object"},
306 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (IndexField.DataObj), "Data Object"}
309 static ACPI_EXDUMP_INFO AcpiExDumpReference[8] =
311 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpReference), NULL},
312 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Reference.Class), "Class"},
313 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Reference.TargetType), "Target Type"},
314 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Reference.Value), "Value"},
315 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Reference.Object), "Object Desc"},
316 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Reference.Node), "Node"},
317 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Reference.Where), "Where"},
318 {ACPI_EXD_REFERENCE,0, NULL}
321 static ACPI_EXDUMP_INFO AcpiExDumpAddressHandler[6] =
323 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpAddressHandler), NULL},
324 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (AddressSpace.SpaceId), "Space Id"},
325 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (AddressSpace.Next), "Next"},
326 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (AddressSpace.RegionList), "Region List"},
327 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (AddressSpace.Node), "Node"},
328 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (AddressSpace.Context), "Context"}
331 static ACPI_EXDUMP_INFO AcpiExDumpNotify[3] =
333 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpNotify), NULL},
334 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Notify.Node), "Node"},
335 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Notify.Context), "Context"}
339 /* Miscellaneous tables */
341 static ACPI_EXDUMP_INFO AcpiExDumpCommon[4] =
343 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpCommon), NULL},
344 {ACPI_EXD_TYPE , 0, NULL},
345 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET (Common.ReferenceCount), "Reference Count"},
346 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Common.Flags), "Flags"}
349 static ACPI_EXDUMP_INFO AcpiExDumpFieldCommon[7] =
351 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpFieldCommon), NULL},
352 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (CommonField.FieldFlags), "Field Flags"},
353 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (CommonField.AccessByteWidth), "Access Byte Width"},
354 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (CommonField.BitLength), "Bit Length"},
355 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (CommonField.StartFieldBitOffset),"Field Bit Offset"},
356 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (CommonField.BaseByteOffset), "Base Byte Offset"},
357 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (CommonField.Node), "Parent Node"}
360 static ACPI_EXDUMP_INFO AcpiExDumpNode[5] =
362 {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE (AcpiExDumpNode), NULL},
363 {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET (Flags), "Flags"},
364 {ACPI_EXD_UINT8, ACPI_EXD_NSOFFSET (OwnerId), "Owner Id"},
365 {ACPI_EXD_POINTER, ACPI_EXD_NSOFFSET (Child), "Child List"},
366 {ACPI_EXD_POINTER, ACPI_EXD_NSOFFSET (Peer), "Next Peer"}
370 /* Dispatch table, indexed by object type */
372 static ACPI_EXDUMP_INFO *AcpiExDumpInfo[] =
374 NULL,
375 AcpiExDumpInteger,
376 AcpiExDumpString,
377 AcpiExDumpBuffer,
378 AcpiExDumpPackage,
379 NULL,
380 AcpiExDumpDevice,
381 AcpiExDumpEvent,
382 AcpiExDumpMethod,
383 AcpiExDumpMutex,
384 AcpiExDumpRegion,
385 AcpiExDumpPower,
386 AcpiExDumpProcessor,
387 AcpiExDumpThermal,
388 AcpiExDumpBufferField,
389 NULL,
390 NULL,
391 AcpiExDumpRegionField,
392 AcpiExDumpBankField,
393 AcpiExDumpIndexField,
394 AcpiExDumpReference,
395 NULL,
396 NULL,
397 AcpiExDumpNotify,
398 AcpiExDumpAddressHandler,
399 NULL,
400 NULL,
401 NULL
405 /*******************************************************************************
407 * FUNCTION: AcpiExDumpObject
409 * PARAMETERS: ObjDesc - Descriptor to dump
410 * Info - Info table corresponding to this object
411 * type
413 * RETURN: None
415 * DESCRIPTION: Walk the info table for this object
417 ******************************************************************************/
419 static void
420 AcpiExDumpObject (
421 ACPI_OPERAND_OBJECT *ObjDesc,
422 ACPI_EXDUMP_INFO *Info)
424 UINT8 *Target;
425 char *Name;
426 UINT8 Count;
429 if (!Info)
431 AcpiOsPrintf (
432 "ExDumpObject: Display not implemented for object type %s\n",
433 AcpiUtGetObjectTypeName (ObjDesc));
434 return;
437 /* First table entry must contain the table length (# of table entries) */
439 Count = Info->Offset;
441 while (Count)
443 Target = ACPI_ADD_PTR (UINT8, ObjDesc, Info->Offset);
444 Name = Info->Name;
446 switch (Info->Opcode)
448 case ACPI_EXD_INIT:
449 break;
451 case ACPI_EXD_TYPE:
453 AcpiExOutString ("Type", AcpiUtGetObjectTypeName (ObjDesc));
454 break;
456 case ACPI_EXD_UINT8:
458 AcpiOsPrintf ("%20s : %2.2X\n", Name, *Target);
459 break;
461 case ACPI_EXD_UINT16:
463 AcpiOsPrintf ("%20s : %4.4X\n", Name, ACPI_GET16 (Target));
464 break;
466 case ACPI_EXD_UINT32:
468 AcpiOsPrintf ("%20s : %8.8X\n", Name, ACPI_GET32 (Target));
469 break;
471 case ACPI_EXD_UINT64:
473 AcpiOsPrintf ("%20s : %8.8X%8.8X\n", "Value",
474 ACPI_FORMAT_UINT64 (ACPI_GET64 (Target)));
475 break;
477 case ACPI_EXD_POINTER:
478 case ACPI_EXD_ADDRESS:
480 AcpiExOutPointer (Name, *ACPI_CAST_PTR (void *, Target));
481 break;
483 case ACPI_EXD_STRING:
485 AcpiUtPrintString (ObjDesc->String.Pointer, ACPI_UINT8_MAX);
486 AcpiOsPrintf ("\n");
487 break;
489 case ACPI_EXD_BUFFER:
491 ACPI_DUMP_BUFFER (ObjDesc->Buffer.Pointer, ObjDesc->Buffer.Length);
492 break;
494 case ACPI_EXD_PACKAGE:
496 /* Dump the package contents */
498 AcpiOsPrintf ("\nPackage Contents:\n");
499 AcpiExDumpPackageObj (ObjDesc, 0, 0);
500 break;
502 case ACPI_EXD_FIELD:
504 AcpiExDumpObject (ObjDesc, AcpiExDumpFieldCommon);
505 break;
507 case ACPI_EXD_REFERENCE:
509 AcpiExOutString ("Class Name",
510 ACPI_CAST_PTR (char, AcpiUtGetReferenceName (ObjDesc)));
511 AcpiExDumpReferenceObj (ObjDesc);
512 break;
514 default:
516 AcpiOsPrintf ("**** Invalid table opcode [%X] ****\n",
517 Info->Opcode);
518 return;
521 Info++;
522 Count--;
527 /*******************************************************************************
529 * FUNCTION: AcpiExDumpOperand
531 * PARAMETERS: *ObjDesc - Pointer to entry to be dumped
532 * Depth - Current nesting depth
534 * RETURN: None
536 * DESCRIPTION: Dump an operand object
538 ******************************************************************************/
540 void
541 AcpiExDumpOperand (
542 ACPI_OPERAND_OBJECT *ObjDesc,
543 UINT32 Depth)
545 UINT32 Length;
546 UINT32 Index;
549 ACPI_FUNCTION_NAME (ExDumpOperand)
552 if (!((ACPI_LV_EXEC & AcpiDbgLevel) && (_COMPONENT & AcpiDbgLayer)))
554 return;
557 if (!ObjDesc)
559 /* This could be a null element of a package */
561 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Null Object Descriptor\n"));
562 return;
565 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) == ACPI_DESC_TYPE_NAMED)
567 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "%p Namespace Node: ", ObjDesc));
568 ACPI_DUMP_ENTRY (ObjDesc, ACPI_LV_EXEC);
569 return;
572 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_OPERAND)
574 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
575 "%p is not a node or operand object: [%s]\n",
576 ObjDesc, AcpiUtGetDescriptorName (ObjDesc)));
577 ACPI_DUMP_BUFFER (ObjDesc, sizeof (ACPI_OPERAND_OBJECT));
578 return;
581 /* ObjDesc is a valid object */
583 if (Depth > 0)
585 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "%*s[%u] %p ",
586 Depth, " ", Depth, ObjDesc));
588 else
590 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "%p ", ObjDesc));
593 /* Decode object type */
595 switch (ObjDesc->Common.Type)
597 case ACPI_TYPE_LOCAL_REFERENCE:
599 AcpiOsPrintf ("Reference: [%s] ", AcpiUtGetReferenceName (ObjDesc));
601 switch (ObjDesc->Reference.Class)
603 case ACPI_REFCLASS_DEBUG:
605 AcpiOsPrintf ("\n");
606 break;
609 case ACPI_REFCLASS_INDEX:
611 AcpiOsPrintf ("%p\n", ObjDesc->Reference.Object);
612 break;
615 case ACPI_REFCLASS_TABLE:
617 AcpiOsPrintf ("Table Index %X\n", ObjDesc->Reference.Value);
618 break;
621 case ACPI_REFCLASS_REFOF:
623 AcpiOsPrintf ("%p [%s]\n", ObjDesc->Reference.Object,
624 AcpiUtGetTypeName (((ACPI_OPERAND_OBJECT *)
625 ObjDesc->Reference.Object)->Common.Type));
626 break;
629 case ACPI_REFCLASS_NAME:
631 AcpiOsPrintf ("- [%4.4s]\n", ObjDesc->Reference.Node->Name.Ascii);
632 break;
635 case ACPI_REFCLASS_ARG:
636 case ACPI_REFCLASS_LOCAL:
638 AcpiOsPrintf ("%X\n", ObjDesc->Reference.Value);
639 break;
642 default: /* Unknown reference class */
644 AcpiOsPrintf ("%2.2X\n", ObjDesc->Reference.Class);
645 break;
647 break;
650 case ACPI_TYPE_BUFFER:
652 AcpiOsPrintf ("Buffer length %.2X @ %p\n",
653 ObjDesc->Buffer.Length, ObjDesc->Buffer.Pointer);
655 /* Debug only -- dump the buffer contents */
657 if (ObjDesc->Buffer.Pointer)
659 Length = ObjDesc->Buffer.Length;
660 if (Length > 128)
662 Length = 128;
665 AcpiOsPrintf ("Buffer Contents: (displaying length 0x%.2X)\n",
666 Length);
667 ACPI_DUMP_BUFFER (ObjDesc->Buffer.Pointer, Length);
669 break;
672 case ACPI_TYPE_INTEGER:
674 AcpiOsPrintf ("Integer %8.8X%8.8X\n",
675 ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
676 break;
679 case ACPI_TYPE_PACKAGE:
681 AcpiOsPrintf ("Package [Len %X] ElementArray %p\n",
682 ObjDesc->Package.Count, ObjDesc->Package.Elements);
685 * If elements exist, package element pointer is valid,
686 * and debug_level exceeds 1, dump package's elements.
688 if (ObjDesc->Package.Count &&
689 ObjDesc->Package.Elements &&
690 AcpiDbgLevel > 1)
692 for (Index = 0; Index < ObjDesc->Package.Count; Index++)
694 AcpiExDumpOperand (ObjDesc->Package.Elements[Index], Depth+1);
697 break;
700 case ACPI_TYPE_REGION:
702 AcpiOsPrintf ("Region %s (%X)",
703 AcpiUtGetRegionName (ObjDesc->Region.SpaceId),
704 ObjDesc->Region.SpaceId);
707 * If the address and length have not been evaluated,
708 * don't print them.
710 if (!(ObjDesc->Region.Flags & AOPOBJ_DATA_VALID))
712 AcpiOsPrintf ("\n");
714 else
716 AcpiOsPrintf (" base %8.8X%8.8X Length %X\n",
717 ACPI_FORMAT_NATIVE_UINT (ObjDesc->Region.Address),
718 ObjDesc->Region.Length);
720 break;
723 case ACPI_TYPE_STRING:
725 AcpiOsPrintf ("String length %X @ %p ",
726 ObjDesc->String.Length,
727 ObjDesc->String.Pointer);
729 AcpiUtPrintString (ObjDesc->String.Pointer, ACPI_UINT8_MAX);
730 AcpiOsPrintf ("\n");
731 break;
734 case ACPI_TYPE_LOCAL_BANK_FIELD:
736 AcpiOsPrintf ("BankField\n");
737 break;
740 case ACPI_TYPE_LOCAL_REGION_FIELD:
742 AcpiOsPrintf ("RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at "
743 "byte=%X bit=%X of below:\n",
744 ObjDesc->Field.BitLength,
745 ObjDesc->Field.AccessByteWidth,
746 ObjDesc->Field.FieldFlags & AML_FIELD_LOCK_RULE_MASK,
747 ObjDesc->Field.FieldFlags & AML_FIELD_UPDATE_RULE_MASK,
748 ObjDesc->Field.BaseByteOffset,
749 ObjDesc->Field.StartFieldBitOffset);
751 AcpiExDumpOperand (ObjDesc->Field.RegionObj, Depth+1);
752 break;
755 case ACPI_TYPE_LOCAL_INDEX_FIELD:
757 AcpiOsPrintf ("IndexField\n");
758 break;
761 case ACPI_TYPE_BUFFER_FIELD:
763 AcpiOsPrintf ("BufferField: %X bits at byte %X bit %X of\n",
764 ObjDesc->BufferField.BitLength,
765 ObjDesc->BufferField.BaseByteOffset,
766 ObjDesc->BufferField.StartFieldBitOffset);
768 if (!ObjDesc->BufferField.BufferObj)
770 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "*NULL*\n"));
772 else if ((ObjDesc->BufferField.BufferObj)->Common.Type !=
773 ACPI_TYPE_BUFFER)
775 AcpiOsPrintf ("*not a Buffer*\n");
777 else
779 AcpiExDumpOperand (ObjDesc->BufferField.BufferObj, Depth+1);
781 break;
784 case ACPI_TYPE_EVENT:
786 AcpiOsPrintf ("Event\n");
787 break;
790 case ACPI_TYPE_METHOD:
792 AcpiOsPrintf ("Method(%X) @ %p:%X\n",
793 ObjDesc->Method.ParamCount,
794 ObjDesc->Method.AmlStart,
795 ObjDesc->Method.AmlLength);
796 break;
799 case ACPI_TYPE_MUTEX:
801 AcpiOsPrintf ("Mutex\n");
802 break;
805 case ACPI_TYPE_DEVICE:
807 AcpiOsPrintf ("Device\n");
808 break;
811 case ACPI_TYPE_POWER:
813 AcpiOsPrintf ("Power\n");
814 break;
817 case ACPI_TYPE_PROCESSOR:
819 AcpiOsPrintf ("Processor\n");
820 break;
823 case ACPI_TYPE_THERMAL:
825 AcpiOsPrintf ("Thermal\n");
826 break;
829 default:
830 /* Unknown Type */
832 AcpiOsPrintf ("Unknown Type %X\n", ObjDesc->Common.Type);
833 break;
836 return;
840 /*******************************************************************************
842 * FUNCTION: AcpiExDumpOperands
844 * PARAMETERS: Operands - A list of Operand objects
845 * OpcodeName - AML opcode name
846 * NumOperands - Operand count for this opcode
848 * DESCRIPTION: Dump the operands associated with the opcode
850 ******************************************************************************/
852 void
853 AcpiExDumpOperands (
854 ACPI_OPERAND_OBJECT **Operands,
855 const char *OpcodeName,
856 UINT32 NumOperands)
858 ACPI_FUNCTION_NAME (ExDumpOperands);
861 if (!OpcodeName)
863 OpcodeName = "UNKNOWN";
866 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
867 "**** Start operand dump for opcode [%s], %u operands\n",
868 OpcodeName, NumOperands));
870 if (NumOperands == 0)
872 NumOperands = 1;
875 /* Dump the individual operands */
877 while (NumOperands)
879 AcpiExDumpOperand (*Operands, 0);
880 Operands++;
881 NumOperands--;
884 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
885 "**** End operand dump for [%s]\n", OpcodeName));
886 return;
890 /*******************************************************************************
892 * FUNCTION: AcpiExOut* functions
894 * PARAMETERS: Title - Descriptive text
895 * Value - Value to be displayed
897 * DESCRIPTION: Object dump output formatting functions. These functions
898 * reduce the number of format strings required and keeps them
899 * all in one place for easy modification.
901 ******************************************************************************/
903 static void
904 AcpiExOutString (
905 char *Title,
906 char *Value)
908 AcpiOsPrintf ("%20s : %s\n", Title, Value);
911 static void
912 AcpiExOutPointer (
913 char *Title,
914 void *Value)
916 AcpiOsPrintf ("%20s : %p\n", Title, Value);
920 /*******************************************************************************
922 * FUNCTION: AcpiExDumpNamespaceNode
924 * PARAMETERS: Node - Descriptor to dump
925 * Flags - Force display if TRUE
927 * DESCRIPTION: Dumps the members of the given.Node
929 ******************************************************************************/
931 void
932 AcpiExDumpNamespaceNode (
933 ACPI_NAMESPACE_NODE *Node,
934 UINT32 Flags)
937 ACPI_FUNCTION_ENTRY ();
940 if (!Flags)
942 if (!((ACPI_LV_OBJECTS & AcpiDbgLevel) && (_COMPONENT & AcpiDbgLayer)))
944 return;
948 AcpiOsPrintf ("%20s : %4.4s\n", "Name", AcpiUtGetNodeName (Node));
949 AcpiExOutString ("Type", AcpiUtGetTypeName (Node->Type));
950 AcpiExOutPointer ("Attached Object", AcpiNsGetAttachedObject (Node));
951 AcpiExOutPointer ("Parent", Node->Parent);
953 AcpiExDumpObject (ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, Node),
954 AcpiExDumpNode);
958 /*******************************************************************************
960 * FUNCTION: AcpiExDumpReferenceObj
962 * PARAMETERS: Object - Descriptor to dump
964 * DESCRIPTION: Dumps a reference object
966 ******************************************************************************/
968 static void
969 AcpiExDumpReferenceObj (
970 ACPI_OPERAND_OBJECT *ObjDesc)
972 ACPI_BUFFER RetBuf;
973 ACPI_STATUS Status;
976 RetBuf.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
978 if (ObjDesc->Reference.Class == ACPI_REFCLASS_NAME)
980 AcpiOsPrintf (" %p ", ObjDesc->Reference.Node);
982 Status = AcpiNsHandleToPathname (ObjDesc->Reference.Node, &RetBuf);
983 if (ACPI_FAILURE (Status))
985 AcpiOsPrintf (" Could not convert name to pathname\n");
987 else
989 AcpiOsPrintf ("%s\n", (char *) RetBuf.Pointer);
990 ACPI_FREE (RetBuf.Pointer);
993 else if (ObjDesc->Reference.Object)
995 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) == ACPI_DESC_TYPE_OPERAND)
997 AcpiOsPrintf (" Target: %p", ObjDesc->Reference.Object);
998 if (ObjDesc->Reference.Class == ACPI_REFCLASS_TABLE)
1000 AcpiOsPrintf (" Table Index: %X\n", ObjDesc->Reference.Value);
1002 else
1004 AcpiOsPrintf (" Target: %p [%s]\n", ObjDesc->Reference.Object,
1005 AcpiUtGetTypeName (((ACPI_OPERAND_OBJECT *)
1006 ObjDesc->Reference.Object)->Common.Type));
1009 else
1011 AcpiOsPrintf (" Target: %p\n", ObjDesc->Reference.Object);
1017 /*******************************************************************************
1019 * FUNCTION: AcpiExDumpPackageObj
1021 * PARAMETERS: ObjDesc - Descriptor to dump
1022 * Level - Indentation Level
1023 * Index - Package index for this object
1025 * DESCRIPTION: Dumps the elements of the package
1027 ******************************************************************************/
1029 static void
1030 AcpiExDumpPackageObj (
1031 ACPI_OPERAND_OBJECT *ObjDesc,
1032 UINT32 Level,
1033 UINT32 Index)
1035 UINT32 i;
1038 /* Indentation and index output */
1040 if (Level > 0)
1042 for (i = 0; i < Level; i++)
1044 AcpiOsPrintf (" ");
1047 AcpiOsPrintf ("[%.2d] ", Index);
1050 AcpiOsPrintf ("%p ", ObjDesc);
1052 /* Null package elements are allowed */
1054 if (!ObjDesc)
1056 AcpiOsPrintf ("[Null Object]\n");
1057 return;
1060 /* Packages may only contain a few object types */
1062 switch (ObjDesc->Common.Type)
1064 case ACPI_TYPE_INTEGER:
1066 AcpiOsPrintf ("[Integer] = %8.8X%8.8X\n",
1067 ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
1068 break;
1071 case ACPI_TYPE_STRING:
1073 AcpiOsPrintf ("[String] Value: ");
1074 for (i = 0; i < ObjDesc->String.Length; i++)
1076 AcpiOsPrintf ("%c", ObjDesc->String.Pointer[i]);
1078 AcpiOsPrintf ("\n");
1079 break;
1082 case ACPI_TYPE_BUFFER:
1084 AcpiOsPrintf ("[Buffer] Length %.2X = ", ObjDesc->Buffer.Length);
1085 if (ObjDesc->Buffer.Length)
1087 AcpiUtDumpBuffer (ACPI_CAST_PTR (UINT8, ObjDesc->Buffer.Pointer),
1088 ObjDesc->Buffer.Length, DB_DWORD_DISPLAY, _COMPONENT);
1090 else
1092 AcpiOsPrintf ("\n");
1094 break;
1097 case ACPI_TYPE_PACKAGE:
1099 AcpiOsPrintf ("[Package] Contains %u Elements:\n",
1100 ObjDesc->Package.Count);
1102 for (i = 0; i < ObjDesc->Package.Count; i++)
1104 AcpiExDumpPackageObj (ObjDesc->Package.Elements[i], Level+1, i);
1106 break;
1109 case ACPI_TYPE_LOCAL_REFERENCE:
1111 AcpiOsPrintf ("[Object Reference] Type [%s] %2.2X",
1112 AcpiUtGetReferenceName (ObjDesc),
1113 ObjDesc->Reference.Class);
1114 AcpiExDumpReferenceObj (ObjDesc);
1115 break;
1118 default:
1120 AcpiOsPrintf ("[Unknown Type] %X\n", ObjDesc->Common.Type);
1121 break;
1126 /*******************************************************************************
1128 * FUNCTION: AcpiExDumpObjectDescriptor
1130 * PARAMETERS: ObjDesc - Descriptor to dump
1131 * Flags - Force display if TRUE
1133 * DESCRIPTION: Dumps the members of the object descriptor given.
1135 ******************************************************************************/
1137 void
1138 AcpiExDumpObjectDescriptor (
1139 ACPI_OPERAND_OBJECT *ObjDesc,
1140 UINT32 Flags)
1142 ACPI_FUNCTION_TRACE (ExDumpObjectDescriptor);
1145 if (!ObjDesc)
1147 return_VOID;
1150 if (!Flags)
1152 if (!((ACPI_LV_OBJECTS & AcpiDbgLevel) && (_COMPONENT & AcpiDbgLayer)))
1154 return_VOID;
1158 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) == ACPI_DESC_TYPE_NAMED)
1160 AcpiExDumpNamespaceNode ((ACPI_NAMESPACE_NODE *) ObjDesc, Flags);
1162 AcpiOsPrintf ("\nAttached Object (%p):\n",
1163 ((ACPI_NAMESPACE_NODE *) ObjDesc)->Object);
1165 AcpiExDumpObjectDescriptor (
1166 ((ACPI_NAMESPACE_NODE *) ObjDesc)->Object, Flags);
1167 return_VOID;
1170 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_OPERAND)
1172 AcpiOsPrintf (
1173 "ExDumpObjectDescriptor: %p is not an ACPI operand object: [%s]\n",
1174 ObjDesc, AcpiUtGetDescriptorName (ObjDesc));
1175 return_VOID;
1178 if (ObjDesc->Common.Type > ACPI_TYPE_NS_NODE_MAX)
1180 return_VOID;
1183 /* Common Fields */
1185 AcpiExDumpObject (ObjDesc, AcpiExDumpCommon);
1187 /* Object-specific fields */
1189 AcpiExDumpObject (ObjDesc, AcpiExDumpInfo[ObjDesc->Common.Type]);
1190 return_VOID;
1193 #endif