diff options
author | Simon Glass | 2020-09-22 12:45:33 -0600 |
---|---|---|
committer | Bin Meng | 2020-09-25 11:27:23 +0800 |
commit | 77bb1c69dfca24e4c14fd6876a68a38118142cae (patch) | |
tree | 58430679401efadf0c7bb7e4f619bd1b762834a0 /include/acpi/acpi_table.h | |
parent | 9179c3571ce587e96b957d0da8f0e4dcabc8d293 (diff) |
acpi: tpm: Add a TPM1 table
This provides information about a v1 TPM in the system. Generate this
table if the TPM is present.
Add a required new bloblist type and correct the header order of one
header file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/acpi/acpi_table.h')
-rw-r--r-- | include/acpi/acpi_table.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/acpi/acpi_table.h b/include/acpi/acpi_table.h index c7ee8b55da4..9fba6536f50 100644 --- a/include/acpi/acpi_table.h +++ b/include/acpi/acpi_table.h @@ -104,6 +104,13 @@ struct __packed acpi_tpm2 { u64 lasa; }; +struct __packed acpi_tcpa { + struct acpi_table_header header; + u16 platform_class; + u32 laml; + u64 lasa; +}; + /* FADT Preferred Power Management Profile */ enum acpi_pm_profile { ACPI_PM_UNSPECIFIED = 0, |