1 /****************************************************************************** 2 * 3 * Name: acdisasm.h - AML disassembler 4 * 5 *****************************************************************************/ 6 7 /****************************************************************************** 8 * 9 * 1. Copyright Notice 10 * 11 * Some or all of this work - Copyright (c) 1999 - 2009, 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 #ifndef __ACDISASM_H__ 117 #define __ACDISASM_H__ 118 119 #include "amlresrc.h" 120 121 122 #define BLOCK_NONE 0 123 #define BLOCK_PAREN 1 124 #define BLOCK_BRACE 2 125 #define BLOCK_COMMA_LIST 4 126 #define ACPI_DEFAULT_RESNAME *(UINT32 *) "__RD" 127 128 typedef struct acpi_external_list 129 { 130 char *Path; 131 char *InternalPath; 132 struct acpi_external_list *Next; 133 UINT32 Value; 134 UINT16 Length; 135 UINT8 Type; 136 137 } ACPI_EXTERNAL_LIST; 138 139 extern ACPI_EXTERNAL_LIST *AcpiGbl_ExternalList; 140 141 typedef const struct acpi_dmtable_info 142 { 143 UINT8 Opcode; 144 UINT8 Offset; 145 char *Name; 146 147 } ACPI_DMTABLE_INFO; 148 149 /* 150 * Values for Opcode above. 151 * Note: 0-7 must not change, used as a flag shift value 152 */ 153 #define ACPI_DMT_FLAG0 0 154 #define ACPI_DMT_FLAG1 1 155 #define ACPI_DMT_FLAG2 2 156 #define ACPI_DMT_FLAG3 3 157 #define ACPI_DMT_FLAG4 4 158 #define ACPI_DMT_FLAG5 5 159 #define ACPI_DMT_FLAG6 6 160 #define ACPI_DMT_FLAG7 7 161 #define ACPI_DMT_FLAGS0 8 162 #define ACPI_DMT_FLAGS2 9 163 #define ACPI_DMT_UINT8 10 164 #define ACPI_DMT_UINT16 11 165 #define ACPI_DMT_UINT24 12 166 #define ACPI_DMT_UINT32 13 167 #define ACPI_DMT_UINT56 14 168 #define ACPI_DMT_UINT64 15 169 #define ACPI_DMT_STRING 16 170 #define ACPI_DMT_NAME4 17 171 #define ACPI_DMT_NAME6 18 172 #define ACPI_DMT_NAME8 19 173 #define ACPI_DMT_CHKSUM 20 174 #define ACPI_DMT_SPACEID 21 175 #define ACPI_DMT_GAS 22 176 #define ACPI_DMT_ASF 23 177 #define ACPI_DMT_DMAR 24 178 #define ACPI_DMT_HEST 25 179 #define ACPI_DMT_HESTNTFY 26 180 #define ACPI_DMT_HESTNTYP 27 181 #define ACPI_DMT_MADT 28 182 #define ACPI_DMT_SRAT 29 183 #define ACPI_DMT_EXIT 30 184 #define ACPI_DMT_SIG 31 185 #define ACPI_DMT_FADTPM 32 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 AcpiDmTableInfoFadt3[]; 261 extern ACPI_DMTABLE_INFO AcpiDmTableInfoGas[]; 262 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHeader[]; 263 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest[]; 264 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest0[]; 265 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest1[]; 266 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest3[]; 267 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest4[]; 268 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest5[]; 269 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest6[]; 270 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest7[]; 271 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest8[]; 272 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest9[]; 273 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHestNotify[]; 274 extern ACPI_DMTABLE_INFO AcpiDmTableInfoHpet[]; 275 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt[]; 276 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt0[]; 277 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt1[]; 278 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt2[]; 279 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt3[]; 280 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt4[]; 281 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt5[]; 282 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt6[]; 283 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt7[]; 284 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt8[]; 285 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt9[]; 286 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt10[]; 287 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadtHdr[]; 288 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMcfg[]; 289 extern ACPI_DMTABLE_INFO AcpiDmTableInfoMcfg0[]; 290 extern ACPI_DMTABLE_INFO AcpiDmTableInfoRsdp1[]; 291 extern ACPI_DMTABLE_INFO AcpiDmTableInfoRsdp2[]; 292 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSbst[]; 293 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSlic[]; 294 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSlit[]; 295 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSpcr[]; 296 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSpmi[]; 297 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat[]; 298 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSratHdr[]; 299 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat0[]; 300 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat1[]; 301 extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat2[]; 302 extern ACPI_DMTABLE_INFO AcpiDmTableInfoTcpa[]; 303 extern ACPI_DMTABLE_INFO AcpiDmTableInfoWdrt[]; 304 305 306 /* 307 * dmtable 308 */ 309 void 310 AcpiDmDumpDataTable ( 311 ACPI_TABLE_HEADER *Table); 312 313 ACPI_STATUS 314 AcpiDmDumpTable ( 315 UINT32 TableLength, 316 UINT32 TableOffset, 317 void *Table, 318 UINT32 SubTableLength, 319 ACPI_DMTABLE_INFO *Info); 320 321 void 322 AcpiDmLineHeader ( 323 UINT32 Offset, 324 UINT32 ByteLength, 325 char *Name); 326 327 void 328 AcpiDmLineHeader2 ( 329 UINT32 Offset, 330 UINT32 ByteLength, 331 char *Name, 332 UINT32 Value); 333 334 335 /* 336 * dmtbdump 337 */ 338 void 339 AcpiDmDumpAsf ( 340 ACPI_TABLE_HEADER *Table); 341 342 void 343 AcpiDmDumpCpep ( 344 ACPI_TABLE_HEADER *Table); 345 346 void 347 AcpiDmDumpDmar ( 348 ACPI_TABLE_HEADER *Table); 349 350 void 351 AcpiDmDumpEinj ( 352 ACPI_TABLE_HEADER *Table); 353 354 void 355 AcpiDmDumpErst ( 356 ACPI_TABLE_HEADER *Table); 357 358 void 359 AcpiDmDumpFadt ( 360 ACPI_TABLE_HEADER *Table); 361 362 void 363 AcpiDmDumpHest ( 364 ACPI_TABLE_HEADER *Table); 365 366 void 367 AcpiDmDumpMcfg ( 368 ACPI_TABLE_HEADER *Table); 369 370 void 371 AcpiDmDumpMadt ( 372 ACPI_TABLE_HEADER *Table); 373 374 UINT32 375 AcpiDmDumpRsdp ( 376 ACPI_TABLE_HEADER *Table); 377 378 void 379 AcpiDmDumpRsdt ( 380 ACPI_TABLE_HEADER *Table); 381 382 void 383 AcpiDmDumpSlit ( 384 ACPI_TABLE_HEADER *Table); 385 386 void 387 AcpiDmDumpSrat ( 388 ACPI_TABLE_HEADER *Table); 389 390 void 391 AcpiDmDumpXsdt ( 392 ACPI_TABLE_HEADER *Table); 393 394 395 /* 396 * dmwalk 397 */ 398 void 399 AcpiDmDisassemble ( 400 ACPI_WALK_STATE *WalkState, 401 ACPI_PARSE_OBJECT *Origin, 402 UINT32 NumOpcodes); 403 404 void 405 AcpiDmWalkParseTree ( 406 ACPI_PARSE_OBJECT *Op, 407 ASL_WALK_CALLBACK DescendingCallback, 408 ASL_WALK_CALLBACK AscendingCallback, 409 void *Context); 410 411 412 /* 413 * dmopcode 414 */ 415 void 416 AcpiDmDisassembleOneOp ( 417 ACPI_WALK_STATE *WalkState, 418 ACPI_OP_WALK_INFO *Info, 419 ACPI_PARSE_OBJECT *Op); 420 421 void 422 AcpiDmDecodeInternalObject ( 423 ACPI_OPERAND_OBJECT *ObjDesc); 424 425 UINT32 426 AcpiDmListType ( 427 ACPI_PARSE_OBJECT *Op); 428 429 void 430 AcpiDmMethodFlags ( 431 ACPI_PARSE_OBJECT *Op); 432 433 void 434 AcpiDmFieldFlags ( 435 ACPI_PARSE_OBJECT *Op); 436 437 void 438 AcpiDmAddressSpace ( 439 UINT8 SpaceId); 440 441 void 442 AcpiDmRegionFlags ( 443 ACPI_PARSE_OBJECT *Op); 444 445 void 446 AcpiDmMatchOp ( 447 ACPI_PARSE_OBJECT *Op); 448 449 BOOLEAN 450 AcpiDmCommaIfListMember ( 451 ACPI_PARSE_OBJECT *Op); 452 453 void 454 AcpiDmCommaIfFieldMember ( 455 ACPI_PARSE_OBJECT *Op); 456 457 458 /* 459 * dmnames 460 */ 461 UINT32 462 AcpiDmDumpName ( 463 UINT32 Name); 464 465 ACPI_STATUS 466 AcpiPsDisplayObjectPathname ( 467 ACPI_WALK_STATE *WalkState, 468 ACPI_PARSE_OBJECT *Op); 469 470 void 471 AcpiDmNamestring ( 472 char *Name); 473 474 475 /* 476 * dmobject 477 */ 478 void 479 AcpiDmDisplayInternalObject ( 480 ACPI_OPERAND_OBJECT *ObjDesc, 481 ACPI_WALK_STATE *WalkState); 482 483 void 484 AcpiDmDisplayArguments ( 485 ACPI_WALK_STATE *WalkState); 486 487 void 488 AcpiDmDisplayLocals ( 489 ACPI_WALK_STATE *WalkState); 490 491 void 492 AcpiDmDumpMethodInfo ( 493 ACPI_STATUS Status, 494 ACPI_WALK_STATE *WalkState, 495 ACPI_PARSE_OBJECT *Op); 496 497 498 /* 499 * dmbuffer 500 */ 501 void 502 AcpiDmDisasmByteList ( 503 UINT32 Level, 504 UINT8 *ByteData, 505 UINT32 ByteCount); 506 507 void 508 AcpiDmByteList ( 509 ACPI_OP_WALK_INFO *Info, 510 ACPI_PARSE_OBJECT *Op); 511 512 void 513 AcpiDmIsEisaId ( 514 ACPI_PARSE_OBJECT *Op); 515 516 void 517 AcpiDmEisaId ( 518 UINT32 EncodedId); 519 520 BOOLEAN 521 AcpiDmIsUnicodeBuffer ( 522 ACPI_PARSE_OBJECT *Op); 523 524 BOOLEAN 525 AcpiDmIsStringBuffer ( 526 ACPI_PARSE_OBJECT *Op); 527 528 529 /* 530 * dmresrc 531 */ 532 void 533 AcpiDmDumpInteger8 ( 534 UINT8 Value, 535 char *Name); 536 537 void 538 AcpiDmDumpInteger16 ( 539 UINT16 Value, 540 char *Name); 541 542 void 543 AcpiDmDumpInteger32 ( 544 UINT32 Value, 545 char *Name); 546 547 void 548 AcpiDmDumpInteger64 ( 549 UINT64 Value, 550 char *Name); 551 552 void 553 AcpiDmResourceTemplate ( 554 ACPI_OP_WALK_INFO *Info, 555 ACPI_PARSE_OBJECT *Op, 556 UINT8 *ByteData, 557 UINT32 ByteCount); 558 559 ACPI_STATUS 560 AcpiDmIsResourceTemplate ( 561 ACPI_PARSE_OBJECT *Op); 562 563 void 564 AcpiDmIndent ( 565 UINT32 Level); 566 567 void 568 AcpiDmBitList ( 569 UINT16 Mask); 570 571 void 572 AcpiDmDecodeAttribute ( 573 UINT8 Attribute); 574 575 void 576 AcpiDmDescriptorName ( 577 void); 578 579 580 /* 581 * dmresrcl 582 */ 583 void 584 AcpiDmWordDescriptor ( 585 AML_RESOURCE *Resource, 586 UINT32 Length, 587 UINT32 Level); 588 589 void 590 AcpiDmDwordDescriptor ( 591 AML_RESOURCE *Resource, 592 UINT32 Length, 593 UINT32 Level); 594 595 void 596 AcpiDmExtendedDescriptor ( 597 AML_RESOURCE *Resource, 598 UINT32 Length, 599 UINT32 Level); 600 601 void 602 AcpiDmQwordDescriptor ( 603 AML_RESOURCE *Resource, 604 UINT32 Length, 605 UINT32 Level); 606 607 void 608 AcpiDmMemory24Descriptor ( 609 AML_RESOURCE *Resource, 610 UINT32 Length, 611 UINT32 Level); 612 613 void 614 AcpiDmMemory32Descriptor ( 615 AML_RESOURCE *Resource, 616 UINT32 Length, 617 UINT32 Level); 618 619 void 620 AcpiDmFixedMemory32Descriptor ( 621 AML_RESOURCE *Resource, 622 UINT32 Length, 623 UINT32 Level); 624 625 void 626 AcpiDmGenericRegisterDescriptor ( 627 AML_RESOURCE *Resource, 628 UINT32 Length, 629 UINT32 Level); 630 631 void 632 AcpiDmInterruptDescriptor ( 633 AML_RESOURCE *Resource, 634 UINT32 Length, 635 UINT32 Level); 636 637 void 638 AcpiDmVendorLargeDescriptor ( 639 AML_RESOURCE *Resource, 640 UINT32 Length, 641 UINT32 Level); 642 643 void 644 AcpiDmVendorCommon ( 645 char *Name, 646 UINT8 *ByteData, 647 UINT32 Length, 648 UINT32 Level); 649 650 651 /* 652 * dmresrcs 653 */ 654 void 655 AcpiDmIrqDescriptor ( 656 AML_RESOURCE *Resource, 657 UINT32 Length, 658 UINT32 Level); 659 660 void 661 AcpiDmDmaDescriptor ( 662 AML_RESOURCE *Resource, 663 UINT32 Length, 664 UINT32 Level); 665 666 void 667 AcpiDmIoDescriptor ( 668 AML_RESOURCE *Resource, 669 UINT32 Length, 670 UINT32 Level); 671 672 void 673 AcpiDmFixedIoDescriptor ( 674 AML_RESOURCE *Resource, 675 UINT32 Length, 676 UINT32 Level); 677 678 void 679 AcpiDmStartDependentDescriptor ( 680 AML_RESOURCE *Resource, 681 UINT32 Length, 682 UINT32 Level); 683 684 void 685 AcpiDmEndDependentDescriptor ( 686 AML_RESOURCE *Resource, 687 UINT32 Length, 688 UINT32 Level); 689 690 void 691 AcpiDmVendorSmallDescriptor ( 692 AML_RESOURCE *Resource, 693 UINT32 Length, 694 UINT32 Level); 695 696 697 /* 698 * dmutils 699 */ 700 void 701 AcpiDmAddToExternalList ( 702 char *Path, 703 UINT8 Type, 704 UINT32 Value); 705 706 /* 707 * dmrestag 708 */ 709 void 710 AcpiDmFindResources ( 711 ACPI_PARSE_OBJECT *Root); 712 713 void 714 AcpiDmCheckResourceReference ( 715 ACPI_PARSE_OBJECT *Op, 716 ACPI_WALK_STATE *WalkState); 717 718 #endif /* __ACDISASM_H__ */ 719