Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33174
Change subject: [TOTEST]nb/intel/sandybridge/mrc.bin: Increase the CAR size ......................................................................
[TOTEST]nb/intel/sandybridge/mrc.bin: Increase the CAR size
The mrc.bin places its stack at an awkward location, close to the bottom of the CAR location, which easily conflicts with other CAR linker symbols. To work around this issue, increase the CAR with 128k to a total of 256k, align the base and make sure the mrc.bin falls in the DCACHE_RAM_MRC_VAR_SIZE.
Change-Id: Ida8ad9a54d29a9ee1301bdcff00d81f548d2b81e Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/northbridge/intel/sandybridge/Kconfig 1 file changed, 3 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/33174/1
diff --git a/src/northbridge/intel/sandybridge/Kconfig b/src/northbridge/intel/sandybridge/Kconfig index 4f9da00..47ef829 100644 --- a/src/northbridge/intel/sandybridge/Kconfig +++ b/src/northbridge/intel/sandybridge/Kconfig @@ -98,16 +98,15 @@
config DCACHE_RAM_BASE hex - default 0xff7e0000 + default 0xff7c0000
config DCACHE_RAM_SIZE hex - default 0x1c000 + default 0x21000
config DCACHE_RAM_MRC_VAR_SIZE hex - default 0x4000 - + default 0x1f000 config MRC_FILE string "Intel System Agent path and filename" default "3rdparty/blobs/northbridge/intel/sandybridge/systemagent-r6.bin"