diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-03-21 02:27:00 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2015-03-25 17:26:48 +0100 |
commit | 61abe1d32bd90654292fd98e6b0fec4581144bf2 (patch) | |
tree | 15c37eaba7e90f7c3971a6ef3b64b6aaa329c6b3 | |
parent | 59e691b9097aa65d8b7d7eebee2ea72559d34273 (diff) | |
download | coreboot-61abe1d32bd90654292fd98e6b0fec4581144bf2.tar.xz |
cpu/amd/model_10xxx: Increase preram buffer size to 32k
This resolves an issue where large sections of the cbmem logs
were being dropped on AMD Fam10h boards.
Change-Id: I0e4e86e169aa4f20f06472f1a6e3136705ae4f9d
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/8851
Tested-by: build bot (Jenkins)
Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
-rw-r--r-- | src/cpu/amd/model_10xxx/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cpu/amd/model_10xxx/Kconfig b/src/cpu/amd/model_10xxx/Kconfig index cd69caecf3..a0d5cb4c2c 100644 --- a/src/cpu/amd/model_10xxx/Kconfig +++ b/src/cpu/amd/model_10xxx/Kconfig @@ -72,4 +72,9 @@ config UDELAY_LAPIC_FIXED_FSB int default 200 +config CONSOLE_PRERAM_BUFFER_SIZE + hex + default 0x0 if CONSOLE_PRERAM_BUFFER_BASE = 0xabadbeef + default 0x8000 + endif # CPU_AMD_MODEL_10XXX |