Home | History | Annotate | Line # | Download | only in include
actbl3.h revision 1.1.1.10
      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.9  christos  * Copyright (C) 2000 - 2018, 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  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY 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.9  christos #define ACPI_SIG_VRTC           "VRTC"      /* Virtual Real Time Clock 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.9  christos #define ACPI_SIG_WSMT           "WSMT"      /* Windows SMM Security Migrations 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.9  christos     ACPI_SRAT_TYPE_GIC_ITS_AFFINITY     = 4,    /* ACPI 6.2 */
    246   1.1.1.9  christos     ACPI_SRAT_TYPE_RESERVED             = 5     /* 5 and greater are reserved */
    247   1.1.1.9  christos };
    248       1.1  christos 
    249       1.1  christos /*
    250   1.1.1.9  christos  * SRAT Subtables, correspond to Type in ACPI_SUBTABLE_HEADER
    251       1.1  christos  */
    252       1.1  christos 
    253   1.1.1.9  christos /* 0: Processor Local APIC/SAPIC Affinity */
    254       1.1  christos 
    255   1.1.1.9  christos typedef struct acpi_srat_cpu_affinity
    256       1.1  christos {
    257   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    258   1.1.1.9  christos     UINT8                   ProximityDomainLo;
    259   1.1.1.9  christos     UINT8                   ApicId;
    260   1.1.1.9  christos     UINT32                  Flags;
    261   1.1.1.9  christos     UINT8                   LocalSapicEid;
    262   1.1.1.9  christos     UINT8                   ProximityDomainHi[3];
    263   1.1.1.9  christos     UINT32                  ClockDomain;
    264       1.1  christos 
    265   1.1.1.9  christos } ACPI_SRAT_CPU_AFFINITY;
    266       1.1  christos 
    267   1.1.1.9  christos /* Flags */
    268       1.1  christos 
    269   1.1.1.9  christos #define ACPI_SRAT_CPU_USE_AFFINITY  (1)         /* 00: Use affinity structure */
    270       1.1  christos 
    271       1.1  christos 
    272   1.1.1.9  christos /* 1: Memory Affinity */
    273       1.1  christos 
    274   1.1.1.9  christos typedef struct acpi_srat_mem_affinity
    275   1.1.1.6  christos {
    276   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    277   1.1.1.9  christos     UINT32                  ProximityDomain;
    278   1.1.1.9  christos     UINT16                  Reserved;           /* Reserved, must be zero */
    279   1.1.1.9  christos     UINT64                  BaseAddress;
    280   1.1.1.9  christos     UINT64                  Length;
    281   1.1.1.9  christos     UINT32                  Reserved1;
    282   1.1.1.9  christos     UINT32                  Flags;
    283   1.1.1.9  christos     UINT64                  Reserved2;          /* Reserved, must be zero */
    284   1.1.1.2  christos 
    285   1.1.1.9  christos } ACPI_SRAT_MEM_AFFINITY;
    286   1.1.1.2  christos 
    287   1.1.1.9  christos /* Flags */
    288   1.1.1.2  christos 
    289   1.1.1.9  christos #define ACPI_SRAT_MEM_ENABLED       (1)         /* 00: Use affinity structure */
    290   1.1.1.9  christos #define ACPI_SRAT_MEM_HOT_PLUGGABLE (1<<1)      /* 01: Memory region is hot pluggable */
    291   1.1.1.9  christos #define ACPI_SRAT_MEM_NON_VOLATILE  (1<<2)      /* 02: Memory region is non-volatile */
    292   1.1.1.2  christos 
    293   1.1.1.2  christos 
    294   1.1.1.9  christos /* 2: Processor Local X2_APIC Affinity (ACPI 4.0) */
    295       1.1  christos 
    296   1.1.1.9  christos typedef struct acpi_srat_x2apic_cpu_affinity
    297   1.1.1.2  christos {
    298   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    299   1.1.1.9  christos     UINT16                  Reserved;           /* Reserved, must be zero */
    300   1.1.1.9  christos     UINT32                  ProximityDomain;
    301   1.1.1.9  christos     UINT32                  ApicId;
    302   1.1.1.9  christos     UINT32                  Flags;
    303   1.1.1.9  christos     UINT32                  ClockDomain;
    304   1.1.1.9  christos     UINT32                  Reserved2;
    305   1.1.1.2  christos 
    306   1.1.1.9  christos } ACPI_SRAT_X2APIC_CPU_AFFINITY;
    307   1.1.1.2  christos 
    308   1.1.1.9  christos /* Flags for ACPI_SRAT_CPU_AFFINITY and ACPI_SRAT_X2APIC_CPU_AFFINITY */
    309   1.1.1.2  christos 
    310   1.1.1.9  christos #define ACPI_SRAT_CPU_ENABLED       (1)         /* 00: Use affinity structure */
    311   1.1.1.2  christos 
    312   1.1.1.2  christos 
    313   1.1.1.9  christos /* 3: GICC Affinity (ACPI 5.1) */
    314   1.1.1.2  christos 
    315   1.1.1.9  christos typedef struct acpi_srat_gicc_affinity
    316   1.1.1.2  christos {
    317   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    318   1.1.1.9  christos     UINT32                  ProximityDomain;
    319   1.1.1.9  christos     UINT32                  AcpiProcessorUid;
    320   1.1.1.9  christos     UINT32                  Flags;
    321   1.1.1.9  christos     UINT32                  ClockDomain;
    322   1.1.1.2  christos 
    323   1.1.1.9  christos } ACPI_SRAT_GICC_AFFINITY;
    324   1.1.1.2  christos 
    325   1.1.1.9  christos /* Flags for ACPI_SRAT_GICC_AFFINITY */
    326   1.1.1.2  christos 
    327   1.1.1.9  christos #define ACPI_SRAT_GICC_ENABLED     (1)         /* 00: Use affinity structure */
    328   1.1.1.2  christos 
    329   1.1.1.2  christos 
    330   1.1.1.9  christos /* 4: GCC ITS Affinity (ACPI 6.2) */
    331   1.1.1.2  christos 
    332   1.1.1.9  christos typedef struct acpi_srat_gic_its_affinity
    333   1.1.1.2  christos {
    334   1.1.1.9  christos     ACPI_SUBTABLE_HEADER    Header;
    335   1.1.1.9  christos     UINT32                  ProximityDomain;
    336   1.1.1.9  christos     UINT16                  Reserved;
    337   1.1.1.9  christos     UINT32                  ItsId;
    338   1.1.1.2  christos 
    339   1.1.1.9  christos } ACPI_SRAT_GIC_ITS_AFFINITY;
    340       1.1  christos 
    341       1.1  christos 
    342       1.1  christos /*******************************************************************************
    343       1.1  christos  *
    344   1.1.1.9  christos  * STAO - Status Override Table (_STA override) - ACPI 6.0
    345       1.1  christos  *        Version 1
    346       1.1  christos  *
    347   1.1.1.9  christos  * Conforms to "ACPI Specification for Status Override Table"
    348   1.1.1.9  christos  * 6 January 2015
    349   1.1.1.9  christos  *
    350       1.1  christos  ******************************************************************************/
    351       1.1  christos 
    352   1.1.1.9  christos typedef struct acpi_table_stao
    353       1.1  christos {
    354       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    355   1.1.1.9  christos     UINT8                   IgnoreUart;
    356       1.1  christos 
    357   1.1.1.9  christos } ACPI_TABLE_STAO;
    358       1.1  christos 
    359       1.1  christos 
    360       1.1  christos /*******************************************************************************
    361       1.1  christos  *
    362   1.1.1.9  christos  * TCPA - Trusted Computing Platform Alliance table
    363   1.1.1.9  christos  *        Version 2
    364   1.1.1.9  christos  *
    365   1.1.1.9  christos  * TCG Hardware Interface Table for TPM 1.2 Clients and Servers
    366   1.1.1.9  christos  *
    367   1.1.1.9  christos  * Conforms to "TCG ACPI Specification, Family 1.2 and 2.0",
    368   1.1.1.9  christos  * Version 1.2, Revision 8
    369   1.1.1.9  christos  * February 27, 2017
    370   1.1.1.9  christos  *
    371   1.1.1.9  christos  * NOTE: There are two versions of the table with the same signature --
    372   1.1.1.9  christos  * the client version and the server version. The common PlatformClass
    373   1.1.1.9  christos  * field is used to differentiate the two types of tables.
    374       1.1  christos  *
    375       1.1  christos  ******************************************************************************/
    376       1.1  christos 
    377   1.1.1.9  christos typedef struct acpi_table_tcpa_hdr
    378       1.1  christos {
    379       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    380   1.1.1.9  christos     UINT16                  PlatformClass;
    381       1.1  christos 
    382   1.1.1.9  christos } ACPI_TABLE_TCPA_HDR;
    383       1.1  christos 
    384       1.1  christos /*
    385   1.1.1.9  christos  * Values for PlatformClass above.
    386   1.1.1.9  christos  * This is how the client and server subtables are differentiated
    387       1.1  christos  */
    388   1.1.1.9  christos #define ACPI_TCPA_CLIENT_TABLE          0
    389   1.1.1.9  christos #define ACPI_TCPA_SERVER_TABLE          1
    390       1.1  christos 
    391       1.1  christos 
    392   1.1.1.9  christos typedef struct acpi_table_tcpa_client
    393       1.1  christos {
    394   1.1.1.9  christos     UINT32                  MinimumLogLength;   /* Minimum length for the event log area */
    395   1.1.1.9  christos     UINT64                  LogAddress;         /* Address of the event log area */
    396       1.1  christos 
    397   1.1.1.9  christos } ACPI_TABLE_TCPA_CLIENT;
    398   1.1.1.2  christos 
    399   1.1.1.9  christos typedef struct acpi_table_tcpa_server
    400   1.1.1.2  christos {
    401   1.1.1.9  christos     UINT16                  Reserved;
    402   1.1.1.9  christos     UINT64                  MinimumLogLength;   /* Minimum length for the event log area */
    403   1.1.1.9  christos     UINT64                  LogAddress;         /* Address of the event log area */
    404   1.1.1.9  christos     UINT16                  SpecRevision;
    405   1.1.1.9  christos     UINT8                   DeviceFlags;
    406   1.1.1.9  christos     UINT8                   InterruptFlags;
    407   1.1.1.9  christos     UINT8                   GpeNumber;
    408   1.1.1.9  christos     UINT8                   Reserved2[3];
    409   1.1.1.9  christos     UINT32                  GlobalInterrupt;
    410   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    Address;
    411   1.1.1.9  christos     UINT32                  Reserved3;
    412   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    ConfigAddress;
    413   1.1.1.9  christos     UINT8                   Group;
    414   1.1.1.9  christos     UINT8                   Bus;                /* PCI Bus/Segment/Function numbers */
    415   1.1.1.9  christos     UINT8                   Device;
    416   1.1.1.9  christos     UINT8                   Function;
    417   1.1.1.2  christos 
    418   1.1.1.9  christos } ACPI_TABLE_TCPA_SERVER;
    419   1.1.1.2  christos 
    420   1.1.1.9  christos /* Values for DeviceFlags above */
    421   1.1.1.6  christos 
    422   1.1.1.9  christos #define ACPI_TCPA_PCI_DEVICE            (1)
    423   1.1.1.9  christos #define ACPI_TCPA_BUS_PNP               (1<<1)
    424   1.1.1.9  christos #define ACPI_TCPA_ADDRESS_VALID         (1<<2)
    425   1.1.1.6  christos 
    426   1.1.1.9  christos /* Values for InterruptFlags above */
    427   1.1.1.6  christos 
    428   1.1.1.9  christos #define ACPI_TCPA_INTERRUPT_MODE        (1)
    429   1.1.1.9  christos #define ACPI_TCPA_INTERRUPT_POLARITY    (1<<1)
    430   1.1.1.9  christos #define ACPI_TCPA_SCI_VIA_GPE           (1<<2)
    431   1.1.1.9  christos #define ACPI_TCPA_GLOBAL_INTERRUPT      (1<<3)
    432   1.1.1.6  christos 
    433   1.1.1.6  christos 
    434   1.1.1.9  christos /*******************************************************************************
    435   1.1.1.9  christos  *
    436   1.1.1.9  christos  * TPM2 - Trusted Platform Module (TPM) 2.0 Hardware Interface Table
    437   1.1.1.9  christos  *        Version 4
    438   1.1.1.9  christos  *
    439   1.1.1.9  christos  * TCG Hardware Interface Table for TPM 2.0 Clients and Servers
    440   1.1.1.9  christos  *
    441   1.1.1.9  christos  * Conforms to "TCG ACPI Specification, Family 1.2 and 2.0",
    442   1.1.1.9  christos  * Version 1.2, Revision 8
    443   1.1.1.9  christos  * February 27, 2017
    444   1.1.1.9  christos  *
    445   1.1.1.9  christos  ******************************************************************************/
    446   1.1.1.8  christos 
    447  1.1.1.10  christos /* Revision 3 */
    448  1.1.1.10  christos 
    449  1.1.1.10  christos typedef struct acpi_table_tpm23
    450  1.1.1.10  christos {
    451  1.1.1.10  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    452  1.1.1.10  christos     UINT32                  Reserved;
    453  1.1.1.10  christos     UINT64                  ControlAddress;
    454  1.1.1.10  christos     UINT32                  StartMethod;
    455  1.1.1.10  christos 
    456  1.1.1.10  christos } ACPI_TABLE_TPM23;
    457  1.1.1.10  christos 
    458  1.1.1.10  christos /* Value for StartMethod above */
    459  1.1.1.10  christos 
    460  1.1.1.10  christos #define ACPI_TPM23_ACPI_START_METHOD                 2
    461  1.1.1.10  christos 
    462  1.1.1.10  christos /*
    463  1.1.1.10  christos  * Optional trailer for revision 3. If start method is 2, there is a 4 byte
    464  1.1.1.10  christos  * reserved area of all zeros.
    465  1.1.1.10  christos  */
    466  1.1.1.10  christos typedef struct acpi_tmp23_trailer
    467  1.1.1.10  christos {
    468  1.1.1.10  christos     UINT32                  Reserved;
    469  1.1.1.10  christos 
    470  1.1.1.10  christos } ACPI_TPM23_TRAILER;
    471  1.1.1.10  christos 
    472  1.1.1.10  christos 
    473  1.1.1.10  christos /* Revision 4 */
    474  1.1.1.10  christos 
    475   1.1.1.9  christos typedef struct acpi_table_tpm2
    476   1.1.1.8  christos {
    477   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    478   1.1.1.9  christos     UINT16                  PlatformClass;
    479   1.1.1.9  christos     UINT16                  Reserved;
    480   1.1.1.9  christos     UINT64                  ControlAddress;
    481   1.1.1.9  christos     UINT32                  StartMethod;
    482   1.1.1.8  christos 
    483   1.1.1.9  christos     /* Platform-specific data follows */
    484   1.1.1.8  christos 
    485   1.1.1.9  christos } ACPI_TABLE_TPM2;
    486   1.1.1.8  christos 
    487   1.1.1.9  christos /* Values for StartMethod above */
    488   1.1.1.8  christos 
    489   1.1.1.9  christos #define ACPI_TPM2_NOT_ALLOWED                       0
    490   1.1.1.9  christos #define ACPI_TPM2_RESERVED1                         1
    491   1.1.1.9  christos #define ACPI_TPM2_START_METHOD                      2
    492   1.1.1.9  christos #define ACPI_TPM2_RESERVED3                         3
    493   1.1.1.9  christos #define ACPI_TPM2_RESERVED4                         4
    494   1.1.1.9  christos #define ACPI_TPM2_RESERVED5                         5
    495   1.1.1.9  christos #define ACPI_TPM2_MEMORY_MAPPED                     6
    496   1.1.1.9  christos #define ACPI_TPM2_COMMAND_BUFFER                    7
    497   1.1.1.9  christos #define ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD  8
    498   1.1.1.9  christos #define ACPI_TPM2_RESERVED9                         9
    499   1.1.1.9  christos #define ACPI_TPM2_RESERVED10                        10
    500   1.1.1.9  christos #define ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC       11  /* V1.2 Rev 8 */
    501   1.1.1.9  christos #define ACPI_TPM2_RESERVED                          12
    502   1.1.1.8  christos 
    503   1.1.1.8  christos 
    504   1.1.1.9  christos /* Optional trailer appears after any StartMethod subtables */
    505   1.1.1.8  christos 
    506   1.1.1.9  christos typedef struct acpi_tpm2_trailer
    507   1.1.1.9  christos {
    508   1.1.1.9  christos     UINT8                   MethodParameters[12];
    509   1.1.1.9  christos     UINT32                  MinimumLogLength;   /* Minimum length for the event log area */
    510   1.1.1.9  christos     UINT64                  LogAddress;         /* Address of the event log area */
    511   1.1.1.2  christos 
    512   1.1.1.9  christos } ACPI_TPM2_TRAILER;
    513   1.1.1.2  christos 
    514   1.1.1.2  christos 
    515       1.1  christos /*
    516   1.1.1.9  christos  * Subtables (StartMethod-specific)
    517       1.1  christos  */
    518       1.1  christos 
    519   1.1.1.9  christos /* 11: Start Method for ARM SMC (V1.2 Rev 8) */
    520       1.1  christos 
    521   1.1.1.9  christos typedef struct acpi_tpm2_arm_smc
    522       1.1  christos {
    523   1.1.1.9  christos     UINT32                  GlobalInterrupt;
    524   1.1.1.9  christos     UINT8                   InterruptFlags;
    525   1.1.1.9  christos     UINT8                   OperationFlags;
    526   1.1.1.9  christos     UINT16                  Reserved;
    527   1.1.1.9  christos     UINT32                  FunctionId;
    528       1.1  christos 
    529   1.1.1.9  christos } ACPI_TPM2_ARM_SMC;
    530       1.1  christos 
    531   1.1.1.9  christos /* Values for InterruptFlags above */
    532       1.1  christos 
    533   1.1.1.9  christos #define ACPI_TPM2_INTERRUPT_SUPPORT     (1)
    534   1.1.1.8  christos 
    535   1.1.1.9  christos /* Values for OperationFlags above */
    536   1.1.1.8  christos 
    537   1.1.1.9  christos #define ACPI_TPM2_IDLE_SUPPORT          (1)
    538   1.1.1.8  christos 
    539   1.1.1.8  christos 
    540       1.1  christos /*******************************************************************************
    541       1.1  christos  *
    542   1.1.1.9  christos  * UEFI - UEFI Boot optimization Table
    543       1.1  christos  *        Version 1
    544       1.1  christos  *
    545   1.1.1.9  christos  * Conforms to "Unified Extensible Firmware Interface Specification",
    546   1.1.1.9  christos  * Version 2.3, May 8, 2009
    547   1.1.1.9  christos  *
    548       1.1  christos  ******************************************************************************/
    549       1.1  christos 
    550   1.1.1.9  christos typedef struct acpi_table_uefi
    551       1.1  christos {
    552       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    553   1.1.1.9  christos     UINT8                   Identifier[16];     /* UUID identifier */
    554   1.1.1.9  christos     UINT16                  DataOffset;         /* Offset of remaining data in table */
    555       1.1  christos 
    556   1.1.1.9  christos } ACPI_TABLE_UEFI;
    557       1.1  christos 
    558       1.1  christos 
    559   1.1.1.9  christos /*******************************************************************************
    560   1.1.1.9  christos  *
    561   1.1.1.9  christos  * VRTC - Virtual Real Time Clock Table
    562   1.1.1.9  christos  *        Version 1
    563   1.1.1.9  christos  *
    564   1.1.1.9  christos  * Conforms to "Simple Firmware Interface Specification",
    565   1.1.1.9  christos  * Draft 0.8.2, Oct 19, 2010
    566   1.1.1.9  christos  * NOTE: The ACPI VRTC is equivalent to The SFI MRTC table.
    567   1.1.1.9  christos  *
    568   1.1.1.9  christos  ******************************************************************************/
    569       1.1  christos 
    570   1.1.1.9  christos typedef struct acpi_table_vrtc
    571       1.1  christos {
    572   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    573       1.1  christos 
    574   1.1.1.9  christos } ACPI_TABLE_VRTC;
    575       1.1  christos 
    576   1.1.1.9  christos /* VRTC entry */
    577       1.1  christos 
    578   1.1.1.9  christos typedef struct acpi_vrtc_entry
    579       1.1  christos {
    580   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    PhysicalAddress;
    581   1.1.1.9  christos     UINT32                  Irq;
    582       1.1  christos 
    583   1.1.1.9  christos } ACPI_VRTC_ENTRY;
    584       1.1  christos 
    585       1.1  christos 
    586       1.1  christos /*******************************************************************************
    587       1.1  christos  *
    588   1.1.1.9  christos  * WAET - Windows ACPI Emulated devices Table
    589       1.1  christos  *        Version 1
    590       1.1  christos  *
    591   1.1.1.9  christos  * Conforms to "Windows ACPI Emulated Devices Table", version 1.0, April 6, 2009
    592   1.1.1.9  christos  *
    593       1.1  christos  ******************************************************************************/
    594       1.1  christos 
    595   1.1.1.9  christos typedef struct acpi_table_waet
    596       1.1  christos {
    597       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    598   1.1.1.9  christos     UINT32                  Flags;
    599       1.1  christos 
    600   1.1.1.9  christos } ACPI_TABLE_WAET;
    601       1.1  christos 
    602   1.1.1.9  christos /* Masks for Flags field above */
    603       1.1  christos 
    604   1.1.1.9  christos #define ACPI_WAET_RTC_NO_ACK        (1)         /* RTC requires no int acknowledge */
    605   1.1.1.9  christos #define ACPI_WAET_TIMER_ONE_READ    (1<<1)      /* PM timer requires only one read */
    606       1.1  christos 
    607       1.1  christos 
    608   1.1.1.9  christos /*******************************************************************************
    609   1.1.1.9  christos  *
    610   1.1.1.9  christos  * WDAT - Watchdog Action Table
    611   1.1.1.9  christos  *        Version 1
    612   1.1.1.9  christos  *
    613   1.1.1.9  christos  * Conforms to "Hardware Watchdog Timers Design Specification",
    614   1.1.1.9  christos  * Copyright 2006 Microsoft Corporation.
    615   1.1.1.9  christos  *
    616   1.1.1.9  christos  ******************************************************************************/
    617       1.1  christos 
    618   1.1.1.9  christos typedef struct acpi_table_wdat
    619       1.1  christos {
    620   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    621   1.1.1.9  christos     UINT32                  HeaderLength;       /* Watchdog Header Length */
    622   1.1.1.9  christos     UINT16                  PciSegment;         /* PCI Segment number */
    623   1.1.1.9  christos     UINT8                   PciBus;             /* PCI Bus number */
    624   1.1.1.9  christos     UINT8                   PciDevice;          /* PCI Device number */
    625   1.1.1.9  christos     UINT8                   PciFunction;        /* PCI Function number */
    626   1.1.1.9  christos     UINT8                   Reserved[3];
    627   1.1.1.9  christos     UINT32                  TimerPeriod;        /* Period of one timer count (msec) */
    628   1.1.1.9  christos     UINT32                  MaxCount;           /* Maximum counter value supported */
    629   1.1.1.9  christos     UINT32                  MinCount;           /* Minimum counter value */
    630   1.1.1.9  christos     UINT8                   Flags;
    631   1.1.1.9  christos     UINT8                   Reserved2[3];
    632   1.1.1.9  christos     UINT32                  Entries;            /* Number of watchdog entries that follow */
    633       1.1  christos 
    634   1.1.1.9  christos } ACPI_TABLE_WDAT;
    635       1.1  christos 
    636   1.1.1.9  christos /* Masks for Flags field above */
    637       1.1  christos 
    638   1.1.1.9  christos #define ACPI_WDAT_ENABLED           (1)
    639   1.1.1.9  christos #define ACPI_WDAT_STOPPED           0x80
    640       1.1  christos 
    641       1.1  christos 
    642   1.1.1.9  christos /* WDAT Instruction Entries (actions) */
    643       1.1  christos 
    644   1.1.1.9  christos typedef struct acpi_wdat_entry
    645       1.1  christos {
    646   1.1.1.9  christos     UINT8                   Action;
    647   1.1.1.9  christos     UINT8                   Instruction;
    648   1.1.1.9  christos     UINT16                  Reserved;
    649   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    RegisterRegion;
    650   1.1.1.9  christos     UINT32                  Value;              /* Value used with Read/Write register */
    651   1.1.1.9  christos     UINT32                  Mask;               /* Bitmask required for this register instruction */
    652   1.1.1.9  christos 
    653   1.1.1.9  christos } ACPI_WDAT_ENTRY;
    654   1.1.1.9  christos 
    655   1.1.1.9  christos /* Values for Action field above */
    656   1.1.1.9  christos 
    657   1.1.1.9  christos enum AcpiWdatActions
    658   1.1.1.9  christos {
    659   1.1.1.9  christos     ACPI_WDAT_RESET                 = 1,
    660   1.1.1.9  christos     ACPI_WDAT_GET_CURRENT_COUNTDOWN = 4,
    661   1.1.1.9  christos     ACPI_WDAT_GET_COUNTDOWN         = 5,
    662   1.1.1.9  christos     ACPI_WDAT_SET_COUNTDOWN         = 6,
    663   1.1.1.9  christos     ACPI_WDAT_GET_RUNNING_STATE     = 8,
    664   1.1.1.9  christos     ACPI_WDAT_SET_RUNNING_STATE     = 9,
    665   1.1.1.9  christos     ACPI_WDAT_GET_STOPPED_STATE     = 10,
    666   1.1.1.9  christos     ACPI_WDAT_SET_STOPPED_STATE     = 11,
    667   1.1.1.9  christos     ACPI_WDAT_GET_REBOOT            = 16,
    668   1.1.1.9  christos     ACPI_WDAT_SET_REBOOT            = 17,
    669   1.1.1.9  christos     ACPI_WDAT_GET_SHUTDOWN          = 18,
    670   1.1.1.9  christos     ACPI_WDAT_SET_SHUTDOWN          = 19,
    671   1.1.1.9  christos     ACPI_WDAT_GET_STATUS            = 32,
    672   1.1.1.9  christos     ACPI_WDAT_SET_STATUS            = 33,
    673   1.1.1.9  christos     ACPI_WDAT_ACTION_RESERVED       = 34    /* 34 and greater are reserved */
    674       1.1  christos };
    675       1.1  christos 
    676   1.1.1.9  christos /* Values for Instruction field above */
    677       1.1  christos 
    678   1.1.1.9  christos enum AcpiWdatInstructions
    679       1.1  christos {
    680   1.1.1.9  christos     ACPI_WDAT_READ_VALUE            = 0,
    681   1.1.1.9  christos     ACPI_WDAT_READ_COUNTDOWN        = 1,
    682   1.1.1.9  christos     ACPI_WDAT_WRITE_VALUE           = 2,
    683   1.1.1.9  christos     ACPI_WDAT_WRITE_COUNTDOWN       = 3,
    684   1.1.1.9  christos     ACPI_WDAT_INSTRUCTION_RESERVED  = 4,    /* 4 and greater are reserved */
    685   1.1.1.9  christos     ACPI_WDAT_PRESERVE_REGISTER     = 0x80  /* Except for this value */
    686       1.1  christos };
    687       1.1  christos 
    688       1.1  christos 
    689   1.1.1.9  christos /*******************************************************************************
    690   1.1.1.9  christos  *
    691   1.1.1.9  christos  * WDDT - Watchdog Descriptor Table
    692   1.1.1.9  christos  *        Version 1
    693   1.1.1.9  christos  *
    694   1.1.1.9  christos  * Conforms to "Using the Intel ICH Family Watchdog Timer (WDT)",
    695   1.1.1.9  christos  * Version 001, September 2002
    696   1.1.1.9  christos  *
    697   1.1.1.9  christos  ******************************************************************************/
    698       1.1  christos 
    699   1.1.1.9  christos typedef struct acpi_table_wddt
    700   1.1.1.9  christos {
    701   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    702   1.1.1.9  christos     UINT16                  SpecVersion;
    703   1.1.1.9  christos     UINT16                  TableVersion;
    704   1.1.1.9  christos     UINT16                  PciVendorId;
    705   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    Address;
    706   1.1.1.9  christos     UINT16                  MaxCount;           /* Maximum counter value supported */
    707   1.1.1.9  christos     UINT16                  MinCount;           /* Minimum counter value supported */
    708   1.1.1.9  christos     UINT16                  Period;
    709   1.1.1.9  christos     UINT16                  Status;
    710   1.1.1.9  christos     UINT16                  Capability;
    711       1.1  christos 
    712   1.1.1.9  christos } ACPI_TABLE_WDDT;
    713       1.1  christos 
    714   1.1.1.9  christos /* Flags for Status field above */
    715       1.1  christos 
    716   1.1.1.9  christos #define ACPI_WDDT_AVAILABLE     (1)
    717   1.1.1.9  christos #define ACPI_WDDT_ACTIVE        (1<<1)
    718   1.1.1.9  christos #define ACPI_WDDT_TCO_OS_OWNED  (1<<2)
    719   1.1.1.9  christos #define ACPI_WDDT_USER_RESET    (1<<11)
    720   1.1.1.9  christos #define ACPI_WDDT_WDT_RESET     (1<<12)
    721   1.1.1.9  christos #define ACPI_WDDT_POWER_FAIL    (1<<13)
    722   1.1.1.9  christos #define ACPI_WDDT_UNKNOWN_RESET (1<<14)
    723       1.1  christos 
    724   1.1.1.9  christos /* Flags for Capability field above */
    725       1.1  christos 
    726   1.1.1.9  christos #define ACPI_WDDT_AUTO_RESET    (1)
    727   1.1.1.9  christos #define ACPI_WDDT_ALERT_SUPPORT (1<<1)
    728       1.1  christos 
    729       1.1  christos 
    730       1.1  christos /*******************************************************************************
    731       1.1  christos  *
    732   1.1.1.9  christos  * WDRT - Watchdog Resource Table
    733   1.1.1.4  christos  *        Version 1
    734       1.1  christos  *
    735   1.1.1.9  christos  * Conforms to "Watchdog Timer Hardware Requirements for Windows Server 2003",
    736   1.1.1.9  christos  * Version 1.01, August 28, 2006
    737       1.1  christos  *
    738       1.1  christos  ******************************************************************************/
    739       1.1  christos 
    740   1.1.1.9  christos typedef struct acpi_table_wdrt
    741       1.1  christos {
    742       1.1  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    743   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    ControlRegister;
    744   1.1.1.9  christos     ACPI_GENERIC_ADDRESS    CountRegister;
    745   1.1.1.9  christos     UINT16                  PciDeviceId;
    746   1.1.1.9  christos     UINT16                  PciVendorId;
    747   1.1.1.9  christos     UINT8                   PciBus;             /* PCI Bus number */
    748   1.1.1.9  christos     UINT8                   PciDevice;          /* PCI Device number */
    749   1.1.1.9  christos     UINT8                   PciFunction;        /* PCI Function number */
    750   1.1.1.9  christos     UINT8                   PciSegment;         /* PCI Segment number */
    751   1.1.1.9  christos     UINT16                  MaxCount;           /* Maximum counter value supported */
    752   1.1.1.9  christos     UINT8                   Units;
    753       1.1  christos 
    754   1.1.1.9  christos } ACPI_TABLE_WDRT;
    755       1.1  christos 
    756       1.1  christos 
    757   1.1.1.4  christos /*******************************************************************************
    758   1.1.1.4  christos  *
    759   1.1.1.4  christos  * WPBT - Windows Platform Environment Table (ACPI 6.0)
    760   1.1.1.4  christos  *        Version 1
    761   1.1.1.4  christos  *
    762   1.1.1.4  christos  * Conforms to "Windows Platform Binary Table (WPBT)" 29 November 2011
    763   1.1.1.4  christos  *
    764   1.1.1.4  christos  ******************************************************************************/
    765   1.1.1.4  christos 
    766   1.1.1.4  christos typedef struct acpi_table_wpbt
    767       1.1  christos {
    768   1.1.1.4  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    769   1.1.1.4  christos     UINT32                  HandoffSize;
    770   1.1.1.4  christos     UINT64                  HandoffAddress;
    771   1.1.1.4  christos     UINT8                   Layout;
    772   1.1.1.4  christos     UINT8                   Type;
    773   1.1.1.4  christos     UINT16                  ArgumentsLength;
    774   1.1.1.4  christos 
    775   1.1.1.4  christos } ACPI_TABLE_WPBT;
    776   1.1.1.4  christos 
    777   1.1.1.4  christos 
    778   1.1.1.4  christos /*******************************************************************************
    779   1.1.1.4  christos  *
    780   1.1.1.9  christos  * WSMT - Windows SMM Security Migrations Table
    781   1.1.1.9  christos  *        Version 1
    782   1.1.1.9  christos  *
    783   1.1.1.9  christos  * Conforms to "Windows SMM Security Migrations Table",
    784   1.1.1.9  christos  * Version 1.0, April 18, 2016
    785   1.1.1.9  christos  *
    786   1.1.1.9  christos  ******************************************************************************/
    787   1.1.1.9  christos 
    788   1.1.1.9  christos typedef struct acpi_table_wsmt
    789   1.1.1.9  christos {
    790   1.1.1.9  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    791   1.1.1.9  christos     UINT32                  ProtectionFlags;
    792   1.1.1.9  christos 
    793   1.1.1.9  christos } ACPI_TABLE_WSMT;
    794   1.1.1.9  christos 
    795   1.1.1.9  christos /* Flags for ProtectionFlags field above */
    796   1.1.1.9  christos 
    797   1.1.1.9  christos #define ACPI_WSMT_FIXED_COMM_BUFFERS                (1)
    798   1.1.1.9  christos #define ACPI_WSMT_COMM_BUFFER_NESTED_PTR_PROTECTION (2)
    799   1.1.1.9  christos #define ACPI_WSMT_SYSTEM_RESOURCE_PROTECTION        (4)
    800   1.1.1.9  christos 
    801   1.1.1.9  christos 
    802   1.1.1.9  christos /*******************************************************************************
    803   1.1.1.9  christos  *
    804   1.1.1.4  christos  * XENV - Xen Environment Table (ACPI 6.0)
    805   1.1.1.4  christos  *        Version 1
    806   1.1.1.4  christos  *
    807   1.1.1.4  christos  * Conforms to "ACPI Specification for Xen Environment Table" 4 January 2015
    808   1.1.1.4  christos  *
    809   1.1.1.4  christos  ******************************************************************************/
    810   1.1.1.4  christos 
    811   1.1.1.4  christos typedef struct acpi_table_xenv
    812   1.1.1.4  christos {
    813   1.1.1.4  christos     ACPI_TABLE_HEADER       Header;             /* Common ACPI table header */
    814   1.1.1.4  christos     UINT64                  GrantTableAddress;
    815   1.1.1.4  christos     UINT64                  GrantTableSize;
    816   1.1.1.4  christos     UINT32                  EventInterrupt;
    817   1.1.1.4  christos     UINT8                   EventFlags;
    818       1.1  christos 
    819   1.1.1.4  christos } ACPI_TABLE_XENV;
    820       1.1  christos 
    821       1.1  christos 
    822       1.1  christos /* Reset to default packing */
    823       1.1  christos 
    824       1.1  christos #pragma pack()
    825       1.1  christos 
    826       1.1  christos #endif /* __ACTBL3_H__ */
    827