xref: /illumos-gate/usr/src/uts/intel/sys/acpi/acdisasm.h (revision db2bae30)
1 /******************************************************************************
2  *
3  * Name: acdisasm.h - AML disassembler
4  *       $Revision: 1.45 $
5  *
6  *****************************************************************************/
7 
8 /******************************************************************************
9  *
10  * 1. Copyright Notice
11  *
12  * Some or all of this work - Copyright (c) 1999 - 2008, Intel Corp.
13  * All rights reserved.
14  *
15  * 2. License
16  *
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.
21  *
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
28  *
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;
37  *
38  * The above copyright and patent license is granted only if the following
39  * conditions are met:
40  *
41  * 3. Conditions
42  *
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.
54  *
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.
66  *
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.
72  *
73  * 3.4. Intel retains all right, title, and interest in and to the Original
74  * Intel Code.
75  *
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.
80  *
81  * 4. Disclaimer and Export Compliance
82  *
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.
90  *
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.
99  *
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.
114  *
115  *****************************************************************************/
116 
117 #ifndef __ACDISASM_H__
118 #define __ACDISASM_H__
119 
120 #include "amlresrc.h"
121 
122 
123 #define BLOCK_NONE              0
124 #define BLOCK_PAREN             1
125 #define BLOCK_BRACE             2
126 #define BLOCK_COMMA_LIST        4
127 #define ACPI_DEFAULT_RESNAME    *(UINT32 *) "__RD"
128 
129 typedef struct acpi_external_list
130 {
131     char                        *Path;
132     char                        *InternalPath;
133     struct acpi_external_list   *Next;
134     UINT32                      Value;
135     UINT16                      Length;
136     UINT8                       Type;
137 
138 } ACPI_EXTERNAL_LIST;
139 
140 extern ACPI_EXTERNAL_LIST       *AcpiGbl_ExternalList;
141 
142 typedef const struct acpi_dmtable_info
143 {
144     UINT8                       Opcode;
145     UINT8                       Offset;
146     char                        *Name;
147 
148 } ACPI_DMTABLE_INFO;
149 
150 /*
151  * Values for Opcode above.
152  * Note: 0-7 must not change, used as a flag shift value
153  */
154 #define ACPI_DMT_FLAG0                  0
155 #define ACPI_DMT_FLAG1                  1
156 #define ACPI_DMT_FLAG2                  2
157 #define ACPI_DMT_FLAG3                  3
158 #define ACPI_DMT_FLAG4                  4
159 #define ACPI_DMT_FLAG5                  5
160 #define ACPI_DMT_FLAG6                  6
161 #define ACPI_DMT_FLAG7                  7
162 #define ACPI_DMT_FLAGS0                 8
163 #define ACPI_DMT_FLAGS2                 9
164 #define ACPI_DMT_UINT8                  10
165 #define ACPI_DMT_UINT16                 11
166 #define ACPI_DMT_UINT24                 12
167 #define ACPI_DMT_UINT32                 13
168 #define ACPI_DMT_UINT56                 14
169 #define ACPI_DMT_UINT64                 15
170 #define ACPI_DMT_STRING                 16
171 #define ACPI_DMT_NAME4                  17
172 #define ACPI_DMT_NAME6                  18
173 #define ACPI_DMT_NAME8                  19
174 #define ACPI_DMT_CHKSUM                 20
175 #define ACPI_DMT_SPACEID                21
176 #define ACPI_DMT_GAS                    22
177 #define ACPI_DMT_ASF                    23
178 #define ACPI_DMT_DMAR                   24
179 #define ACPI_DMT_HEST                   25
180 #define ACPI_DMT_HESTNTFY               26
181 #define ACPI_DMT_HESTNTYP               27
182 #define ACPI_DMT_MADT                   28
183 #define ACPI_DMT_SRAT                   29
184 #define ACPI_DMT_EXIT                   30
185 #define ACPI_DMT_SIG                    31
186 
187 typedef
188 void (*ACPI_DMTABLE_HANDLER) (
189     ACPI_TABLE_HEADER       *Table);
190 
191 typedef struct acpi_dmtable_data
192 {
193     char                    *Signature;
194     ACPI_DMTABLE_INFO       *TableInfo;
195     ACPI_DMTABLE_HANDLER    TableHandler;
196     char                    *Name;
197 
198 } ACPI_DMTABLE_DATA;
199 
200 
201 typedef struct acpi_op_walk_info
202 {
203     UINT32                  Level;
204     UINT32                  LastLevel;
205     UINT32                  Count;
206     UINT32                  BitOffset;
207     UINT32                  Flags;
208     ACPI_WALK_STATE         *WalkState;
209 
210 } ACPI_OP_WALK_INFO;
211 
212 typedef
213 ACPI_STATUS (*ASL_WALK_CALLBACK) (
214     ACPI_PARSE_OBJECT           *Op,
215     UINT32                      Level,
216     void                        *Context);
217 
218 typedef struct acpi_resource_tag
219 {
220     UINT32                  BitIndex;
221     char                    *Tag;
222 
223 } ACPI_RESOURCE_TAG;
224 
225 /* Strings used for decoding flags to ASL keywords */
226 
227 extern const char               *AcpiGbl_WordDecode[];
228 extern const char               *AcpiGbl_IrqDecode[];
229 extern const char               *AcpiGbl_LockRule[];
230 extern const char               *AcpiGbl_AccessTypes[];
231 extern const char               *AcpiGbl_UpdateRules[];
232 extern const char               *AcpiGbl_MatchOps[];
233 
234 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf0[];
235 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf1[];
236 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf1a[];
237 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf2[];
238 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf2a[];
239 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf3[];
240 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf4[];
241 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsfHdr[];
242 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoBoot[];
243 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoBert[];
244 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCpep[];
245 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCpep0[];
246 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbgp[];
247 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar[];
248 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmarHdr[];
249 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmarScope[];
250 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar0[];
251 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar1[];
252 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar2[];
253 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoEcdt[];
254 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoEinj[];
255 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoEinj0[];
256 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoErst[];
257 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFacs[];
258 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFadt1[];
259 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFadt2[];
260 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGas[];
261 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHeader[];
262 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest[];
263 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest9[];
264 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHestNotify[];
265 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHpet[];
266 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt[];
267 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt0[];
268 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt1[];
269 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt2[];
270 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt3[];
271 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt4[];
272 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt5[];
273 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt6[];
274 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt7[];
275 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt8[];
276 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt9[];
277 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt10[];
278 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadtHdr[];
279 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMcfg[];
280 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMcfg0[];
281 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoRsdp1[];
282 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoRsdp2[];
283 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSbst[];
284 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSlic[];
285 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSlit[];
286 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSpcr[];
287 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSpmi[];
288 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat[];
289 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSratHdr[];
290 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat0[];
291 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat1[];
292 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat2[];
293 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTcpa[];
294 extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWdrt[];
295 
296 
297 /*
298  * dmtable
299  */
300 void
301 AcpiDmDumpDataTable (
302     ACPI_TABLE_HEADER       *Table);
303 
304 ACPI_STATUS
305 AcpiDmDumpTable (
306     UINT32                  TableLength,
307     UINT32                  TableOffset,
308     void                    *Table,
309     UINT32                  SubTableLength,
310     ACPI_DMTABLE_INFO        *Info);
311 
312 void
313 AcpiDmLineHeader (
314     UINT32                  Offset,
315     UINT32                  ByteLength,
316     char                    *Name);
317 
318 void
319 AcpiDmLineHeader2 (
320     UINT32                  Offset,
321     UINT32                  ByteLength,
322     char                    *Name,
323     UINT32                  Value);
324 
325 
326 /*
327  * dmtbdump
328  */
329 void
330 AcpiDmDumpAsf (
331     ACPI_TABLE_HEADER       *Table);
332 
333 void
334 AcpiDmDumpCpep (
335     ACPI_TABLE_HEADER       *Table);
336 
337 void
338 AcpiDmDumpDmar (
339     ACPI_TABLE_HEADER       *Table);
340 
341 void
342 AcpiDmDumpEinj (
343     ACPI_TABLE_HEADER       *Table);
344 
345 void
346 AcpiDmDumpErst (
347     ACPI_TABLE_HEADER       *Table);
348 
349 void
350 AcpiDmDumpFadt (
351     ACPI_TABLE_HEADER       *Table);
352 
353 void
354 AcpiDmDumpHest (
355     ACPI_TABLE_HEADER       *Table);
356 
357 void
358 AcpiDmDumpMcfg (
359     ACPI_TABLE_HEADER       *Table);
360 
361 void
362 AcpiDmDumpMadt (
363     ACPI_TABLE_HEADER       *Table);
364 
365 UINT32
366 AcpiDmDumpRsdp (
367     ACPI_TABLE_HEADER       *Table);
368 
369 void
370 AcpiDmDumpRsdt (
371     ACPI_TABLE_HEADER       *Table);
372 
373 void
374 AcpiDmDumpSlit (
375     ACPI_TABLE_HEADER       *Table);
376 
377 void
378 AcpiDmDumpSrat (
379     ACPI_TABLE_HEADER       *Table);
380 
381 void
382 AcpiDmDumpXsdt (
383     ACPI_TABLE_HEADER       *Table);
384 
385 
386 /*
387  * dmwalk
388  */
389 void
390 AcpiDmDisassemble (
391     ACPI_WALK_STATE         *WalkState,
392     ACPI_PARSE_OBJECT       *Origin,
393     UINT32                  NumOpcodes);
394 
395 void
396 AcpiDmWalkParseTree (
397     ACPI_PARSE_OBJECT       *Op,
398     ASL_WALK_CALLBACK       DescendingCallback,
399     ASL_WALK_CALLBACK       AscendingCallback,
400     void                    *Context);
401 
402 
403 /*
404  * dmopcode
405  */
406 void
407 AcpiDmDisassembleOneOp (
408     ACPI_WALK_STATE         *WalkState,
409     ACPI_OP_WALK_INFO       *Info,
410     ACPI_PARSE_OBJECT       *Op);
411 
412 void
413 AcpiDmDecodeInternalObject (
414     ACPI_OPERAND_OBJECT     *ObjDesc);
415 
416 UINT32
417 AcpiDmListType (
418     ACPI_PARSE_OBJECT       *Op);
419 
420 void
421 AcpiDmMethodFlags (
422     ACPI_PARSE_OBJECT       *Op);
423 
424 void
425 AcpiDmFieldFlags (
426     ACPI_PARSE_OBJECT       *Op);
427 
428 void
429 AcpiDmAddressSpace (
430     UINT8                   SpaceId);
431 
432 void
433 AcpiDmRegionFlags (
434     ACPI_PARSE_OBJECT       *Op);
435 
436 void
437 AcpiDmMatchOp (
438     ACPI_PARSE_OBJECT       *Op);
439 
440 BOOLEAN
441 AcpiDmCommaIfListMember (
442     ACPI_PARSE_OBJECT       *Op);
443 
444 void
445 AcpiDmCommaIfFieldMember (
446     ACPI_PARSE_OBJECT       *Op);
447 
448 
449 /*
450  * dmnames
451  */
452 UINT32
453 AcpiDmDumpName (
454     UINT32                  Name);
455 
456 ACPI_STATUS
457 AcpiPsDisplayObjectPathname (
458     ACPI_WALK_STATE         *WalkState,
459     ACPI_PARSE_OBJECT       *Op);
460 
461 void
462 AcpiDmNamestring (
463     char                    *Name);
464 
465 
466 /*
467  * dmobject
468  */
469 void
470 AcpiDmDisplayInternalObject (
471     ACPI_OPERAND_OBJECT     *ObjDesc,
472     ACPI_WALK_STATE         *WalkState);
473 
474 void
475 AcpiDmDisplayArguments (
476     ACPI_WALK_STATE         *WalkState);
477 
478 void
479 AcpiDmDisplayLocals (
480     ACPI_WALK_STATE         *WalkState);
481 
482 void
483 AcpiDmDumpMethodInfo (
484     ACPI_STATUS             Status,
485     ACPI_WALK_STATE         *WalkState,
486     ACPI_PARSE_OBJECT       *Op);
487 
488 
489 /*
490  * dmbuffer
491  */
492 void
493 AcpiDmDisasmByteList (
494     UINT32                  Level,
495     UINT8                   *ByteData,
496     UINT32                  ByteCount);
497 
498 void
499 AcpiDmByteList (
500     ACPI_OP_WALK_INFO       *Info,
501     ACPI_PARSE_OBJECT       *Op);
502 
503 void
504 AcpiDmIsEisaId (
505     ACPI_PARSE_OBJECT       *Op);
506 
507 void
508 AcpiDmEisaId (
509     UINT32                  EncodedId);
510 
511 BOOLEAN
512 AcpiDmIsUnicodeBuffer (
513     ACPI_PARSE_OBJECT       *Op);
514 
515 BOOLEAN
516 AcpiDmIsStringBuffer (
517     ACPI_PARSE_OBJECT       *Op);
518 
519 
520 /*
521  * dmresrc
522  */
523 void
524 AcpiDmDumpInteger8 (
525     UINT8                   Value,
526     char                    *Name);
527 
528 void
529 AcpiDmDumpInteger16 (
530     UINT16                  Value,
531     char                    *Name);
532 
533 void
534 AcpiDmDumpInteger32 (
535     UINT32                  Value,
536     char                    *Name);
537 
538 void
539 AcpiDmDumpInteger64 (
540     UINT64                  Value,
541     char                    *Name);
542 
543 void
544 AcpiDmResourceTemplate (
545     ACPI_OP_WALK_INFO       *Info,
546     ACPI_PARSE_OBJECT       *Op,
547     UINT8                   *ByteData,
548     UINT32                  ByteCount);
549 
550 ACPI_STATUS
551 AcpiDmIsResourceTemplate (
552     ACPI_PARSE_OBJECT       *Op);
553 
554 void
555 AcpiDmIndent (
556     UINT32                  Level);
557 
558 void
559 AcpiDmBitList (
560     UINT16                  Mask);
561 
562 void
563 AcpiDmDecodeAttribute (
564     UINT8                   Attribute);
565 
566 void
567 AcpiDmDescriptorName (
568     void);
569 
570 
571 /*
572  * dmresrcl
573  */
574 void
575 AcpiDmWordDescriptor (
576     AML_RESOURCE            *Resource,
577     UINT32                  Length,
578     UINT32                  Level);
579 
580 void
581 AcpiDmDwordDescriptor (
582     AML_RESOURCE            *Resource,
583     UINT32                  Length,
584     UINT32                  Level);
585 
586 void
587 AcpiDmExtendedDescriptor (
588     AML_RESOURCE            *Resource,
589     UINT32                  Length,
590     UINT32                  Level);
591 
592 void
593 AcpiDmQwordDescriptor (
594     AML_RESOURCE            *Resource,
595     UINT32                  Length,
596     UINT32                  Level);
597 
598 void
599 AcpiDmMemory24Descriptor (
600     AML_RESOURCE            *Resource,
601     UINT32                  Length,
602     UINT32                  Level);
603 
604 void
605 AcpiDmMemory32Descriptor (
606     AML_RESOURCE            *Resource,
607     UINT32                  Length,
608     UINT32                  Level);
609 
610 void
611 AcpiDmFixedMemory32Descriptor (
612     AML_RESOURCE            *Resource,
613     UINT32                  Length,
614     UINT32                  Level);
615 
616 void
617 AcpiDmGenericRegisterDescriptor (
618     AML_RESOURCE            *Resource,
619     UINT32                  Length,
620     UINT32                  Level);
621 
622 void
623 AcpiDmInterruptDescriptor (
624     AML_RESOURCE            *Resource,
625     UINT32                  Length,
626     UINT32                  Level);
627 
628 void
629 AcpiDmVendorLargeDescriptor (
630     AML_RESOURCE            *Resource,
631     UINT32                  Length,
632     UINT32                  Level);
633 
634 void
635 AcpiDmVendorCommon (
636     char                    *Name,
637     UINT8                   *ByteData,
638     UINT32                  Length,
639     UINT32                  Level);
640 
641 
642 /*
643  * dmresrcs
644  */
645 void
646 AcpiDmIrqDescriptor (
647     AML_RESOURCE            *Resource,
648     UINT32                  Length,
649     UINT32                  Level);
650 
651 void
652 AcpiDmDmaDescriptor (
653     AML_RESOURCE            *Resource,
654     UINT32                  Length,
655     UINT32                  Level);
656 
657 void
658 AcpiDmIoDescriptor (
659     AML_RESOURCE            *Resource,
660     UINT32                  Length,
661     UINT32                  Level);
662 
663 void
664 AcpiDmFixedIoDescriptor (
665     AML_RESOURCE            *Resource,
666     UINT32                  Length,
667     UINT32                  Level);
668 
669 void
670 AcpiDmStartDependentDescriptor (
671     AML_RESOURCE            *Resource,
672     UINT32                  Length,
673     UINT32                  Level);
674 
675 void
676 AcpiDmEndDependentDescriptor (
677     AML_RESOURCE            *Resource,
678     UINT32                  Length,
679     UINT32                  Level);
680 
681 void
682 AcpiDmVendorSmallDescriptor (
683     AML_RESOURCE            *Resource,
684     UINT32                  Length,
685     UINT32                  Level);
686 
687 
688 /*
689  * dmutils
690  */
691 void
692 AcpiDmAddToExternalList (
693     char                    *Path,
694     UINT8                   Type,
695     UINT32                  Value);
696 
697 /*
698  * dmrestag
699  */
700 void
701 AcpiDmFindResources (
702     ACPI_PARSE_OBJECT       *Root);
703 
704 void
705 AcpiDmCheckResourceReference (
706     ACPI_PARSE_OBJECT       *Op,
707     ACPI_WALK_STATE         *WalkState);
708 
709 #endif  /* __ACDISASM_H__ */
710