rockchip: rv1808: set init sp address backward
U-Boot max size is default 1MB, so that if init sp starts from the tail of 1M, it overrides the U-Boot images which causes a relocation failure. Change-Id: I971c4fd63175137968430b130c25da03709d26e4 Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
parent
954fa96c83
commit
b8412744f4
|
|
@ -16,7 +16,7 @@
|
|||
#define CONFIG_SYS_SDRAM_BASE 0x60000000
|
||||
#define SDRAM_MAX_SIZE 0x80000000
|
||||
#define CONFIG_SYS_TEXT_BASE CONFIG_SYS_SDRAM_BASE
|
||||
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + 0x100000)
|
||||
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + 0x200000)
|
||||
#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x2000000)
|
||||
|
||||
/* SPL support */
|
||||
|
|
|
|||
Loading…
Reference in New Issue