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