Skip to content

Commit 9401eaf

Browse files
acpibobrafaeljw
authored andcommitted
ACPICA: iASL: Add support for the BDAT ACPI table
ACPICA commit 81eb9c383e6dee0f1b6620e91e5c3dbb48234831 Includes: Table compiler, disassembler, and template generator. Link: acpica/acpica@81eb9c38 Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Erik Kaneda <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 6814a52 commit 9401eaf

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

include/acpi/actbl2.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* file. Useful because they make it more difficult to inadvertently type in
2525
* the wrong signature.
2626
*/
27+
#define ACPI_SIG_BDAT "BDAT" /* BIOS Data ACPI Table */
2728
#define ACPI_SIG_IORT "IORT" /* IO Remapping Table */
2829
#define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */
2930
#define ACPI_SIG_LPIT "LPIT" /* Low Power Idle Table */
@@ -65,6 +66,20 @@
6566
* See http://stackoverflow.com/a/1053662/41661
6667
*/
6768

69+
/*******************************************************************************
70+
*
71+
* BDAT - BIOS Data ACPI Table
72+
*
73+
* Conforms to "BIOS Data ACPI Table", Interface Specification v4.0 Draft 5
74+
* Nov 2020
75+
*
76+
******************************************************************************/
77+
78+
struct acpi_table_bdat {
79+
struct acpi_table_header header;
80+
struct acpi_generic_address gas;
81+
};
82+
6883
/*******************************************************************************
6984
*
7085
* IORT - IO Remapping Table

0 commit comments

Comments
 (0)