Merge git://git.denx.de/u-boot-usb
[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         select SUPPORT_SPL
51         select USE_TINY_PRINTF
52         select SPL_TINY_MEMSET
53
54 config TARGET_LAGER
55         bool "Lager board"
56         select DM
57         select DM_SERIAL
58
59 config TARGET_KZM9G
60         bool "KZM9D board"
61
62 config TARGET_ALT
63         bool "Alt board"
64         select DM
65         select DM_SERIAL
66
67 config TARGET_SILK
68         bool "Silk board"
69         select DM
70         select DM_SERIAL
71         select SUPPORT_SPL
72         select USE_TINY_PRINTF
73         select SPL_TINY_MEMSET
74
75 config TARGET_PORTER
76         bool "Porter board"
77         select DM
78         select DM_SERIAL
79         select SUPPORT_SPL
80         select USE_TINY_PRINTF
81         select SPL_TINY_MEMSET
82
83 config TARGET_STOUT
84         bool "Stout board"
85         select DM
86         select DM_SERIAL
87         select SUPPORT_SPL
88         select USE_TINY_PRINTF
89         select SPL_TINY_MEMSET
90
91 endchoice
92
93 config SYS_SOC
94         default "rmobile"
95
96 config RMOBILE_EXTRAM_BOOT
97         bool "Enable boot from RAM"
98         depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
99         default n
100
101 choice
102         prompt "Qos setting primary"
103         depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
104         default QOS_PRI_NORMAL
105
106 config QOS_PRI_NORMAL
107         bool "Non primary"
108         help
109            Select normal mode for QoS setting.
110
111 config QOS_PRI_MEDIA
112         bool "Media primary"
113         help
114            Select multimedia primary mode for QoS setting.
115
116 config QOS_PRI_GFX
117         bool "GFX primary"
118         help
119            Select GFX(graphics) primary mode for QoS setting.
120
121 endchoice
122
123 source "board/atmark-techno/armadillo-800eva/Kconfig"
124 source "board/renesas/blanche/Kconfig"
125 source "board/renesas/gose/Kconfig"
126 source "board/renesas/koelsch/Kconfig"
127 source "board/renesas/lager/Kconfig"
128 source "board/kmc/kzm9g/Kconfig"
129 source "board/renesas/alt/Kconfig"
130 source "board/renesas/silk/Kconfig"
131 source "board/renesas/porter/Kconfig"
132 source "board/renesas/stout/Kconfig"
133
134 endif