Skip to content

Commit 1830611

Browse files
stefanbergerJarkko Sakkinen
authored andcommitted
acpi: Extend TPM2 ACPI table with missing log fields
Recent extensions of the TPM2 ACPI table added 3 more fields including 12 bytes of start method specific parameters and Log Area Minimum Length (u32) and Log Area Start Address (u64). So, we define a new structure acpi_tpm2_phy that holds these optional new fields. The new fields allow non-UEFI systems to access the TPM2's log. The specification that has the new fields is the following: TCG ACPI Specification Family "1.2" and "2.0" Version 1.2, Revision 8 https://trustedcomputinggroup.org/wp-content/uploads/TCG_ACPIGeneralSpecification_v1.20_r8.pdf Cc: [email protected] Cc: Len Brown <[email protected]> Signed-off-by: Stefan Berger <[email protected]> Acked-by: Rafael J. Wysocki <[email protected]> Reviewed-by: Jarkko Sakkinen <[email protected]> Reviewed-by: Jerry Snitselaar <[email protected]> Signed-off-by: Jarkko Sakkinen <[email protected]>
1 parent 6c4e79d commit 1830611

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

include/acpi/actbl3.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,13 @@ struct acpi_table_tpm2 {
415415
/* Platform-specific data follows */
416416
};
417417

418+
/* Optional trailer for revision 4 holding platform-specific data */
419+
struct acpi_tpm2_phy {
420+
u8 start_method_specific[12];
421+
u32 log_area_minimum_length;
422+
u64 log_area_start_address;
423+
};
424+
418425
/* Values for start_method above */
419426

420427
#define ACPI_TPM2_NOT_ALLOWED 0

0 commit comments

Comments
 (0)