From 005dacbbae1f25b3853b67bf4465c8377fc3f873 Mon Sep 17 00:00:00 2001 From: Kunhui-Li Date: Fri, 16 Jul 2021 11:22:51 +0800 Subject: [PATCH] config_tools: enlarge max size to store RTCT table Enlarge the max size to store the PTCT/RTCT table to 1k bytes because the size of RTCT table exceeded the original max size 0x1100 - 0xF00 which makes RTCT table overlap other ACPI tables. Tracked-On: #6303 Signed-off-by: Kunhui-Li --- misc/config_tools/acpi_gen/acpi_const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/config_tools/acpi_gen/acpi_const.py b/misc/config_tools/acpi_gen/acpi_const.py index aa6c613cb..c5c12de1d 100644 --- a/misc/config_tools/acpi_gen/acpi_const.py +++ b/misc/config_tools/acpi_gen/acpi_const.py @@ -26,7 +26,7 @@ ACPI_DSDT_ADDR_OFFSET = 0x240 # (variable) ACPI_MCFG_ADDR_OFFSET = 0x440 # (60 bytes) ACPI_MADT_ADDR_OFFSET = 0x480 # (depends on #CPUs) ACPI_RTCT_ADDR_OFFSET = 0xF00 -ACPI_TPM2_ADDR_OFFSET = 0x1100 # (52 bytes) +ACPI_TPM2_ADDR_OFFSET = 0x1300 # (52 bytes) ACPI_RSDP_ADDR = (ACPI_BASE + ACPI_RSDP_ADDR_OFFSET) ACPI_XSDT_ADDR = (ACPI_BASE + ACPI_XSDT_ADDR_OFFSET)