From 549080b8b3ba67ab43f7232e03727899210a6a92 Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Thu, 17 May 2018 23:30:28 -0700 Subject: arch/x86: Increase TIMESTAMP region size to 0x200 With the recent change 4c518e1 (timestamp: Add timestamps for TPM communication) to add more timestamps for TPM communication, now we are overflowing the TIMESTAMP region in verstage. This change increases TIMESTAMP region size to 512 bytes to accomodate this. BUG=b:79888151, b:79974682 Change-Id: I94c5403f256f0176d10ac61e9e1f60adf80db08b Signed-off-by: Furquan Shaikh Reviewed-on: https://review.coreboot.org/26360 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Aaron Durbin Reviewed-by: Marshall Dawson --- src/arch/x86/car.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch') diff --git a/src/arch/x86/car.ld b/src/arch/x86/car.ld index 2acd3f673f..7122776068 100644 --- a/src/arch/x86/car.ld +++ b/src/arch/x86/car.ld @@ -60,7 +60,7 @@ * backing store once cbmem comes online. Therefore, this data needs * to reside in the migrated area (between _car_relocatable_data_start * and _car_relocatable_data_end). */ - TIMESTAMP(., 0x100) + TIMESTAMP(., 0x200) #if IS_ENABLED(CONFIG_COMMONLIB_STORAGE) _car_drivers_storage_start = .; . += 256; -- cgit v1.2.3