]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/contrib/dev/acpica/compiler/dtcompile.c
Merge ACPICA 20110112. Switch to BSD/GPLv2 dual license[1].
[FreeBSD/FreeBSD.git] / sys / contrib / dev / acpica / compiler / dtcompile.c
1 /******************************************************************************
2  *
3  * Module Name: dtcompile.c - Front-end for data table compiler
4  *
5  *****************************************************************************/
6
7 /*
8  * Copyright (C) 2000 - 2011, Intel Corp.
9  * 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
44 #define __DTCOMPILE_C__
45 #define _DECLARE_DT_GLOBALS
46
47 #include <contrib/dev/acpica/compiler/aslcompiler.h>
48 #include <contrib/dev/acpica/compiler/dtcompiler.h>
49
50 #define _COMPONENT          DT_COMPILER
51         ACPI_MODULE_NAME    ("dtcompile")
52
53 static char                 VersionString[9];
54
55
56 /* Local prototypes */
57
58 static ACPI_STATUS
59 DtInitialize (
60     void);
61
62 static ACPI_STATUS
63 DtCompileDataTable (
64     DT_FIELD                **Field);
65
66 static void
67 DtInsertCompilerIds (
68     DT_FIELD                *FieldList);
69
70
71 /******************************************************************************
72  *
73  * FUNCTION:    DtDoCompile
74  *
75  * PARAMETERS:  None
76  *
77  * RETURN:      Status
78  *
79  * DESCRIPTION: Main entry point for the data table compiler.
80  *
81  * Note: Assumes Gbl_Files[ASL_FILE_INPUT] is initialized and the file is
82  *          open at seek offset zero.
83  *
84  *****************************************************************************/
85
86 ACPI_STATUS
87 DtDoCompile (
88     void)
89 {
90     ACPI_STATUS             Status;
91     UINT8                   Event;
92     DT_FIELD                *FieldList;
93
94
95     /* Initialize globals */
96
97     Status = DtInitialize ();
98     if (ACPI_FAILURE (Status))
99     {
100         printf ("Error during compiler initialization, 0x%X\n", Status);
101         return (Status);
102     }
103
104     /*
105      * Scan the input file (file is already open) and
106      * build the parse tree
107      */
108     Event = UtBeginEvent ("Scan and parse input file");
109     FieldList = DtScanFile (Gbl_Files[ASL_FILE_INPUT].Handle);
110     UtEndEvent (Event);
111
112     /* Did the parse tree get successfully constructed? */
113
114     if (!FieldList)
115     {
116         /* TBD: temporary error message. Msgs should come from function above */
117
118         DtError (ASL_ERROR, ASL_MSG_SYNTAX, NULL,
119             "Input file does not appear to be an ASL or data table source file");
120
121         Status = AE_ERROR;
122         goto CleanupAndExit;
123     }
124
125     Event = UtBeginEvent ("Compile parse tree");
126
127     /*
128      * Compile the parse tree
129      */
130     Status = DtCompileDataTable (&FieldList);
131     UtEndEvent (Event);
132
133     DtFreeFieldList ();
134
135     if (ACPI_FAILURE (Status))
136     {
137         /* TBD: temporary error message. Msgs should come from function above */
138
139         DtError (ASL_ERROR, ASL_MSG_SYNTAX, NULL,
140             "Could not compile input file");
141
142         goto CleanupAndExit;
143     }
144
145     /* Create/open the binary output file */
146
147     Gbl_Files[ASL_FILE_AML_OUTPUT].Filename = NULL;
148     Status = FlOpenAmlOutputFile (Gbl_OutputFilenamePrefix);
149     if (ACPI_FAILURE (Status))
150     {
151         goto CleanupAndExit;
152     }
153
154     /* Write the binary, then the optional hex file */
155
156     DtOutputBinary (Gbl_RootTable);
157     LsDoHexOutput ();
158     DtWriteTableToListing ();
159
160 CleanupAndExit:
161
162     CmCleanupAndExit ();
163     return (Status);
164 }
165
166
167 /******************************************************************************
168  *
169  * FUNCTION:    DtInitialize
170  *
171  * PARAMETERS:  None
172  *
173  * RETURN:      Status
174  *
175  * DESCRIPTION: Initialize data table compiler globals. Enables multiple
176  *              compiles per invocation.
177  *
178  *****************************************************************************/
179
180 static ACPI_STATUS
181 DtInitialize (
182     void)
183 {
184     ACPI_STATUS             Status;
185
186
187     Status = AcpiOsInitialize ();
188     if (ACPI_FAILURE (Status))
189     {
190         return (Status);
191     }
192
193     Status = AcpiUtInitGlobals ();
194     if (ACPI_FAILURE (Status))
195     {
196         return (Status);
197     }
198
199     Gbl_FieldList = NULL;
200     Gbl_RootTable = NULL;
201     Gbl_SubtableStack = NULL;
202
203     sprintf (VersionString, "%X", (UINT32) ACPI_CA_VERSION);
204     return (AE_OK);
205 }
206
207
208 /******************************************************************************
209  *
210  * FUNCTION:    DtInsertCompilerIds
211  *
212  * PARAMETERS:  FieldList           - Current field list pointer
213  *
214  * RETURN:      None
215  *
216  * DESCRIPTION: Insert the IDs (Name, Version) of the current compiler into
217  *              the original ACPI table header.
218  *
219  *****************************************************************************/
220
221 static void
222 DtInsertCompilerIds (
223     DT_FIELD                *FieldList)
224 {
225     DT_FIELD                *Next;
226     UINT32                  i;
227
228
229     /*
230      * Don't insert current compiler ID if requested. Used for compiler
231      * debug/validation only.
232      */
233     if (Gbl_UseOriginalCompilerId)
234     {
235         return;
236     }
237
238     /* Walk to the Compiler fields at the end of the header */
239
240     Next = FieldList;
241     for (i = 0; i < 7; i++)
242     {
243         Next = Next->Next;
244     }
245
246     Next->Value = ASL_CREATOR_ID;
247     Next->Flags = DT_FIELD_NOT_ALLOCATED;
248
249     Next = Next->Next;
250     Next->Value = VersionString;
251     Next->Flags = DT_FIELD_NOT_ALLOCATED;
252 }
253
254
255 /******************************************************************************
256  *
257  * FUNCTION:    DtCompileDataTable
258  *
259  * PARAMETERS:  FieldList           - Current field list pointer
260  *
261  * RETURN:      Status
262  *
263  * DESCRIPTION: Entry point to compile one data table
264  *
265  *****************************************************************************/
266
267 static ACPI_STATUS
268 DtCompileDataTable (
269     DT_FIELD                **FieldList)
270 {
271     ACPI_DMTABLE_DATA       *TableData;
272     DT_SUBTABLE             *Subtable;
273     char                    *Signature;
274     ACPI_TABLE_HEADER       *AcpiTableHeader;
275     ACPI_STATUS             Status;
276
277
278     /* Verify that we at least have a table signature and save it */
279
280     Signature = DtGetFieldValue (*FieldList, "Signature");
281     if (!Signature)
282     {
283         sprintf (MsgBuffer, "Expected \"%s\"", "Signature");
284         DtNameError (ASL_ERROR, ASL_MSG_INVALID_FIELD_NAME,
285             *FieldList, MsgBuffer);
286         return (AE_ERROR);
287     }
288
289     Gbl_Signature = UtLocalCalloc (ACPI_STRLEN (Signature) + 1);
290     strcpy (Gbl_Signature, Signature);
291
292     /*
293      * Handle tables that don't use the common ACPI table header structure.
294      * Currently, these are the FACS and RSDP. Also check for an OEMx table,
295      * these tables have user-defined contents.
296      */
297     if (ACPI_COMPARE_NAME (Signature, ACPI_SIG_FACS))
298     {
299         Status = DtCompileFacs (FieldList);
300         if (ACPI_FAILURE (Status))
301         {
302             return (Status);
303         }
304
305         DtSetTableLength ();
306         return (Status);
307     }
308     else if (ACPI_COMPARE_NAME (Signature, ACPI_SIG_RSDP))
309     {
310         Status = DtCompileRsdp (FieldList);
311         return (Status);
312     }
313     else if (!ACPI_STRNCMP (Signature, "OEM", 3))
314     {
315         DtFatal (ASL_MSG_OEM_TABLE, *FieldList, Signature);
316         return (AE_ERROR);
317     }
318
319     /* Validate the signature via the ACPI table list */
320
321     TableData = AcpiDmGetTableData (Signature);
322     if (!TableData)
323     {
324         DtFatal (ASL_MSG_UNKNOWN_TABLE, *FieldList, Signature);
325         return (AE_ERROR);
326     }
327
328     /*
329      * All other tables must use the common ACPI table header. Insert the
330      * current iASL IDs (name, version), and compile the header now.
331      */
332     DtInsertCompilerIds (*FieldList);
333
334     Status = DtCompileTable (FieldList, AcpiDmTableInfoHeader,
335                 &Gbl_RootTable, TRUE);
336     if (ACPI_FAILURE (Status))
337     {
338         return (Status);
339     }
340
341     DtPushSubtable (Gbl_RootTable);
342
343     /* Dispatch to per-table compile */
344
345     if (TableData->CmTableHandler)
346     {
347         /* Complex table, has a handler */
348
349         Status = TableData->CmTableHandler ((void **) FieldList);
350         if (ACPI_FAILURE (Status))
351         {
352             return (Status);
353         }
354     }
355     else if (TableData->TableInfo)
356     {
357         /* Simple table, just walk the info table */
358
359         Subtable = NULL;
360         Status = DtCompileTable (FieldList, TableData->TableInfo,
361                     &Subtable, TRUE);
362         if (ACPI_FAILURE (Status))
363         {
364             return (Status);
365         }
366
367         DtInsertSubtable (Gbl_RootTable, Subtable);
368         DtPopSubtable ();
369     }
370     else
371     {
372         DtFatal (ASL_MSG_COMPILER_INTERNAL, *FieldList,
373             "Missing table dispatch info");
374         return (AE_ERROR);
375     }
376
377     /* Set the final table length and then the checksum */
378
379     DtSetTableLength ();
380     AcpiTableHeader = ACPI_CAST_PTR (
381         ACPI_TABLE_HEADER, Gbl_RootTable->Buffer);
382     DtSetTableChecksum (&AcpiTableHeader->Checksum);
383
384     return (AE_OK);
385 }
386
387
388 /******************************************************************************
389  *
390  * FUNCTION:    DtCompileTable
391  *
392  * PARAMETERS:  Field               - Current field list pointer
393  *              Info                - Info table for this ACPI table
394  *              RetSubtable         - Compile result of table
395  *              Required            - If this subtable must exist
396  *
397  * RETURN:      Status
398  *
399  * DESCRIPTION: Compile a subtable
400  *
401  *****************************************************************************/
402
403 ACPI_STATUS
404 DtCompileTable (
405     DT_FIELD                **Field,
406     ACPI_DMTABLE_INFO       *Info,
407     DT_SUBTABLE             **RetSubtable,
408     BOOLEAN                 Required)
409 {
410     DT_FIELD                *LocalField;
411     UINT32                  Length;
412     DT_SUBTABLE             *Subtable;
413     DT_SUBTABLE             *InlineSubtable;
414     UINT32                  FieldLength = 0;
415     UINT8                   FieldType;
416     UINT8                   *Buffer;
417     UINT8                   *FlagBuffer = NULL;
418     ACPI_STATUS             Status;
419
420
421     if (!Field || !*Field)
422     {
423         return (AE_BAD_PARAMETER);
424     }
425
426     Length = DtGetSubtableLength (*Field, Info);
427     Subtable = UtLocalCalloc (sizeof (DT_SUBTABLE));
428
429     Subtable->Buffer = UtLocalCalloc (Length);
430     Subtable->Length = Length;
431     Subtable->TotalLength = Length;
432     Buffer = Subtable->Buffer;
433
434     LocalField = *Field;
435
436     /*
437      * Main loop walks the info table for this ACPI table or subtable
438      */
439     for (; Info->Name; Info++)
440     {
441         if (!LocalField)
442         {
443             sprintf (MsgBuffer, "Found NULL field - Field name \"%s\" needed",
444                 Info->Name);
445             DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, MsgBuffer);
446             Status = AE_BAD_DATA;
447             goto Error;
448         }
449
450         /* Does input field name match what is expected? */
451
452         if (ACPI_STRCMP (LocalField->Name, Info->Name))
453         {
454             /*
455              * If Required = TRUE, the subtable must exist.
456              * If Required = FALSE, the subtable is optional
457              * (For example, AcpiDmTableInfoDmarScope in DMAR table is
458              * optional)
459              */
460             if (Required)
461             {
462                 sprintf (MsgBuffer, "Expected \"%s\"", Info->Name);
463                 DtNameError (ASL_ERROR, ASL_MSG_INVALID_FIELD_NAME,
464                     LocalField, MsgBuffer);
465             }
466             else
467             {
468                 Status = AE_NOT_FOUND;
469                 goto Error;
470             }
471         }
472
473         FieldLength = DtGetFieldLength (LocalField, Info);
474         FieldType = DtGetFieldType (Info);
475         Gbl_InputFieldCount++;
476
477         switch (FieldType)
478         {
479         case DT_FIELD_TYPE_FLAGS_INTEGER:
480             /*
481              * Start of the definition of a flags field.
482              * This master flags integer starts at value zero, in preparation
483              * to compile and insert the flag fields from the individual bits
484              */
485             LocalField = LocalField->Next;
486             *Field = LocalField;
487
488             FlagBuffer = Buffer;
489             break;
490
491         case DT_FIELD_TYPE_FLAG:
492
493             /* Individual Flag field, can be multiple bits */
494
495             if (FlagBuffer)
496             {
497                 DtCompileFlag (FlagBuffer, LocalField, Info);
498             }
499             else
500             {
501                 /* TBD - this is an internal error */
502             }
503
504             LocalField = LocalField->Next;
505             *Field = LocalField;
506             break;
507
508         case DT_FIELD_TYPE_INLINE_SUBTABLE:
509             /*
510              * Recursion (one level max): compile GAS (Generic Address)
511              * or Notify in-line subtable
512              */
513             LocalField = LocalField->Next;
514             *Field = LocalField;
515
516             if (Info->Opcode == ACPI_DMT_GAS)
517             {
518                 Status = DtCompileTable (Field, AcpiDmTableInfoGas,
519                     &InlineSubtable, TRUE);
520             }
521             else
522             {
523                 Status = DtCompileTable (Field, AcpiDmTableInfoHestNotify,
524                     &InlineSubtable, TRUE);
525             }
526
527             if (ACPI_FAILURE (Status))
528             {
529                 goto Error;
530             }
531
532             DtSetSubtableLength (InlineSubtable);
533
534             ACPI_MEMCPY (Buffer, InlineSubtable->Buffer, FieldLength);
535             ACPI_FREE (InlineSubtable->Buffer);
536             ACPI_FREE (InlineSubtable);
537             LocalField = *Field;
538             break;
539
540         default:
541
542             /* Normal case for most field types (Integer, String, etc.) */
543
544             DtCompileOneField (Buffer, LocalField,
545                 FieldLength, FieldType, Info->Flags);
546
547             DtWriteFieldToListing (Buffer, LocalField, FieldLength);
548             LocalField = LocalField->Next;
549
550             if (Info->Flags & DT_LENGTH)
551             {
552                 /* Field is an Integer that will contain a subtable length */
553
554                 Subtable->LengthField = Buffer;
555                 Subtable->SizeOfLengthField = FieldLength;
556             }
557
558             break;
559         }
560
561         Buffer += FieldLength;
562     }
563
564     *Field = LocalField;
565     *RetSubtable = Subtable;
566     return (AE_OK);
567
568 Error:
569     ACPI_FREE (Subtable->Buffer);
570     ACPI_FREE (Subtable);
571     return (Status);
572 }