diff options
author | Kever Yang <kever.yang@rock-chips.com> | 2017-10-10 16:21:05 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-11-21 23:57:21 +0100 |
commit | a33fee154bd1c3d7e7dd7d7d8a4cab2b77731b9b (patch) | |
tree | a6e2da1a74dfdee33400d5b9cfa1cdd324f2600e /include/configs/rk3288_common.h | |
parent | d962e5dadc2cbc21bffd375f29665e5042879e66 (diff) | |
download | u-boot-a33fee154bd1c3d7e7dd7d7d8a4cab2b77731b9b.tar.gz |
rockchip: rk3288: use aligned address for SPL_TEXT_BASE
After we use boot0 hook, we can use offset '000' instead of '004' as
SPL_TEXT_BASE.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
[Updated tag in commit summary:]
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'include/configs/rk3288_common.h')
-rw-r--r-- | include/configs/rk3288_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rk3288_common.h b/include/configs/rk3288_common.h index 2b8f618f72..e2f070fd1c 100644 --- a/include/configs/rk3288_common.h +++ b/include/configs/rk3288_common.h @@ -34,7 +34,7 @@ #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_TPL_BOOTROM_SUPPORT) # define CONFIG_SPL_TEXT_BASE 0x0 #else -# define CONFIG_SPL_TEXT_BASE 0xff704004 +# define CONFIG_SPL_TEXT_BASE 0xff704000 #endif /* MMC/SD IP block */ |