From 00a3b46eedb3051caaee7ec3aa39dbe1dfcb48e7 Mon Sep 17 00:00:00 2001 From: Marcelo Povoa Date: Mon, 10 Feb 2014 16:02:19 -0800 Subject: [PATCH] foundation-armv8: Fix some memory addresses constants Set correct value for SDRAM in Foundation model, map romstage to run in SRAM and enlarge stack space (in DRAM). BUG=None BRANCH=none TEST=Ran image in foundation model Change-Id: Id2f7d185fd09f8990c1756ac7ad4569498885ba7 Signed-off-by: Marcelo Povoa Reviewed-on: https://chromium-review.googlesource.com/185754 Reviewed-by: Stefan Reinauer --- src/mainboard/emulation/foundation-armv8/Kconfig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mainboard/emulation/foundation-armv8/Kconfig b/src/mainboard/emulation/foundation-armv8/Kconfig index e00c68a2b3..1046378e9f 100644 --- a/src/mainboard/emulation/foundation-armv8/Kconfig +++ b/src/mainboard/emulation/foundation-armv8/Kconfig @@ -72,7 +72,7 @@ config ID_SECTION_BASE config ROMSTAGE_BASE hex - default 0x20000 + default 0x4000000 config ROMSTAGE_SIZE hex @@ -100,7 +100,7 @@ config XIP_ROM_SIZE config SYS_SDRAM_BASE hex "SDRAM base address" - default 0x01000000 + default 0x80000000 config SYS_TEXT_BASE hex "Executable code section" @@ -113,14 +113,14 @@ config RAMBASE # according to stefan, this is RAMBASE + 1M. config RAMTOP hex - default 0x01100000 + default 0x80100000 config STACK_TOP hex - default 0x8000ff00 + default 0x90000000 config STACK_SIZE hex - default 0x00001000 + default 0x00010000 endif # BOARD_EMULATION_FOUNDATION_ARMV8