xref: /illumos-gate/usr/src/cmd/acpi/iasl/dtcompiler.h (revision 35786f68)
1 /******************************************************************************
2  *
3  * Module Name: dtcompiler.h - header for data table compiler
4  *
5  *****************************************************************************/
6 
7 /******************************************************************************
8  *
9  * 1. Copyright Notice
10  *
11  * Some or all of this work - Copyright (c) 1999 - 2018, Intel Corp.
12  * All rights reserved.
13  *
14  * 2. License
15  *
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.
20  *
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
27  *
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;
36  *
37  * The above copyright and patent license is granted only if the following
38  * conditions are met:
39  *
40  * 3. Conditions
41  *
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.
53  *
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.
65  *
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.
71  *
72  * 3.4. Intel retains all right, title, and interest in and to the Original
73  * Intel Code.
74  *
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.
79  *
80  * 4. Disclaimer and Export Compliance
81  *
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.
89  *
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.
98  *
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.
113  *
114  *****************************************************************************
115  *
116  * Alternatively, you may choose to be licensed under the terms of the
117  * following license:
118  *
119  * Redistribution and use in source and binary forms, with or without
120  * modification, are permitted provided that the following conditions
121  * are met:
122  * 1. Redistributions of source code must retain the above copyright
123  *    notice, this list of conditions, and the following disclaimer,
124  *    without modification.
125  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
126  *    substantially similar to the "NO WARRANTY" disclaimer below
127  *    ("Disclaimer") and any redistribution must be conditioned upon
128  *    including a substantially similar Disclaimer requirement for further
129  *    binary redistribution.
130  * 3. Neither the names of the above-listed copyright holders nor the names
131  *    of any contributors may be used to endorse or promote products derived
132  *    from this software without specific prior written permission.
133  *
134  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
135  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
136  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
137  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
138  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
139  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
140  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
141  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
142  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
143  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
144  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
145  *
146  * Alternatively, you may choose to be licensed under the terms of the
147  * GNU General Public License ("GPL") version 2 as published by the Free
148  * Software Foundation.
149  *
150  *****************************************************************************/
151 
152 #define __DTCOMPILER_H__
153 
154 #ifndef _DTCOMPILER
155 #define _DTCOMPILER
156 
157 #include "acdisasm.h"
158 
159 
160 #define ASL_FIELD_CACHE_SIZE            512
161 #define ASL_SUBTABLE_CACHE_SIZE         128
162 
163 
164 #undef DT_EXTERN
165 
166 #ifdef _DECLARE_DT_GLOBALS
167 #define DT_EXTERN
168 #define DT_INIT_GLOBAL(a,b)         (a)=(b)
169 #else
170 #define DT_EXTERN                   extern
171 #define DT_INIT_GLOBAL(a,b)         (a)
172 #endif
173 
174 
175 /* Types for individual fields (one per input line) */
176 
177 #define DT_FIELD_TYPE_STRING            0
178 #define DT_FIELD_TYPE_INTEGER           1
179 #define DT_FIELD_TYPE_BUFFER            2
180 #define DT_FIELD_TYPE_PCI_PATH          3
181 #define DT_FIELD_TYPE_FLAG              4
182 #define DT_FIELD_TYPE_FLAGS_INTEGER     5
183 #define DT_FIELD_TYPE_INLINE_SUBTABLE   6
184 #define DT_FIELD_TYPE_UUID              7
185 #define DT_FIELD_TYPE_UNICODE           8
186 #define DT_FIELD_TYPE_DEVICE_PATH       9
187 #define DT_FIELD_TYPE_LABEL             10
188 
189 
190 /*
191  * Structure used for each individual field within an ACPI table
192  */
193 typedef struct dt_field
194 {
195     char                    *Name;       /* Field name (from name : value) */
196     char                    *Value;      /* Field value (from name : value) */
197     UINT32                  StringLength;/* Length of Value */
198     struct dt_field         *Next;       /* Next field */
199     struct dt_field         *NextLabel;  /* If field is a label, next label */
200     UINT32                  Line;        /* Line number for this field */
201     UINT32                  ByteOffset;  /* Offset in source file for field */
202     UINT32                  NameColumn;  /* Start column for field name */
203     UINT32                  Column;      /* Start column for field value */
204     UINT32                  TableOffset; /* Binary offset within ACPI table */
205     UINT8                   Flags;
206 
207 } DT_FIELD;
208 
209 /* Flags for above */
210 
211 #define DT_FIELD_NOT_ALLOCATED      1
212 
213 
214 /*
215  * Structure used for individual subtables within an ACPI table
216  */
217 typedef struct dt_subtable
218 {
219     struct dt_subtable      *Parent;
220     struct dt_subtable      *Child;
221     struct dt_subtable      *Peer;
222     struct dt_subtable      *StackTop;
223     UINT8                   *Buffer;
224     UINT8                   *LengthField;
225     char                    *Name;
226     UINT32                  Length;
227     UINT32                  TotalLength;
228     UINT32                  SizeOfLengthField;
229     UINT16                  Depth;
230     UINT8                   Flags;
231 
232 } DT_SUBTABLE;
233 
234 
235 /*
236  * Globals
237  */
238 
239 /* List of all field names and values from the input source */
240 
241 DT_EXTERN DT_FIELD          DT_INIT_GLOBAL (*Gbl_FieldList, NULL);
242 
243 /* List of all compiled tables and subtables */
244 
245 DT_EXTERN DT_SUBTABLE       DT_INIT_GLOBAL (*Gbl_RootTable, NULL);
246 
247 /* Stack for subtables */
248 
249 DT_EXTERN DT_SUBTABLE       DT_INIT_GLOBAL (*Gbl_SubtableStack, NULL);
250 
251 /* List for defined labels */
252 
253 DT_EXTERN DT_FIELD          DT_INIT_GLOBAL (*Gbl_LabelList, NULL);
254 
255 /* Current offset within the binary output table */
256 
257 DT_EXTERN UINT32            DT_INIT_GLOBAL (Gbl_CurrentTableOffset, 0);
258 
259 /* Local caches */
260 
261 DT_EXTERN UINT32            DT_INIT_GLOBAL (Gbl_SubtableCount, 0);
262 DT_EXTERN ASL_CACHE_INFO    DT_INIT_GLOBAL (*Gbl_SubtableCacheList, NULL);
263 DT_EXTERN DT_SUBTABLE       DT_INIT_GLOBAL (*Gbl_SubtableCacheNext, NULL);
264 DT_EXTERN DT_SUBTABLE       DT_INIT_GLOBAL (*Gbl_SubtableCacheLast, NULL);
265 
266 DT_EXTERN UINT32            DT_INIT_GLOBAL (Gbl_FieldCount, 0);
267 DT_EXTERN ASL_CACHE_INFO    DT_INIT_GLOBAL (*Gbl_FieldCacheList, NULL);
268 DT_EXTERN DT_FIELD          DT_INIT_GLOBAL (*Gbl_FieldCacheNext, NULL);
269 DT_EXTERN DT_FIELD          DT_INIT_GLOBAL (*Gbl_FieldCacheLast, NULL);
270 
271 
272 /* dtcompiler - main module */
273 
274 ACPI_STATUS
275 DtCompileTable (
276     DT_FIELD                **Field,
277     ACPI_DMTABLE_INFO       *Info,
278     DT_SUBTABLE             **RetSubtable);
279 
280 ACPI_STATUS
281 DtCompileTwoSubtables (
282     void                    **List,
283     ACPI_DMTABLE_INFO       *TableInfo1,
284     ACPI_DMTABLE_INFO       *TableInfo2);
285 
286 ACPI_STATUS
287 DtCompilePadding (
288     UINT32                  Length,
289     DT_SUBTABLE             **RetSubtable);
290 
291 
292 /* dtio - binary and text input/output */
293 
294 UINT32
295 DtGetNextLine (
296     FILE                    *Handle,
297     UINT32                  Flags);
298 
299 /* Flags for DtGetNextLine */
300 
301 #define DT_ALLOW_MULTILINE_QUOTES   0x01
302 
303 
304 DT_FIELD *
305 DtScanFile (
306     FILE                    *Handle);
307 
308 void
309 DtOutputBinary (
310     DT_SUBTABLE             *RootTable);
311 
312 void
313 DtDumpSubtableList (
314     void);
315 
316 void
317 DtDumpFieldList (
318     DT_FIELD                *Field);
319 
320 void
321 DtWriteFieldToListing (
322     UINT8                   *Buffer,
323     DT_FIELD                *Field,
324     UINT32                  Length);
325 
326 void
327 DtWriteTableToListing (
328     void);
329 
330 
331 /* dtsubtable - compile subtables */
332 
333 void
334 DtCreateSubtable (
335     UINT8                   *Buffer,
336     UINT32                  Length,
337     DT_SUBTABLE             **RetSubtable);
338 
339 UINT32
340 DtGetSubtableLength (
341     DT_FIELD                *Field,
342     ACPI_DMTABLE_INFO       *Info);
343 
344 void
345 DtSetSubtableLength (
346     DT_SUBTABLE             *Subtable);
347 
348 void
349 DtPushSubtable (
350     DT_SUBTABLE             *Subtable);
351 
352 void
353 DtPopSubtable (
354     void);
355 
356 DT_SUBTABLE *
357 DtPeekSubtable (
358     void);
359 
360 void
361 DtInsertSubtable (
362     DT_SUBTABLE             *ParentTable,
363     DT_SUBTABLE             *Subtable);
364 
365 DT_SUBTABLE *
366 DtGetNextSubtable (
367     DT_SUBTABLE             *ParentTable,
368     DT_SUBTABLE             *ChildTable);
369 
370 DT_SUBTABLE *
371 DtGetParentSubtable (
372     DT_SUBTABLE             *Subtable);
373 
374 
375 /* dtexpress - Integer expressions and labels */
376 
377 ACPI_STATUS
378 DtResolveIntegerExpression (
379     DT_FIELD                *Field,
380     UINT64                  *ReturnValue);
381 
382 UINT64
383 DtDoOperator (
384     UINT64                  LeftValue,
385     UINT32                  Operator,
386     UINT64                  RightValue);
387 
388 UINT64
389 DtResolveLabel (
390     char                    *LabelString);
391 
392 void
393 DtDetectAllLabels (
394     DT_FIELD                *FieldList);
395 
396 
397 /* dtfield - Compile individual fields within a table */
398 
399 void
400 DtCompileOneField (
401     UINT8                   *Buffer,
402     DT_FIELD                *Field,
403     UINT32                  ByteLength,
404     UINT8                   Type,
405     UINT8                   Flags);
406 
407 void
408 DtCompileInteger (
409     UINT8                   *Buffer,
410     DT_FIELD                *Field,
411     UINT32                  ByteLength,
412     UINT8                   Flags);
413 
414 UINT32
415 DtCompileBuffer (
416     UINT8                   *Buffer,
417     char                    *Value,
418     DT_FIELD                *Field,
419     UINT32                  ByteLength);
420 
421 void
422 DtCompileFlag (
423     UINT8                   *Buffer,
424     DT_FIELD                *Field,
425     ACPI_DMTABLE_INFO       *Info);
426 
427 
428 /* dtparser - lex/yacc files */
429 
430 UINT64
431 DtEvaluateExpression (
432     char                    *ExprString);
433 
434 int
435 DtInitLexer (
436     char                    *String);
437 
438 void
439 DtTerminateLexer (
440     void);
441 
442 char *
443 DtGetOpName (
444     UINT32                  ParseOpcode);
445 
446 
447 /* dtutils - Miscellaneous utilities */
448 
449 typedef
450 void (*DT_WALK_CALLBACK) (
451     DT_SUBTABLE             *Subtable,
452     void                    *Context,
453     void                    *ReturnValue);
454 
455 void
456 DtWalkTableTree (
457     DT_SUBTABLE             *StartTable,
458     DT_WALK_CALLBACK        UserFunction,
459     void                    *Context,
460     void                    *ReturnValue);
461 
462 void
463 DtError (
464     UINT8                   Level,
465     UINT16                  MessageId,
466     DT_FIELD                *FieldObject,
467     char                    *ExtraMessage);
468 
469 void
470 DtNameError (
471     UINT8                   Level,
472     UINT16                  MessageId,
473     DT_FIELD                *FieldObject,
474     char                    *ExtraMessage);
475 
476 void
477 DtFatal (
478     UINT16                  MessageId,
479     DT_FIELD                *FieldObject,
480     char                    *ExtraMessage);
481 
482 UINT64
483 DtDoConstant (
484     char                    *String);
485 
486 char*
487 DtGetFieldValue (
488     DT_FIELD                *Field);
489 
490 UINT8
491 DtGetFieldType (
492     ACPI_DMTABLE_INFO       *Info);
493 
494 UINT32
495 DtGetBufferLength (
496     char                    *Buffer);
497 
498 UINT32
499 DtGetFieldLength (
500     DT_FIELD                *Field,
501     ACPI_DMTABLE_INFO       *Info);
502 
503 void
504 DtSetTableChecksum (
505     UINT8                   *ChecksumPointer);
506 
507 void
508 DtSetTableLength(
509     void);
510 
511 
512 /* dttable - individual table compilation */
513 
514 ACPI_STATUS
515 DtCompileFacs (
516     DT_FIELD                **PFieldList);
517 
518 ACPI_STATUS
519 DtCompileRsdp (
520     DT_FIELD                **PFieldList);
521 
522 ACPI_STATUS
523 DtCompileAsf (
524     void                    **PFieldList);
525 
526 ACPI_STATUS
527 DtCompileCpep (
528     void                    **PFieldList);
529 
530 ACPI_STATUS
531 DtCompileCsrt (
532     void                    **PFieldList);
533 
534 ACPI_STATUS
535 DtCompileDbg2 (
536     void                    **PFieldList);
537 
538 ACPI_STATUS
539 DtCompileDmar (
540     void                    **PFieldList);
541 
542 ACPI_STATUS
543 DtCompileDrtm (
544     void                    **PFieldList);
545 
546 ACPI_STATUS
547 DtCompileEinj (
548     void                    **PFieldList);
549 
550 ACPI_STATUS
551 DtCompileErst (
552     void                    **PFieldList);
553 
554 ACPI_STATUS
555 DtCompileFadt (
556     void                    **PFieldList);
557 
558 ACPI_STATUS
559 DtCompileFpdt (
560     void                    **PFieldList);
561 
562 ACPI_STATUS
563 DtCompileGtdt (
564     void                    **PFieldList);
565 
566 ACPI_STATUS
567 DtCompileHest (
568     void                    **PFieldList);
569 
570 ACPI_STATUS
571 DtCompileHmat (
572     void                    **PFieldList);
573 
574 ACPI_STATUS
575 DtCompileIort (
576     void                    **PFieldList);
577 
578 ACPI_STATUS
579 DtCompileIvrs (
580     void                    **PFieldList);
581 
582 ACPI_STATUS
583 DtCompileLpit (
584     void                    **PFieldList);
585 
586 ACPI_STATUS
587 DtCompileMadt (
588     void                    **PFieldList);
589 
590 ACPI_STATUS
591 DtCompileMcfg (
592     void                    **PFieldList);
593 
594 ACPI_STATUS
595 DtCompileMpst (
596     void                    **PFieldList);
597 
598 ACPI_STATUS
599 DtCompileMsct (
600     void                    **PFieldList);
601 
602 ACPI_STATUS
603 DtCompileMtmr (
604     void                    **PFieldList);
605 
606 ACPI_STATUS
607 DtCompileNfit (
608     void                    **PFieldList);
609 
610 ACPI_STATUS
611 DtCompilePcct (
612     void                    **PFieldList);
613 
614 ACPI_STATUS
615 DtCompilePdtt (
616     void                    **PFieldList);
617 
618 ACPI_STATUS
619 DtCompilePmtt (
620     void                    **PFieldList);
621 
622 ACPI_STATUS
623 DtCompilePptt (
624     void                    **PFieldList);
625 
626 ACPI_STATUS
627 DtCompileRsdt (
628     void                    **PFieldList);
629 
630 ACPI_STATUS
631 DtCompileS3pt (
632     DT_FIELD                **PFieldList);
633 
634 ACPI_STATUS
635 DtCompileSdev (
636     void                    **PFieldList);
637 
638 ACPI_STATUS
639 DtCompileSlic (
640     void                    **PFieldList);
641 
642 ACPI_STATUS
643 DtCompileSlit (
644     void                    **PFieldList);
645 
646 ACPI_STATUS
647 DtCompileSrat (
648     void                    **PFieldList);
649 
650 ACPI_STATUS
651 DtCompileStao (
652     void                    **PFieldList);
653 
654 ACPI_STATUS
655 DtCompileTcpa (
656     void                    **PFieldList);
657 
658 ACPI_STATUS
659 DtCompileTpm2 (
660     void                    **PFieldList);
661 
662 ACPI_STATUS
663 DtCompileUefi (
664     void                    **PFieldList);
665 
666 ACPI_STATUS
667 DtCompileVrtc (
668     void                    **PFieldList);
669 
670 ACPI_STATUS
671 DtCompileWdat (
672     void                    **PFieldList);
673 
674 ACPI_STATUS
675 DtCompileWpbt (
676     void                    **PFieldList);
677 
678 ACPI_STATUS
679 DtCompileXsdt (
680     void                    **PFieldList);
681 
682 ACPI_STATUS
683 DtCompileGeneric (
684     void                    **PFieldList,
685     char                    *TermFieldName,
686     UINT32                  *PFieldLength);
687 
688 ACPI_DMTABLE_INFO *
689 DtGetGenericTableInfo (
690     char                    *Name);
691 
692 /* ACPI Table templates */
693 
694 extern const unsigned char  TemplateAsf[];
695 extern const unsigned char  TemplateBoot[];
696 extern const unsigned char  TemplateBert[];
697 extern const unsigned char  TemplateBgrt[];
698 extern const unsigned char  TemplateCpep[];
699 extern const unsigned char  TemplateCsrt[];
700 extern const unsigned char  TemplateDbg2[];
701 extern const unsigned char  TemplateDbgp[];
702 extern const unsigned char  TemplateDmar[];
703 extern const unsigned char  TemplateDrtm[];
704 extern const unsigned char  TemplateEcdt[];
705 extern const unsigned char  TemplateEinj[];
706 extern const unsigned char  TemplateErst[];
707 extern const unsigned char  TemplateFadt[];
708 extern const unsigned char  TemplateFpdt[];
709 extern const unsigned char  TemplateGtdt[];
710 extern const unsigned char  TemplateHest[];
711 extern const unsigned char  TemplateHmat[];
712 extern const unsigned char  TemplateHpet[];
713 extern const unsigned char  TemplateIort[];
714 extern const unsigned char  TemplateIvrs[];
715 extern const unsigned char  TemplateLpit[];
716 extern const unsigned char  TemplateMadt[];
717 extern const unsigned char  TemplateMcfg[];
718 extern const unsigned char  TemplateMchi[];
719 extern const unsigned char  TemplateMpst[];
720 extern const unsigned char  TemplateMsct[];
721 extern const unsigned char  TemplateMsdm[];
722 extern const unsigned char  TemplateMtmr[];
723 extern const unsigned char  TemplateNfit[];
724 extern const unsigned char  TemplatePcct[];
725 extern const unsigned char  TemplatePdtt[];
726 extern const unsigned char  TemplatePmtt[];
727 extern const unsigned char  TemplatePptt[];
728 extern const unsigned char  TemplateRasf[];
729 extern const unsigned char  TemplateRsdt[];
730 extern const unsigned char  TemplateS3pt[];
731 extern const unsigned char  TemplateSbst[];
732 extern const unsigned char  TemplateSdei[];
733 extern const unsigned char  TemplateSdev[];
734 extern const unsigned char  TemplateSlic[];
735 extern const unsigned char  TemplateSlit[];
736 extern const unsigned char  TemplateSpcr[];
737 extern const unsigned char  TemplateSpmi[];
738 extern const unsigned char  TemplateSrat[];
739 extern const unsigned char  TemplateStao[];
740 extern const unsigned char  TemplateTcpa[];
741 extern const unsigned char  TemplateTpm2[];
742 extern const unsigned char  TemplateUefi[];
743 extern const unsigned char  TemplateVrtc[];
744 extern const unsigned char  TemplateWaet[];
745 extern const unsigned char  TemplateWdat[];
746 extern const unsigned char  TemplateWddt[];
747 extern const unsigned char  TemplateWdrt[];
748 extern const unsigned char  TemplateWpbt[];
749 extern const unsigned char  TemplateWsmt[];
750 extern const unsigned char  TemplateXenv[];
751 extern const unsigned char  TemplateXsdt[];
752 
753 #endif
754