Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "ARM architecture" |
2 | depends on ARM | ||||
3 | |||||
4 | config SYS_ARCH | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "arm" |
6 | |||||
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 7 | config ARM64 |
8 | bool | ||||
9 | |||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 10 | config HAS_VBAR |
11 | bool | ||||
12 | |||||
13 | config CPU_ARM720T | ||||
14 | bool | ||||
15 | |||||
16 | config CPU_ARM920T | ||||
17 | bool | ||||
18 | |||||
19 | config CPU_ARM926EJS | ||||
20 | bool | ||||
21 | |||||
22 | config CPU_ARM946ES | ||||
23 | bool | ||||
24 | |||||
25 | config CPU_ARM1136 | ||||
26 | bool | ||||
27 | |||||
28 | config CPU_ARM1176 | ||||
29 | bool | ||||
30 | select HAS_VBAR | ||||
31 | |||||
32 | config CPU_V7 | ||||
33 | bool | ||||
34 | select HAS_VBAR | ||||
35 | |||||
36 | config CPU_PXA | ||||
37 | bool | ||||
38 | |||||
39 | config CPU_SA1100 | ||||
40 | bool | ||||
41 | |||||
42 | config SYS_CPU | ||||
43 | default "arm720t" if CPU_ARM720T | ||||
44 | default "arm920t" if CPU_ARM920T | ||||
45 | default "arm926ejs" if CPU_ARM926EJS | ||||
46 | default "arm946es" if CPU_ARM946ES | ||||
47 | default "arm1136" if CPU_ARM1136 | ||||
48 | default "arm1176" if CPU_ARM1176 | ||||
49 | default "armv7" if CPU_V7 | ||||
50 | default "pxa" if CPU_PXA | ||||
51 | default "sa1100" if CPU_SA1100 | ||||
Masahiro Yamada | 01541ee | 2014-11-06 11:39:27 +0900 | [diff] [blame] | 52 | default "armv8" if ARM64 |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 53 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 54 | config SEMIHOSTING |
55 | bool "support boot from semihosting" | ||||
56 | help | ||||
57 | In emulated environments, semihosting is a way for | ||||
58 | the hosted environment to call out to the emulator to | ||||
59 | retrieve files from the host machine. | ||||
60 | |||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 61 | choice |
62 | prompt "Target select" | ||||
63 | |||||
64 | config TARGET_INTEGRATORAP_CM720T | ||||
65 | bool "Support integratorap_cm720t" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 66 | select CPU_ARM720T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 67 | |
68 | config TARGET_INTEGRATORAP_CM920T | ||||
69 | bool "Support integratorap_cm920t" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 70 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 71 | |
72 | config TARGET_INTEGRATORCP_CM920T | ||||
73 | bool "Support integratorcp_cm920t" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 74 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 75 | |
76 | config TARGET_A320EVB | ||||
77 | bool "Support a320evb" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 78 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 79 | |
Masahiro Yamada | 4614b89 | 2015-02-20 17:04:01 +0900 | [diff] [blame^] | 80 | config ARCH_AT91 |
81 | bool "Atmel AT91" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 82 | |
83 | config TARGET_EDB93XX | ||||
84 | bool "Support edb93xx" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 85 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 86 | |
87 | config TARGET_SCB9328 | ||||
88 | bool "Support scb9328" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 89 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 90 | |
91 | config TARGET_CM4008 | ||||
92 | bool "Support cm4008" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 93 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 94 | |
95 | config TARGET_CM41XX | ||||
96 | bool "Support cm41xx" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 97 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 98 | |
99 | config TARGET_VCMA9 | ||||
100 | bool "Support VCMA9" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 101 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 102 | |
103 | config TARGET_SMDK2410 | ||||
104 | bool "Support smdk2410" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 105 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 106 | |
107 | config TARGET_INTEGRATORAP_CM926EJS | ||||
108 | bool "Support integratorap_cm926ejs" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 109 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 110 | |
111 | config TARGET_INTEGRATORCP_CM926EJS | ||||
112 | bool "Support integratorcp_cm926ejs" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 113 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 114 | |
115 | config TARGET_ASPENITE | ||||
116 | bool "Support aspenite" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 117 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 118 | |
119 | config TARGET_GPLUGD | ||||
120 | bool "Support gplugd" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 121 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 122 | |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 123 | config ARCH_DAVINCI |
124 | bool "TI DaVinci" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 125 | select CPU_ARM926EJS |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 126 | help |
127 | Support for TI's DaVinci platform. | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 128 | |
Masahiro Yamada | 47539e2 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 129 | config KIRKWOOD |
130 | bool "Marvell Kirkwood" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 131 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 132 | |
Stefan Roese | dd58080 | 2014-10-22 12:13:18 +0200 | [diff] [blame] | 133 | config TARGET_DB_MV784MP_GP |
134 | bool "Support db-mv784mp-gp" | ||||
Masahiro Yamada | 790f70c | 2014-11-06 11:39:26 +0900 | [diff] [blame] | 135 | select CPU_V7 |
Stefan Roese | 2554167 | 2015-01-19 11:33:46 +0100 | [diff] [blame] | 136 | select SUPPORT_SPL |
Stefan Roese | dd58080 | 2014-10-22 12:13:18 +0200 | [diff] [blame] | 137 | |
Stefan Roese | a488483 | 2014-10-22 12:13:19 +0200 | [diff] [blame] | 138 | config TARGET_MAXBCM |
139 | bool "Support maxbcm" | ||||
Masahiro Yamada | 790f70c | 2014-11-06 11:39:26 +0900 | [diff] [blame] | 140 | select CPU_V7 |
Stefan Roese | e7778ec | 2015-01-19 11:33:47 +0100 | [diff] [blame] | 141 | select SUPPORT_SPL |
Stefan Roese | a488483 | 2014-10-22 12:13:19 +0200 | [diff] [blame] | 142 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 143 | config TARGET_DEVKIT3250 |
144 | bool "Support devkit3250" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 145 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 146 | |
147 | config TARGET_JADECPU | ||||
148 | bool "Support jadecpu" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 149 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 150 | |
151 | config TARGET_MX25PDK | ||||
152 | bool "Support mx25pdk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 153 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 154 | |
155 | config TARGET_TX25 | ||||
156 | bool "Support tx25" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 157 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 158 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 159 | |
160 | config TARGET_ZMX25 | ||||
161 | bool "Support zmx25" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 162 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 163 | |
164 | config TARGET_APF27 | ||||
165 | bool "Support apf27" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 166 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 167 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 168 | |
169 | config TARGET_IMX27LITE | ||||
170 | bool "Support imx27lite" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 171 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 172 | |
173 | config TARGET_MAGNESIUM | ||||
174 | bool "Support magnesium" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 175 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 176 | |
177 | config TARGET_APX4DEVKIT | ||||
178 | bool "Support apx4devkit" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 179 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 180 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 181 | |
182 | config TARGET_XFI3 | ||||
183 | bool "Support xfi3" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 184 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 185 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 186 | |
187 | config TARGET_M28EVK | ||||
188 | bool "Support m28evk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 189 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 190 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 191 | |
192 | config TARGET_MX23EVK | ||||
193 | bool "Support mx23evk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 194 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 195 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 196 | |
197 | config TARGET_MX28EVK | ||||
198 | bool "Support mx28evk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 199 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 200 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 201 | |
202 | config TARGET_MX23_OLINUXINO | ||||
203 | bool "Support mx23_olinuxino" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 204 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 205 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 206 | |
207 | config TARGET_BG0900 | ||||
208 | bool "Support bg0900" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 209 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 210 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 211 | |
212 | config TARGET_SANSA_FUZE_PLUS | ||||
213 | bool "Support sansa_fuze_plus" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 214 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 215 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 216 | |
217 | config TARGET_SC_SPS_1 | ||||
218 | bool "Support sc_sps_1" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 219 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 220 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 221 | |
Masahiro Yamada | 16e16fd | 2014-08-31 07:11:08 +0900 | [diff] [blame] | 222 | config ARCH_NOMADIK |
223 | bool "ST-Ericsson Nomadik" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 224 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 225 | |
Masahiro Yamada | 22f2be7 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 226 | config ORION5X |
227 | bool "Marvell Orion" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 228 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 229 | |
230 | config TARGET_DKB | ||||
231 | bool "Support dkb" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 232 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 233 | |
234 | config TARGET_SPEAR300 | ||||
235 | bool "Support spear300" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 236 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 237 | |
238 | config TARGET_SPEAR310 | ||||
239 | bool "Support spear310" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 240 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 241 | |
242 | config TARGET_SPEAR320 | ||||
243 | bool "Support spear320" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 244 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 245 | |
246 | config TARGET_SPEAR600 | ||||
247 | bool "Support spear600" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 248 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 249 | |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 250 | config TARGET_STV0991 |
251 | bool "Support stv0991" | ||||
252 | select CPU_V7 | ||||
253 | |||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 254 | config TARGET_X600 |
255 | bool "Support x600" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 256 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 257 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 258 | |
Masahiro Yamada | ad17a81 | 2014-08-31 07:10:58 +0900 | [diff] [blame] | 259 | config ARCH_VERSATILE |
260 | bool "ARM Ltd. Versatile family" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 261 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 262 | |
263 | config TARGET_INTEGRATORCP_CM1136 | ||||
264 | bool "Support integratorcp_cm1136" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 265 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 266 | |
267 | config TARGET_IMX31_PHYCORE | ||||
268 | bool "Support imx31_phycore" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 269 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 270 | |
271 | config TARGET_QONG | ||||
272 | bool "Support qong" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 273 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 274 | |
275 | config TARGET_MX31ADS | ||||
276 | bool "Support mx31ads" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 277 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 278 | |
279 | config TARGET_MX31PDK | ||||
280 | bool "Support mx31pdk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 281 | select CPU_ARM1136 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 282 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 283 | |
284 | config TARGET_TT01 | ||||
285 | bool "Support tt01" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 286 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 287 | |
288 | config TARGET_IMX31_LITEKIT | ||||
289 | bool "Support imx31_litekit" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 290 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 291 | |
292 | config TARGET_WOODBURN | ||||
293 | bool "Support woodburn" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 294 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 295 | |
296 | config TARGET_WOODBURN_SD | ||||
297 | bool "Support woodburn_sd" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 298 | select CPU_ARM1136 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 299 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 300 | |
301 | config TARGET_FLEA3 | ||||
302 | bool "Support flea3" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 303 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 304 | |
305 | config TARGET_MX35PDK | ||||
306 | bool "Support mx35pdk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 307 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 308 | |
Stephen Warren | 9316e14 | 2014-11-19 20:41:03 -0700 | [diff] [blame] | 309 | config TARGET_RPI |
310 | bool "Support rpi" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 311 | select CPU_ARM1176 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 312 | |
313 | config TARGET_TNETV107X_EVM | ||||
314 | bool "Support tnetv107x_evm" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 315 | select CPU_ARM1176 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 316 | |
317 | config TARGET_INTEGRATORAP_CM946ES | ||||
318 | bool "Support integratorap_cm946es" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 319 | select CPU_ARM946ES |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 320 | |
321 | config TARGET_INTEGRATORCP_CM946ES | ||||
322 | bool "Support integratorcp_cm946es" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 323 | select CPU_ARM946ES |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 324 | |
325 | config TARGET_VEXPRESS_CA15_TC2 | ||||
326 | bool "Support vexpress_ca15_tc2" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 327 | select CPU_V7 |
Hans de Goede | ea624e1 | 2014-11-14 09:34:30 +0100 | [diff] [blame] | 328 | select CPU_V7_HAS_NONSEC |
329 | select CPU_V7_HAS_VIRT | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 330 | |
331 | config TARGET_VEXPRESS_CA5X2 | ||||
332 | bool "Support vexpress_ca5x2" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 333 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 334 | |
335 | config TARGET_VEXPRESS_CA9X4 | ||||
336 | bool "Support vexpress_ca9x4" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 337 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 338 | |
339 | config TARGET_KWB | ||||
340 | bool "Support kwb" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 341 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 342 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 343 | |
344 | config TARGET_TSERIES | ||||
345 | bool "Support tseries" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 346 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 347 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 348 | |
349 | config TARGET_CM_T335 | ||||
350 | bool "Support cm_t335" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 351 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 352 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 353 | |
354 | config TARGET_PEPPER | ||||
355 | bool "Support pepper" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 356 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 357 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 358 | |
359 | config TARGET_AM335X_IGEP0033 | ||||
360 | bool "Support am335x_igep0033" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 361 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 362 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 363 | |
364 | config TARGET_PCM051 | ||||
365 | bool "Support pcm051" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 366 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 367 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 368 | |
369 | config TARGET_DRACO | ||||
370 | bool "Support draco" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 371 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 372 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 373 | |
374 | config TARGET_DXR2 | ||||
375 | bool "Support dxr2" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 376 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 377 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 378 | |
379 | config TARGET_PXM2 | ||||
380 | bool "Support pxm2" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 381 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 382 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 383 | |
384 | config TARGET_RUT | ||||
385 | bool "Support rut" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 386 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 387 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 388 | |
389 | config TARGET_PENGWYN | ||||
390 | bool "Support pengwyn" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 391 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 392 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 393 | |
394 | config TARGET_AM335X_EVM | ||||
395 | bool "Support am335x_evm" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 396 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 397 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 398 | |
399 | config TARGET_AM43XX_EVM | ||||
400 | bool "Support am43xx_evm" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 401 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 402 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 403 | |
404 | config TARGET_TI814X_EVM | ||||
405 | bool "Support ti814x_evm" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 406 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 407 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 408 | |
409 | config TARGET_TI816X_EVM | ||||
410 | bool "Support ti816x_evm" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 411 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 412 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 413 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 414 | config TARGET_BCM28155_AP |
415 | bool "Support bcm28155_ap" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 416 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 417 | |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 418 | config TARGET_BCMCYGNUS |
419 | bool "Support bcmcygnus" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 420 | select CPU_V7 |
Steve Rae | 9dec527 | 2014-08-11 13:58:26 -0700 | [diff] [blame] | 421 | |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 422 | config TARGET_BCMNSP |
423 | bool "Support bcmnsp" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 424 | select CPU_V7 |
Steve Rae | 9dec527 | 2014-08-11 13:58:26 -0700 | [diff] [blame] | 425 | |
Masahiro Yamada | 72df68c | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 426 | config ARCH_EXYNOS |
427 | bool "Samsung EXYNOS" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 428 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 429 | |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 430 | config ARCH_S5PC1XX |
431 | bool "Samsung S5PC1XX" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 432 | select CPU_V7 |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 433 | |
Masahiro Yamada | ef2b694 | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 434 | config ARCH_HIGHBANK |
435 | bool "Calxeda Highbank" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 436 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 437 | |
Masahiro Yamada | c338f09 | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 438 | config ARCH_KEYSTONE |
439 | bool "TI Keystone" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 440 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 441 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 442 | |
443 | config TARGET_M53EVK | ||||
444 | bool "Support m53evk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 445 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 446 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 447 | |
448 | config TARGET_IMA3_MX53 | ||||
449 | bool "Support ima3-mx53" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 450 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 451 | |
452 | config TARGET_MX51EVK | ||||
453 | bool "Support mx51evk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 454 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 455 | |
456 | config TARGET_MX53ARD | ||||
457 | bool "Support mx53ard" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 458 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 459 | |
460 | config TARGET_MX53EVK | ||||
461 | bool "Support mx53evk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 462 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 463 | |
464 | config TARGET_MX53LOCO | ||||
465 | bool "Support mx53loco" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 466 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 467 | |
468 | config TARGET_MX53SMD | ||||
469 | bool "Support mx53smd" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 470 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 471 | |
472 | config TARGET_MX51_EFIKAMX | ||||
473 | bool "Support mx51_efikamx" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 474 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 475 | |
476 | config TARGET_VISION2 | ||||
477 | bool "Support vision2" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 478 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 479 | |
480 | config TARGET_UDOO | ||||
481 | bool "Support udoo" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 482 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 483 | |
484 | config TARGET_WANDBOARD | ||||
485 | bool "Support wandboard" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 486 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 487 | |
488 | config TARGET_TITANIUM | ||||
489 | bool "Support titanium" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 490 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 491 | |
492 | config TARGET_NITROGEN6X | ||||
493 | bool "Support nitrogen6x" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 494 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 495 | |
496 | config TARGET_CGTQMX6EVAL | ||||
497 | bool "Support cgtqmx6eval" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 498 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 499 | |
500 | config TARGET_EMBESTMX6BOARDS | ||||
501 | bool "Support embestmx6boards" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 502 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 503 | |
Stefano Babic | 7e92917 | 2014-08-11 10:18:41 +0200 | [diff] [blame] | 504 | config TARGET_ARISTAINETOS |
505 | bool "Support aristainetos" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 506 | select CPU_V7 |
Stefano Babic | 7e92917 | 2014-08-11 10:18:41 +0200 | [diff] [blame] | 507 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 508 | config TARGET_MX6QARM2 |
509 | bool "Support mx6qarm2" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 510 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 511 | |
512 | config TARGET_MX6QSABREAUTO | ||||
513 | bool "Support mx6qsabreauto" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 514 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 515 | |
516 | config TARGET_MX6SABRESD | ||||
517 | bool "Support mx6sabresd" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 518 | select CPU_V7 |
John Tobias | e451e9b | 2014-11-12 14:27:43 -0800 | [diff] [blame] | 519 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 520 | |
521 | config TARGET_MX6SLEVK | ||||
522 | bool "Support mx6slevk" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 523 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 524 | |
Fabio Estevam | 080d72f | 2014-08-14 21:00:28 -0300 | [diff] [blame] | 525 | config TARGET_MX6SXSABRESD |
526 | bool "Support mx6sxsabresd" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 527 | select CPU_V7 |
Peng Fan | 3dae50d | 2014-12-30 17:23:59 +0800 | [diff] [blame] | 528 | select SUPPORT_SPL |
Fabio Estevam | 080d72f | 2014-08-14 21:00:28 -0300 | [diff] [blame] | 529 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 530 | config TARGET_GW_VENTANA |
531 | bool "Support gw_ventana" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 532 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 533 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 534 | |
535 | config TARGET_HUMMINGBOARD | ||||
536 | bool "Support hummingboard" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 537 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 538 | |
Marek Vasut | f91c09a | 2014-10-24 23:39:07 +0200 | [diff] [blame] | 539 | config TARGET_KOSAGI_NOVENA |
540 | bool "Support Kosagi Novena" | ||||
Masahiro Yamada | 790f70c | 2014-11-06 11:39:26 +0900 | [diff] [blame] | 541 | select CPU_V7 |
Marek Vasut | bdf1638 | 2014-11-13 11:06:21 +0100 | [diff] [blame] | 542 | select SUPPORT_SPL |
Marek Vasut | f91c09a | 2014-10-24 23:39:07 +0200 | [diff] [blame] | 543 | |
Soeren Moch | 05d492a | 2014-11-03 13:57:01 +0100 | [diff] [blame] | 544 | config TARGET_TBS2910 |
545 | bool "Support tbs2910" | ||||
Soeren Moch | f8bbd7f | 2014-11-26 12:39:24 +0100 | [diff] [blame] | 546 | select CPU_V7 |
Soeren Moch | 05d492a | 2014-11-03 13:57:01 +0100 | [diff] [blame] | 547 | |
Masahiro Yamada | a126363 | 2014-09-01 00:47:55 +0900 | [diff] [blame] | 548 | config TARGET_TQMA6 |
549 | bool "TQ Systems TQMa6 board" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 550 | select CPU_V7 |
Masahiro Yamada | a126363 | 2014-09-01 00:47:55 +0900 | [diff] [blame] | 551 | |
Christian Gmeiner | 39d0973 | 2014-10-02 13:33:46 +0200 | [diff] [blame] | 552 | config TARGET_OT1200 |
553 | bool "Bachmann OT1200" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 554 | select CPU_V7 |
Christian Gmeiner | 8551b36 | 2015-01-19 17:26:44 +0100 | [diff] [blame] | 555 | select SUPPORT_SPL |
Christian Gmeiner | 39d0973 | 2014-10-02 13:33:46 +0200 | [diff] [blame] | 556 | |
Stefan Roese | 5d6050f | 2014-12-10 10:15:23 +0100 | [diff] [blame] | 557 | config TARGET_PLATINUM_PICON |
558 | bool "Support platinum-picon" | ||||
559 | select CPU_V7 | ||||
560 | select SUPPORT_SPL | ||||
561 | |||||
562 | config TARGET_PLATINUM_TITANIUM | ||||
563 | bool "Support platinum-titanium" | ||||
564 | select CPU_V7 | ||||
565 | select SUPPORT_SPL | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 566 | |
Masahiro Yamada | 3cfbcb5 | 2014-08-31 07:11:02 +0900 | [diff] [blame] | 567 | config OMAP34XX |
568 | bool "OMAP34XX SoC" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 569 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 570 | |
Masahiro Yamada | d08215a | 2014-08-31 07:11:03 +0900 | [diff] [blame] | 571 | config OMAP44XX |
572 | bool "OMAP44XX SoC" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 573 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 574 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 575 | |
Masahiro Yamada | 6c5431a | 2014-08-31 07:11:04 +0900 | [diff] [blame] | 576 | config OMAP54XX |
577 | bool "OMAP54XX SoC" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 578 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 579 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 580 | |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 581 | config RMOBILE |
582 | bool "Renesas ARM SoCs" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 583 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 584 | |
Nikita Kiryanov | e32028a | 2014-09-07 18:59:29 +0300 | [diff] [blame] | 585 | config TARGET_CM_FX6 |
586 | bool "Support cm_fx6" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 587 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 588 | select SUPPORT_SPL |
Nikita Kiryanov | e32028a | 2014-09-07 18:59:29 +0300 | [diff] [blame] | 589 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 590 | config TARGET_SOCFPGA_CYCLONE5 |
591 | bool "Support socfpga_cyclone5" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 592 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 593 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 594 | |
Ian Campbell | 2c7e3b9 | 2014-10-24 21:20:44 +0100 | [diff] [blame] | 595 | config ARCH_SUNXI |
596 | bool "Support sunxi (Allwinner) SoCs" | ||||
Chen-Yu Tsai | 8ebe4f4 | 2014-10-22 16:47:44 +0800 | [diff] [blame] | 597 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 598 | config TARGET_SNOWBALL |
599 | bool "Support snowball" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 600 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 601 | |
602 | config TARGET_U8500_HREF | ||||
603 | bool "Support u8500_href" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 604 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 605 | |
606 | config TARGET_VF610TWR | ||||
607 | bool "Support vf610twr" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 608 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 609 | |
Masahiro Yamada | 44dcb40 | 2014-08-31 07:10:55 +0900 | [diff] [blame] | 610 | config ZYNQ |
611 | bool "Xilinx Zynq Platform" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 612 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 613 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 614 | |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 615 | config TEGRA |
616 | bool "NVIDIA Tegra" | ||||
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 617 | select SUPPORT_SPL |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 618 | select SPL |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 619 | select OF_CONTROL if !SPL_BUILD |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 620 | select CPU_ARM720T if SPL_BUILD |
621 | select CPU_V7 if !SPL_BUILD | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 622 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 623 | config TARGET_VEXPRESS64_AEMV8A |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 624 | bool "Support vexpress_aemv8a" |
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 625 | select ARM64 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 626 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 627 | config TARGET_VEXPRESS64_BASE_FVP |
628 | bool "Support Versatile Express ARMv8a FVP BASE model" | ||||
629 | select ARM64 | ||||
630 | select SEMIHOSTING | ||||
631 | |||||
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 632 | config TARGET_VEXPRESS64_JUNO |
633 | bool "Support Versatile Express Juno Development Platform" | ||||
634 | select ARM64 | ||||
635 | |||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 636 | config TARGET_LS2085A_EMU |
637 | bool "Support ls2085a_emu" | ||||
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 638 | select ARM64 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 639 | |
640 | config TARGET_LS2085A_SIMU | ||||
641 | bool "Support ls2085a_simu" | ||||
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 642 | select ARM64 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 643 | |
Wang Huan | 550e3dc | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 644 | config TARGET_LS1021AQDS |
Alison Wang | 0de1570 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 645 | bool "Support ls1021aqds" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 646 | select CPU_V7 |
Alison Wang | 50f0c66 | 2014-12-03 15:00:45 +0800 | [diff] [blame] | 647 | select SUPPORT_SPL |
Wang Huan | 550e3dc | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 648 | |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 649 | config TARGET_LS1021ATWR |
Alison Wang | 0de1570 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 650 | bool "Support ls1021atwr" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 651 | select CPU_V7 |
Alison Wang | 50f0c66 | 2014-12-03 15:00:45 +0800 | [diff] [blame] | 652 | select SUPPORT_SPL |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 653 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 654 | config TARGET_BALLOON3 |
655 | bool "Support balloon3" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 656 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 657 | |
658 | config TARGET_H2200 | ||||
659 | bool "Support h2200" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 660 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 661 | |
662 | config TARGET_PALMLD | ||||
663 | bool "Support palmld" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 664 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 665 | |
666 | config TARGET_PALMTC | ||||
667 | bool "Support palmtc" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 668 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 669 | |
670 | config TARGET_PALMTREO680 | ||||
671 | bool "Support palmtreo680" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 672 | select CPU_PXA |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 673 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 674 | |
675 | config TARGET_PXA255_IDP | ||||
676 | bool "Support pxa255_idp" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 677 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 678 | |
679 | config TARGET_TRIZEPSIV | ||||
680 | bool "Support trizepsiv" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 681 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 682 | |
683 | config TARGET_VPAC270 | ||||
684 | bool "Support vpac270" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 685 | select CPU_PXA |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 686 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 687 | |
688 | config TARGET_XAENIAX | ||||
689 | bool "Support xaeniax" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 690 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 691 | |
692 | config TARGET_ZIPITZ2 | ||||
693 | bool "Support zipitz2" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 694 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 695 | |
696 | config TARGET_LP8X4X | ||||
697 | bool "Support lp8x4x" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 698 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 699 | |
700 | config TARGET_COLIBRI_PXA270 | ||||
701 | bool "Support colibri_pxa270" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 702 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 703 | |
704 | config TARGET_JORNADA | ||||
705 | bool "Support jornada" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 706 | select CPU_SA1100 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 707 | |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 708 | config ARCH_UNIPHIER |
709 | bool "Panasonic UniPhier platform" | ||||
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 710 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 711 | select SUPPORT_SPL |
Masahiro Yamada | 992e874 | 2014-12-18 19:11:03 +0900 | [diff] [blame] | 712 | select SPL |
Masahiro Yamada | b5e57fc | 2014-11-26 18:34:02 +0900 | [diff] [blame] | 713 | select OF_CONTROL if !SPL_BUILD |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 714 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 715 | endchoice |
716 | |||||
Masahiro Yamada | 4614b89 | 2015-02-20 17:04:01 +0900 | [diff] [blame^] | 717 | source "arch/arm/mach-at91/Kconfig" |
718 | |||||
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 719 | source "arch/arm/cpu/arm926ejs/davinci/Kconfig" |
720 | |||||
Simon Glass | 34e609c | 2015-02-05 21:41:39 -0700 | [diff] [blame] | 721 | source "arch/arm/cpu/arm1176/bcm2835/Kconfig" |
722 | |||||
Masahiro Yamada | 72df68c | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 723 | source "arch/arm/cpu/armv7/exynos/Kconfig" |
724 | |||||
Masahiro Yamada | ef2b694 | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 725 | source "arch/arm/cpu/armv7/highbank/Kconfig" |
726 | |||||
Masahiro Yamada | c338f09 | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 727 | source "arch/arm/cpu/armv7/keystone/Kconfig" |
728 | |||||
Masahiro Yamada | 47539e2 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 729 | source "arch/arm/cpu/arm926ejs/kirkwood/Kconfig" |
730 | |||||
Masahiro Yamada | 16e16fd | 2014-08-31 07:11:08 +0900 | [diff] [blame] | 731 | source "arch/arm/cpu/arm926ejs/nomadik/Kconfig" |
732 | |||||
Masahiro Yamada | 3cfbcb5 | 2014-08-31 07:11:02 +0900 | [diff] [blame] | 733 | source "arch/arm/cpu/armv7/omap3/Kconfig" |
734 | |||||
Masahiro Yamada | d08215a | 2014-08-31 07:11:03 +0900 | [diff] [blame] | 735 | source "arch/arm/cpu/armv7/omap4/Kconfig" |
736 | |||||
Masahiro Yamada | 6c5431a | 2014-08-31 07:11:04 +0900 | [diff] [blame] | 737 | source "arch/arm/cpu/armv7/omap5/Kconfig" |
738 | |||||
Masahiro Yamada | 22f2be7 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 739 | source "arch/arm/cpu/arm926ejs/orion5x/Kconfig" |
740 | |||||
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 741 | source "arch/arm/cpu/armv7/rmobile/Kconfig" |
742 | |||||
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 743 | source "arch/arm/cpu/armv7/s5pc1xx/Kconfig" |
744 | |||||
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 745 | source "arch/arm/cpu/armv7/tegra-common/Kconfig" |
746 | |||||
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 747 | source "arch/arm/cpu/armv7/uniphier/Kconfig" |
748 | |||||
Masahiro Yamada | ad17a81 | 2014-08-31 07:10:58 +0900 | [diff] [blame] | 749 | source "arch/arm/cpu/arm926ejs/versatile/Kconfig" |
750 | |||||
Masahiro Yamada | 44dcb40 | 2014-08-31 07:10:55 +0900 | [diff] [blame] | 751 | source "arch/arm/cpu/armv7/zynq/Kconfig" |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 752 | |
Hans de Goede | ea624e1 | 2014-11-14 09:34:30 +0100 | [diff] [blame] | 753 | source "arch/arm/cpu/armv7/Kconfig" |
754 | |||||
Stefano Babic | 7e92917 | 2014-08-11 10:18:41 +0200 | [diff] [blame] | 755 | source "board/aristainetos/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 756 | source "board/BuR/kwb/Kconfig" |
757 | source "board/BuR/tseries/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 758 | source "board/CarMediaLab/flea3/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 759 | source "board/Marvell/aspenite/Kconfig" |
Stefan Roese | dd58080 | 2014-10-22 12:13:18 +0200 | [diff] [blame] | 760 | source "board/Marvell/db-mv784mp-gp/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 761 | source "board/Marvell/dkb/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 762 | source "board/Marvell/gplugd/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 763 | source "board/altera/socfpga/Kconfig" |
764 | source "board/armadeus/apf27/Kconfig" | ||||
765 | source "board/armltd/integrator/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 766 | source "board/armltd/vexpress/Kconfig" |
767 | source "board/armltd/vexpress64/Kconfig" | ||||
Christian Gmeiner | 39d0973 | 2014-10-02 13:33:46 +0200 | [diff] [blame] | 768 | source "board/bachmann/ot1200/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 769 | source "board/balloon3/Kconfig" |
Stefan Roese | 5d6050f | 2014-12-10 10:15:23 +0100 | [diff] [blame] | 770 | source "board/barco/platinum/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 771 | source "board/barco/titanium/Kconfig" |
772 | source "board/bluegiga/apx4devkit/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 773 | source "board/boundary/nitrogen6x/Kconfig" |
774 | source "board/broadcom/bcm28155_ap/Kconfig" | ||||
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 775 | source "board/broadcom/bcmcygnus/Kconfig" |
776 | source "board/broadcom/bcmnsp/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 777 | source "board/cirrus/edb93xx/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 778 | source "board/cm4008/Kconfig" |
779 | source "board/cm41xx/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 780 | source "board/compulab/cm_t335/Kconfig" |
Nikita Kiryanov | e32028a | 2014-09-07 18:59:29 +0300 | [diff] [blame] | 781 | source "board/compulab/cm_fx6/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 782 | source "board/congatec/cgtqmx6eval/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 783 | source "board/creative/xfi3/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 784 | source "board/davedenx/qong/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 785 | source "board/denx/m28evk/Kconfig" |
786 | source "board/denx/m53evk/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 787 | source "board/embest/mx6boards/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 788 | source "board/esg/ima3-mx53/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 789 | source "board/faraday/a320evb/Kconfig" |
790 | source "board/freescale/ls2085a/Kconfig" | ||||
Wang Huan | 550e3dc | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 791 | source "board/freescale/ls1021aqds/Kconfig" |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 792 | source "board/freescale/ls1021atwr/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 793 | source "board/freescale/mx23evk/Kconfig" |
794 | source "board/freescale/mx25pdk/Kconfig" | ||||
795 | source "board/freescale/mx28evk/Kconfig" | ||||
796 | source "board/freescale/mx31ads/Kconfig" | ||||
797 | source "board/freescale/mx31pdk/Kconfig" | ||||
798 | source "board/freescale/mx35pdk/Kconfig" | ||||
799 | source "board/freescale/mx51evk/Kconfig" | ||||
800 | source "board/freescale/mx53ard/Kconfig" | ||||
801 | source "board/freescale/mx53evk/Kconfig" | ||||
802 | source "board/freescale/mx53loco/Kconfig" | ||||
803 | source "board/freescale/mx53smd/Kconfig" | ||||
804 | source "board/freescale/mx6qarm2/Kconfig" | ||||
805 | source "board/freescale/mx6qsabreauto/Kconfig" | ||||
806 | source "board/freescale/mx6sabresd/Kconfig" | ||||
807 | source "board/freescale/mx6slevk/Kconfig" | ||||
Fabio Estevam | 080d72f | 2014-08-14 21:00:28 -0300 | [diff] [blame] | 808 | source "board/freescale/mx6sxsabresd/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 809 | source "board/freescale/vf610twr/Kconfig" |
810 | source "board/gateworks/gw_ventana/Kconfig" | ||||
811 | source "board/genesi/mx51_efikamx/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 812 | source "board/gumstix/pepper/Kconfig" |
813 | source "board/h2200/Kconfig" | ||||
814 | source "board/hale/tt01/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 815 | source "board/icpdas/lp8x4x/Kconfig" |
816 | source "board/imx31_phycore/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 817 | source "board/isee/igep0033/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 818 | source "board/jornada/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 819 | source "board/karo/tx25/Kconfig" |
Marek Vasut | f91c09a | 2014-10-24 23:39:07 +0200 | [diff] [blame] | 820 | source "board/kosagi/novena/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 821 | source "board/logicpd/imx27lite/Kconfig" |
822 | source "board/logicpd/imx31_litekit/Kconfig" | ||||
Stefan Roese | a488483 | 2014-10-22 12:13:19 +0200 | [diff] [blame] | 823 | source "board/maxbcm/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 824 | source "board/mpl/vcma9/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 825 | source "board/olimex/mx23_olinuxino/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 826 | source "board/palmld/Kconfig" |
827 | source "board/palmtc/Kconfig" | ||||
828 | source "board/palmtreo680/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 829 | source "board/phytec/pcm051/Kconfig" |
830 | source "board/ppcag/bg0900/Kconfig" | ||||
831 | source "board/pxa255_idp/Kconfig" | ||||
Stephen Warren | 9316e14 | 2014-11-19 20:41:03 -0700 | [diff] [blame] | 832 | source "board/raspberrypi/rpi/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 833 | source "board/samsung/smdk2410/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 834 | source "board/sandisk/sansa_fuze_plus/Kconfig" |
835 | source "board/scb9328/Kconfig" | ||||
836 | source "board/schulercontrol/sc_sps_1/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 837 | source "board/siemens/draco/Kconfig" |
838 | source "board/siemens/pxm2/Kconfig" | ||||
839 | source "board/siemens/rut/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 840 | source "board/silica/pengwyn/Kconfig" |
841 | source "board/solidrun/hummingboard/Kconfig" | ||||
842 | source "board/spear/spear300/Kconfig" | ||||
843 | source "board/spear/spear310/Kconfig" | ||||
844 | source "board/spear/spear320/Kconfig" | ||||
845 | source "board/spear/spear600/Kconfig" | ||||
846 | source "board/spear/x600/Kconfig" | ||||
847 | source "board/st-ericsson/snowball/Kconfig" | ||||
848 | source "board/st-ericsson/u8500/Kconfig" | ||||
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 849 | source "board/st/stv0991/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 850 | source "board/sunxi/Kconfig" |
851 | source "board/syteco/jadecpu/Kconfig" | ||||
852 | source "board/syteco/zmx25/Kconfig" | ||||
Soeren Moch | 05d492a | 2014-11-03 13:57:01 +0100 | [diff] [blame] | 853 | source "board/tbs/tbs2910/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 854 | source "board/ti/am335x/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 855 | source "board/ti/am43xx/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 856 | source "board/ti/ti814x/Kconfig" |
857 | source "board/ti/ti816x/Kconfig" | ||||
858 | source "board/ti/tnetv107xevm/Kconfig" | ||||
859 | source "board/timll/devkit3250/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 860 | source "board/toradex/colibri_pxa270/Kconfig" |
Masahiro Yamada | a126363 | 2014-09-01 00:47:55 +0900 | [diff] [blame] | 861 | source "board/tqc/tqma6/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 862 | source "board/trizepsiv/Kconfig" |
863 | source "board/ttcontrol/vision2/Kconfig" | ||||
864 | source "board/udoo/Kconfig" | ||||
865 | source "board/vpac270/Kconfig" | ||||
866 | source "board/wandboard/Kconfig" | ||||
867 | source "board/woodburn/Kconfig" | ||||
868 | source "board/xaeniax/Kconfig" | ||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 869 | source "board/zipitz2/Kconfig" |
870 | |||||
Masahiro Yamada | 51b17d4 | 2014-09-01 11:06:34 +0900 | [diff] [blame] | 871 | source "arch/arm/Kconfig.debug" |
872 | |||||
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 873 | endmenu |