diff options
author | Subrata Banik <subratabanik@google.com> | 2022-05-30 13:56:13 +0530 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2022-06-06 17:52:03 +0000 |
commit | ea4f8c28fdd4817b05eec3ef47088cf994ef7a26 (patch) | |
tree | 6f75956ad337a27ce16aef4c0f4d722896dff597 | |
parent | b8224f48feb9c2967e22993b630ad1c6a835b241 (diff) |
soc/intel/meteorlake: Increase PRERAM_CBMEM_CONSOLE_SIZE to 8KB
This patch increases PRERAM_CBMEM_CONSOLE_SIZE from 5KB to 8KB to fix
cbmem buffer overflow issue.
Test=Boot MTL simics and check cbmem -c | grep 'CBFS: Found'
lists all stages.
Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: I5dc5d5b99003b59b2262bd1e4eb5ccb11d721195
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64791
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Tarun Tuli <taruntuli@google.com>
-rw-r--r-- | src/soc/intel/meteorlake/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/Kconfig b/src/soc/intel/meteorlake/Kconfig index 2b3a5b336e..d0e2c3c2ee 100644 --- a/src/soc/intel/meteorlake/Kconfig +++ b/src/soc/intel/meteorlake/Kconfig @@ -127,6 +127,6 @@ config CBFS_SIZE config PRERAM_CBMEM_CONSOLE_SIZE hex - default 0x1400 + default 0x2000 endif |