Import acpica-unix-20061109 from Intel.
[dragonfly.git] / sys / contrib / dev / acpica-unix-20061109 / disassembler / dmopcode.c
blob495182eca0f1e537e8bbb9635a605128e54ec0e7
1 /*******************************************************************************
3 * Module Name: dmopcode - AML disassembler, specific AML opcodes
4 * $Revision: 1.99 $
6 ******************************************************************************/
8 /******************************************************************************
10 * 1. Copyright Notice
12 * Some or all of this work - Copyright (c) 1999 - 2006, Intel Corp.
13 * All rights reserved.
15 * 2. License
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 * license (with the right to sublicense), under only those claims of Intel
31 * patents that are infringed by the Original Intel Code, to make, use, sell,
32 * offer to sell, and import the Covered Code and derivative works thereof
33 * solely to the minimum extent necessary to exercise the above copyright
34 * license, and in no event shall the patent license extend to any additions
35 * to or modifications of the Original Intel Code. No other license or right
36 * is granted directly or by implication, estoppel or otherwise;
38 * The above copyright and patent license is granted only if the following
39 * conditions are met:
41 * 3. Conditions
43 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 * Redistribution of source code of any substantial portion of the Covered
45 * Code or modification with rights to further distribute source must include
46 * the above Copyright Notice, the above License, this list of Conditions,
47 * and the following Disclaimer and Export Compliance provision. In addition,
48 * Licensee must cause all Covered Code to which Licensee contributes to
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change. Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee. Licensee
52 * must include a prominent statement that the modification is derived,
53 * directly or indirectly, from Original Intel Code.
55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 * Redistribution of source code of any substantial portion of the Covered
57 * Code or modification without rights to further distribute source must
58 * include the following Disclaimer and Export Compliance provision in the
59 * documentation and/or other materials provided with distribution. In
60 * addition, Licensee may not authorize further sublicense of source of any
61 * portion of the Covered Code, and must include terms to the effect that the
62 * license from Licensee to its licensee is limited to the intellectual
63 * property embodied in the software Licensee provides to its licensee, and
64 * not to intellectual property embodied in modifications its licensee may
65 * make.
67 * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 * substantial portion of the Covered Code or modification must reproduce the
69 * above Copyright Notice, and the following Disclaimer and Export Compliance
70 * provision in the documentation and/or other materials provided with the
71 * distribution.
73 * 3.4. Intel retains all right, title, and interest in and to the Original
74 * Intel Code.
76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 * Intel shall be used in advertising or otherwise to promote the sale, use or
78 * other dealings in products derived from or relating to the Covered Code
79 * without prior written authorization from Intel.
81 * 4. Disclaimer and Export Compliance
83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
86 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
87 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89 * PARTICULAR PURPOSE.
91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98 * LIMITED REMEDY.
100 * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 * software or system incorporating such software without first obtaining any
102 * required license or other approval from the U. S. Department of Commerce or
103 * any other agency or department of the United States Government. In the
104 * event Licensee exports any such software from the United States or
105 * re-exports any such software from a foreign destination, Licensee shall
106 * ensure that the distribution and export/re-export of the software is in
107 * compliance with all laws, regulations, orders, or other restrictions of the
108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 * any of its subsidiaries will export/re-export any technical data, process,
110 * software, or service, directly or indirectly, to any country for which the
111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
115 *****************************************************************************/
117 #include "acpi.h"
118 #include "acparser.h"
119 #include "amlcode.h"
120 #include "acdisasm.h"
122 #ifdef ACPI_DISASSEMBLER
124 #define _COMPONENT ACPI_CA_DEBUGGER
125 ACPI_MODULE_NAME ("dmopcode")
127 /* Local prototypes */
129 static void
130 AcpiDmMatchKeyword (
131 ACPI_PARSE_OBJECT *Op);
134 /*******************************************************************************
136 * FUNCTION: AcpiDmMethodFlags
138 * PARAMETERS: Op - Method Object to be examined
140 * RETURN: None
142 * DESCRIPTION: Decode control method flags
144 ******************************************************************************/
146 void
147 AcpiDmMethodFlags (
148 ACPI_PARSE_OBJECT *Op)
150 UINT32 Flags;
151 UINT32 Args;
154 /* The next Op contains the flags */
156 Op = AcpiPsGetDepthNext (NULL, Op);
157 Flags = (UINT8) Op->Common.Value.Integer;
158 Args = Flags & 0x07;
160 /* Mark the Op as completed */
162 Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
164 /* 1) Method argument count */
166 AcpiOsPrintf (", %d, ", Args);
168 /* 2) Serialize rule */
170 if (!(Flags & 0x08))
172 AcpiOsPrintf ("Not");
175 AcpiOsPrintf ("Serialized");
177 /* 3) SyncLevel */
179 if (Flags & 0xF0)
181 AcpiOsPrintf (", %d", Flags >> 4);
186 /*******************************************************************************
188 * FUNCTION: AcpiDmFieldFlags
190 * PARAMETERS: Op - Field Object to be examined
192 * RETURN: None
194 * DESCRIPTION: Decode Field definition flags
196 ******************************************************************************/
198 void
199 AcpiDmFieldFlags (
200 ACPI_PARSE_OBJECT *Op)
202 UINT32 Flags;
205 /* The next peer Op (not child op) contains the flags */
207 Op = Op->Common.Next;
208 Flags = (UINT8) Op->Common.Value.Integer;
210 /* Mark the Op as completed */
212 Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
214 AcpiOsPrintf ("%s, ", AcpiGbl_AccessTypes [Flags & 0x07]);
215 AcpiOsPrintf ("%s, ", AcpiGbl_LockRule [(Flags & 0x10) >> 4]);
216 AcpiOsPrintf ("%s)", AcpiGbl_UpdateRules [(Flags & 0x60) >> 5]);
220 /*******************************************************************************
222 * FUNCTION: AcpiDmAddressSpace
224 * PARAMETERS: SpaceId - ID to be translated
226 * RETURN: None
228 * DESCRIPTION: Decode a SpaceId to an AddressSpaceKeyword
230 ******************************************************************************/
232 void
233 AcpiDmAddressSpace (
234 UINT8 SpaceId)
237 if (SpaceId >= ACPI_NUM_PREDEFINED_REGIONS)
239 if (SpaceId == 0x7F)
241 AcpiOsPrintf ("FFixedHW, ");
243 else
245 AcpiOsPrintf ("0x%.2X, ", SpaceId);
248 else
250 AcpiOsPrintf ("%s, ", AcpiGbl_RegionTypes [SpaceId]);
255 /*******************************************************************************
257 * FUNCTION: AcpiDmRegionFlags
259 * PARAMETERS: Op - Object to be examined
261 * RETURN: None
263 * DESCRIPTION: Decode OperationRegion flags
265 ******************************************************************************/
267 void
268 AcpiDmRegionFlags (
269 ACPI_PARSE_OBJECT *Op)
273 /* The next Op contains the SpaceId */
275 Op = AcpiPsGetDepthNext (NULL, Op);
277 /* Mark the Op as completed */
279 Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
281 AcpiOsPrintf (", ");
282 AcpiDmAddressSpace ((UINT8) Op->Common.Value.Integer);
286 /*******************************************************************************
288 * FUNCTION: AcpiDmMatchOp
290 * PARAMETERS: Op - Match Object to be examined
292 * RETURN: None
294 * DESCRIPTION: Decode Match opcode operands
296 ******************************************************************************/
298 void
299 AcpiDmMatchOp (
300 ACPI_PARSE_OBJECT *Op)
302 ACPI_PARSE_OBJECT *NextOp;
305 NextOp = AcpiPsGetDepthNext (NULL, Op);
306 NextOp = NextOp->Common.Next;
308 if (!NextOp)
310 /* Handle partial tree during single-step */
312 return;
315 /* Mark the two nodes that contain the encoding for the match keywords */
317 NextOp->Common.DisasmOpcode = ACPI_DASM_MATCHOP;
319 NextOp = NextOp->Common.Next;
320 NextOp = NextOp->Common.Next;
321 NextOp->Common.DisasmOpcode = ACPI_DASM_MATCHOP;
325 /*******************************************************************************
327 * FUNCTION: AcpiDmMatchKeyword
329 * PARAMETERS: Op - Match Object to be examined
331 * RETURN: None
333 * DESCRIPTION: Decode Match opcode operands
335 ******************************************************************************/
337 static void
338 AcpiDmMatchKeyword (
339 ACPI_PARSE_OBJECT *Op)
343 if (((UINT32) Op->Common.Value.Integer) > ACPI_MAX_MATCH_OPCODE)
345 AcpiOsPrintf ("/* Unknown Match Keyword encoding */");
347 else
349 AcpiOsPrintf ("%s", ACPI_CAST_PTR (char,
350 AcpiGbl_MatchOps[(ACPI_SIZE) Op->Common.Value.Integer]));
355 /*******************************************************************************
357 * FUNCTION: AcpiDmDisassembleOneOp
359 * PARAMETERS: WalkState - Current walk info
360 * Info - Parse tree walk info
361 * Op - Op that is to be printed
363 * RETURN: None
365 * DESCRIPTION: Disassemble a single AML opcode
367 ******************************************************************************/
369 void
370 AcpiDmDisassembleOneOp (
371 ACPI_WALK_STATE *WalkState,
372 ACPI_OP_WALK_INFO *Info,
373 ACPI_PARSE_OBJECT *Op)
375 const ACPI_OPCODE_INFO *OpInfo = NULL;
376 UINT32 Offset;
377 UINT32 Length;
378 ACPI_PARSE_OBJECT *Child;
379 ACPI_STATUS Status;
382 if (!Op)
384 AcpiOsPrintf ("<NULL OP PTR>");
385 return;
388 switch (Op->Common.DisasmOpcode)
390 case ACPI_DASM_MATCHOP:
392 AcpiDmMatchKeyword (Op);
393 return;
395 case ACPI_DASM_LNOT_SUFFIX:
396 switch (Op->Common.AmlOpcode)
398 case AML_LEQUAL_OP:
399 AcpiOsPrintf ("LNotEqual");
400 break;
402 case AML_LGREATER_OP:
403 AcpiOsPrintf ("LLessEqual");
404 break;
406 case AML_LLESS_OP:
407 AcpiOsPrintf ("LGreaterEqual");
408 break;
410 Op->Common.DisasmOpcode = 0;
411 Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
412 return;
414 default:
415 break;
419 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
421 /* The op and arguments */
423 switch (Op->Common.AmlOpcode)
425 case AML_LNOT_OP:
427 Child = Op->Common.Value.Arg;
428 if ((Child->Common.AmlOpcode == AML_LEQUAL_OP) ||
429 (Child->Common.AmlOpcode == AML_LGREATER_OP) ||
430 (Child->Common.AmlOpcode == AML_LLESS_OP))
432 Child->Common.DisasmOpcode = ACPI_DASM_LNOT_SUFFIX;
433 Op->Common.DisasmOpcode = ACPI_DASM_LNOT_PREFIX;
435 else
437 AcpiOsPrintf ("%s", OpInfo->Name);
439 break;
441 case AML_BYTE_OP:
443 AcpiOsPrintf ("0x%2.2X", (UINT32) Op->Common.Value.Integer);
444 break;
447 case AML_WORD_OP:
449 if (Op->Common.DisasmOpcode == ACPI_DASM_EISAID)
451 AcpiDmEisaId ((UINT32) Op->Common.Value.Integer);
453 else
455 AcpiOsPrintf ("0x%4.4X", (UINT32) Op->Common.Value.Integer);
457 break;
460 case AML_DWORD_OP:
462 if (Op->Common.DisasmOpcode == ACPI_DASM_EISAID)
464 AcpiDmEisaId ((UINT32) Op->Common.Value.Integer);
466 else
468 AcpiOsPrintf ("0x%8.8X", (UINT32) Op->Common.Value.Integer);
470 break;
473 case AML_QWORD_OP:
475 AcpiOsPrintf ("0x%8.8X%8.8X", Op->Common.Value.Integer64.Hi,
476 Op->Common.Value.Integer64.Lo);
477 break;
480 case AML_STRING_OP:
482 AcpiUtPrintString (Op->Common.Value.String, ACPI_UINT8_MAX);
483 break;
486 case AML_BUFFER_OP:
489 * Determine the type of buffer. We can have one of the following:
491 * 1) ResourceTemplate containing Resource Descriptors.
492 * 2) Unicode String buffer
493 * 3) ASCII String buffer
494 * 4) Raw data buffer (if none of the above)
496 * Since there are no special AML opcodes to differentiate these
497 * types of buffers, we have to closely look at the data in the
498 * buffer to determine the type.
500 Status = AcpiDmIsResourceTemplate (Op);
501 if (ACPI_SUCCESS (Status))
503 Op->Common.DisasmOpcode = ACPI_DASM_RESOURCE;
504 AcpiOsPrintf ("ResourceTemplate");
505 break;
507 else if (Status == AE_AML_NO_RESOURCE_END_TAG)
509 AcpiOsPrintf ("/**** Is ResourceTemplate, but EndTag not at buffer end ****/ ");
512 if (AcpiDmIsUnicodeBuffer (Op))
514 Op->Common.DisasmOpcode = ACPI_DASM_UNICODE;
515 AcpiOsPrintf ("Unicode (");
517 else if (AcpiDmIsStringBuffer (Op))
519 Op->Common.DisasmOpcode = ACPI_DASM_STRING;
520 AcpiOsPrintf ("Buffer");
522 else
524 Op->Common.DisasmOpcode = ACPI_DASM_BUFFER;
525 AcpiOsPrintf ("Buffer");
527 break;
530 case AML_INT_STATICSTRING_OP:
532 if (Op->Common.Value.String)
534 AcpiOsPrintf ("%s", Op->Common.Value.String);
536 else
538 AcpiOsPrintf ("\"<NULL STATIC STRING PTR>\"");
540 break;
543 case AML_INT_NAMEPATH_OP:
545 AcpiDmNamestring (Op->Common.Value.Name);
546 break;
549 case AML_INT_NAMEDFIELD_OP:
551 Length = AcpiDmDumpName ((char *) &Op->Named.Name);
552 AcpiOsPrintf (",%*.s %d", (int) (5 - Length), " ",
553 (UINT32) Op->Common.Value.Integer);
554 AcpiDmCommaIfFieldMember (Op);
556 Info->BitOffset += (UINT32) Op->Common.Value.Integer;
557 break;
560 case AML_INT_RESERVEDFIELD_OP:
562 /* Offset() -- Must account for previous offsets */
564 Offset = (UINT32) Op->Common.Value.Integer;
565 Info->BitOffset += Offset;
567 if (Info->BitOffset % 8 == 0)
569 AcpiOsPrintf (" Offset (0x%.2X)", ACPI_DIV_8 (Info->BitOffset));
571 else
573 AcpiOsPrintf (" , %d", Offset);
576 AcpiDmCommaIfFieldMember (Op);
577 break;
580 case AML_INT_ACCESSFIELD_OP:
582 AcpiOsPrintf (" AccessAs (%s, ",
583 AcpiGbl_AccessTypes [(UINT32) (Op->Common.Value.Integer >> 8) & 0x7]);
585 AcpiDmDecodeAttribute ((UINT8) Op->Common.Value.Integer);
586 AcpiOsPrintf (")");
587 AcpiDmCommaIfFieldMember (Op);
588 break;
591 case AML_INT_BYTELIST_OP:
593 AcpiDmByteList (Info, Op);
594 break;
597 case AML_INT_METHODCALL_OP:
599 Op = AcpiPsGetDepthNext (NULL, Op);
600 Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
602 AcpiDmNamestring (Op->Common.Value.Name);
603 break;
606 default:
608 /* Just get the opcode name and print it */
610 AcpiOsPrintf ("%s", OpInfo->Name);
613 #ifdef ACPI_DEBUGGER
615 if ((Op->Common.AmlOpcode == AML_INT_RETURN_VALUE_OP) &&
616 (WalkState) &&
617 (WalkState->Results) &&
618 (WalkState->Results->Results.NumResults))
620 AcpiDmDecodeInternalObject (
621 WalkState->Results->Results.ObjDesc [
622 WalkState->Results->Results.NumResults-1]);
624 #endif
625 break;
629 #endif /* ACPI_DISASSEMBLER */