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