diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2013-02-20 13:24:35 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-02-20 23:13:45 +0100 |
commit | 836fd19aa812388ba78de7c330f7c0bd1b6788a8 (patch) | |
tree | 7e007ccb4a157d1b4c290b4b68332d48273cad34 | |
parent | 601b27596ffdf526adf5b41c1f8366a5fdddc554 (diff) |
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>
Reviewed-on: http://review.coreboot.org/2465
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | src/cpu/samsung/exynos5250/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/samsung/exynos5250/Kconfig b/src/cpu/samsung/exynos5250/Kconfig index 1b8b23f8e2..ca306b6de8 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 |