diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2014-10-31 16:16:26 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2014-11-04 08:59:00 +0900 |
commit | fb6f6001ed0f0f8987728ef00e6bab2e2b9af706 (patch) | |
tree | ac0a167f904d0ce0964c2d49925629b0c1e17685 /arch/arm/cpu/armv7/rmobile | |
parent | d8659c6d25219e3f89b6696b86c3b18dcf5c3fb5 (diff) | |
download | u-boot-fb6f6001ed0f0f8987728ef00e6bab2e2b9af706.tar.gz u-boot-fb6f6001ed0f0f8987728ef00e6bab2e2b9af706.tar.xz u-boot-fb6f6001ed0f0f8987728ef00e6bab2e2b9af706.zip |
arm: rmobile: lager: Add external RAM boot
If CONFIG_RMOBILE_EXTRAM_BOOT is enabled, U-Boot is booted from External RAM.
The default boot address is 0xB0000000.
Signed-off-by: Hisashi Nakamura <hisashi.nakamura.ak@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/cpu/armv7/rmobile')
-rw-r--r-- | arch/arm/cpu/armv7/rmobile/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/rmobile/Kconfig b/arch/arm/cpu/armv7/rmobile/Kconfig index c46a0cc9b8..75e38ea2ea 100644 --- a/arch/arm/cpu/armv7/rmobile/Kconfig +++ b/arch/arm/cpu/armv7/rmobile/Kconfig @@ -23,6 +23,11 @@ endchoice config SYS_SOC default "rmobile" +config RMOBILE_EXTRAM_BOOT + bool "Enable boot from RAM" + depends on TARGET_LAGER + default n + source "board/atmark-techno/armadillo-800eva/Kconfig" source "board/renesas/koelsch/Kconfig" source "board/renesas/lager/Kconfig" |