diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-06-02 20:25:03 -0500 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-07-07 01:41:59 +0200 |
commit | fb39f82116f0411ee85e3d91bfd97237c34debbb (patch) | |
tree | 5a3f3ce0fff3b021f081aa8e5a29acc5f9c21b91 /src/cpu/Kconfig | |
parent | a97e0075a22af82ede8ab70a7e26d2a9e88490ea (diff) | |
download | coreboot-fb39f82116f0411ee85e3d91bfd97237c34debbb.tar.xz |
cpu/amd/car: Move AP stacks below the BSP stack to free up space
Caching SPD data during startup requires additional CAR space.
There was a large chunk of free space between the AP stack top and
the BSP stack bottom; moving the AP stacks below the BSP stack
allows this space to be utilized.
TEST: Booted ASUS KGPE-D16 with dual Opteron 6129 processors (16 cores)
and 120k of CAR.
Change-Id: I370ff368affde7061d6547527bda058b9016e977
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/10404
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
Diffstat (limited to 'src/cpu/Kconfig')
-rw-r--r-- | src/cpu/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index ae2e88c7d4..bfe00fe4e8 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -19,6 +19,9 @@ config DCACHE_RAM_SIZE config DCACHE_BSP_STACK_SIZE hex +config DCACHE_BSP_STACK_SLUSH + hex + config DCACHE_AP_STACK_SIZE hex |