]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/armv7/rmobile/Kconfig
arm: rmobile: Add Porter board support
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / rmobile / Kconfig
CommitLineData
f40b9898
MY
1if RMOBILE
2
3choice
4 prompt "Renesus ARM SoCs board select"
5
6config TARGET_ARMADILLO_800EVA
7 bool "armadillo 800 eva board"
8
6a994e5b
NI
9config TARGET_GOSE
10 bool "Gose board"
11
f40b9898
MY
12config TARGET_KOELSCH
13 bool "Koelsch board"
14
15config TARGET_LAGER
16 bool "Lager board"
17
18config TARGET_KZM9G
19 bool "KZM9D board"
20
21config TARGET_ALT
22 bool "Alt board"
23
3b7f0e10
VB
24config TARGET_SILK
25 bool "Silk board"
26
60c0467a
VB
27config TARGET_PORTER
28 bool "Porter board"
29
f40b9898
MY
30endchoice
31
f40b9898 32config SYS_SOC
f40b9898
MY
33 default "rmobile"
34
fb6f6001
NI
35config RMOBILE_EXTRAM_BOOT
36 bool "Enable boot from RAM"
60c0467a 37 depends on TARGET_ALT || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK
fb6f6001
NI
38 default n
39
f40b9898 40source "board/atmark-techno/armadillo-800eva/Kconfig"
6a994e5b 41source "board/renesas/gose/Kconfig"
f40b9898
MY
42source "board/renesas/koelsch/Kconfig"
43source "board/renesas/lager/Kconfig"
44source "board/kmc/kzm9g/Kconfig"
45source "board/renesas/alt/Kconfig"
3b7f0e10 46source "board/renesas/silk/Kconfig"
60c0467a 47source "board/renesas/porter/Kconfig"
f40b9898
MY
48
49endif