diff options
author | Tarun Tuli <taruntuli@google.com> | 2023-01-24 13:50:17 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2023-01-25 12:59:22 +0000 |
commit | 2b03894e15a115c18d97f44a8085ebe4148bcc34 (patch) | |
tree | 076e860f92c5df34236b25f17379ac0c3cedca0c /src/soc/intel/alderlake/Kconfig | |
parent | 5a0c10c38c32212bbafc4294a8c5870007b0e008 (diff) |
soc/intel/alderlake: Increase premem cbmem buffer size to 16KB
Current size of the cbmem premem buffer (8KB) is sometimes insufficient
to contain the complete debug log causing the cbmem console buffer to
indicate overflow.
This patch increases the premem cbmem buffer size to 16KB so that
the complete debug log can be stored in it.
TEST=Make sure that logs from all the boot stages can be seen using
'cbmem -c'.
Change-Id: I60c68322c52191eabf7e06b4be06e66f90ff8751
Signed-off-by: Tarun Tuli <taruntuli@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71290
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-by: Nick Vaccaro <nvaccaro@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/alderlake/Kconfig')
-rw-r--r-- | src/soc/intel/alderlake/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/alderlake/Kconfig b/src/soc/intel/alderlake/Kconfig index ac0a9299d7..1f0f2feeef 100644 --- a/src/soc/intel/alderlake/Kconfig +++ b/src/soc/intel/alderlake/Kconfig @@ -382,7 +382,7 @@ config CBFS_SIZE config PRERAM_CBMEM_CONSOLE_SIZE hex default 0x16000 if CONSOLE_SERIAL - default 0x2000 + default 0x4000 config CONSOLE_CBMEM_BUFFER_SIZE hex |