diff options
| author | Heiko Stuebner <heiko.stuebner@theobroma-systems.com> | 2021-02-09 14:47:03 +0100 |
|---|---|---|
| committer | Kever Yang <kever.yang@rock-chips.com> | 2021-03-30 16:53:00 +0800 |
| commit | a062144518afd72d2e96bf44bad72037ac39a57e (patch) | |
| tree | ffca727acb01ca001a7e457993313a6289486d3b /include | |
| parent | 19c6b8cf8bea6d3634594bcb6a26768ecf4e9b96 (diff) | |
| download | u-boot-a062144518afd72d2e96bf44bad72037ac39a57e.tar.gz u-boot-a062144518afd72d2e96bf44bad72037ac39a57e.tar.xz u-boot-a062144518afd72d2e96bf44bad72037ac39a57e.zip | |
rockchip: rk3368: adjust CONFIG_SYS_LOAD_ADDR
CONFIG_SYS_LOAD_ADDR currently is at 0x00280000 which is only 512KB
behind the area where we load u-boot to, which depending on u-boot size
may overlap at some point.
So for safety just pick the same value rk3399 has and set
CONFIG_SYS_LOAD_ADDR to 0x00800800 on rk3368 as well.
Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/rk3368_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rk3368_common.h b/include/configs/rk3368_common.h index f178a06945..86498b4c82 100644 --- a/include/configs/rk3368_common.h +++ b/include/configs/rk3368_common.h @@ -24,7 +24,7 @@ #define CONFIG_IRAM_BASE 0xff8c0000 #define CONFIG_SYS_INIT_SP_ADDR 0x00300000 -#define CONFIG_SYS_LOAD_ADDR 0x00280000 +#define CONFIG_SYS_LOAD_ADDR 0x00800800 #define CONFIG_SPL_MAX_SIZE 0x40000 #define CONFIG_SPL_BSS_START_ADDR 0x400000 |
