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>
This commit is contained in:
parent
601b27596f
commit
836fd19aa8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue