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