Merge git://git.denx.de/u-boot-uniphier
[oweals/u-boot.git] / arch / arm / mach-rmobile / Kconfig.32
1 if RCAR_32
2
3 config RCAR_GEN2
4         bool "Renesas RCar Gen2"
5
6 config R8A7740
7         bool "Renesas SoC R8A7740"
8
9 config R8A7790
10         bool "Renesas SoC R8A7790"
11         select RCAR_GEN2
12
13 config R8A7791
14         bool "Renesas SoC R8A7791"
15         select RCAR_GEN2
16
17 config R8A7792
18         bool "Renesas SoC R8A7792"
19         select RCAR_GEN2
20
21 config R8A7793
22         bool "Renesas SoC R8A7793"
23         select RCAR_GEN2
24
25 config R8A7794
26         bool "Renesas SoC R8A7794"
27         select RCAR_GEN2
28
29 choice
30         prompt "Renesas ARM SoCs board select"
31         optional
32
33 config TARGET_ARMADILLO_800EVA
34         bool "armadillo 800 eva board"
35
36 config TARGET_BLANCHE
37         bool "Blanche board"
38         select DM
39         select DM_SERIAL
40
41 config TARGET_GOSE
42         bool "Gose board"
43         select DM
44         select DM_SERIAL
45
46 config TARGET_KOELSCH
47         bool "Koelsch board"
48         select DM
49         select DM_SERIAL
50
51 config TARGET_LAGER
52         bool "Lager board"
53         select DM
54         select DM_SERIAL
55
56 config TARGET_KZM9G
57         bool "KZM9D board"
58
59 config TARGET_ALT
60         bool "Alt board"
61         select DM
62         select DM_SERIAL
63
64 config TARGET_SILK
65         bool "Silk board"
66         select DM
67         select DM_SERIAL
68
69 config TARGET_PORTER
70         bool "Porter board"
71         select DM
72         select DM_SERIAL
73
74 config TARGET_STOUT
75         bool "Stout board"
76         select DM
77         select DM_SERIAL
78
79 endchoice
80
81 config SYS_SOC
82         default "rmobile"
83
84 config RMOBILE_EXTRAM_BOOT
85         bool "Enable boot from RAM"
86         depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
87         default n
88
89 choice
90         prompt "Qos setting primary"
91         depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
92         default QOS_PRI_NORMAL
93
94 config QOS_PRI_NORMAL
95         bool "Non primary"
96         help
97            Select normal mode for QoS setting.
98
99 config QOS_PRI_MEDIA
100         bool "Media primary"
101         help
102            Select multimedia primary mode for QoS setting.
103
104 config QOS_PRI_GFX
105         bool "GFX primary"
106         help
107            Select GFX(graphics) primary mode for QoS setting.
108
109 endchoice
110
111 source "board/atmark-techno/armadillo-800eva/Kconfig"
112 source "board/renesas/blanche/Kconfig"
113 source "board/renesas/gose/Kconfig"
114 source "board/renesas/koelsch/Kconfig"
115 source "board/renesas/lager/Kconfig"
116 source "board/kmc/kzm9g/Kconfig"
117 source "board/renesas/alt/Kconfig"
118 source "board/renesas/silk/Kconfig"
119 source "board/renesas/porter/Kconfig"
120 source "board/renesas/stout/Kconfig"
121
122 endif