]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/rmobile/Kconfig
57dcceccc7cea3390a898e4b2298bb4fd882340c
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / rmobile / Kconfig
1 if RMOBILE
2
3 choice
4         prompt "Renesus ARM SoCs board select"
5
6 config TARGET_ARMADILLO_800EVA
7         bool "armadillo 800 eva board"
8
9 config TARGET_GOSE
10         bool "Gose board"
11         select DM
12         select DM_SERIAL
13
14 config TARGET_KOELSCH
15         bool "Koelsch board"
16         select DM
17         select DM_SERIAL
18
19 config TARGET_LAGER
20         bool "Lager board"
21         select DM
22         select DM_SERIAL
23
24 config TARGET_KZM9G
25         bool "KZM9D board"
26
27 config TARGET_ALT
28         bool "Alt board"
29         select DM
30         select DM_SERIAL
31
32 config TARGET_SILK
33         bool "Silk board"
34         select DM
35         select DM_SERIAL
36
37 config TARGET_PORTER
38         bool "Porter board"
39         select DM
40         select DM_SERIAL
41
42 endchoice
43
44 config SYS_SOC
45         default "rmobile"
46
47 config RMOBILE_EXTRAM_BOOT
48         bool "Enable boot from RAM"
49         depends on TARGET_ALT || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK
50         default n
51
52 source "board/atmark-techno/armadillo-800eva/Kconfig"
53 source "board/renesas/gose/Kconfig"
54 source "board/renesas/koelsch/Kconfig"
55 source "board/renesas/lager/Kconfig"
56 source "board/kmc/kzm9g/Kconfig"
57 source "board/renesas/alt/Kconfig"
58 source "board/renesas/silk/Kconfig"
59 source "board/renesas/porter/Kconfig"
60
61 endif