aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2015-05-20 22:30:44 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-05-21 21:22:19 -0400
commit68edb038231ada9ab39701b776224e4bb23f928e (patch)
treefee87fb25ec96c0b98af8954c67e43c29f59b3df
parenta737222240848c771b2bc44880d3253fb7c03e13 (diff)
ACPICA: ACPI 6.0: Add support for WPBT table.
ACPICA commit a6ccb4033b49f7aa33a17ddc41dd69d57e799fbd Windows Platform Binary Table. Link: https://github.com/acpica/acpica/commit/a6ccb403 Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--include/acpi/actbl3.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/include/acpi/actbl3.h b/include/acpi/actbl3.h
index 3eed4c870a8a..e1aac82b72fd 100644
--- a/include/acpi/actbl3.h
+++ b/include/acpi/actbl3.h
@@ -70,6 +70,7 @@
70#define ACPI_SIG_RASF "RASF" /* RAS Feature table */ 70#define ACPI_SIG_RASF "RASF" /* RAS Feature table */
71#define ACPI_SIG_STAO "STAO" /* Status Override table */ 71#define ACPI_SIG_STAO "STAO" /* Status Override table */
72#define ACPI_SIG_TPM2 "TPM2" /* Trusted Platform Module 2.0 H/W interface table */ 72#define ACPI_SIG_TPM2 "TPM2" /* Trusted Platform Module 2.0 H/W interface table */
73#define ACPI_SIG_WPBT "WPBT" /* Windows Platform Binary Table */
73#define ACPI_SIG_XENV "XENV" /* Xen Environment table */ 74#define ACPI_SIG_XENV "XENV" /* Xen Environment table */
74 75
75#define ACPI_SIG_S3PT "S3PT" /* S3 Performance (sub)Table */ 76#define ACPI_SIG_S3PT "S3PT" /* S3 Performance (sub)Table */
@@ -79,7 +80,6 @@
79 80
80#define ACPI_SIG_MATR "MATR" /* Memory Address Translation Table */ 81#define ACPI_SIG_MATR "MATR" /* Memory Address Translation Table */
81#define ACPI_SIG_MSDM "MSDM" /* Microsoft Data Management Table */ 82#define ACPI_SIG_MSDM "MSDM" /* Microsoft Data Management Table */
82#define ACPI_SIG_WPBT "WPBT" /* Windows Platform Binary Table */
83 83
84/* 84/*
85 * All tables must be byte-packed to match the ACPI specification, since 85 * All tables must be byte-packed to match the ACPI specification, since
@@ -732,6 +732,24 @@ struct acpi_tpm2_control {
732 732
733/******************************************************************************* 733/*******************************************************************************
734 * 734 *
735 * WPBT - Windows Platform Environment Table (ACPI 6.0)
736 * Version 1
737 *
738 * Conforms to "Windows Platform Binary Table (WPBT)" 29 November 2011
739 *
740 ******************************************************************************/
741
742struct acpi_table_wpbt {
743 struct acpi_table_header header; /* Common ACPI table header */
744 u32 handoff_size;
745 u64 handoff_address;
746 u8 layout;
747 u8 type;
748 u16 arguments_length;
749};
750
751/*******************************************************************************
752 *
735 * XENV - Xen Environment Table (ACPI 6.0) 753 * XENV - Xen Environment Table (ACPI 6.0)
736 * Version 1 754 * Version 1
737 * 755 *