Home | History | Annotate | Line # | Download | only in include
acdisasm.h revision 1.25
      1   1.1    jruoho /******************************************************************************
      2   1.1    jruoho  *
      3   1.1    jruoho  * Name: acdisasm.h - AML disassembler
      4   1.1    jruoho  *
      5   1.1    jruoho  *****************************************************************************/
      6   1.1    jruoho 
      7   1.3    jruoho /*
      8  1.25  christos  * Copyright (C) 2000 - 2022, Intel Corp.
      9   1.1    jruoho  * All rights reserved.
     10   1.1    jruoho  *
     11   1.3    jruoho  * Redistribution and use in source and binary forms, with or without
     12   1.3    jruoho  * modification, are permitted provided that the following conditions
     13   1.3    jruoho  * are met:
     14   1.3    jruoho  * 1. Redistributions of source code must retain the above copyright
     15   1.3    jruoho  *    notice, this list of conditions, and the following disclaimer,
     16   1.3    jruoho  *    without modification.
     17   1.3    jruoho  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18   1.3    jruoho  *    substantially similar to the "NO WARRANTY" disclaimer below
     19   1.3    jruoho  *    ("Disclaimer") and any redistribution must be conditioned upon
     20   1.3    jruoho  *    including a substantially similar Disclaimer requirement for further
     21   1.3    jruoho  *    binary redistribution.
     22   1.3    jruoho  * 3. Neither the names of the above-listed copyright holders nor the names
     23   1.3    jruoho  *    of any contributors may be used to endorse or promote products derived
     24   1.3    jruoho  *    from this software without specific prior written permission.
     25   1.3    jruoho  *
     26   1.3    jruoho  * Alternatively, this software may be distributed under the terms of the
     27   1.3    jruoho  * GNU General Public License ("GPL") version 2 as published by the Free
     28   1.3    jruoho  * Software Foundation.
     29   1.3    jruoho  *
     30   1.3    jruoho  * NO WARRANTY
     31   1.3    jruoho  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32   1.3    jruoho  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.21  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     34   1.3    jruoho  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35   1.3    jruoho  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36   1.3    jruoho  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37   1.3    jruoho  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38   1.3    jruoho  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39   1.3    jruoho  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40   1.3    jruoho  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41   1.3    jruoho  * POSSIBILITY OF SUCH DAMAGES.
     42   1.3    jruoho  */
     43   1.1    jruoho 
     44   1.1    jruoho #ifndef __ACDISASM_H__
     45   1.1    jruoho #define __ACDISASM_H__
     46   1.1    jruoho 
     47   1.1    jruoho #include "amlresrc.h"
     48   1.1    jruoho 
     49   1.1    jruoho 
     50   1.1    jruoho #define BLOCK_NONE              0
     51   1.1    jruoho #define BLOCK_PAREN             1
     52   1.1    jruoho #define BLOCK_BRACE             2
     53   1.1    jruoho #define BLOCK_COMMA_LIST        4
     54   1.2    jruoho #define ACPI_DEFAULT_RESNAME    *(const UINT32 *) "__RD"
     55   1.1    jruoho 
     56   1.3    jruoho /*
     57   1.3    jruoho  * Raw table data header. Used by disassembler and data table compiler.
     58   1.3    jruoho  * Do not change.
     59   1.3    jruoho  */
     60   1.3    jruoho #define ACPI_RAW_TABLE_DATA_HEADER      "Raw Table Data"
     61   1.3    jruoho 
     62   1.1    jruoho 
     63   1.8  christos typedef struct acpi_dmtable_info
     64   1.1    jruoho {
     65   1.1    jruoho     UINT8                       Opcode;
     66   1.5  christos     UINT16                      Offset;
     67   1.1    jruoho     char                        *Name;
     68   1.1    jruoho     UINT8                       Flags;
     69   1.1    jruoho 
     70   1.1    jruoho } ACPI_DMTABLE_INFO;
     71   1.1    jruoho 
     72   1.5  christos /* Values for Flags field above */
     73   1.5  christos 
     74   1.1    jruoho #define DT_LENGTH                       0x01    /* Field is a subtable length */
     75   1.1    jruoho #define DT_FLAG                         0x02    /* Field is a flag value */
     76   1.1    jruoho #define DT_NON_ZERO                     0x04    /* Field must be non-zero */
     77   1.5  christos #define DT_OPTIONAL                     0x08    /* Field is optional */
     78   1.5  christos #define DT_DESCRIBES_OPTIONAL           0x10    /* Field describes an optional field (length, etc.) */
     79   1.5  christos #define DT_COUNT                        0x20    /* Currently not used */
     80   1.1    jruoho 
     81   1.1    jruoho /*
     82   1.1    jruoho  * Values for Opcode above.
     83   1.5  christos  * Note: 0-7 must not change, they are used as a flag shift value. Other
     84   1.5  christos  * than those, new values can be added wherever appropriate.
     85   1.1    jruoho  */
     86   1.5  christos typedef enum
     87   1.5  christos {
     88   1.5  christos     /* Simple Data Types */
     89   1.5  christos 
     90   1.5  christos     ACPI_DMT_FLAG0          = 0,
     91   1.5  christos     ACPI_DMT_FLAG1          = 1,
     92   1.5  christos     ACPI_DMT_FLAG2          = 2,
     93   1.5  christos     ACPI_DMT_FLAG3          = 3,
     94   1.5  christos     ACPI_DMT_FLAG4          = 4,
     95   1.5  christos     ACPI_DMT_FLAG5          = 5,
     96   1.5  christos     ACPI_DMT_FLAG6          = 6,
     97   1.5  christos     ACPI_DMT_FLAG7          = 7,
     98   1.5  christos     ACPI_DMT_FLAGS0,
     99   1.5  christos     ACPI_DMT_FLAGS1,
    100   1.5  christos     ACPI_DMT_FLAGS2,
    101  1.25  christos     ACPI_DMT_FLAGS8_2,
    102   1.5  christos     ACPI_DMT_FLAGS4,
    103  1.14  christos     ACPI_DMT_FLAGS4_0,
    104  1.14  christos     ACPI_DMT_FLAGS4_4,
    105  1.14  christos     ACPI_DMT_FLAGS4_8,
    106  1.14  christos     ACPI_DMT_FLAGS4_12,
    107  1.14  christos     ACPI_DMT_FLAGS16_16,
    108   1.5  christos     ACPI_DMT_UINT8,
    109   1.5  christos     ACPI_DMT_UINT16,
    110   1.5  christos     ACPI_DMT_UINT24,
    111   1.5  christos     ACPI_DMT_UINT32,
    112   1.5  christos     ACPI_DMT_UINT40,
    113   1.5  christos     ACPI_DMT_UINT48,
    114   1.5  christos     ACPI_DMT_UINT56,
    115   1.5  christos     ACPI_DMT_UINT64,
    116   1.5  christos     ACPI_DMT_BUF7,
    117   1.5  christos     ACPI_DMT_BUF10,
    118  1.11  christos     ACPI_DMT_BUF12,
    119   1.5  christos     ACPI_DMT_BUF16,
    120  1.23  christos     ACPI_DMT_BUF18,
    121   1.5  christos     ACPI_DMT_BUF128,
    122   1.5  christos     ACPI_DMT_SIG,
    123   1.5  christos     ACPI_DMT_STRING,
    124   1.5  christos     ACPI_DMT_NAME4,
    125   1.5  christos     ACPI_DMT_NAME6,
    126   1.5  christos     ACPI_DMT_NAME8,
    127   1.5  christos 
    128   1.5  christos     /* Types that are decoded to strings and miscellaneous */
    129   1.5  christos 
    130   1.5  christos     ACPI_DMT_ACCWIDTH,
    131   1.5  christos     ACPI_DMT_CHKSUM,
    132   1.5  christos     ACPI_DMT_GAS,
    133   1.5  christos     ACPI_DMT_SPACEID,
    134   1.5  christos     ACPI_DMT_UNICODE,
    135   1.5  christos     ACPI_DMT_UUID,
    136   1.5  christos 
    137   1.5  christos     /* Types used only for the Data Table Compiler */
    138   1.5  christos 
    139   1.5  christos     ACPI_DMT_BUFFER,
    140   1.7  christos     ACPI_DMT_RAW_BUFFER,  /* Large, multiple line buffer */
    141   1.5  christos     ACPI_DMT_DEVICE_PATH,
    142   1.5  christos     ACPI_DMT_LABEL,
    143   1.5  christos     ACPI_DMT_PCI_PATH,
    144   1.5  christos 
    145   1.5  christos     /* Types that are specific to particular ACPI tables */
    146   1.5  christos 
    147  1.23  christos     ACPI_DMT_AEST,
    148  1.23  christos     ACPI_DMT_AEST_CACHE,
    149  1.23  christos     ACPI_DMT_AEST_GIC,
    150  1.23  christos     ACPI_DMT_AEST_RES,
    151  1.23  christos     ACPI_DMT_AEST_XFACE,
    152  1.23  christos     ACPI_DMT_AEST_XRUPT,
    153  1.24  christos     ACPI_DMT_AGDI,
    154   1.5  christos     ACPI_DMT_ASF,
    155  1.21  christos     ACPI_DMT_CEDT,
    156   1.5  christos     ACPI_DMT_DMAR,
    157   1.6  christos     ACPI_DMT_DMAR_SCOPE,
    158   1.5  christos     ACPI_DMT_EINJACT,
    159   1.5  christos     ACPI_DMT_EINJINST,
    160   1.5  christos     ACPI_DMT_ERSTACT,
    161   1.5  christos     ACPI_DMT_ERSTINST,
    162   1.5  christos     ACPI_DMT_FADTPM,
    163   1.6  christos     ACPI_DMT_GTDT,
    164   1.5  christos     ACPI_DMT_HEST,
    165   1.5  christos     ACPI_DMT_HESTNTFY,
    166   1.5  christos     ACPI_DMT_HESTNTYP,
    167  1.14  christos     ACPI_DMT_HMAT,
    168   1.8  christos     ACPI_DMT_IORTMEM,
    169   1.5  christos     ACPI_DMT_IVRS,
    170  1.22  christos     ACPI_DMT_IVRS_DE,
    171  1.22  christos     ACPI_DMT_IVRS_UNTERMINATED_STRING,
    172   1.6  christos     ACPI_DMT_LPIT,
    173   1.5  christos     ACPI_DMT_MADT,
    174   1.8  christos     ACPI_DMT_NFIT,
    175  1.23  christos     ACPI_DMT_NHLT1,
    176  1.23  christos     ACPI_DMT_NHLT1a,
    177  1.24  christos     ACPI_DMT_NHLT1b,
    178  1.24  christos     ACPI_DMT_NHLT1c,
    179  1.24  christos     ACPI_DMT_NHLT1d,
    180  1.24  christos     ACPI_DMT_NHLT1e,
    181  1.24  christos     ACPI_DMT_NHLT1f,
    182   1.5  christos     ACPI_DMT_PCCT,
    183  1.21  christos     ACPI_DMT_PHAT,
    184   1.5  christos     ACPI_DMT_PMTT,
    185  1.21  christos     ACPI_DMT_PMTT_VENDOR,
    186  1.14  christos     ACPI_DMT_PPTT,
    187  1.22  christos     ACPI_DMT_RGRT,
    188  1.14  christos     ACPI_DMT_SDEI,
    189  1.15  christos     ACPI_DMT_SDEV,
    190   1.5  christos     ACPI_DMT_SLIC,
    191   1.5  christos     ACPI_DMT_SRAT,
    192  1.15  christos     ACPI_DMT_TPM2,
    193  1.21  christos     ACPI_DMT_VIOT,
    194  1.23  christos     ACPI_DMT_WPBT_UNICODE,
    195   1.5  christos 
    196   1.5  christos     /* Special opcodes */
    197   1.5  christos 
    198   1.5  christos     ACPI_DMT_EXTRA_TEXT,
    199   1.5  christos     ACPI_DMT_EXIT
    200   1.5  christos 
    201   1.5  christos } ACPI_ENTRY_TYPES;
    202   1.1    jruoho 
    203   1.1    jruoho typedef
    204   1.1    jruoho void (*ACPI_DMTABLE_HANDLER) (
    205   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    206   1.1    jruoho 
    207   1.1    jruoho typedef
    208   1.1    jruoho ACPI_STATUS (*ACPI_CMTABLE_HANDLER) (
    209   1.1    jruoho     void                    **PFieldList);
    210   1.1    jruoho 
    211   1.1    jruoho typedef struct acpi_dmtable_data
    212   1.1    jruoho {
    213   1.1    jruoho     char                    *Signature;
    214   1.1    jruoho     ACPI_DMTABLE_INFO       *TableInfo;
    215   1.1    jruoho     ACPI_DMTABLE_HANDLER    TableHandler;
    216   1.1    jruoho     ACPI_CMTABLE_HANDLER    CmTableHandler;
    217   1.3    jruoho     const unsigned char     *Template;
    218   1.1    jruoho 
    219   1.1    jruoho } ACPI_DMTABLE_DATA;
    220   1.1    jruoho 
    221   1.1    jruoho 
    222   1.1    jruoho typedef struct acpi_op_walk_info
    223   1.1    jruoho {
    224   1.9  christos     ACPI_WALK_STATE         *WalkState;
    225   1.9  christos     ACPI_PARSE_OBJECT       *MappingOp;
    226   1.9  christos     UINT8                   *PreviousAml;
    227   1.9  christos     UINT8                   *StartAml;
    228   1.1    jruoho     UINT32                  Level;
    229   1.1    jruoho     UINT32                  LastLevel;
    230   1.1    jruoho     UINT32                  Count;
    231   1.1    jruoho     UINT32                  BitOffset;
    232   1.1    jruoho     UINT32                  Flags;
    233   1.9  christos     UINT32                  AmlOffset;
    234   1.1    jruoho 
    235   1.1    jruoho } ACPI_OP_WALK_INFO;
    236   1.1    jruoho 
    237   1.1    jruoho /*
    238   1.1    jruoho  * TBD - another copy of this is in asltypes.h, fix
    239   1.1    jruoho  */
    240   1.1    jruoho #ifndef ASL_WALK_CALLBACK_DEFINED
    241   1.1    jruoho typedef
    242   1.1    jruoho ACPI_STATUS (*ASL_WALK_CALLBACK) (
    243   1.1    jruoho     ACPI_PARSE_OBJECT           *Op,
    244   1.1    jruoho     UINT32                      Level,
    245   1.1    jruoho     void                        *Context);
    246   1.1    jruoho #define ASL_WALK_CALLBACK_DEFINED
    247   1.1    jruoho #endif
    248   1.1    jruoho 
    249   1.5  christos typedef
    250   1.5  christos void (*ACPI_RESOURCE_HANDLER) (
    251   1.6  christos     ACPI_OP_WALK_INFO       *Info,
    252   1.5  christos     AML_RESOURCE            *Resource,
    253   1.5  christos     UINT32                  Length,
    254   1.5  christos     UINT32                  Level);
    255   1.1    jruoho 
    256   1.1    jruoho typedef struct acpi_resource_tag
    257   1.1    jruoho {
    258   1.1    jruoho     UINT32                  BitIndex;
    259   1.1    jruoho     char                    *Tag;
    260   1.1    jruoho 
    261   1.1    jruoho } ACPI_RESOURCE_TAG;
    262   1.1    jruoho 
    263   1.1    jruoho /* Strings used for decoding flags to ASL keywords */
    264   1.1    jruoho 
    265   1.1    jruoho extern const char               *AcpiGbl_WordDecode[];
    266   1.1    jruoho extern const char               *AcpiGbl_IrqDecode[];
    267   1.1    jruoho extern const char               *AcpiGbl_LockRule[];
    268   1.1    jruoho extern const char               *AcpiGbl_AccessTypes[];
    269   1.1    jruoho extern const char               *AcpiGbl_UpdateRules[];
    270   1.1    jruoho extern const char               *AcpiGbl_MatchOps[];
    271   1.1    jruoho 
    272  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestHdr[];
    273  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestProcError[];
    274  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestCacheRsrc[];
    275  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestTlbRsrc[];
    276  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestGenRsrc[];
    277  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestMemError[];
    278  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestSmmuError[];
    279  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestVendorError[];
    280  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestGicError[];
    281  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestXface[];
    282  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAestXrupt[];
    283  1.24  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAgdi[];
    284  1.25  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoApmtNode[];
    285   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf0[];
    286   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf1[];
    287   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf1a[];
    288   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf2[];
    289   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf2a[];
    290   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf3[];
    291   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsf4[];
    292   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoAsfHdr[];
    293  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoBdat[];
    294   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoBoot[];
    295   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoBert[];
    296   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoBgrt[];
    297  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCedtHdr[];
    298  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCedt0[];
    299  1.25  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCedt1[];
    300  1.25  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCedt1_te[];
    301   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCpep[];
    302   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCpep0[];
    303   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCsrt0[];
    304   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCsrt1[];
    305   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCsrt2[];
    306   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoCsrt2a[];
    307   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbg2[];
    308   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbg2Device[];
    309   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbg2Addr[];
    310   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbg2Size[];
    311   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbg2Name[];
    312   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbg2OemData[];
    313   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDbgp[];
    314   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar[];
    315   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmarHdr[];
    316   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmarScope[];
    317   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar0[];
    318   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar1[];
    319   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar2[];
    320   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar3[];
    321   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar4[];
    322  1.25  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDmar5[];
    323   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDrtm[];
    324   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDrtm0[];
    325   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDrtm0a[];
    326   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDrtm1[];
    327   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDrtm1a[];
    328   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoDrtm2[];
    329   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoEcdt[];
    330   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoEinj[];
    331   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoEinj0[];
    332   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoErst[];
    333   1.3    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoErst0[];
    334   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFacs[];
    335   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFadt1[];
    336  1.12  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFadt2[];
    337   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFadt3[];
    338   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFadt5[];
    339   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFadt6[];
    340   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFpdt[];
    341   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFpdtHdr[];
    342   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFpdt0[];
    343   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoFpdt1[];
    344   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGas[];
    345   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGtdt[];
    346   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGtdtHdr[];
    347  1.19  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGtdtEl2[];
    348   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGtdt0[];
    349   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGtdt0a[];
    350   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGtdt1[];
    351   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHeader[];
    352   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest[];
    353   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest0[];
    354   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest1[];
    355   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest2[];
    356   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest6[];
    357   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest7[];
    358   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest8[];
    359   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest9[];
    360  1.10  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest10[];
    361  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHest11[];
    362   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHestNotify[];
    363   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHestBank[];
    364   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHpet[];
    365   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoLpitHdr[];
    366   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoLpit0[];
    367   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoLpit1[];
    368  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat[];
    369  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat0[];
    370  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat1[];
    371  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat1a[];
    372  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat1b[];
    373  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat1c[];
    374  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat2[];
    375  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmat2a[];
    376  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoHmatHdr[];
    377   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort[];
    378   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort0[];
    379   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort0a[];
    380   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort1[];
    381   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort1a[];
    382   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort2[];
    383   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort3[];
    384   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort3a[];
    385   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort3b[];
    386   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort3c[];
    387  1.10  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort4[];
    388  1.17  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort5[];
    389  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort6[];
    390  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIort6a[];
    391   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIortAcc[];
    392   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIortHdr[];
    393  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIortHdr3[];
    394   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIortMap[];
    395   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIortPad[];
    396   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrs[];
    397  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsHware1[];
    398  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsHware23[];
    399  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsMemory[];
    400   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrs4[];
    401   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrs8a[];
    402   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrs8b[];
    403   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrs8c[];
    404  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsCidString[];
    405  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsCidInteger[];
    406  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsHid[];
    407  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsUidString[];
    408  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsUidInteger[];
    409  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsHidString[];
    410  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoIvrsHidInteger[];
    411   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt[];
    412   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt0[];
    413   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt1[];
    414   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt2[];
    415   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt3[];
    416   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt4[];
    417   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt5[];
    418   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt6[];
    419   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt7[];
    420   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt8[];
    421   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt9[];
    422   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt10[];
    423   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt11[];
    424   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt12[];
    425   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt13[];
    426   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt14[];
    427   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt15[];
    428  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt16[];
    429  1.25  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadt17[];
    430   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMadtHdr[];
    431   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMcfg[];
    432   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMcfg0[];
    433   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMchi[];
    434   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMpst[];
    435   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMpst0[];
    436   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMpst0A[];
    437   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMpst0B[];
    438   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMpst1[];
    439   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMpst2[];
    440   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMsct[];
    441   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoMsct0[];
    442   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit[];
    443   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfitHdr[];
    444   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit0[];
    445   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit1[];
    446   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit2[];
    447   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit2a[];
    448   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit3[];
    449   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit3a[];
    450   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit4[];
    451   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit5[];
    452   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit6[];
    453   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit6a[];
    454  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNfit7[];
    455  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt[];
    456  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt0[];
    457  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt1[];
    458  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt2[];
    459  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt3[];
    460  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt3a[];
    461  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt4[];
    462  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt5[];
    463  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt5a[];
    464  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt5b[];
    465  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt5c[];
    466  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt6[];
    467  1.24  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt6a[];
    468  1.24  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt6b[];
    469  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt7[];
    470  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt7a[];
    471  1.24  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt7b[];
    472  1.24  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoNhlt9[];
    473  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPhatHdr[];
    474  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPhat0[];
    475  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPhat0a[];
    476  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPhat1[];
    477  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPhat1a[];
    478  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPhat1b[];
    479   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPmtt[];
    480   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPmtt0[];
    481   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPmtt1[];
    482   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPmtt2[];
    483  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPmttVendor[];
    484   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPmttHdr[];
    485   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcct[];
    486   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcctHdr[];
    487   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcct0[];
    488   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcct1[];
    489  1.10  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcct2[];
    490  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcct3[];
    491  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcct4[];
    492  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPcct5[];
    493  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPdtt[];
    494  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPdtt0[];
    495  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPptt0[];
    496  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPptt0a[];
    497  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPptt1[];
    498  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPptt1a[];
    499  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPptt2[];
    500  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPpttHdr[];
    501  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPrmtHdr[];
    502  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPrmtModule[];
    503  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoPrmtHandler[];
    504  1.11  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoRasf[];
    505  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoRgrt[];
    506  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoRgrt0[];
    507   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoRsdp1[];
    508   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoRsdp2[];
    509   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoS3pt[];
    510   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoS3ptHdr[];
    511   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoS3pt0[];
    512   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoS3pt1[];
    513   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSbst[];
    514  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdei[];
    515  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdev[];
    516  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdevHdr[];
    517  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdev0[];
    518  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdev0a[];
    519  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdev0b[];
    520  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdevSecCompHdr[];
    521  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdevSecCompId[];
    522  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdevSecCompMem[];
    523  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdev1[];
    524  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdev1a[];
    525  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSdev1b[];
    526   1.7  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSlic[];
    527   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSlit[];
    528   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSpcr[];
    529   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSpmi[];
    530   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat[];
    531   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSratHdr[];
    532   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat0[];
    533   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat1[];
    534   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat2[];
    535   1.6  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat3[];
    536  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat4[];
    537  1.19  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat5[];
    538  1.23  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSrat6[];
    539   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoStao[];
    540   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoStaoStr[];
    541  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSvkl[];
    542  1.22  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoSvkl0[];
    543   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTcpaHdr[];
    544   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTcpaClient[];
    545   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTcpaServer[];
    546  1.24  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTdel[];
    547   1.5  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTpm2[];
    548  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTpm2a[];
    549  1.15  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTpm211[];
    550  1.18  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTpm23[];
    551  1.18  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoTpm23a[];
    552   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoUefi[];
    553  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoViot[];
    554  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoViotHeader[];
    555  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoViot1[];
    556  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoViot2[];
    557  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoViot3[];
    558  1.21  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoViot4[];
    559   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWaet[];
    560   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWdat[];
    561   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWdat0[];
    562   1.3    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWddt[];
    563   1.1    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWdrt[];
    564   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWpbt[];
    565   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWpbt0[];
    566  1.14  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoWsmt[];
    567   1.8  christos extern ACPI_DMTABLE_INFO        AcpiDmTableInfoXenv[];
    568   1.1    jruoho 
    569   1.3    jruoho extern ACPI_DMTABLE_INFO        AcpiDmTableInfoGeneric[][2];
    570   1.3    jruoho 
    571   1.1    jruoho /*
    572   1.8  christos  * dmtable and ahtable
    573   1.1    jruoho  */
    574   1.8  christos extern const ACPI_DMTABLE_DATA  AcpiDmTableData[];
    575  1.18  christos extern const AH_TABLE           AcpiGbl_SupportedTables[];
    576   1.3    jruoho 
    577   1.3    jruoho UINT8
    578   1.3    jruoho AcpiDmGenerateChecksum (
    579   1.3    jruoho     void                    *Table,
    580   1.3    jruoho     UINT32                  Length,
    581   1.3    jruoho     UINT8                   OriginalChecksum);
    582   1.1    jruoho 
    583   1.8  christos const ACPI_DMTABLE_DATA *
    584   1.1    jruoho AcpiDmGetTableData (
    585   1.1    jruoho     char                    *Signature);
    586   1.1    jruoho 
    587   1.1    jruoho void
    588   1.1    jruoho AcpiDmDumpDataTable (
    589   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    590   1.1    jruoho 
    591   1.1    jruoho ACPI_STATUS
    592   1.1    jruoho AcpiDmDumpTable (
    593   1.1    jruoho     UINT32                  TableLength,
    594   1.1    jruoho     UINT32                  TableOffset,
    595   1.1    jruoho     void                    *Table,
    596  1.15  christos     UINT32                  SubtableLength,
    597   1.1    jruoho     ACPI_DMTABLE_INFO        *Info);
    598   1.1    jruoho 
    599   1.1    jruoho void
    600   1.1    jruoho AcpiDmLineHeader (
    601   1.1    jruoho     UINT32                  Offset,
    602   1.1    jruoho     UINT32                  ByteLength,
    603   1.1    jruoho     char                    *Name);
    604   1.1    jruoho 
    605   1.1    jruoho void
    606   1.1    jruoho AcpiDmLineHeader2 (
    607   1.1    jruoho     UINT32                  Offset,
    608   1.1    jruoho     UINT32                  ByteLength,
    609   1.1    jruoho     char                    *Name,
    610   1.1    jruoho     UINT32                  Value);
    611   1.1    jruoho 
    612   1.1    jruoho 
    613   1.1    jruoho /*
    614   1.1    jruoho  * dmtbdump
    615   1.1    jruoho  */
    616   1.1    jruoho void
    617   1.7  christos AcpiDmDumpBuffer (
    618   1.7  christos     void                    *Table,
    619   1.7  christos     UINT32                  BufferOffset,
    620   1.7  christos     UINT32                  Length,
    621   1.7  christos     UINT32                  AbsoluteOffset,
    622   1.8  christos     char                    *Header);
    623   1.8  christos 
    624   1.8  christos void
    625   1.8  christos AcpiDmDumpUnicode (
    626   1.8  christos     void                    *Table,
    627   1.8  christos     UINT32                  BufferOffset,
    628   1.8  christos     UINT32                  ByteLength);
    629   1.7  christos 
    630   1.7  christos void
    631  1.23  christos AcpiDmDumpAest (
    632  1.23  christos     ACPI_TABLE_HEADER       *Table);
    633  1.23  christos 
    634  1.23  christos void
    635  1.25  christos AcpiDmDumpApmt (
    636  1.25  christos     ACPI_TABLE_HEADER       *Table);
    637  1.25  christos 
    638  1.25  christos void
    639   1.1    jruoho AcpiDmDumpAsf (
    640   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    641   1.1    jruoho 
    642   1.1    jruoho void
    643  1.21  christos AcpiDmDumpCedt (
    644  1.21  christos     ACPI_TABLE_HEADER       *Table);
    645  1.21  christos 
    646  1.21  christos void
    647   1.1    jruoho AcpiDmDumpCpep (
    648   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    649   1.1    jruoho 
    650   1.1    jruoho void
    651   1.5  christos AcpiDmDumpCsrt (
    652   1.5  christos     ACPI_TABLE_HEADER       *Table);
    653   1.5  christos 
    654   1.5  christos void
    655   1.5  christos AcpiDmDumpDbg2 (
    656   1.5  christos     ACPI_TABLE_HEADER       *Table);
    657   1.5  christos 
    658   1.5  christos void
    659   1.1    jruoho AcpiDmDumpDmar (
    660   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    661   1.1    jruoho 
    662   1.1    jruoho void
    663   1.8  christos AcpiDmDumpDrtm (
    664   1.8  christos     ACPI_TABLE_HEADER       *Table);
    665   1.8  christos 
    666   1.8  christos void
    667   1.1    jruoho AcpiDmDumpEinj (
    668   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    669   1.1    jruoho 
    670   1.1    jruoho void
    671   1.1    jruoho AcpiDmDumpErst (
    672   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    673   1.1    jruoho 
    674   1.1    jruoho void
    675   1.1    jruoho AcpiDmDumpFadt (
    676   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    677   1.1    jruoho 
    678   1.1    jruoho void
    679   1.5  christos AcpiDmDumpFpdt (
    680   1.5  christos     ACPI_TABLE_HEADER       *Table);
    681   1.5  christos 
    682   1.5  christos void
    683   1.6  christos AcpiDmDumpGtdt (
    684   1.6  christos     ACPI_TABLE_HEADER       *Table);
    685   1.6  christos 
    686   1.6  christos void
    687   1.1    jruoho AcpiDmDumpHest (
    688   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    689   1.1    jruoho 
    690   1.1    jruoho void
    691  1.14  christos AcpiDmDumpHmat (
    692  1.14  christos     ACPI_TABLE_HEADER       *Table);
    693  1.14  christos 
    694  1.14  christos void
    695   1.8  christos AcpiDmDumpIort (
    696   1.8  christos     ACPI_TABLE_HEADER       *Table);
    697   1.8  christos 
    698   1.8  christos void
    699   1.1    jruoho AcpiDmDumpIvrs (
    700   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    701   1.1    jruoho 
    702   1.1    jruoho void
    703   1.6  christos AcpiDmDumpLpit (
    704   1.6  christos     ACPI_TABLE_HEADER       *Table);
    705   1.6  christos 
    706   1.6  christos void
    707   1.5  christos AcpiDmDumpMadt (
    708   1.5  christos     ACPI_TABLE_HEADER       *Table);
    709   1.5  christos 
    710   1.5  christos void
    711   1.1    jruoho AcpiDmDumpMcfg (
    712   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    713   1.1    jruoho 
    714   1.1    jruoho void
    715   1.5  christos AcpiDmDumpMpst (
    716   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    717   1.1    jruoho 
    718   1.1    jruoho void
    719   1.1    jruoho AcpiDmDumpMsct (
    720   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    721   1.1    jruoho 
    722   1.5  christos void
    723  1.21  christos AcpiDmDumpNfit (
    724   1.5  christos     ACPI_TABLE_HEADER       *Table);
    725   1.5  christos 
    726   1.5  christos void
    727  1.23  christos AcpiDmDumpNhlt (
    728  1.23  christos     ACPI_TABLE_HEADER       *Table);
    729  1.23  christos 
    730  1.23  christos void
    731  1.21  christos AcpiDmDumpPcct (
    732   1.8  christos     ACPI_TABLE_HEADER       *Table);
    733   1.8  christos 
    734   1.8  christos void
    735  1.21  christos AcpiDmDumpPdtt (
    736   1.5  christos     ACPI_TABLE_HEADER       *Table);
    737   1.5  christos 
    738   1.5  christos void
    739  1.21  christos AcpiDmDumpPhat (
    740  1.15  christos     ACPI_TABLE_HEADER       *Table);
    741  1.15  christos 
    742  1.15  christos void
    743   1.5  christos AcpiDmDumpPmtt (
    744   1.5  christos     ACPI_TABLE_HEADER       *Table);
    745   1.5  christos 
    746  1.14  christos void
    747  1.14  christos AcpiDmDumpPptt (
    748  1.14  christos     ACPI_TABLE_HEADER       *Table);
    749  1.14  christos 
    750  1.22  christos void
    751  1.22  christos AcpiDmDumpPrmt (
    752  1.22  christos     ACPI_TABLE_HEADER       *Table);
    753  1.22  christos 
    754  1.22  christos void
    755  1.22  christos AcpiDmDumpRgrt (
    756  1.22  christos     ACPI_TABLE_HEADER       *Table);
    757  1.22  christos 
    758   1.1    jruoho UINT32
    759   1.1    jruoho AcpiDmDumpRsdp (
    760   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    761   1.1    jruoho 
    762   1.1    jruoho void
    763   1.1    jruoho AcpiDmDumpRsdt (
    764   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    765   1.1    jruoho 
    766   1.5  christos UINT32
    767   1.5  christos AcpiDmDumpS3pt (
    768   1.5  christos     ACPI_TABLE_HEADER       *Table);
    769   1.5  christos 
    770   1.1    jruoho void
    771  1.15  christos AcpiDmDumpSdev (
    772  1.15  christos     ACPI_TABLE_HEADER       *Table);
    773  1.15  christos 
    774  1.15  christos void
    775   1.4    jruoho AcpiDmDumpSlic (
    776   1.4    jruoho     ACPI_TABLE_HEADER       *Table);
    777   1.4    jruoho 
    778   1.4    jruoho void
    779   1.1    jruoho AcpiDmDumpSlit (
    780   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    781   1.1    jruoho 
    782   1.1    jruoho void
    783   1.1    jruoho AcpiDmDumpSrat (
    784   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    785   1.1    jruoho 
    786   1.1    jruoho void
    787   1.8  christos AcpiDmDumpStao (
    788   1.8  christos     ACPI_TABLE_HEADER       *Table);
    789   1.8  christos 
    790   1.8  christos void
    791  1.22  christos AcpiDmDumpSvkl (
    792  1.22  christos     ACPI_TABLE_HEADER       *Table);
    793  1.22  christos 
    794  1.22  christos void
    795   1.8  christos AcpiDmDumpTcpa (
    796   1.8  christos     ACPI_TABLE_HEADER       *Table);
    797   1.8  christos 
    798   1.8  christos void
    799  1.24  christos AcpiDmDumpTdel (
    800  1.24  christos     ACPI_TABLE_HEADER       *Table);
    801  1.24  christos 
    802  1.24  christos void
    803  1.15  christos AcpiDmDumpTpm2 (
    804  1.15  christos     ACPI_TABLE_HEADER       *Table);
    805  1.15  christos 
    806  1.15  christos void
    807  1.21  christos AcpiDmDumpViot (
    808   1.5  christos     ACPI_TABLE_HEADER       *Table);
    809   1.5  christos 
    810   1.5  christos void
    811   1.1    jruoho AcpiDmDumpWdat (
    812   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    813   1.1    jruoho 
    814   1.1    jruoho void
    815   1.8  christos AcpiDmDumpWpbt (
    816   1.8  christos     ACPI_TABLE_HEADER       *Table);
    817   1.8  christos 
    818   1.8  christos void
    819   1.1    jruoho AcpiDmDumpXsdt (
    820   1.1    jruoho     ACPI_TABLE_HEADER       *Table);
    821   1.1    jruoho 
    822   1.1    jruoho 
    823   1.1    jruoho /*
    824   1.1    jruoho  * dmwalk
    825   1.1    jruoho  */
    826   1.1    jruoho void
    827   1.1    jruoho AcpiDmDisassemble (
    828   1.1    jruoho     ACPI_WALK_STATE         *WalkState,
    829   1.1    jruoho     ACPI_PARSE_OBJECT       *Origin,
    830   1.1    jruoho     UINT32                  NumOpcodes);
    831   1.1    jruoho 
    832   1.1    jruoho void
    833   1.1    jruoho AcpiDmWalkParseTree (
    834   1.1    jruoho     ACPI_PARSE_OBJECT       *Op,
    835   1.1    jruoho     ASL_WALK_CALLBACK       DescendingCallback,
    836   1.1    jruoho     ASL_WALK_CALLBACK       AscendingCallback,
    837   1.1    jruoho     void                    *Context);
    838   1.1    jruoho 
    839   1.1    jruoho 
    840   1.1    jruoho /*
    841   1.1    jruoho  * dmopcode
    842   1.1    jruoho  */
    843   1.1    jruoho void
    844   1.1    jruoho AcpiDmDisassembleOneOp (
    845   1.1    jruoho     ACPI_WALK_STATE         *WalkState,
    846   1.1    jruoho     ACPI_OP_WALK_INFO       *Info,
    847   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    848   1.1    jruoho 
    849   1.1    jruoho UINT32
    850   1.1    jruoho AcpiDmListType (
    851   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    852   1.1    jruoho 
    853   1.1    jruoho void
    854   1.1    jruoho AcpiDmMethodFlags (
    855   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    856   1.1    jruoho 
    857   1.1    jruoho void
    858   1.6  christos AcpiDmDisplayTargetPathname (
    859   1.6  christos     ACPI_PARSE_OBJECT       *Op);
    860   1.6  christos 
    861   1.6  christos void
    862   1.6  christos AcpiDmNotifyDescription (
    863   1.6  christos     ACPI_PARSE_OBJECT       *Op);
    864   1.6  christos 
    865   1.6  christos void
    866   1.5  christos AcpiDmPredefinedDescription (
    867   1.5  christos     ACPI_PARSE_OBJECT       *Op);
    868   1.5  christos 
    869   1.5  christos void
    870   1.5  christos AcpiDmFieldPredefinedDescription (
    871   1.5  christos     ACPI_PARSE_OBJECT       *Op);
    872   1.5  christos 
    873   1.5  christos void
    874   1.1    jruoho AcpiDmFieldFlags (
    875   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    876   1.1    jruoho 
    877   1.1    jruoho void
    878   1.1    jruoho AcpiDmAddressSpace (
    879   1.1    jruoho     UINT8                   SpaceId);
    880   1.1    jruoho 
    881   1.1    jruoho void
    882   1.1    jruoho AcpiDmRegionFlags (
    883   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    884   1.1    jruoho 
    885   1.1    jruoho void
    886   1.1    jruoho AcpiDmMatchOp (
    887   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    888   1.1    jruoho 
    889   1.1    jruoho 
    890   1.1    jruoho /*
    891   1.1    jruoho  * dmnames
    892   1.1    jruoho  */
    893   1.1    jruoho UINT32
    894   1.1    jruoho AcpiDmDumpName (
    895   1.1    jruoho     UINT32                  Name);
    896   1.1    jruoho 
    897   1.1    jruoho ACPI_STATUS
    898   1.1    jruoho AcpiPsDisplayObjectPathname (
    899   1.1    jruoho     ACPI_WALK_STATE         *WalkState,
    900   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    901   1.1    jruoho 
    902   1.1    jruoho void
    903   1.1    jruoho AcpiDmNamestring (
    904   1.1    jruoho     char                    *Name);
    905   1.1    jruoho 
    906   1.1    jruoho 
    907   1.1    jruoho /*
    908   1.1    jruoho  * dmbuffer
    909   1.1    jruoho  */
    910   1.1    jruoho void
    911   1.1    jruoho AcpiDmDisasmByteList (
    912   1.1    jruoho     UINT32                  Level,
    913   1.1    jruoho     UINT8                   *ByteData,
    914   1.1    jruoho     UINT32                  ByteCount);
    915   1.1    jruoho 
    916   1.1    jruoho void
    917   1.1    jruoho AcpiDmByteList (
    918   1.1    jruoho     ACPI_OP_WALK_INFO       *Info,
    919   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    920   1.1    jruoho 
    921   1.1    jruoho void
    922   1.6  christos AcpiDmCheckForHardwareId (
    923   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    924   1.1    jruoho 
    925   1.1    jruoho void
    926   1.6  christos AcpiDmDecompressEisaId (
    927   1.1    jruoho     UINT32                  EncodedId);
    928   1.1    jruoho 
    929   1.1    jruoho BOOLEAN
    930   1.6  christos AcpiDmIsUuidBuffer (
    931   1.6  christos     ACPI_PARSE_OBJECT       *Op);
    932   1.6  christos 
    933   1.6  christos BOOLEAN
    934   1.1    jruoho AcpiDmIsUnicodeBuffer (
    935   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    936   1.1    jruoho 
    937   1.1    jruoho BOOLEAN
    938   1.1    jruoho AcpiDmIsStringBuffer (
    939   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
    940   1.1    jruoho 
    941   1.5  christos BOOLEAN
    942   1.5  christos AcpiDmIsPldBuffer (
    943   1.5  christos     ACPI_PARSE_OBJECT       *Op);
    944   1.5  christos 
    945   1.5  christos 
    946   1.5  christos /*
    947   1.5  christos  * dmdeferred
    948   1.5  christos  */
    949   1.5  christos ACPI_STATUS
    950   1.5  christos AcpiDmParseDeferredOps (
    951   1.5  christos     ACPI_PARSE_OBJECT       *Root);
    952   1.5  christos 
    953   1.1    jruoho 
    954   1.1    jruoho /*
    955   1.1    jruoho  * dmextern
    956   1.1    jruoho  */
    957   1.3    jruoho ACPI_STATUS
    958   1.3    jruoho AcpiDmAddToExternalFileList (
    959   1.3    jruoho     char                    *PathList);
    960   1.3    jruoho 
    961   1.3    jruoho void
    962   1.3    jruoho AcpiDmClearExternalFileList (
    963   1.3    jruoho     void);
    964   1.3    jruoho 
    965   1.1    jruoho void
    966   1.5  christos AcpiDmAddOpToExternalList (
    967   1.1    jruoho     ACPI_PARSE_OBJECT       *Op,
    968   1.1    jruoho     char                    *Path,
    969   1.1    jruoho     UINT8                   Type,
    970   1.5  christos     UINT32                  Value,
    971   1.5  christos     UINT16                  Flags);
    972   1.5  christos 
    973   1.5  christos void
    974  1.14  christos AcpiDmCreateSubobjectForExternal (
    975  1.14  christos     UINT8                   Type,
    976  1.14  christos     ACPI_NAMESPACE_NODE     **Node,
    977  1.14  christos     UINT32                  Value);
    978  1.14  christos 
    979  1.14  christos void
    980   1.5  christos AcpiDmAddNodeToExternalList (
    981   1.5  christos     ACPI_NAMESPACE_NODE     *Node,
    982   1.5  christos     UINT8                   Type,
    983   1.5  christos     UINT32                  Value,
    984   1.5  christos     UINT16                  Flags);
    985   1.1    jruoho 
    986   1.1    jruoho void
    987  1.14  christos AcpiDmAddExternalListToNamespace (
    988   1.1    jruoho     void);
    989   1.1    jruoho 
    990  1.14  christos void
    991  1.14  christos AcpiDmAddOneExternalToNamespace (
    992  1.14  christos     char                    *Path,
    993  1.14  christos     UINT8                   Type,
    994  1.14  christos     UINT32                  Value);
    995  1.14  christos 
    996   1.1    jruoho UINT32
    997  1.14  christos AcpiDmGetUnresolvedExternalMethodCount (
    998   1.1    jruoho     void);
    999   1.1    jruoho 
   1000   1.1    jruoho void
   1001   1.1    jruoho AcpiDmClearExternalList (
   1002   1.1    jruoho     void);
   1003   1.1    jruoho 
   1004   1.1    jruoho void
   1005   1.1    jruoho AcpiDmEmitExternals (
   1006   1.1    jruoho     void);
   1007   1.1    jruoho 
   1008   1.5  christos void
   1009  1.13  christos AcpiDmEmitExternal (
   1010  1.13  christos     ACPI_PARSE_OBJECT       *NameOp,
   1011  1.13  christos     ACPI_PARSE_OBJECT       *TypeOp);
   1012  1.13  christos 
   1013  1.13  christos void
   1014   1.5  christos AcpiDmUnresolvedWarning (
   1015   1.5  christos     UINT8                   Type);
   1016   1.5  christos 
   1017   1.5  christos void
   1018   1.5  christos AcpiDmGetExternalsFromFile (
   1019   1.5  christos     void);
   1020   1.1    jruoho 
   1021  1.14  christos void
   1022  1.14  christos AcpiDmMarkExternalConflict (
   1023  1.14  christos     ACPI_NAMESPACE_NODE     *Node);
   1024  1.14  christos 
   1025  1.14  christos 
   1026   1.1    jruoho /*
   1027   1.1    jruoho  * dmresrc
   1028   1.1    jruoho  */
   1029   1.1    jruoho void
   1030   1.1    jruoho AcpiDmDumpInteger8 (
   1031   1.1    jruoho     UINT8                   Value,
   1032   1.2    jruoho     const char              *Name);
   1033   1.1    jruoho 
   1034   1.1    jruoho void
   1035   1.1    jruoho AcpiDmDumpInteger16 (
   1036   1.1    jruoho     UINT16                  Value,
   1037   1.2    jruoho     const char              *Name);
   1038   1.1    jruoho 
   1039   1.1    jruoho void
   1040   1.1    jruoho AcpiDmDumpInteger32 (
   1041   1.1    jruoho     UINT32                  Value,
   1042   1.2    jruoho     const char              *Name);
   1043   1.1    jruoho 
   1044   1.1    jruoho void
   1045   1.1    jruoho AcpiDmDumpInteger64 (
   1046   1.1    jruoho     UINT64                  Value,
   1047   1.2    jruoho     const char              *Name);
   1048   1.1    jruoho 
   1049   1.1    jruoho void
   1050   1.1    jruoho AcpiDmResourceTemplate (
   1051   1.1    jruoho     ACPI_OP_WALK_INFO       *Info,
   1052   1.1    jruoho     ACPI_PARSE_OBJECT       *Op,
   1053   1.1    jruoho     UINT8                   *ByteData,
   1054   1.1    jruoho     UINT32                  ByteCount);
   1055   1.1    jruoho 
   1056   1.1    jruoho ACPI_STATUS
   1057   1.1    jruoho AcpiDmIsResourceTemplate (
   1058   1.5  christos     ACPI_WALK_STATE         *WalkState,
   1059   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
   1060   1.1    jruoho 
   1061   1.1    jruoho void
   1062   1.1    jruoho AcpiDmBitList (
   1063   1.1    jruoho     UINT16                  Mask);
   1064   1.1    jruoho 
   1065   1.1    jruoho void
   1066   1.1    jruoho AcpiDmDescriptorName (
   1067   1.1    jruoho     void);
   1068   1.1    jruoho 
   1069   1.1    jruoho 
   1070   1.1    jruoho /*
   1071   1.1    jruoho  * dmresrcl
   1072   1.1    jruoho  */
   1073   1.1    jruoho void
   1074   1.1    jruoho AcpiDmWordDescriptor (
   1075   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1076   1.1    jruoho     AML_RESOURCE            *Resource,
   1077   1.1    jruoho     UINT32                  Length,
   1078   1.1    jruoho     UINT32                  Level);
   1079   1.1    jruoho 
   1080   1.1    jruoho void
   1081   1.1    jruoho AcpiDmDwordDescriptor (
   1082   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1083   1.1    jruoho     AML_RESOURCE            *Resource,
   1084   1.1    jruoho     UINT32                  Length,
   1085   1.1    jruoho     UINT32                  Level);
   1086   1.1    jruoho 
   1087   1.1    jruoho void
   1088   1.1    jruoho AcpiDmExtendedDescriptor (
   1089   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1090   1.1    jruoho     AML_RESOURCE            *Resource,
   1091   1.1    jruoho     UINT32                  Length,
   1092   1.1    jruoho     UINT32                  Level);
   1093   1.1    jruoho 
   1094   1.1    jruoho void
   1095   1.1    jruoho AcpiDmQwordDescriptor (
   1096   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1097   1.1    jruoho     AML_RESOURCE            *Resource,
   1098   1.1    jruoho     UINT32                  Length,
   1099   1.1    jruoho     UINT32                  Level);
   1100   1.1    jruoho 
   1101   1.1    jruoho void
   1102   1.1    jruoho AcpiDmMemory24Descriptor (
   1103   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1104   1.1    jruoho     AML_RESOURCE            *Resource,
   1105   1.1    jruoho     UINT32                  Length,
   1106   1.1    jruoho     UINT32                  Level);
   1107   1.1    jruoho 
   1108   1.1    jruoho void
   1109   1.1    jruoho AcpiDmMemory32Descriptor (
   1110   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1111   1.1    jruoho     AML_RESOURCE            *Resource,
   1112   1.1    jruoho     UINT32                  Length,
   1113   1.1    jruoho     UINT32                  Level);
   1114   1.1    jruoho 
   1115   1.1    jruoho void
   1116   1.1    jruoho AcpiDmFixedMemory32Descriptor (
   1117   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1118   1.1    jruoho     AML_RESOURCE            *Resource,
   1119   1.1    jruoho     UINT32                  Length,
   1120   1.1    jruoho     UINT32                  Level);
   1121   1.1    jruoho 
   1122   1.1    jruoho void
   1123   1.1    jruoho AcpiDmGenericRegisterDescriptor (
   1124   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1125   1.1    jruoho     AML_RESOURCE            *Resource,
   1126   1.1    jruoho     UINT32                  Length,
   1127   1.1    jruoho     UINT32                  Level);
   1128   1.1    jruoho 
   1129   1.1    jruoho void
   1130   1.1    jruoho AcpiDmInterruptDescriptor (
   1131   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1132   1.1    jruoho     AML_RESOURCE            *Resource,
   1133   1.1    jruoho     UINT32                  Length,
   1134   1.1    jruoho     UINT32                  Level);
   1135   1.1    jruoho 
   1136   1.1    jruoho void
   1137   1.1    jruoho AcpiDmVendorLargeDescriptor (
   1138   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1139   1.1    jruoho     AML_RESOURCE            *Resource,
   1140   1.1    jruoho     UINT32                  Length,
   1141   1.1    jruoho     UINT32                  Level);
   1142   1.1    jruoho 
   1143   1.1    jruoho void
   1144   1.5  christos AcpiDmGpioDescriptor (
   1145   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1146   1.5  christos     AML_RESOURCE            *Resource,
   1147   1.5  christos     UINT32                  Length,
   1148   1.5  christos     UINT32                  Level);
   1149   1.5  christos 
   1150   1.5  christos void
   1151  1.14  christos AcpiDmPinFunctionDescriptor (
   1152  1.14  christos     ACPI_OP_WALK_INFO       *Info,
   1153  1.14  christos     AML_RESOURCE            *Resource,
   1154  1.14  christos     UINT32                  Length,
   1155  1.14  christos     UINT32                  Level);
   1156  1.14  christos 
   1157  1.14  christos void
   1158  1.14  christos AcpiDmPinConfigDescriptor (
   1159  1.14  christos     ACPI_OP_WALK_INFO       *Info,
   1160  1.14  christos     AML_RESOURCE            *Resource,
   1161  1.14  christos     UINT32                  Length,
   1162  1.14  christos     UINT32                  Level);
   1163  1.14  christos 
   1164  1.14  christos void
   1165  1.14  christos AcpiDmPinGroupDescriptor (
   1166  1.14  christos     ACPI_OP_WALK_INFO       *Info,
   1167  1.14  christos     AML_RESOURCE            *Resource,
   1168  1.14  christos     UINT32                  Length,
   1169  1.14  christos     UINT32                  Level);
   1170  1.14  christos 
   1171  1.14  christos void
   1172  1.14  christos AcpiDmPinGroupFunctionDescriptor (
   1173  1.14  christos     ACPI_OP_WALK_INFO       *Info,
   1174  1.14  christos     AML_RESOURCE            *Resource,
   1175  1.14  christos     UINT32                  Length,
   1176  1.14  christos     UINT32                  Level);
   1177  1.14  christos 
   1178  1.14  christos void
   1179  1.14  christos AcpiDmPinGroupConfigDescriptor (
   1180  1.14  christos     ACPI_OP_WALK_INFO       *Info,
   1181  1.14  christos     AML_RESOURCE            *Resource,
   1182  1.14  christos     UINT32                  Length,
   1183  1.14  christos     UINT32                  Level);
   1184  1.14  christos 
   1185  1.14  christos void
   1186   1.5  christos AcpiDmSerialBusDescriptor (
   1187   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1188   1.5  christos     AML_RESOURCE            *Resource,
   1189   1.5  christos     UINT32                  Length,
   1190   1.5  christos     UINT32                  Level);
   1191   1.5  christos 
   1192   1.5  christos void
   1193   1.1    jruoho AcpiDmVendorCommon (
   1194   1.2    jruoho     const char              *Name,
   1195   1.1    jruoho     UINT8                   *ByteData,
   1196   1.1    jruoho     UINT32                  Length,
   1197   1.1    jruoho     UINT32                  Level);
   1198   1.1    jruoho 
   1199   1.1    jruoho 
   1200   1.1    jruoho /*
   1201   1.1    jruoho  * dmresrcs
   1202   1.1    jruoho  */
   1203   1.1    jruoho void
   1204   1.1    jruoho AcpiDmIrqDescriptor (
   1205   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1206   1.1    jruoho     AML_RESOURCE            *Resource,
   1207   1.1    jruoho     UINT32                  Length,
   1208   1.1    jruoho     UINT32                  Level);
   1209   1.1    jruoho 
   1210   1.1    jruoho void
   1211   1.1    jruoho AcpiDmDmaDescriptor (
   1212   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1213   1.1    jruoho     AML_RESOURCE            *Resource,
   1214   1.1    jruoho     UINT32                  Length,
   1215   1.1    jruoho     UINT32                  Level);
   1216   1.1    jruoho 
   1217   1.1    jruoho void
   1218   1.5  christos AcpiDmFixedDmaDescriptor (
   1219   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1220   1.5  christos     AML_RESOURCE            *Resource,
   1221   1.5  christos     UINT32                  Length,
   1222   1.5  christos     UINT32                  Level);
   1223   1.5  christos 
   1224   1.5  christos void
   1225   1.1    jruoho AcpiDmIoDescriptor (
   1226   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1227   1.1    jruoho     AML_RESOURCE            *Resource,
   1228   1.1    jruoho     UINT32                  Length,
   1229   1.1    jruoho     UINT32                  Level);
   1230   1.1    jruoho 
   1231   1.1    jruoho void
   1232   1.1    jruoho AcpiDmFixedIoDescriptor (
   1233   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1234   1.1    jruoho     AML_RESOURCE            *Resource,
   1235   1.1    jruoho     UINT32                  Length,
   1236   1.1    jruoho     UINT32                  Level);
   1237   1.1    jruoho 
   1238   1.1    jruoho void
   1239   1.1    jruoho AcpiDmStartDependentDescriptor (
   1240   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1241   1.1    jruoho     AML_RESOURCE            *Resource,
   1242   1.1    jruoho     UINT32                  Length,
   1243   1.1    jruoho     UINT32                  Level);
   1244   1.1    jruoho 
   1245   1.1    jruoho void
   1246   1.1    jruoho AcpiDmEndDependentDescriptor (
   1247   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1248   1.1    jruoho     AML_RESOURCE            *Resource,
   1249   1.1    jruoho     UINT32                  Length,
   1250   1.1    jruoho     UINT32                  Level);
   1251   1.1    jruoho 
   1252   1.1    jruoho void
   1253   1.1    jruoho AcpiDmVendorSmallDescriptor (
   1254   1.6  christos     ACPI_OP_WALK_INFO       *Info,
   1255   1.1    jruoho     AML_RESOURCE            *Resource,
   1256   1.1    jruoho     UINT32                  Length,
   1257   1.1    jruoho     UINT32                  Level);
   1258   1.1    jruoho 
   1259   1.1    jruoho 
   1260   1.1    jruoho /*
   1261   1.1    jruoho  * dmutils
   1262   1.1    jruoho  */
   1263   1.1    jruoho void
   1264   1.1    jruoho AcpiDmDecodeAttribute (
   1265   1.1    jruoho     UINT8                   Attribute);
   1266   1.1    jruoho 
   1267   1.1    jruoho void
   1268   1.1    jruoho AcpiDmIndent (
   1269   1.1    jruoho     UINT32                  Level);
   1270   1.1    jruoho 
   1271   1.1    jruoho BOOLEAN
   1272   1.1    jruoho AcpiDmCommaIfListMember (
   1273   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
   1274   1.1    jruoho 
   1275   1.1    jruoho void
   1276   1.1    jruoho AcpiDmCommaIfFieldMember (
   1277   1.1    jruoho     ACPI_PARSE_OBJECT       *Op);
   1278   1.1    jruoho 
   1279   1.1    jruoho 
   1280   1.1    jruoho /*
   1281   1.1    jruoho  * dmrestag
   1282   1.1    jruoho  */
   1283   1.1    jruoho void
   1284   1.1    jruoho AcpiDmFindResources (
   1285   1.1    jruoho     ACPI_PARSE_OBJECT       *Root);
   1286   1.1    jruoho 
   1287   1.1    jruoho void
   1288   1.1    jruoho AcpiDmCheckResourceReference (
   1289   1.1    jruoho     ACPI_PARSE_OBJECT       *Op,
   1290   1.1    jruoho     ACPI_WALK_STATE         *WalkState);
   1291   1.1    jruoho 
   1292   1.3    jruoho 
   1293   1.3    jruoho /*
   1294   1.7  christos  * dmcstyle
   1295   1.7  christos  */
   1296   1.7  christos BOOLEAN
   1297   1.7  christos AcpiDmCheckForSymbolicOpcode (
   1298   1.7  christos     ACPI_PARSE_OBJECT       *Op,
   1299   1.7  christos     ACPI_OP_WALK_INFO       *Info);
   1300   1.7  christos 
   1301   1.7  christos void
   1302   1.7  christos AcpiDmCloseOperator (
   1303   1.7  christos     ACPI_PARSE_OBJECT       *Op);
   1304   1.7  christos 
   1305   1.7  christos 
   1306   1.7  christos /*
   1307   1.9  christos  * dmtables
   1308   1.3    jruoho  */
   1309  1.14  christos ACPI_STATUS
   1310  1.14  christos AcpiDmProcessSwitch (
   1311  1.14  christos     ACPI_PARSE_OBJECT       *Op);
   1312  1.14  christos 
   1313  1.14  christos void
   1314  1.14  christos AcpiDmClearTempList(
   1315  1.14  christos     void);
   1316  1.14  christos 
   1317  1.14  christos /*
   1318  1.14  christos  * dmtables
   1319  1.14  christos  */
   1320   1.3    jruoho void
   1321   1.3    jruoho AdDisassemblerHeader (
   1322   1.7  christos     char                    *Filename,
   1323   1.7  christos     UINT8                   TableType);
   1324   1.3    jruoho 
   1325   1.7  christos #define ACPI_IS_AML_TABLE   0
   1326   1.7  christos #define ACPI_IS_DATA_TABLE  1
   1327   1.3    jruoho 
   1328   1.9  christos 
   1329   1.9  christos /*
   1330   1.9  christos  * adisasm
   1331   1.9  christos  */
   1332   1.9  christos ACPI_STATUS
   1333   1.9  christos AdAmlDisassemble (
   1334   1.9  christos     BOOLEAN                 OutToFile,
   1335   1.9  christos     char                    *Filename,
   1336   1.9  christos     char                    *Prefix,
   1337   1.9  christos     char                    **OutFilename);
   1338   1.9  christos 
   1339   1.9  christos ACPI_STATUS
   1340   1.9  christos AdGetLocalTables (
   1341   1.9  christos     void);
   1342   1.9  christos 
   1343   1.9  christos ACPI_STATUS
   1344   1.9  christos AdParseTable (
   1345   1.9  christos     ACPI_TABLE_HEADER       *Table,
   1346   1.9  christos     ACPI_OWNER_ID           *OwnerId,
   1347   1.9  christos     BOOLEAN                 LoadTable,
   1348   1.9  christos     BOOLEAN                 External);
   1349   1.9  christos 
   1350   1.9  christos ACPI_STATUS
   1351   1.9  christos AdDisplayTables (
   1352   1.9  christos     char                    *Filename,
   1353   1.9  christos     ACPI_TABLE_HEADER       *Table);
   1354   1.9  christos 
   1355   1.9  christos ACPI_STATUS
   1356   1.9  christos AdDisplayStatistics (
   1357   1.9  christos     void);
   1358   1.9  christos 
   1359  1.13  christos 
   1360  1.13  christos /*
   1361  1.13  christos  * dmwalk
   1362  1.13  christos  */
   1363  1.13  christos UINT32
   1364  1.13  christos AcpiDmBlockType (
   1365  1.13  christos     ACPI_PARSE_OBJECT       *Op);
   1366  1.13  christos 
   1367  1.13  christos 
   1368   1.1    jruoho #endif  /* __ACDISASM_H__ */
   1369