Home | History | Annotate | Line # | Download | only in include
actbl3.h revision 1.1.1.16
      1       1.1  christos /******************************************************************************
      2       1.1  christos  *
      3       1.1  christos  * Name: actbl3.h - ACPI Table Definitions
      4       1.1  christos  *
      5       1.1  christos  *****************************************************************************/
      6       1.1  christos 
      7       1.1  christos /*
      8  1.1.1.16  christos  * Copyright (C) 2000 - 2023, Intel Corp.
      9       1.1  christos  * All rights reserved.
     10       1.1  christos  *
     11       1.1  christos  * Redistribution and use in source and binary forms, with or without
     12       1.1  christos  * modification, are permitted provided that the following conditions
     13       1.1  christos  * are met:
     14       1.1  christos  * 1. Redistributions of source code must retain the above copyright
     15       1.1  christos  *    notice, this list of conditions, and the following disclaimer,
     16       1.1  christos  *    without modification.
     17       1.1  christos  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18       1.1  christos  *    substantially similar to the "NO WARRANTY" disclaimer below
     19       1.1  christos  *    ("Disclaimer") and any redistribution must be conditioned upon
     20       1.1  christos  *    including a substantially similar Disclaimer requirement for further
     21       1.1  christos  *    binary redistribution.
     22       1.1  christos  * 3. Neither the names of the above-listed copyright holders nor the names
     23       1.1  christos  *    of any contributors may be used to endorse or promote products derived
     24       1.1  christos  *    from this software without specific prior written permission.
     25       1.1  christos  *
     26       1.1  christos  * Alternatively, this software may be distributed under the terms of the
     27       1.1  christos  * GNU General Public License ("GPL") version 2 as published by the Free
     28       1.1  christos  * Software Foundation.
     29       1.1  christos  *
     30       1.1  christos  * NO WARRANTY
     31       1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32       1.1  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1.1.13  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     34       1.1  christos  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35       1.1  christos  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36       1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37       1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38       1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39       1.1  christos  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40       1.1  christos  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41       1.1  christos  * POSSIBILITY OF SUCH DAMAGES.
     42       1.1  christos  */
     43       1.1  christos 
     44       1.1  christos #ifndef __ACTBL3_H__
     45       1.1  christos #define __ACTBL3_H__
     46       1.1  christos 
     47       1.1  christos 
     48       1.1  christos /*******************************************************************************
     49       1.1  christos  *
     50   1.1.1.9  christos  * Additional ACPI Tables
     51       1.1  christos  *
     52       1.1  christos  * These tables are not consumed directly by the ACPICA subsystem, but are
     53       1.1  christos  * included here to support device drivers and the AML disassembler.
     54       1.1  christos  *
     55       1.1  christos  ******************************************************************************/
     56       1.1  christos 
     57       1.1  christos 
     58       1.1  christos /*
     59       1.1  christos  * Values for description table header signatures for tables defined in this
     60       1.1  christos  * file. Useful because they make it more difficult to inadvertently type in
     61       1.1  christos  * the wrong signature.
     62       1.1  christos  */
     63   1.1.1.9  christos #define ACPI_SIG_SLIC           "SLIC"      /* Software Licensing Description Table */
     64   1.1.1.9  christos #define ACPI_SIG_SLIT           "SLIT"      /* System Locality Distance Information Table */
     65   1.1.1.9  christos #define ACPI_SIG_SPCR           "SPCR"      /* Serial Port Console Redirection table */
     66   1.1.1.9  christos #define ACPI_SIG_SPMI           "SPMI"      /* Server Platform Management Interface table */
     67   1.1.1.9  christos #define ACPI_SIG_SRAT           "SRAT"      /* System Resource Affinity Table */
     68   1.1.1.4  christos #define ACPI_SIG_STAO           "STAO"      /* Status Override table */
     69   1.1.1.9  christos #define ACPI_SIG_TCPA           "TCPA"      /* Trusted Computing Platform Alliance table */
     70   1.1.1.9  christos #define ACPI_SIG_TPM2           "TPM2"      /* Trusted Platform Module 2.0 H/W interface table */
     71   1.1.1.9  christos #define ACPI_SIG_UEFI           "UEFI"      /* Uefi Boot Optimization Table */
     72  1.1.1.13  christos #define ACPI_SIG_VIOT           "VIOT"      /* Virtual I/O Translation Table */
     73   1.1.1.9  christos #define ACPI_SIG_WAET           "WAET"      /* Windows ACPI Emulated devices Table */
     74   1.1.1.9  christos #define ACPI_SIG_WDAT           "WDAT"      /* Watchdog Action Table */
     75   1.1.1.9  christos #define ACPI_SIG_WDDT           "WDDT"      /* Watchdog Timer Description Table */
     76   1.1.1.9  christos #define ACPI_SIG_WDRT           "WDRT"      /* Watchdog Resource Table */
     77   1.1.1.4  christos #define ACPI_SIG_WPBT           "WPBT"      /* Windows Platform Binary Table */
     78  1.1.1.12  christos #define ACPI_SIG_WSMT           "WSMT"      /* Windows SMM Security Mitigations Table */
     79   1.1.1.4  christos #define ACPI_SIG_XENV           "XENV"      /* Xen Environment table */
     80   1.1.1.9  christos #define ACPI_SIG_XXXX           "XXXX"      /* Intermediate AML header for ASL/ASL+ converter */
     81       1.1  christos 
     82       1.1  christos /*
     83       1.1  christos  * All tables must be byte-packed to match the ACPI specification, since
     84       1.1  christos  * the tables are provided by the system BIOS.
     85       1.1  christos  */
     86       1.1  christos #pragma pack(1)
     87       1.1  christos 
     88       1.1  christos /*
     89       1.1  christos  * Note: C bitfields are not used for this reason:
     90       1.1  christos  *
     91       1.1  christos  * "Bitfields are great and easy to read, but unfortunately the C language
     92       1.1  christos  * does not specify the layout of bitfields in memory, which means they are
     93       1.1  christos  * essentially useless for dealing with packed data in on-disk formats or
     94       1.1  christos  * binary wire protocols." (Or ACPI tables and buffers.) "If you ask me,
     95       1.1  christos  * this decision was a design error in C. Ritchie could have picked an order
     96       1.1  christos  * and stuck with it." Norman Ramsey.
     97       1.1  christos  * See http://stackoverflow.com/a/1053662/41661
     98       1.1  christos  */
     99       1.1  christos 
    100       1.1  christos 
    101       1.1  christos /*******************************************************************************
    102       1.1  christos  *
    103   1.1.1.9  christos  * SLIC - Software Licensing Description Table
    104   1.1.1.9  christos  *
    105   1.1.1.9  christos  * Conforms to "Microsoft Software Licensing Tables (SLIC and MSDM)",
    106   1.1.1.9  christos  * November 29, 2011. Copyright 2011 Microsoft
    107       1.1  christos  *
    108       1.1  christos  ******************************************************************************/
    109       1.1  christos 
    110   1.1.1.9  christos /* Basic SLIC table is only the common ACPI header */
    111   1.1.1.9  christos 
    112   1.1.1.9  christos typedef struct acpi_table_slic
    113       1.1  christos {
    114       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    115   1.1.1.8  christos 
    116   1.1.1.9  christos } ACPI_TABLE_SLIC;
    117   1.1.1.8  christos 
    118       1.1  christos 
    119       1.1  christos /*******************************************************************************
    120       1.1  christos  *
    121   1.1.1.9  christos  * SLIT - System Locality Distance Information Table
    122   1.1.1.9  christos  *        Version 1
    123       1.1  christos  *
    124       1.1  christos  ******************************************************************************/
    125       1.1  christos 
    126   1.1.1.9  christos typedef struct acpi_table_slit
    127       1.1  christos {
    128       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    129   1.1.1.9  christos     UINT64                  LocalityCount;
    130   1.1.1.9  christos     UINT8                   Entry[1];           /* Real size = localities^2 */
    131       1.1  christos 
    132   1.1.1.9  christos } ACPI_TABLE_SLIT;
    133       1.1  christos 
    134       1.1  christos 
    135       1.1  christos /*******************************************************************************
    136       1.1  christos  *
    137   1.1.1.9  christos  * SPCR - Serial Port Console Redirection table
    138   1.1.1.9  christos  *        Version 2
    139   1.1.1.9  christos  *
    140   1.1.1.9  christos  * Conforms to "Serial Port Console Redirection Table",
    141   1.1.1.9  christos  * Version 1.03, August 10, 2015
    142       1.1  christos  *
    143       1.1  christos  ******************************************************************************/
    144       1.1  christos 
    145   1.1.1.9  christos typedef struct acpi_table_spcr
    146       1.1  christos {
    147       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    148   1.1.1.9  christos     UINT8                   InterfaceType;      /* 0=full 16550, 1=subset of 16550 */
    149   1.1.1.9  christos     UINT8                   Reserved[3];
    150   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    SerialPort;
    151   1.1.1.9  christos     UINT8                   InterruptType;
    152   1.1.1.9  christos     UINT8                   PcInterrupt;
    153   1.1.1.9  christos     UINT32                  Interrupt;
    154   1.1.1.9  christos     UINT8                   BaudRate;
    155   1.1.1.9  christos     UINT8                   Parity;
    156   1.1.1.9  christos     UINT8                   StopBits;
    157   1.1.1.9  christos     UINT8                   FlowControl;
    158   1.1.1.9  christos     UINT8                   TerminalType;
    159   1.1.1.9  christos     UINT8                   Reserved1;
    160   1.1.1.9  christos     UINT16                  PciDeviceId;
    161   1.1.1.9  christos     UINT16                  PciVendorId;
    162   1.1.1.9  christos     UINT8                   PciBus;
    163   1.1.1.9  christos     UINT8                   PciDevice;
    164   1.1.1.9  christos     UINT8                   PciFunction;
    165   1.1.1.9  christos     UINT32                  PciFlags;
    166   1.1.1.9  christos     UINT8                   PciSegment;
    167   1.1.1.9  christos     UINT32                  Reserved2;
    168       1.1  christos 
    169   1.1.1.9  christos } ACPI_TABLE_SPCR;
    170       1.1  christos 
    171   1.1.1.9  christos /* Masks for PciFlags field above */
    172       1.1  christos 
    173   1.1.1.9  christos #define ACPI_SPCR_DO_NOT_DISABLE    (1)
    174       1.1  christos 
    175   1.1.1.9  christos /* Values for Interface Type: See the definition of the DBG2 table */
    176       1.1  christos 
    177       1.1  christos 
    178   1.1.1.9  christos /*******************************************************************************
    179   1.1.1.9  christos  *
    180   1.1.1.9  christos  * SPMI - Server Platform Management Interface table
    181   1.1.1.9  christos  *        Version 5
    182   1.1.1.9  christos  *
    183   1.1.1.9  christos  * Conforms to "Intelligent Platform Management Interface Specification
    184   1.1.1.9  christos  * Second Generation v2.0", Document Revision 1.0, February 12, 2004 with
    185   1.1.1.9  christos  * June 12, 2009 markup.
    186   1.1.1.9  christos  *
    187   1.1.1.9  christos  ******************************************************************************/
    188       1.1  christos 
    189   1.1.1.9  christos typedef struct acpi_table_spmi
    190       1.1  christos {
    191   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    192   1.1.1.9  christos     UINT8                   InterfaceType;
    193   1.1.1.9  christos     UINT8                   Reserved;           /* Must be 1 */
    194   1.1.1.9  christos     UINT16                  SpecRevision;       /* Version of IPMI */
    195   1.1.1.9  christos     UINT8                   InterruptType;
    196   1.1.1.9  christos     UINT8                   GpeNumber;          /* GPE assigned */
    197   1.1.1.9  christos     UINT8                   Reserved1;
    198   1.1.1.9  christos     UINT8                   PciDeviceFlag;
    199   1.1.1.9  christos     UINT32                  Interrupt;
    200   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    IpmiRegister;
    201   1.1.1.9  christos     UINT8                   PciSegment;
    202   1.1.1.9  christos     UINT8                   PciBus;
    203   1.1.1.9  christos     UINT8                   PciDevice;
    204   1.1.1.9  christos     UINT8                   PciFunction;
    205   1.1.1.9  christos     UINT8                   Reserved2;
    206   1.1.1.9  christos 
    207   1.1.1.9  christos } ACPI_TABLE_SPMI;
    208   1.1.1.9  christos 
    209   1.1.1.9  christos /* Values for InterfaceType above */
    210   1.1.1.9  christos 
    211   1.1.1.9  christos enum AcpiSpmiInterfaceTypes
    212   1.1.1.9  christos {
    213   1.1.1.9  christos     ACPI_SPMI_NOT_USED              = 0,
    214   1.1.1.9  christos     ACPI_SPMI_KEYBOARD              = 1,
    215   1.1.1.9  christos     ACPI_SPMI_SMI                   = 2,
    216   1.1.1.9  christos     ACPI_SPMI_BLOCK_TRANSFER        = 3,
    217   1.1.1.9  christos     ACPI_SPMI_SMBUS                 = 4,
    218   1.1.1.9  christos     ACPI_SPMI_RESERVED              = 5         /* 5 and above are reserved */
    219       1.1  christos };
    220       1.1  christos 
    221       1.1  christos 
    222   1.1.1.9  christos /*******************************************************************************
    223   1.1.1.9  christos  *
    224   1.1.1.9  christos  * SRAT - System Resource Affinity Table
    225   1.1.1.9  christos  *        Version 3
    226   1.1.1.9  christos  *
    227   1.1.1.9  christos  ******************************************************************************/
    228       1.1  christos 
    229   1.1.1.9  christos typedef struct acpi_table_srat
    230       1.1  christos {
    231   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    232   1.1.1.9  christos     UINT32                  TableRevision;      /* Must be value '1' */
    233   1.1.1.9  christos     UINT64                  Reserved;           /* Reserved, must be zero */
    234       1.1  christos 
    235   1.1.1.9  christos } ACPI_TABLE_SRAT;
    236       1.1  christos 
    237   1.1.1.9  christos /* Values for subtable type in ACPI_SUBTABLE_HEADER */
    238       1.1  christos 
    239   1.1.1.9  christos enum AcpiSratType
    240       1.1  christos {
    241   1.1.1.9  christos     ACPI_SRAT_TYPE_CPU_AFFINITY         = 0,
    242   1.1.1.9  christos     ACPI_SRAT_TYPE_MEMORY_AFFINITY      = 1,
    243   1.1.1.9  christos     ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY  = 2,
    244   1.1.1.9  christos     ACPI_SRAT_TYPE_GICC_AFFINITY        = 3,
    245  1.1.1.11  christos     ACPI_SRAT_TYPE_GIC_ITS_AFFINITY     = 4, /* ACPI 6.2 */
    246  1.1.1.11  christos     ACPI_SRAT_TYPE_GENERIC_AFFINITY     = 5, /* ACPI 6.3 */
    247  1.1.1.14  christos     ACPI_SRAT_TYPE_GENERIC_PORT_AFFINITY = 6, /* ACPI 6.4 */
    248  1.1.1.14  christos     ACPI_SRAT_TYPE_RESERVED              = 7  /* 7 and greater are reserved */
    249   1.1.1.9  christos };
    250       1.1  christos 
    251       1.1  christos /*
    252   1.1.1.9  christos  * SRAT Subtables, correspond to Type in ACPI_SUBTABLE_HEADER
    253       1.1  christos  */
    254       1.1  christos 
    255   1.1.1.9  christos /* 0: Processor Local APIC/SAPIC Affinity */
    256       1.1  christos 
    257   1.1.1.9  christos typedef struct acpi_srat_cpu_affinity
    258       1.1  christos {
    259   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    260   1.1.1.9  christos     UINT8                   ProximityDomainLo;
    261   1.1.1.9  christos     UINT8                   ApicId;
    262   1.1.1.9  christos     UINT32                  Flags;
    263   1.1.1.9  christos     UINT8                   LocalSapicEid;
    264   1.1.1.9  christos     UINT8                   ProximityDomainHi[3];
    265   1.1.1.9  christos     UINT32                  ClockDomain;
    266       1.1  christos 
    267   1.1.1.9  christos } ACPI_SRAT_CPU_AFFINITY;
    268       1.1  christos 
    269   1.1.1.9  christos /* Flags */
    270       1.1  christos 
    271   1.1.1.9  christos #define ACPI_SRAT_CPU_USE_AFFINITY  (1)         /* 00: Use affinity structure */
    272       1.1  christos 
    273       1.1  christos 
    274   1.1.1.9  christos /* 1: Memory Affinity */
    275       1.1  christos 
    276   1.1.1.9  christos typedef struct acpi_srat_mem_affinity
    277   1.1.1.6  christos {
    278   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    279   1.1.1.9  christos     UINT32                  ProximityDomain;
    280   1.1.1.9  christos     UINT16                  Reserved;           /* Reserved, must be zero */
    281   1.1.1.9  christos     UINT64                  BaseAddress;
    282   1.1.1.9  christos     UINT64                  Length;
    283   1.1.1.9  christos     UINT32                  Reserved1;
    284   1.1.1.9  christos     UINT32                  Flags;
    285   1.1.1.9  christos     UINT64                  Reserved2;          /* Reserved, must be zero */
    286   1.1.1.2  christos 
    287   1.1.1.9  christos } ACPI_SRAT_MEM_AFFINITY;
    288   1.1.1.2  christos 
    289   1.1.1.9  christos /* Flags */
    290   1.1.1.2  christos 
    291   1.1.1.9  christos #define ACPI_SRAT_MEM_ENABLED       (1)         /* 00: Use affinity structure */
    292   1.1.1.9  christos #define ACPI_SRAT_MEM_HOT_PLUGGABLE (1<<1)      /* 01: Memory region is hot pluggable */
    293   1.1.1.9  christos #define ACPI_SRAT_MEM_NON_VOLATILE  (1<<2)      /* 02: Memory region is non-volatile */
    294   1.1.1.2  christos 
    295   1.1.1.2  christos 
    296   1.1.1.9  christos /* 2: Processor Local X2_APIC Affinity (ACPI 4.0) */
    297       1.1  christos 
    298   1.1.1.9  christos typedef struct acpi_srat_x2apic_cpu_affinity
    299   1.1.1.2  christos {
    300   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    301   1.1.1.9  christos     UINT16                  Reserved;           /* Reserved, must be zero */
    302   1.1.1.9  christos     UINT32                  ProximityDomain;
    303   1.1.1.9  christos     UINT32                  ApicId;
    304   1.1.1.9  christos     UINT32                  Flags;
    305   1.1.1.9  christos     UINT32                  ClockDomain;
    306   1.1.1.9  christos     UINT32                  Reserved2;
    307   1.1.1.2  christos 
    308   1.1.1.9  christos } ACPI_SRAT_X2APIC_CPU_AFFINITY;
    309   1.1.1.2  christos 
    310   1.1.1.9  christos /* Flags for ACPI_SRAT_CPU_AFFINITY and ACPI_SRAT_X2APIC_CPU_AFFINITY */
    311   1.1.1.2  christos 
    312   1.1.1.9  christos #define ACPI_SRAT_CPU_ENABLED       (1)         /* 00: Use affinity structure */
    313   1.1.1.2  christos 
    314   1.1.1.2  christos 
    315   1.1.1.9  christos /* 3: GICC Affinity (ACPI 5.1) */
    316   1.1.1.2  christos 
    317   1.1.1.9  christos typedef struct acpi_srat_gicc_affinity
    318   1.1.1.2  christos {
    319   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    320   1.1.1.9  christos     UINT32                  ProximityDomain;
    321   1.1.1.9  christos     UINT32                  AcpiProcessorUid;
    322   1.1.1.9  christos     UINT32                  Flags;
    323   1.1.1.9  christos     UINT32                  ClockDomain;
    324   1.1.1.2  christos 
    325   1.1.1.9  christos } ACPI_SRAT_GICC_AFFINITY;
    326   1.1.1.2  christos 
    327   1.1.1.9  christos /* Flags for ACPI_SRAT_GICC_AFFINITY */
    328   1.1.1.2  christos 
    329   1.1.1.9  christos #define ACPI_SRAT_GICC_ENABLED     (1)         /* 00: Use affinity structure */
    330   1.1.1.2  christos 
    331   1.1.1.2  christos 
    332   1.1.1.9  christos /* 4: GCC ITS Affinity (ACPI 6.2) */
    333   1.1.1.2  christos 
    334   1.1.1.9  christos typedef struct acpi_srat_gic_its_affinity
    335   1.1.1.2  christos {
    336   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    337   1.1.1.9  christos     UINT32                  ProximityDomain;
    338   1.1.1.9  christos     UINT16                  Reserved;
    339   1.1.1.9  christos     UINT32                  ItsId;
    340   1.1.1.2  christos 
    341   1.1.1.9  christos } ACPI_SRAT_GIC_ITS_AFFINITY;
    342       1.1  christos 
    343  1.1.1.14  christos /*
    344  1.1.1.14  christos  * Common structure for SRAT subtable types:
    345  1.1.1.14  christos  * 5: ACPI_SRAT_TYPE_GENERIC_AFFINITY
    346  1.1.1.14  christos  * 6: ACPI_SRAT_TYPE_GENERIC_PORT_AFFINITY
    347  1.1.1.14  christos  */
    348  1.1.1.11  christos 
    349  1.1.1.16  christos #define ACPI_SRAT_DEVICE_HANDLE_SIZE	16
    350  1.1.1.16  christos 
    351  1.1.1.11  christos typedef struct acpi_srat_generic_affinity
    352  1.1.1.11  christos {
    353  1.1.1.11  christos     ACPI_SUBTABLE_HEADER    Header;
    354  1.1.1.11  christos     UINT8                   Reserved;
    355  1.1.1.11  christos     UINT8                   DeviceHandleType;
    356  1.1.1.11  christos     UINT32                  ProximityDomain;
    357  1.1.1.16  christos     UINT8                   DeviceHandle[ACPI_SRAT_DEVICE_HANDLE_SIZE];
    358  1.1.1.11  christos     UINT32                  Flags;
    359  1.1.1.11  christos     UINT32                  Reserved1;
    360  1.1.1.11  christos 
    361  1.1.1.11  christos } ACPI_SRAT_GENERIC_AFFINITY;
    362  1.1.1.11  christos 
    363  1.1.1.11  christos /* Flags for ACPI_SRAT_GENERIC_AFFINITY */
    364  1.1.1.11  christos 
    365  1.1.1.13  christos #define ACPI_SRAT_GENERIC_AFFINITY_ENABLED     (1)      /* 00: Use affinity structure */
    366  1.1.1.13  christos #define ACPI_SRAT_ARCHITECTURAL_TRANSACTIONS   (1<<1)   /* ACPI 6.4 */
    367  1.1.1.11  christos 
    368       1.1  christos /*******************************************************************************
    369       1.1  christos  *
    370   1.1.1.9  christos  * STAO - Status Override Table (_STA override) - ACPI 6.0
    371       1.1  christos  *        Version 1
    372       1.1  christos  *
    373   1.1.1.9  christos  * Conforms to "ACPI Specification for Status Override Table"
    374   1.1.1.9  christos  * 6 January 2015
    375   1.1.1.9  christos  *
    376       1.1  christos  ******************************************************************************/
    377       1.1  christos 
    378   1.1.1.9  christos typedef struct acpi_table_stao
    379       1.1  christos {
    380       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    381   1.1.1.9  christos     UINT8                   IgnoreUart;
    382       1.1  christos 
    383   1.1.1.9  christos } ACPI_TABLE_STAO;
    384       1.1  christos 
    385       1.1  christos 
    386       1.1  christos /*******************************************************************************
    387       1.1  christos  *
    388   1.1.1.9  christos  * TCPA - Trusted Computing Platform Alliance table
    389   1.1.1.9  christos  *        Version 2
    390   1.1.1.9  christos  *
    391   1.1.1.9  christos  * TCG Hardware Interface Table for TPM 1.2 Clients and Servers
    392   1.1.1.9  christos  *
    393   1.1.1.9  christos  * Conforms to "TCG ACPI Specification, Family 1.2 and 2.0",
    394   1.1.1.9  christos  * Version 1.2, Revision 8
    395   1.1.1.9  christos  * February 27, 2017
    396   1.1.1.9  christos  *
    397   1.1.1.9  christos  * NOTE: There are two versions of the table with the same signature --
    398   1.1.1.9  christos  * the client version and the server version. The common PlatformClass
    399   1.1.1.9  christos  * field is used to differentiate the two types of tables.
    400       1.1  christos  *
    401       1.1  christos  ******************************************************************************/
    402       1.1  christos 
    403   1.1.1.9  christos typedef struct acpi_table_tcpa_hdr
    404       1.1  christos {
    405       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    406   1.1.1.9  christos     UINT16                  PlatformClass;
    407       1.1  christos 
    408   1.1.1.9  christos } ACPI_TABLE_TCPA_HDR;
    409       1.1  christos 
    410       1.1  christos /*
    411   1.1.1.9  christos  * Values for PlatformClass above.
    412   1.1.1.9  christos  * This is how the client and server subtables are differentiated
    413       1.1  christos  */
    414   1.1.1.9  christos #define ACPI_TCPA_CLIENT_TABLE          0
    415   1.1.1.9  christos #define ACPI_TCPA_SERVER_TABLE          1
    416       1.1  christos 
    417       1.1  christos 
    418   1.1.1.9  christos typedef struct acpi_table_tcpa_client
    419       1.1  christos {
    420   1.1.1.9  christos     UINT32                  MinimumLogLength;   /* Minimum length for the event log area */
    421   1.1.1.9  christos     UINT64                  LogAddress;         /* Address of the event log area */
    422       1.1  christos 
    423   1.1.1.9  christos } ACPI_TABLE_TCPA_CLIENT;
    424   1.1.1.2  christos 
    425   1.1.1.9  christos typedef struct acpi_table_tcpa_server
    426   1.1.1.2  christos {
    427   1.1.1.9  christos     UINT16                  Reserved;
    428   1.1.1.9  christos     UINT64                  MinimumLogLength;   /* Minimum length for the event log area */
    429   1.1.1.9  christos     UINT64                  LogAddress;         /* Address of the event log area */
    430   1.1.1.9  christos     UINT16                  SpecRevision;
    431   1.1.1.9  christos     UINT8                   DeviceFlags;
    432   1.1.1.9  christos     UINT8                   InterruptFlags;
    433   1.1.1.9  christos     UINT8                   GpeNumber;
    434   1.1.1.9  christos     UINT8                   Reserved2[3];
    435   1.1.1.9  christos     UINT32                  GlobalInterrupt;
    436   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    Address;
    437   1.1.1.9  christos     UINT32                  Reserved3;
    438   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    ConfigAddress;
    439   1.1.1.9  christos     UINT8                   Group;
    440   1.1.1.9  christos     UINT8                   Bus;                /* PCI Bus/Segment/Function numbers */
    441   1.1.1.9  christos     UINT8                   Device;
    442   1.1.1.9  christos     UINT8                   Function;
    443   1.1.1.2  christos 
    444   1.1.1.9  christos } ACPI_TABLE_TCPA_SERVER;
    445   1.1.1.2  christos 
    446   1.1.1.9  christos /* Values for DeviceFlags above */
    447   1.1.1.6  christos 
    448   1.1.1.9  christos #define ACPI_TCPA_PCI_DEVICE            (1)
    449   1.1.1.9  christos #define ACPI_TCPA_BUS_PNP               (1<<1)
    450   1.1.1.9  christos #define ACPI_TCPA_ADDRESS_VALID         (1<<2)
    451   1.1.1.6  christos 
    452   1.1.1.9  christos /* Values for InterruptFlags above */
    453   1.1.1.6  christos 
    454   1.1.1.9  christos #define ACPI_TCPA_INTERRUPT_MODE        (1)
    455   1.1.1.9  christos #define ACPI_TCPA_INTERRUPT_POLARITY    (1<<1)
    456   1.1.1.9  christos #define ACPI_TCPA_SCI_VIA_GPE           (1<<2)
    457   1.1.1.9  christos #define ACPI_TCPA_GLOBAL_INTERRUPT      (1<<3)
    458   1.1.1.6  christos 
    459   1.1.1.6  christos 
    460   1.1.1.9  christos /*******************************************************************************
    461   1.1.1.9  christos  *
    462   1.1.1.9  christos  * TPM2 - Trusted Platform Module (TPM) 2.0 Hardware Interface Table
    463   1.1.1.9  christos  *        Version 4
    464   1.1.1.9  christos  *
    465   1.1.1.9  christos  * TCG Hardware Interface Table for TPM 2.0 Clients and Servers
    466   1.1.1.9  christos  *
    467   1.1.1.9  christos  * Conforms to "TCG ACPI Specification, Family 1.2 and 2.0",
    468   1.1.1.9  christos  * Version 1.2, Revision 8
    469   1.1.1.9  christos  * February 27, 2017
    470   1.1.1.9  christos  *
    471   1.1.1.9  christos  ******************************************************************************/
    472   1.1.1.8  christos 
    473  1.1.1.10  christos /* Revision 3 */
    474  1.1.1.10  christos 
    475  1.1.1.10  christos typedef struct acpi_table_tpm23
    476  1.1.1.10  christos {
    477  1.1.1.10  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    478  1.1.1.10  christos     UINT32                  Reserved;
    479  1.1.1.10  christos     UINT64                  ControlAddress;
    480  1.1.1.10  christos     UINT32                  StartMethod;
    481  1.1.1.10  christos 
    482  1.1.1.10  christos } ACPI_TABLE_TPM23;
    483  1.1.1.10  christos 
    484  1.1.1.10  christos /* Value for StartMethod above */
    485  1.1.1.10  christos 
    486  1.1.1.10  christos #define ACPI_TPM23_ACPI_START_METHOD                 2
    487  1.1.1.10  christos 
    488  1.1.1.10  christos /*
    489  1.1.1.10  christos  * Optional trailer for revision 3. If start method is 2, there is a 4 byte
    490  1.1.1.10  christos  * reserved area of all zeros.
    491  1.1.1.10  christos  */
    492  1.1.1.10  christos typedef struct acpi_tmp23_trailer
    493  1.1.1.10  christos {
    494  1.1.1.10  christos     UINT32                  Reserved;
    495  1.1.1.10  christos 
    496  1.1.1.10  christos } ACPI_TPM23_TRAILER;
    497  1.1.1.10  christos 
    498  1.1.1.10  christos 
    499  1.1.1.10  christos /* Revision 4 */
    500  1.1.1.10  christos 
    501   1.1.1.9  christos typedef struct acpi_table_tpm2
    502   1.1.1.8  christos {
    503   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    504   1.1.1.9  christos     UINT16                  PlatformClass;
    505   1.1.1.9  christos     UINT16                  Reserved;
    506   1.1.1.9  christos     UINT64                  ControlAddress;
    507   1.1.1.9  christos     UINT32                  StartMethod;
    508   1.1.1.8  christos 
    509   1.1.1.9  christos     /* Platform-specific data follows */
    510   1.1.1.8  christos 
    511   1.1.1.9  christos } ACPI_TABLE_TPM2;
    512   1.1.1.8  christos 
    513   1.1.1.9  christos /* Values for StartMethod above */
    514   1.1.1.8  christos 
    515   1.1.1.9  christos #define ACPI_TPM2_NOT_ALLOWED                       0
    516   1.1.1.9  christos #define ACPI_TPM2_RESERVED1                         1
    517   1.1.1.9  christos #define ACPI_TPM2_START_METHOD                      2
    518   1.1.1.9  christos #define ACPI_TPM2_RESERVED3                         3
    519   1.1.1.9  christos #define ACPI_TPM2_RESERVED4                         4
    520   1.1.1.9  christos #define ACPI_TPM2_RESERVED5                         5
    521   1.1.1.9  christos #define ACPI_TPM2_MEMORY_MAPPED                     6
    522   1.1.1.9  christos #define ACPI_TPM2_COMMAND_BUFFER                    7
    523   1.1.1.9  christos #define ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD  8
    524   1.1.1.9  christos #define ACPI_TPM2_RESERVED9                         9
    525   1.1.1.9  christos #define ACPI_TPM2_RESERVED10                        10
    526   1.1.1.9  christos #define ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC       11  /* V1.2 Rev 8 */
    527   1.1.1.9  christos #define ACPI_TPM2_RESERVED                          12
    528   1.1.1.8  christos 
    529   1.1.1.8  christos 
    530   1.1.1.9  christos /* Optional trailer appears after any StartMethod subtables */
    531   1.1.1.8  christos 
    532   1.1.1.9  christos typedef struct acpi_tpm2_trailer
    533   1.1.1.9  christos {
    534   1.1.1.9  christos     UINT8                   MethodParameters[12];
    535   1.1.1.9  christos     UINT32                  MinimumLogLength;   /* Minimum length for the event log area */
    536   1.1.1.9  christos     UINT64                  LogAddress;         /* Address of the event log area */
    537   1.1.1.2  christos 
    538   1.1.1.9  christos } ACPI_TPM2_TRAILER;
    539   1.1.1.2  christos 
    540   1.1.1.2  christos 
    541       1.1  christos /*
    542   1.1.1.9  christos  * Subtables (StartMethod-specific)
    543       1.1  christos  */
    544       1.1  christos 
    545   1.1.1.9  christos /* 11: Start Method for ARM SMC (V1.2 Rev 8) */
    546       1.1  christos 
    547   1.1.1.9  christos typedef struct acpi_tpm2_arm_smc
    548       1.1  christos {
    549   1.1.1.9  christos     UINT32                  GlobalInterrupt;
    550   1.1.1.9  christos     UINT8                   InterruptFlags;
    551   1.1.1.9  christos     UINT8                   OperationFlags;
    552   1.1.1.9  christos     UINT16                  Reserved;
    553   1.1.1.9  christos     UINT32                  FunctionId;
    554       1.1  christos 
    555   1.1.1.9  christos } ACPI_TPM2_ARM_SMC;
    556       1.1  christos 
    557   1.1.1.9  christos /* Values for InterruptFlags above */
    558       1.1  christos 
    559   1.1.1.9  christos #define ACPI_TPM2_INTERRUPT_SUPPORT     (1)
    560   1.1.1.8  christos 
    561   1.1.1.9  christos /* Values for OperationFlags above */
    562   1.1.1.8  christos 
    563   1.1.1.9  christos #define ACPI_TPM2_IDLE_SUPPORT          (1)
    564   1.1.1.8  christos 
    565   1.1.1.8  christos 
    566       1.1  christos /*******************************************************************************
    567       1.1  christos  *
    568   1.1.1.9  christos  * UEFI - UEFI Boot optimization Table
    569       1.1  christos  *        Version 1
    570       1.1  christos  *
    571   1.1.1.9  christos  * Conforms to "Unified Extensible Firmware Interface Specification",
    572   1.1.1.9  christos  * Version 2.3, May 8, 2009
    573   1.1.1.9  christos  *
    574       1.1  christos  ******************************************************************************/
    575       1.1  christos 
    576   1.1.1.9  christos typedef struct acpi_table_uefi
    577       1.1  christos {
    578       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    579   1.1.1.9  christos     UINT8                   Identifier[16];     /* UUID identifier */
    580   1.1.1.9  christos     UINT16                  DataOffset;         /* Offset of remaining data in table */
    581       1.1  christos 
    582   1.1.1.9  christos } ACPI_TABLE_UEFI;
    583       1.1  christos 
    584       1.1  christos 
    585   1.1.1.9  christos /*******************************************************************************
    586   1.1.1.9  christos  *
    587  1.1.1.13  christos  * VIOT - Virtual I/O Translation Table
    588   1.1.1.9  christos  *        Version 1
    589   1.1.1.9  christos  *
    590   1.1.1.9  christos  ******************************************************************************/
    591       1.1  christos 
    592  1.1.1.13  christos typedef struct acpi_table_viot
    593       1.1  christos {
    594   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    595  1.1.1.13  christos     UINT16                  NodeCount;
    596  1.1.1.13  christos     UINT16                  NodeOffset;
    597  1.1.1.13  christos     UINT8                   Reserved[8];
    598  1.1.1.13  christos 
    599  1.1.1.13  christos } ACPI_TABLE_VIOT;
    600  1.1.1.13  christos 
    601  1.1.1.13  christos /* VIOT subtable header */
    602  1.1.1.13  christos 
    603  1.1.1.13  christos typedef struct acpi_viot_header
    604  1.1.1.13  christos {
    605  1.1.1.13  christos     UINT8                   Type;
    606  1.1.1.13  christos     UINT8                   Reserved;
    607  1.1.1.13  christos     UINT16                  Length;
    608  1.1.1.13  christos 
    609  1.1.1.13  christos } ACPI_VIOT_HEADER;
    610  1.1.1.13  christos 
    611  1.1.1.13  christos /* Values for Type field above */
    612  1.1.1.13  christos 
    613  1.1.1.13  christos enum AcpiViotNodeType
    614  1.1.1.13  christos {
    615  1.1.1.13  christos     ACPI_VIOT_NODE_PCI_RANGE            = 0x01,
    616  1.1.1.13  christos     ACPI_VIOT_NODE_MMIO                 = 0x02,
    617  1.1.1.13  christos     ACPI_VIOT_NODE_VIRTIO_IOMMU_PCI     = 0x03,
    618  1.1.1.13  christos     ACPI_VIOT_NODE_VIRTIO_IOMMU_MMIO    = 0x04,
    619  1.1.1.13  christos     ACPI_VIOT_RESERVED                  = 0x05
    620  1.1.1.13  christos };
    621  1.1.1.13  christos 
    622  1.1.1.13  christos /* VIOT subtables */
    623       1.1  christos 
    624  1.1.1.13  christos typedef struct acpi_viot_pci_range
    625  1.1.1.13  christos {
    626  1.1.1.13  christos     ACPI_VIOT_HEADER        Header;
    627  1.1.1.13  christos     UINT32                  EndpointStart;
    628  1.1.1.13  christos     UINT16                  SegmentStart;
    629  1.1.1.13  christos     UINT16                  SegmentEnd;
    630  1.1.1.13  christos     UINT16                  BdfStart;
    631  1.1.1.13  christos     UINT16                  BdfEnd;
    632  1.1.1.13  christos     UINT16                  OutputNode;
    633  1.1.1.13  christos     UINT8                   Reserved[6];
    634       1.1  christos 
    635  1.1.1.13  christos } ACPI_VIOT_PCI_RANGE;
    636       1.1  christos 
    637  1.1.1.13  christos typedef struct acpi_viot_mmio
    638       1.1  christos {
    639  1.1.1.13  christos     ACPI_VIOT_HEADER        Header;
    640  1.1.1.13  christos     UINT32                  Endpoint;
    641  1.1.1.13  christos     UINT64                  BaseAddress;
    642  1.1.1.13  christos     UINT16                  OutputNode;
    643  1.1.1.13  christos     UINT8                   Reserved[6];
    644  1.1.1.13  christos 
    645  1.1.1.13  christos } ACPI_VIOT_MMIO;
    646  1.1.1.13  christos 
    647  1.1.1.13  christos typedef struct acpi_viot_virtio_iommu_pci
    648  1.1.1.13  christos {
    649  1.1.1.13  christos     ACPI_VIOT_HEADER        Header;
    650  1.1.1.13  christos     UINT16                  Segment;
    651  1.1.1.13  christos     UINT16                  Bdf;
    652  1.1.1.13  christos     UINT8                   Reserved[8];
    653  1.1.1.13  christos 
    654  1.1.1.13  christos } ACPI_VIOT_VIRTIO_IOMMU_PCI;
    655  1.1.1.13  christos 
    656  1.1.1.13  christos typedef struct acpi_viot_virtio_iommu_mmio
    657  1.1.1.13  christos {
    658  1.1.1.13  christos     ACPI_VIOT_HEADER        Header;
    659  1.1.1.13  christos     UINT8                   Reserved[4];
    660  1.1.1.13  christos     UINT64                  BaseAddress;
    661       1.1  christos 
    662  1.1.1.13  christos } ACPI_VIOT_VIRTIO_IOMMU_MMIO;
    663       1.1  christos 
    664       1.1  christos 
    665       1.1  christos /*******************************************************************************
    666       1.1  christos  *
    667   1.1.1.9  christos  * WAET - Windows ACPI Emulated devices Table
    668       1.1  christos  *        Version 1
    669       1.1  christos  *
    670   1.1.1.9  christos  * Conforms to "Windows ACPI Emulated Devices Table", version 1.0, April 6, 2009
    671   1.1.1.9  christos  *
    672       1.1  christos  ******************************************************************************/
    673       1.1  christos 
    674   1.1.1.9  christos typedef struct acpi_table_waet
    675       1.1  christos {
    676       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    677   1.1.1.9  christos     UINT32                  Flags;
    678       1.1  christos 
    679   1.1.1.9  christos } ACPI_TABLE_WAET;
    680       1.1  christos 
    681   1.1.1.9  christos /* Masks for Flags field above */
    682       1.1  christos 
    683   1.1.1.9  christos #define ACPI_WAET_RTC_NO_ACK        (1)         /* RTC requires no int acknowledge */
    684   1.1.1.9  christos #define ACPI_WAET_TIMER_ONE_READ    (1<<1)      /* PM timer requires only one read */
    685       1.1  christos 
    686       1.1  christos 
    687   1.1.1.9  christos /*******************************************************************************
    688   1.1.1.9  christos  *
    689   1.1.1.9  christos  * WDAT - Watchdog Action Table
    690   1.1.1.9  christos  *        Version 1
    691   1.1.1.9  christos  *
    692   1.1.1.9  christos  * Conforms to "Hardware Watchdog Timers Design Specification",
    693   1.1.1.9  christos  * Copyright 2006 Microsoft Corporation.
    694   1.1.1.9  christos  *
    695   1.1.1.9  christos  ******************************************************************************/
    696       1.1  christos 
    697   1.1.1.9  christos typedef struct acpi_table_wdat
    698       1.1  christos {
    699   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    700   1.1.1.9  christos     UINT32                  HeaderLength;       /* Watchdog Header Length */
    701   1.1.1.9  christos     UINT16                  PciSegment;         /* PCI Segment number */
    702   1.1.1.9  christos     UINT8                   PciBus;             /* PCI Bus number */
    703   1.1.1.9  christos     UINT8                   PciDevice;          /* PCI Device number */
    704   1.1.1.9  christos     UINT8                   PciFunction;        /* PCI Function number */
    705   1.1.1.9  christos     UINT8                   Reserved[3];
    706   1.1.1.9  christos     UINT32                  TimerPeriod;        /* Period of one timer count (msec) */
    707   1.1.1.9  christos     UINT32                  MaxCount;           /* Maximum counter value supported */
    708   1.1.1.9  christos     UINT32                  MinCount;           /* Minimum counter value */
    709   1.1.1.9  christos     UINT8                   Flags;
    710   1.1.1.9  christos     UINT8                   Reserved2[3];
    711   1.1.1.9  christos     UINT32                  Entries;            /* Number of watchdog entries that follow */
    712       1.1  christos 
    713   1.1.1.9  christos } ACPI_TABLE_WDAT;
    714       1.1  christos 
    715   1.1.1.9  christos /* Masks for Flags field above */
    716       1.1  christos 
    717   1.1.1.9  christos #define ACPI_WDAT_ENABLED           (1)
    718   1.1.1.9  christos #define ACPI_WDAT_STOPPED           0x80
    719       1.1  christos 
    720       1.1  christos 
    721   1.1.1.9  christos /* WDAT Instruction Entries (actions) */
    722       1.1  christos 
    723   1.1.1.9  christos typedef struct acpi_wdat_entry
    724       1.1  christos {
    725   1.1.1.9  christos     UINT8                   Action;
    726   1.1.1.9  christos     UINT8                   Instruction;
    727   1.1.1.9  christos     UINT16                  Reserved;
    728   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    RegisterRegion;
    729   1.1.1.9  christos     UINT32                  Value;              /* Value used with Read/Write register */
    730   1.1.1.9  christos     UINT32                  Mask;               /* Bitmask required for this register instruction */
    731   1.1.1.9  christos 
    732   1.1.1.9  christos } ACPI_WDAT_ENTRY;
    733   1.1.1.9  christos 
    734   1.1.1.9  christos /* Values for Action field above */
    735   1.1.1.9  christos 
    736   1.1.1.9  christos enum AcpiWdatActions
    737   1.1.1.9  christos {
    738   1.1.1.9  christos     ACPI_WDAT_RESET                 = 1,
    739   1.1.1.9  christos     ACPI_WDAT_GET_CURRENT_COUNTDOWN = 4,
    740   1.1.1.9  christos     ACPI_WDAT_GET_COUNTDOWN         = 5,
    741   1.1.1.9  christos     ACPI_WDAT_SET_COUNTDOWN         = 6,
    742   1.1.1.9  christos     ACPI_WDAT_GET_RUNNING_STATE     = 8,
    743   1.1.1.9  christos     ACPI_WDAT_SET_RUNNING_STATE     = 9,
    744   1.1.1.9  christos     ACPI_WDAT_GET_STOPPED_STATE     = 10,
    745   1.1.1.9  christos     ACPI_WDAT_SET_STOPPED_STATE     = 11,
    746   1.1.1.9  christos     ACPI_WDAT_GET_REBOOT            = 16,
    747   1.1.1.9  christos     ACPI_WDAT_SET_REBOOT            = 17,
    748   1.1.1.9  christos     ACPI_WDAT_GET_SHUTDOWN          = 18,
    749   1.1.1.9  christos     ACPI_WDAT_SET_SHUTDOWN          = 19,
    750   1.1.1.9  christos     ACPI_WDAT_GET_STATUS            = 32,
    751   1.1.1.9  christos     ACPI_WDAT_SET_STATUS            = 33,
    752   1.1.1.9  christos     ACPI_WDAT_ACTION_RESERVED       = 34    /* 34 and greater are reserved */
    753       1.1  christos };
    754       1.1  christos 
    755   1.1.1.9  christos /* Values for Instruction field above */
    756       1.1  christos 
    757   1.1.1.9  christos enum AcpiWdatInstructions
    758       1.1  christos {
    759   1.1.1.9  christos     ACPI_WDAT_READ_VALUE            = 0,
    760   1.1.1.9  christos     ACPI_WDAT_READ_COUNTDOWN        = 1,
    761   1.1.1.9  christos     ACPI_WDAT_WRITE_VALUE           = 2,
    762   1.1.1.9  christos     ACPI_WDAT_WRITE_COUNTDOWN       = 3,
    763   1.1.1.9  christos     ACPI_WDAT_INSTRUCTION_RESERVED  = 4,    /* 4 and greater are reserved */
    764   1.1.1.9  christos     ACPI_WDAT_PRESERVE_REGISTER     = 0x80  /* Except for this value */
    765       1.1  christos };
    766       1.1  christos 
    767       1.1  christos 
    768   1.1.1.9  christos /*******************************************************************************
    769   1.1.1.9  christos  *
    770   1.1.1.9  christos  * WDDT - Watchdog Descriptor Table
    771   1.1.1.9  christos  *        Version 1
    772   1.1.1.9  christos  *
    773   1.1.1.9  christos  * Conforms to "Using the Intel ICH Family Watchdog Timer (WDT)",
    774   1.1.1.9  christos  * Version 001, September 2002
    775   1.1.1.9  christos  *
    776   1.1.1.9  christos  ******************************************************************************/
    777       1.1  christos 
    778   1.1.1.9  christos typedef struct acpi_table_wddt
    779   1.1.1.9  christos {
    780   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    781   1.1.1.9  christos     UINT16                  SpecVersion;
    782   1.1.1.9  christos     UINT16                  TableVersion;
    783   1.1.1.9  christos     UINT16                  PciVendorId;
    784   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    Address;
    785   1.1.1.9  christos     UINT16                  MaxCount;           /* Maximum counter value supported */
    786   1.1.1.9  christos     UINT16                  MinCount;           /* Minimum counter value supported */
    787   1.1.1.9  christos     UINT16                  Period;
    788   1.1.1.9  christos     UINT16                  Status;
    789   1.1.1.9  christos     UINT16                  Capability;
    790       1.1  christos 
    791   1.1.1.9  christos } ACPI_TABLE_WDDT;
    792       1.1  christos 
    793   1.1.1.9  christos /* Flags for Status field above */
    794       1.1  christos 
    795   1.1.1.9  christos #define ACPI_WDDT_AVAILABLE     (1)
    796   1.1.1.9  christos #define ACPI_WDDT_ACTIVE        (1<<1)
    797   1.1.1.9  christos #define ACPI_WDDT_TCO_OS_OWNED  (1<<2)
    798   1.1.1.9  christos #define ACPI_WDDT_USER_RESET    (1<<11)
    799   1.1.1.9  christos #define ACPI_WDDT_WDT_RESET     (1<<12)
    800   1.1.1.9  christos #define ACPI_WDDT_POWER_FAIL    (1<<13)
    801   1.1.1.9  christos #define ACPI_WDDT_UNKNOWN_RESET (1<<14)
    802       1.1  christos 
    803   1.1.1.9  christos /* Flags for Capability field above */
    804       1.1  christos 
    805   1.1.1.9  christos #define ACPI_WDDT_AUTO_RESET    (1)
    806   1.1.1.9  christos #define ACPI_WDDT_ALERT_SUPPORT (1<<1)
    807       1.1  christos 
    808       1.1  christos 
    809       1.1  christos /*******************************************************************************
    810       1.1  christos  *
    811   1.1.1.9  christos  * WDRT - Watchdog Resource Table
    812   1.1.1.4  christos  *        Version 1
    813       1.1  christos  *
    814   1.1.1.9  christos  * Conforms to "Watchdog Timer Hardware Requirements for Windows Server 2003",
    815   1.1.1.9  christos  * Version 1.01, August 28, 2006
    816       1.1  christos  *
    817       1.1  christos  ******************************************************************************/
    818       1.1  christos 
    819   1.1.1.9  christos typedef struct acpi_table_wdrt
    820       1.1  christos {
    821       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    822   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    ControlRegister;
    823   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    CountRegister;
    824   1.1.1.9  christos     UINT16                  PciDeviceId;
    825   1.1.1.9  christos     UINT16                  PciVendorId;
    826   1.1.1.9  christos     UINT8                   PciBus;             /* PCI Bus number */
    827   1.1.1.9  christos     UINT8                   PciDevice;          /* PCI Device number */
    828   1.1.1.9  christos     UINT8                   PciFunction;        /* PCI Function number */
    829   1.1.1.9  christos     UINT8                   PciSegment;         /* PCI Segment number */
    830   1.1.1.9  christos     UINT16                  MaxCount;           /* Maximum counter value supported */
    831   1.1.1.9  christos     UINT8                   Units;
    832       1.1  christos 
    833   1.1.1.9  christos } ACPI_TABLE_WDRT;
    834       1.1  christos 
    835       1.1  christos 
    836   1.1.1.4  christos /*******************************************************************************
    837   1.1.1.4  christos  *
    838   1.1.1.4  christos  * WPBT - Windows Platform Environment Table (ACPI 6.0)
    839   1.1.1.4  christos  *        Version 1
    840   1.1.1.4  christos  *
    841   1.1.1.4  christos  * Conforms to "Windows Platform Binary Table (WPBT)" 29 November 2011
    842   1.1.1.4  christos  *
    843   1.1.1.4  christos  ******************************************************************************/
    844   1.1.1.4  christos 
    845   1.1.1.4  christos typedef struct acpi_table_wpbt
    846       1.1  christos {
    847   1.1.1.4  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    848   1.1.1.4  christos     UINT32                  HandoffSize;
    849   1.1.1.4  christos     UINT64                  HandoffAddress;
    850   1.1.1.4  christos     UINT8                   Layout;
    851   1.1.1.4  christos     UINT8                   Type;
    852   1.1.1.4  christos     UINT16                  ArgumentsLength;
    853   1.1.1.4  christos 
    854   1.1.1.4  christos } ACPI_TABLE_WPBT;
    855   1.1.1.4  christos 
    856  1.1.1.14  christos typedef struct acpi_wpbt_unicode
    857  1.1.1.14  christos {
    858  1.1.1.14  christos     UINT16                  *UnicodeString;
    859  1.1.1.14  christos 
    860  1.1.1.14  christos } ACPI_WPBT_UNICODE;
    861  1.1.1.14  christos 
    862   1.1.1.4  christos 
    863   1.1.1.4  christos /*******************************************************************************
    864   1.1.1.4  christos  *
    865  1.1.1.12  christos  * WSMT - Windows SMM Security Mitigations Table
    866   1.1.1.9  christos  *        Version 1
    867   1.1.1.9  christos  *
    868  1.1.1.12  christos  * Conforms to "Windows SMM Security Mitigations Table",
    869   1.1.1.9  christos  * Version 1.0, April 18, 2016
    870   1.1.1.9  christos  *
    871   1.1.1.9  christos  ******************************************************************************/
    872   1.1.1.9  christos 
    873   1.1.1.9  christos typedef struct acpi_table_wsmt
    874   1.1.1.9  christos {
    875   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    876   1.1.1.9  christos     UINT32                  ProtectionFlags;
    877   1.1.1.9  christos 
    878   1.1.1.9  christos } ACPI_TABLE_WSMT;
    879   1.1.1.9  christos 
    880   1.1.1.9  christos /* Flags for ProtectionFlags field above */
    881   1.1.1.9  christos 
    882   1.1.1.9  christos #define ACPI_WSMT_FIXED_COMM_BUFFERS                (1)
    883   1.1.1.9  christos #define ACPI_WSMT_COMM_BUFFER_NESTED_PTR_PROTECTION (2)
    884   1.1.1.9  christos #define ACPI_WSMT_SYSTEM_RESOURCE_PROTECTION        (4)
    885   1.1.1.9  christos 
    886   1.1.1.9  christos 
    887   1.1.1.9  christos /*******************************************************************************
    888   1.1.1.9  christos  *
    889   1.1.1.4  christos  * XENV - Xen Environment Table (ACPI 6.0)
    890   1.1.1.4  christos  *        Version 1
    891   1.1.1.4  christos  *
    892   1.1.1.4  christos  * Conforms to "ACPI Specification for Xen Environment Table" 4 January 2015
    893   1.1.1.4  christos  *
    894   1.1.1.4  christos  ******************************************************************************/
    895   1.1.1.4  christos 
    896   1.1.1.4  christos typedef struct acpi_table_xenv
    897   1.1.1.4  christos {
    898   1.1.1.4  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    899   1.1.1.4  christos     UINT64                  GrantTableAddress;
    900   1.1.1.4  christos     UINT64                  GrantTableSize;
    901   1.1.1.4  christos     UINT32                  EventInterrupt;
    902   1.1.1.4  christos     UINT8                   EventFlags;
    903       1.1  christos 
    904   1.1.1.4  christos } ACPI_TABLE_XENV;
    905       1.1  christos 
    906       1.1  christos 
    907       1.1  christos /* Reset to default packing */
    908       1.1  christos 
    909       1.1  christos #pragma pack()
    910       1.1  christos 
    911       1.1  christos #endif /* __ACTBL3_H__ */
    912