diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2023-01-19 20:00:34 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-03-03 17:07:37 +0000 |
commit | 87d97ffe16c7644ffca4d91b8be498041b7dc4a7 (patch) | |
tree | 5a54a5c1a9a0c027c2dbcd21f958852155fb7dc9 | |
parent | a3b29d7bd0ed2b30824ef8babe03aaea85294f05 (diff) | |
download | coreboot-87d97ffe16c7644ffca4d91b8be498041b7dc4a7.tar.gz coreboot-87d97ffe16c7644ffca4d91b8be498041b7dc4a7.tar.bz2 coreboot-87d97ffe16c7644ffca4d91b8be498041b7dc4a7.zip |
soc/intel/xeon_sp: Fix CBMEM corruption
On the 4 socket IBM/SBP1 platform with 384 cores lots
of space for ACPI tables is required.
Bump MAX_ACPI_TABLE_SIZE_KB to 400 to fix CBMEM corruption.
Change-Id: Ifbd79e84097231b41f900425a2e8750dce71a25a
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73364
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Naresh Solanki <naresh.solanki.2011@gmail.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r-- | src/soc/intel/xeon_sp/spr/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/xeon_sp/spr/Kconfig b/src/soc/intel/xeon_sp/spr/Kconfig index 6ecf382cb0dd..899f5ae26c8d 100644 --- a/src/soc/intel/xeon_sp/spr/Kconfig +++ b/src/soc/intel/xeon_sp/spr/Kconfig @@ -149,6 +149,7 @@ config DIMM_SPD_SIZE config MAX_ACPI_TABLE_SIZE_KB int + default 400 if MAX_SOCKET = 4 default 224 config FIXED_SMBUS_IO_BASE |