mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
rockchip: rk3399: correct SPL_MAX_SIZE
The SPL_MAX_SIZE is the internal memory size minux the space used by bootrom. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
parent
beca2901fd
commit
5302feb695
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
#define CONFIG_SYS_LOAD_ADDR 0x00800800
|
||||
#define CONFIG_SPL_STACK 0xff8effff
|
||||
#define CONFIG_SPL_TEXT_BASE 0xff8c2000
|
||||
#define CONFIG_SPL_MAX_SIZE 0x30000
|
||||
#define CONFIG_SPL_MAX_SIZE 0x30000 - 0x2000
|
||||
/* BSS setup */
|
||||
#define CONFIG_SPL_BSS_START_ADDR 0xff8e0000
|
||||
#define CONFIG_SPL_BSS_MAX_SIZE 0x10000
|
||||
|
|
Loading…
Reference in a new issue