diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-03-23 00:07:27 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-03-24 00:15:40 +0900 |
commit | 6a3cffe8e189ca7ebd5bb801db7ec28b35ed9797 (patch) | |
tree | c83cf09b9a906890fcf4ace6e8d210e3c0921998 /include/configs/uniphier.h | |
parent | ce3a63905b06c884b8e22249b264b246cb84716f (diff) | |
download | u-boot-6a3cffe8e189ca7ebd5bb801db7ec28b35ed9797.tar.gz |
ARM: UniPhier: add CONFIG_SPL_MAX_FOOTPRINT
The Boot ROM of UniPhier platform only loads 64KB image. We should
always make sure that SPL memory footprint is less than that.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include/configs/uniphier.h')
-rw-r--r-- | include/configs/uniphier.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index db1e08f81a..d2d88dd29e 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -296,4 +296,6 @@ #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x10000 +#define CONFIG_SPL_MAX_FOOTPRINT 0x10000 + #endif /* __CONFIG_UNIPHIER_COMMON_H__ */ |