i386/identcpu.c: Add VIA Nano support
[dragonfly.git] / sys / contrib / dev / acpica-unix-20061109 / compiler / aslcodegen.c
blobe537585ce34da8d9e02f8e612a115a438328ffa9
2 /******************************************************************************
4 * Module Name: aslcodegen - AML code generation
5 * $Revision: 1.61 $
7 *****************************************************************************/
9 /******************************************************************************
11 * 1. Copyright Notice
13 * Some or all of this work - Copyright (c) 1999 - 2006, Intel Corp.
14 * All rights reserved.
16 * 2. License
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights. You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.
23 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
24 * copy of the source code appearing in this file ("Covered Code") an
25 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
26 * base code distributed originally by Intel ("Original Intel Code") to copy,
27 * make derivatives, distribute, use and display any portion of the Covered
28 * Code in any form, with the right to sublicense such rights; and
30 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
31 * license (with the right to sublicense), under only those claims of Intel
32 * patents that are infringed by the Original Intel Code, to make, use, sell,
33 * offer to sell, and import the Covered Code and derivative works thereof
34 * solely to the minimum extent necessary to exercise the above copyright
35 * license, and in no event shall the patent license extend to any additions
36 * to or modifications of the Original Intel Code. No other license or right
37 * is granted directly or by implication, estoppel or otherwise;
39 * The above copyright and patent license is granted only if the following
40 * conditions are met:
42 * 3. Conditions
44 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
45 * Redistribution of source code of any substantial portion of the Covered
46 * Code or modification with rights to further distribute source must include
47 * the above Copyright Notice, the above License, this list of Conditions,
48 * and the following Disclaimer and Export Compliance provision. In addition,
49 * Licensee must cause all Covered Code to which Licensee contributes to
50 * contain a file documenting the changes Licensee made to create that Covered
51 * Code and the date of any change. Licensee must include in that file the
52 * documentation of any changes made by any predecessor Licensee. Licensee
53 * must include a prominent statement that the modification is derived,
54 * directly or indirectly, from Original Intel Code.
56 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
57 * Redistribution of source code of any substantial portion of the Covered
58 * Code or modification without rights to further distribute source must
59 * include the following Disclaimer and Export Compliance provision in the
60 * documentation and/or other materials provided with distribution. In
61 * addition, Licensee may not authorize further sublicense of source of any
62 * portion of the Covered Code, and must include terms to the effect that the
63 * license from Licensee to its licensee is limited to the intellectual
64 * property embodied in the software Licensee provides to its licensee, and
65 * not to intellectual property embodied in modifications its licensee may
66 * make.
68 * 3.3. Redistribution of Executable. Redistribution in executable form of any
69 * substantial portion of the Covered Code or modification must reproduce the
70 * above Copyright Notice, and the following Disclaimer and Export Compliance
71 * provision in the documentation and/or other materials provided with the
72 * distribution.
74 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * Intel Code.
77 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
78 * Intel shall be used in advertising or otherwise to promote the sale, use or
79 * other dealings in products derived from or relating to the Covered Code
80 * without prior written authorization from Intel.
82 * 4. Disclaimer and Export Compliance
84 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
85 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
86 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
87 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
88 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
89 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * PARTICULAR PURPOSE.
92 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
93 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
94 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
95 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
96 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
97 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
98 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * LIMITED REMEDY.
101 * 4.3. Licensee shall not export, either directly or indirectly, any of this
102 * software or system incorporating such software without first obtaining any
103 * required license or other approval from the U. S. Department of Commerce or
104 * any other agency or department of the United States Government. In the
105 * event Licensee exports any such software from the United States or
106 * re-exports any such software from a foreign destination, Licensee shall
107 * ensure that the distribution and export/re-export of the software is in
108 * compliance with all laws, regulations, orders, or other restrictions of the
109 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
110 * any of its subsidiaries will export/re-export any technical data, process,
111 * software, or service, directly or indirectly, to any country for which the
112 * United States government or any agency thereof requires an export license,
113 * other governmental approval, or letter of assurance, without first obtaining
114 * such license, approval or letter.
116 *****************************************************************************/
119 #include "aslcompiler.h"
120 #include "aslcompiler.y.h"
121 #include "amlcode.h"
123 #define _COMPONENT ACPI_COMPILER
124 ACPI_MODULE_NAME ("aslcodegen")
126 /* Local prototypes */
128 static ACPI_STATUS
129 CgAmlWriteWalk (
130 ACPI_PARSE_OBJECT *Op,
131 UINT32 Level,
132 void *Context);
134 static void
135 CgLocalWriteAmlData (
136 ACPI_PARSE_OBJECT *Op,
137 void *Buffer,
138 UINT32 Length);
140 static void
141 CgWriteAmlOpcode (
142 ACPI_PARSE_OBJECT *Op);
144 static void
145 CgWriteTableHeader (
146 ACPI_PARSE_OBJECT *Op);
148 static void
149 CgCloseTable (
150 void);
152 static void
153 CgWriteNode (
154 ACPI_PARSE_OBJECT *Op);
157 /*******************************************************************************
159 * FUNCTION: CgGenerateAmlOutput
161 * PARAMETERS: None.
163 * RETURN: None
165 * DESCRIPTION: Generate AML code. Currently generates the listing file
166 * simultaneously.
168 ******************************************************************************/
170 void
171 CgGenerateAmlOutput (
172 void)
175 DbgPrint (ASL_DEBUG_OUTPUT, "\nWriting AML\n\n");
177 /* Generate the AML output file */
179 FlSeekFile (ASL_FILE_SOURCE_OUTPUT, 0);
180 Gbl_SourceLine = 0;
181 Gbl_NextError = Gbl_ErrorLog;
183 TrWalkParseTree (RootNode, ASL_WALK_VISIT_DOWNWARD,
184 CgAmlWriteWalk, NULL, NULL);
185 CgCloseTable ();
189 /*******************************************************************************
191 * FUNCTION: CgAmlWriteWalk
193 * PARAMETERS: ASL_WALK_CALLBACK
195 * RETURN: Status
197 * DESCRIPTION: Parse tree walk to generate the AML code.
199 ******************************************************************************/
201 static ACPI_STATUS
202 CgAmlWriteWalk (
203 ACPI_PARSE_OBJECT *Op,
204 UINT32 Level,
205 void *Context)
209 * Print header at level 0. Alignment assumes 32-bit pointers
211 if (!Level)
213 DbgPrint (ASL_TREE_OUTPUT,
214 "Final parse tree used for AML output:\n");
215 DbgPrint (ASL_TREE_OUTPUT,
216 "%*s Value P_Op A_Op OpLen PByts Len SubLen PSubLen OpPtr Child Parent Flags AcTyp Final Col L\n",
217 76, " ");
220 /* Debug output */
222 DbgPrint (ASL_TREE_OUTPUT,
223 "%5.5d [%2d]", Op->Asl.LogicalLineNumber, Level);
224 UtPrintFormattedName (Op->Asl.ParseOpcode, Level);
226 if (Op->Asl.ParseOpcode == PARSEOP_NAMESEG ||
227 Op->Asl.ParseOpcode == PARSEOP_NAMESTRING ||
228 Op->Asl.ParseOpcode == PARSEOP_METHODCALL)
230 DbgPrint (ASL_TREE_OUTPUT,
231 "%10.32s ", Op->Asl.ExternalName);
233 else
235 DbgPrint (ASL_TREE_OUTPUT, " ");
238 DbgPrint (ASL_TREE_OUTPUT,
239 "%08X %04X %04X %01X %04X %04X %04X %04X %08X %08X %08X %08X %08X %04X %02d %02d\n",
240 /* 1 */ (UINT32) Op->Asl.Value.Integer,
241 /* 2 */ Op->Asl.ParseOpcode,
242 /* 3 */ Op->Asl.AmlOpcode,
243 /* 4 */ Op->Asl.AmlOpcodeLength,
244 /* 5 */ Op->Asl.AmlPkgLenBytes,
245 /* 6 */ Op->Asl.AmlLength,
246 /* 7 */ Op->Asl.AmlSubtreeLength,
247 /* 8 */ Op->Asl.Parent ? Op->Asl.Parent->Asl.AmlSubtreeLength : 0,
248 /* 9 */ Op,
249 /* 10 */ Op->Asl.Child,
250 /* 11 */ Op->Asl.Parent,
251 /* 12 */ Op->Asl.CompileFlags,
252 /* 13 */ Op->Asl.AcpiBtype,
253 /* 14 */ Op->Asl.FinalAmlLength,
254 /* 15 */ Op->Asl.Column,
255 /* 16 */ Op->Asl.LineNumber);
257 /* Generate the AML for this node */
259 CgWriteNode (Op);
260 return (AE_OK);
264 /*******************************************************************************
266 * FUNCTION: CgLocalWriteAmlData
268 * PARAMETERS: Op - Current parse op
269 * Buffer - Buffer to write
270 * Length - Size of data in buffer
272 * RETURN: None
274 * DESCRIPTION: Write a buffer of AML data to the AML output file.
276 ******************************************************************************/
278 static void
279 CgLocalWriteAmlData (
280 ACPI_PARSE_OBJECT *Op,
281 void *Buffer,
282 UINT32 Length)
285 /* Write the raw data to the AML file */
287 FlWriteFile (ASL_FILE_AML_OUTPUT, Buffer, Length);
289 /* Update the final AML length for this node (used for listings) */
291 if (Op)
293 Op->Asl.FinalAmlLength += Length;
298 /*******************************************************************************
300 * FUNCTION: CgWriteAmlOpcode
302 * PARAMETERS: Op - Parse node with an AML opcode
304 * RETURN: None.
306 * DESCRIPTION: Write the AML opcode corresponding to a parse node.
308 ******************************************************************************/
310 static void
311 CgWriteAmlOpcode (
312 ACPI_PARSE_OBJECT *Op)
314 UINT8 PkgLenFirstByte;
315 UINT32 i;
316 union {
317 UINT16 Opcode;
318 UINT8 OpcodeBytes[2];
319 } Aml;
320 union {
321 UINT32 Len;
322 UINT8 LenBytes[4];
323 } PkgLen;
326 /* We expect some DEFAULT_ARGs, just ignore them */
328 if (Op->Asl.ParseOpcode == PARSEOP_DEFAULT_ARG)
330 return;
333 switch (Op->Asl.AmlOpcode)
335 case AML_UNASSIGNED_OPCODE:
337 /* These opcodes should not get here */
339 printf ("Found a node with an unassigned AML opcode\n");
340 fprintf (stderr, "Found a node with an unassigned AML opcode\n");
341 return;
343 case AML_INT_RESERVEDFIELD_OP:
345 /* Special opcodes for within a field definition */
347 Aml.Opcode = 0x00;
348 break;
350 case AML_INT_ACCESSFIELD_OP:
352 Aml.Opcode = 0x01;
353 break;
355 default:
356 Aml.Opcode = Op->Asl.AmlOpcode;
357 break;
361 switch (Aml.Opcode)
363 case AML_PACKAGE_LENGTH:
365 /* Value is the length to be encoded (Used in field definitions) */
367 PkgLen.Len = (UINT32) Op->Asl.Value.Integer;
368 break;
370 default:
372 /* Check for two-byte opcode */
374 if (Aml.Opcode > 0x00FF)
376 /* Write the high byte first */
378 CgLocalWriteAmlData (Op, &Aml.OpcodeBytes[1], 1);
381 CgLocalWriteAmlData (Op, &Aml.OpcodeBytes[0], 1);
383 /* Subtreelength doesn't include length of package length bytes */
385 PkgLen.Len = Op->Asl.AmlSubtreeLength + Op->Asl.AmlPkgLenBytes;
386 break;
389 /* Does this opcode have an associated "PackageLength" field? */
391 if (Op->Asl.CompileFlags & NODE_AML_PACKAGE)
393 if (Op->Asl.AmlPkgLenBytes == 1)
395 /* Simplest case -- no bytes to follow, just write the count */
397 CgLocalWriteAmlData (Op, &PkgLen.LenBytes[0], 1);
399 else if (Op->Asl.AmlPkgLenBytes != 0)
402 * Encode the "bytes to follow" in the first byte, top two bits.
403 * The low-order nybble of the length is in the bottom 4 bits
405 PkgLenFirstByte = (UINT8)
406 (((UINT32) (Op->Asl.AmlPkgLenBytes - 1) << 6) |
407 (PkgLen.LenBytes[0] & 0x0F));
409 CgLocalWriteAmlData (Op, &PkgLenFirstByte, 1);
412 * Shift the length over by the 4 bits we just stuffed
413 * in the first byte
415 PkgLen.Len >>= 4;
417 /* Now we can write the remaining bytes - either 1, 2, or 3 bytes */
419 for (i = 0; i < (UINT32) (Op->Asl.AmlPkgLenBytes - 1); i++)
421 CgLocalWriteAmlData (Op, &PkgLen.LenBytes[i], 1);
426 switch (Aml.Opcode)
428 case AML_BYTE_OP:
430 CgLocalWriteAmlData (Op, &Op->Asl.Value.Integer, 1);
431 break;
433 case AML_WORD_OP:
435 CgLocalWriteAmlData (Op, &Op->Asl.Value.Integer, 2);
436 break;
438 case AML_DWORD_OP:
440 CgLocalWriteAmlData (Op, &Op->Asl.Value.Integer, 4);
441 break;
443 case AML_QWORD_OP:
445 CgLocalWriteAmlData (Op, &Op->Asl.Value.Integer, 8);
446 break;
448 case AML_STRING_OP:
450 CgLocalWriteAmlData (Op, Op->Asl.Value.String, Op->Asl.AmlLength);
451 break;
453 default:
454 /* All data opcodes must appear above */
455 break;
460 /*******************************************************************************
462 * FUNCTION: CgWriteTableHeader
464 * PARAMETERS: Op - The DEFINITIONBLOCK node
466 * RETURN: None
468 * DESCRIPTION: Write a table header corresponding to the DEFINITIONBLOCK
470 ******************************************************************************/
472 static void
473 CgWriteTableHeader (
474 ACPI_PARSE_OBJECT *Op)
476 ACPI_PARSE_OBJECT *Child;
479 /* AML filename */
481 Child = Op->Asl.Child;
483 /* Signature */
485 Child = Child->Asl.Next;
486 strncpy (TableHeader.Signature, Child->Asl.Value.String, 4);
488 /* Revision */
490 Child = Child->Asl.Next;
491 TableHeader.Revision = (UINT8) Child->Asl.Value.Integer;
493 /* Command-line Revision override */
495 if (Gbl_RevisionOverride)
497 TableHeader.Revision = Gbl_RevisionOverride;
500 /* OEMID */
502 Child = Child->Asl.Next;
503 strncpy (TableHeader.OemId, Child->Asl.Value.String, 6);
505 /* OEM TableID */
507 Child = Child->Asl.Next;
508 strncpy (TableHeader.OemTableId, Child->Asl.Value.String, 8);
510 /* OEM Revision */
512 Child = Child->Asl.Next;
513 TableHeader.OemRevision = (UINT32) Child->Asl.Value.Integer;
515 /* Compiler ID */
517 strncpy (TableHeader.AslCompilerId, CompilerCreatorId, 4);
519 /* Compiler version */
521 TableHeader.AslCompilerRevision = CompilerCreatorRevision;
523 /* Table length. Checksum zero for now, will rewrite later */
525 TableHeader.Length = Gbl_TableLength;
526 TableHeader.Checksum = 0;
528 CgLocalWriteAmlData (Op, &TableHeader, sizeof (ACPI_TABLE_HEADER));
532 /*******************************************************************************
534 * FUNCTION: CgCloseTable
536 * PARAMETERS: None.
538 * RETURN: None.
540 * DESCRIPTION: Complete the ACPI table by calculating the checksum and
541 * re-writing the header.
543 ******************************************************************************/
545 static void
546 CgCloseTable (
547 void)
549 signed char Sum;
550 UINT8 FileByte;
553 FlSeekFile (ASL_FILE_AML_OUTPUT, 0);
554 Sum = 0;
556 /* Calculate the checksum over the entire file */
558 while (FlReadFile (ASL_FILE_AML_OUTPUT, &FileByte, 1) == AE_OK)
560 Sum = (signed char) (Sum + FileByte);
563 /* Re-write the table header with the checksum */
565 TableHeader.Checksum = (UINT8) (0 - Sum);
567 FlSeekFile (ASL_FILE_AML_OUTPUT, 0);
568 CgLocalWriteAmlData (NULL, &TableHeader, sizeof (ACPI_TABLE_HEADER));
572 /*******************************************************************************
574 * FUNCTION: CgWriteNode
576 * PARAMETERS: Op - Parse node to write.
578 * RETURN: None.
580 * DESCRIPTION: Write the AML that corresponds to a parse node.
582 ******************************************************************************/
584 static void
585 CgWriteNode (
586 ACPI_PARSE_OBJECT *Op)
588 ASL_RESOURCE_NODE *Rnode;
591 /* Always check for DEFAULT_ARG and other "Noop" nodes */
592 /* TBD: this may not be the best place for this check */
594 if ((Op->Asl.ParseOpcode == PARSEOP_DEFAULT_ARG) ||
595 (Op->Asl.ParseOpcode == PARSEOP_EXTERNAL) ||
596 (Op->Asl.ParseOpcode == PARSEOP_INCLUDE) ||
597 (Op->Asl.ParseOpcode == PARSEOP_INCLUDE_END))
599 return;
602 Op->Asl.FinalAmlLength = 0;
604 switch (Op->Asl.AmlOpcode)
606 case AML_RAW_DATA_BYTE:
607 case AML_RAW_DATA_WORD:
608 case AML_RAW_DATA_DWORD:
609 case AML_RAW_DATA_QWORD:
611 CgLocalWriteAmlData (Op, &Op->Asl.Value.Integer, Op->Asl.AmlLength);
612 return;
615 case AML_RAW_DATA_BUFFER:
617 CgLocalWriteAmlData (Op, Op->Asl.Value.Buffer, Op->Asl.AmlLength);
618 return;
621 case AML_RAW_DATA_CHAIN:
623 Rnode = ACPI_CAST_PTR (ASL_RESOURCE_NODE, Op->Asl.Value.Buffer);
624 while (Rnode)
626 CgLocalWriteAmlData (Op, Rnode->Buffer, Rnode->BufferLength);
627 Rnode = Rnode->Next;
629 return;
631 default:
632 /* Internal data opcodes must all appear above */
633 break;
636 switch (Op->Asl.ParseOpcode)
638 case PARSEOP_DEFAULT_ARG:
640 break;
642 case PARSEOP_DEFINITIONBLOCK:
644 CgWriteTableHeader (Op);
645 break;
647 case PARSEOP_NAMESEG:
648 case PARSEOP_NAMESTRING:
649 case PARSEOP_METHODCALL:
651 CgLocalWriteAmlData (Op, Op->Asl.Value.String, Op->Asl.AmlLength);
652 break;
654 default:
656 CgWriteAmlOpcode (Op);
657 break;