Ronald G. Minnich (rminnich@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2465
-gerrit
commit 5827eb80a3f784c998042db411967cbf7009f08f Author: Ronald G. Minnich rminnich@gmail.com Date: Wed Feb 20 13:24:35 2013 -0800
armv7: Don't let users set ram parameters that are fixed in hardware.
The SDRAM base is fixed in hardware. It makes no sense to make it configurable. The TEXT start is a magic number that should also be fixed, not settable.
Change-Id: Ie44cc5c8da1dc38fc00eb602c4a295b045ca5364 Signed-off-by: Ronald G. Minnich rminnich@gmail.com --- src/cpu/samsung/exynos5250/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/cpu/samsung/exynos5250/Kconfig b/src/cpu/samsung/exynos5250/Kconfig index 1b8b23f..ca306b6 100644 --- a/src/cpu/samsung/exynos5250/Kconfig +++ b/src/cpu/samsung/exynos5250/Kconfig @@ -87,11 +87,11 @@ config XIP_ROM_SIZE default ROMSTAGE_SIZE
config SYS_SDRAM_BASE - hex "SDRAM base address" + hex default 0x40000000
config SYS_TEXT_BASE - hex "Executable code section" + hex default 0x43e00000
config COREBOOT_TABLES_SIZE