blob: 34083192b6377f18f5eaeceac04de396149d7c38 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada016a9542014-09-14 03:01:51 +09007config ARM64
8 bool
9
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010010config HAS_VBAR
11 bool
12
13config CPU_ARM720T
14 bool
15
16config CPU_ARM920T
17 bool
18
19config CPU_ARM926EJS
20 bool
21
22config CPU_ARM946ES
23 bool
24
25config CPU_ARM1136
26 bool
27
28config CPU_ARM1176
29 bool
30 select HAS_VBAR
31
32config CPU_V7
33 bool
34 select HAS_VBAR
35
36config CPU_PXA
37 bool
38
39config CPU_SA1100
40 bool
41
42config 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 Yamada01541ee2014-11-06 11:39:27 +090052 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010053
Linus Walleijf91afc42015-01-23 11:50:53 +010054config 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 Yamadadd840582014-07-30 14:08:14 +090061choice
62 prompt "Target select"
63
64config TARGET_INTEGRATORAP_CM720T
65 bool "Support integratorap_cm720t"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010066 select CPU_ARM720T
Masahiro Yamadadd840582014-07-30 14:08:14 +090067
68config TARGET_INTEGRATORAP_CM920T
69 bool "Support integratorap_cm920t"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010070 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090071
72config TARGET_INTEGRATORCP_CM920T
73 bool "Support integratorcp_cm920t"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010074 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090075
76config TARGET_A320EVB
77 bool "Support a320evb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010078 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090079
Masahiro Yamada4614b892015-02-20 17:04:01 +090080config ARCH_AT91
81 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090082
83config TARGET_EDB93XX
84 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010085 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090086
87config TARGET_SCB9328
88 bool "Support scb9328"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010089 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090090
91config TARGET_CM4008
92 bool "Support cm4008"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010093 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090094
95config TARGET_CM41XX
96 bool "Support cm41xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010097 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090098
99config TARGET_VCMA9
100 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100101 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900102
103config TARGET_SMDK2410
104 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100105 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900106
107config TARGET_INTEGRATORAP_CM926EJS
108 bool "Support integratorap_cm926ejs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100109 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900110
111config TARGET_INTEGRATORCP_CM926EJS
112 bool "Support integratorcp_cm926ejs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100113 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900114
115config TARGET_ASPENITE
116 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100117 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900118
119config TARGET_GPLUGD
120 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100121 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900122
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900123config ARCH_DAVINCI
124 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100125 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900126 help
127 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900128
Masahiro Yamada47539e22014-08-31 07:10:59 +0900129config KIRKWOOD
130 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100131 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900132
Stefan Roesedd580802014-10-22 12:13:18 +0200133config TARGET_DB_MV784MP_GP
134 bool "Support db-mv784mp-gp"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900135 select CPU_V7
Stefan Roese25541672015-01-19 11:33:46 +0100136 select SUPPORT_SPL
Stefan Roesedd580802014-10-22 12:13:18 +0200137
Stefan Roesea4884832014-10-22 12:13:19 +0200138config TARGET_MAXBCM
139 bool "Support maxbcm"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900140 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100141 select SUPPORT_SPL
Stefan Roesea4884832014-10-22 12:13:19 +0200142
Masahiro Yamadadd840582014-07-30 14:08:14 +0900143config TARGET_DEVKIT3250
144 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100145 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900146
147config TARGET_JADECPU
148 bool "Support jadecpu"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100149 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900150
151config TARGET_MX25PDK
152 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100153 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900154
155config TARGET_TX25
156 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100157 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900158 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900159
160config TARGET_ZMX25
161 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100162 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900163
164config TARGET_APF27
165 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100166 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900167 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900168
169config TARGET_IMX27LITE
170 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100171 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900172
173config TARGET_MAGNESIUM
174 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100175 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900176
177config TARGET_APX4DEVKIT
178 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100179 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900180 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900181
182config TARGET_XFI3
183 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100184 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900185 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900186
187config TARGET_M28EVK
188 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900190 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900191
192config TARGET_MX23EVK
193 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900195 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900196
197config TARGET_MX28EVK
198 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900200 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900201
202config TARGET_MX23_OLINUXINO
203 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100204 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900205 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900206
207config TARGET_BG0900
208 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100209 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900210 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900211
212config TARGET_SANSA_FUZE_PLUS
213 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100214 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900215 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900216
217config TARGET_SC_SPS_1
218 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100219 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900220 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900221
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900222config ARCH_NOMADIK
223 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100224 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900225
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900226config ORION5X
227 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100228 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900229
230config TARGET_DKB
231 bool "Support dkb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100232 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900233
234config TARGET_SPEAR300
235 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900237
238config TARGET_SPEAR310
239 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100240 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900241
242config TARGET_SPEAR320
243 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100244 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900245
246config TARGET_SPEAR600
247 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100248 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900249
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800250config TARGET_STV0991
251 bool "Support stv0991"
252 select CPU_V7
253
Masahiro Yamadadd840582014-07-30 14:08:14 +0900254config TARGET_X600
255 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100256 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900257 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900258
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900259config ARCH_VERSATILE
260 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100261 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900262
263config TARGET_INTEGRATORCP_CM1136
264 bool "Support integratorcp_cm1136"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100265 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900266
267config TARGET_IMX31_PHYCORE
268 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100269 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900270
271config TARGET_QONG
272 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100273 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900274
275config TARGET_MX31ADS
276 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100277 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900278
279config TARGET_MX31PDK
280 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100281 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900282 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900283
284config TARGET_TT01
285 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100286 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900287
288config TARGET_IMX31_LITEKIT
289 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100290 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900291
292config TARGET_WOODBURN
293 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100294 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900295
296config TARGET_WOODBURN_SD
297 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100298 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900299 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900300
301config TARGET_FLEA3
302 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100303 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900304
305config TARGET_MX35PDK
306 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100307 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900308
Stephen Warren9316e142014-11-19 20:41:03 -0700309config TARGET_RPI
310 bool "Support rpi"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100311 select CPU_ARM1176
Masahiro Yamadadd840582014-07-30 14:08:14 +0900312
Stephen Warren46414292015-02-16 12:16:15 -0700313config TARGET_RPI_2
314 bool "Support rpi_2"
315 select CPU_V7
316
Masahiro Yamadadd840582014-07-30 14:08:14 +0900317config TARGET_TNETV107X_EVM
318 bool "Support tnetv107x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100319 select CPU_ARM1176
Masahiro Yamadadd840582014-07-30 14:08:14 +0900320
321config TARGET_INTEGRATORAP_CM946ES
322 bool "Support integratorap_cm946es"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100323 select CPU_ARM946ES
Masahiro Yamadadd840582014-07-30 14:08:14 +0900324
325config TARGET_INTEGRATORCP_CM946ES
326 bool "Support integratorcp_cm946es"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100327 select CPU_ARM946ES
Masahiro Yamadadd840582014-07-30 14:08:14 +0900328
329config TARGET_VEXPRESS_CA15_TC2
330 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100331 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100332 select CPU_V7_HAS_NONSEC
333 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900334
335config TARGET_VEXPRESS_CA5X2
336 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100337 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900338
339config TARGET_VEXPRESS_CA9X4
340 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100341 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342
343config TARGET_KWB
344 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100345 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900346 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900347
348config TARGET_TSERIES
349 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100350 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900351 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900352
353config TARGET_CM_T335
354 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100355 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900356 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900357
358config TARGET_PEPPER
359 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100360 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900361 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900362
363config TARGET_AM335X_IGEP0033
364 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100365 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900366 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900367
368config TARGET_PCM051
369 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100370 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900371 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900372
373config TARGET_DRACO
374 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100375 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900376 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900377
378config TARGET_DXR2
379 bool "Support dxr2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100380 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900381 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900382
383config TARGET_PXM2
384 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100385 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900386 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900387
388config TARGET_RUT
389 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100390 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900391 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900392
393config TARGET_PENGWYN
394 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100395 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900396 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900397
398config TARGET_AM335X_EVM
399 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100400 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900401 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900402
403config TARGET_AM43XX_EVM
404 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100405 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900406 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900407
408config TARGET_TI814X_EVM
409 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100410 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900411 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900412
413config TARGET_TI816X_EVM
414 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100415 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900416 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900417
Masahiro Yamadadd840582014-07-30 14:08:14 +0900418config TARGET_BCM28155_AP
419 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100420 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900421
Steve Raeabb16782014-11-11 11:32:18 -0800422config TARGET_BCMCYGNUS
423 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100424 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700425
Steve Raeabb16782014-11-11 11:32:18 -0800426config TARGET_BCMNSP
427 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100428 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700429
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900430config ARCH_EXYNOS
431 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900433
Simon Glass311757b2014-10-07 22:01:50 -0600434config ARCH_S5PC1XX
435 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100436 select CPU_V7
Simon Glass311757b2014-10-07 22:01:50 -0600437
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900438config ARCH_HIGHBANK
439 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100440 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900441
Masahiro Yamadac338f092014-08-31 07:11:05 +0900442config ARCH_KEYSTONE
443 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100444 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900445 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900446
447config TARGET_M53EVK
448 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100449 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900450 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900451
452config TARGET_IMA3_MX53
453 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100454 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900455
456config TARGET_MX51EVK
457 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100458 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900459
460config TARGET_MX53ARD
461 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100462 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900463
464config TARGET_MX53EVK
465 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100466 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900467
468config TARGET_MX53LOCO
469 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100470 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900471
472config TARGET_MX53SMD
473 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100474 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900475
476config TARGET_MX51_EFIKAMX
477 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100478 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900479
480config TARGET_VISION2
481 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483
484config TARGET_UDOO
485 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900487
488config TARGET_WANDBOARD
489 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900491
492config TARGET_TITANIUM
493 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900495
496config TARGET_NITROGEN6X
497 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100498 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900499
500config TARGET_CGTQMX6EVAL
501 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100502 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900503
504config TARGET_EMBESTMX6BOARDS
505 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100506 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900507
Stefano Babic7e929172014-08-11 10:18:41 +0200508config TARGET_ARISTAINETOS
509 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100510 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200511
Masahiro Yamadadd840582014-07-30 14:08:14 +0900512config TARGET_MX6QARM2
513 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100514 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900515
516config TARGET_MX6QSABREAUTO
517 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100518 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900519
520config TARGET_MX6SABRESD
521 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100522 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800523 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900524
525config TARGET_MX6SLEVK
526 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100527 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900528
Fabio Estevam080d72f2014-08-14 21:00:28 -0300529config TARGET_MX6SXSABRESD
530 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100531 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800532 select SUPPORT_SPL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300533
Masahiro Yamadadd840582014-07-30 14:08:14 +0900534config TARGET_GW_VENTANA
535 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100536 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900537 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900538
539config TARGET_HUMMINGBOARD
540 bool "Support hummingboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100541 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900542
Marek Vasutf91c09a2014-10-24 23:39:07 +0200543config TARGET_KOSAGI_NOVENA
544 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900545 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100546 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200547
Soeren Moch05d492a2014-11-03 13:57:01 +0100548config TARGET_TBS2910
549 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100550 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100551
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900552config TARGET_TQMA6
553 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100554 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900555
Christian Gmeiner39d09732014-10-02 13:33:46 +0200556config TARGET_OT1200
557 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100558 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100559 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200560
Stefan Roese5d6050f2014-12-10 10:15:23 +0100561config TARGET_PLATINUM_PICON
562 bool "Support platinum-picon"
563 select CPU_V7
564 select SUPPORT_SPL
565
566config TARGET_PLATINUM_TITANIUM
567 bool "Support platinum-titanium"
568 select CPU_V7
569 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900570
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900571config OMAP34XX
572 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100573 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900574
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900575config OMAP44XX
576 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100577 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900578 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900579
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900580config OMAP54XX
581 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100582 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900583 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900584
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900585config RMOBILE
586 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100587 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900588
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300589config TARGET_CM_FX6
590 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100591 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900592 select SUPPORT_SPL
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300593
Masahiro Yamadadd840582014-07-30 14:08:14 +0900594config TARGET_SOCFPGA_CYCLONE5
595 bool "Support socfpga_cyclone5"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100596 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900597 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900598
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100599config ARCH_SUNXI
600 bool "Support sunxi (Allwinner) SoCs"
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800601
Masahiro Yamadadd840582014-07-30 14:08:14 +0900602config TARGET_SNOWBALL
603 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100604 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900605
606config TARGET_U8500_HREF
607 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100608 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900609
610config TARGET_VF610TWR
611 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100612 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900613
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900614config ZYNQ
615 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100616 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900617 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900618
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900619config TEGRA
620 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900621 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900622 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900623 select OF_CONTROL
624 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900625
Linus Walleijf91afc42015-01-23 11:50:53 +0100626config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900627 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900628 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900629
Linus Walleijf91afc42015-01-23 11:50:53 +0100630config TARGET_VEXPRESS64_BASE_FVP
631 bool "Support Versatile Express ARMv8a FVP BASE model"
632 select ARM64
633 select SEMIHOSTING
634
Linus Walleijffc10372015-01-23 14:41:10 +0100635config TARGET_VEXPRESS64_JUNO
636 bool "Support Versatile Express Juno Development Platform"
637 select ARM64
638
Masahiro Yamadadd840582014-07-30 14:08:14 +0900639config TARGET_LS2085A_EMU
640 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900641 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900642
643config TARGET_LS2085A_SIMU
644 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900645 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900646
Wang Huan550e3dc2014-09-05 13:52:44 +0800647config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800648 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100649 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800650 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800651
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800652config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800653 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100654 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800655 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800656
Masahiro Yamadadd840582014-07-30 14:08:14 +0900657config TARGET_BALLOON3
658 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100659 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900660
661config TARGET_H2200
662 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100663 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900664
665config TARGET_PALMLD
666 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100667 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900668
669config TARGET_PALMTC
670 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100671 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900672
673config TARGET_PALMTREO680
674 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100675 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900676 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900677
678config TARGET_PXA255_IDP
679 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100680 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900681
682config TARGET_TRIZEPSIV
683 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100684 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900685
686config TARGET_VPAC270
687 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100688 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900689 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900690
691config TARGET_XAENIAX
692 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100693 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900694
695config TARGET_ZIPITZ2
696 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100697 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900698
699config TARGET_LP8X4X
700 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100701 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900702
703config TARGET_COLIBRI_PXA270
704 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100705 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900706
707config TARGET_JORNADA
708 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100709 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900710
Masahiro Yamada66cba042014-10-03 19:21:07 +0900711config ARCH_UNIPHIER
712 bool "Panasonic UniPhier platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100713 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900714 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900715 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900716 select OF_CONTROL
Masahiro Yamada66cba042014-10-03 19:21:07 +0900717
Masahiro Yamadadd840582014-07-30 14:08:14 +0900718endchoice
719
Masahiro Yamada4614b892015-02-20 17:04:01 +0900720source "arch/arm/mach-at91/Kconfig"
721
Masahiro Yamada601fbec2015-02-20 17:04:05 +0900722source "arch/arm/mach-davinci/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900723
Simon Glass34e609c2015-02-05 21:41:39 -0700724source "arch/arm/cpu/arm1176/bcm2835/Kconfig"
725
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900726source "arch/arm/cpu/armv7/exynos/Kconfig"
727
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900728source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900729
Masahiro Yamada39a72342015-02-20 17:04:11 +0900730source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900731
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900732source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900733
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900734source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900735
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900736source "arch/arm/cpu/armv7/omap3/Kconfig"
737
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900738source "arch/arm/cpu/armv7/omap4/Kconfig"
739
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900740source "arch/arm/cpu/armv7/omap5/Kconfig"
741
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900742source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900743
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900744source "arch/arm/cpu/armv7/rmobile/Kconfig"
745
Simon Glass311757b2014-10-07 22:01:50 -0600746source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
747
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900748source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900749
Masahiro Yamada66cba042014-10-03 19:21:07 +0900750source "arch/arm/cpu/armv7/uniphier/Kconfig"
751
Masahiro Yamada63637a42015-02-20 17:04:10 +0900752source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900753
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900754source "arch/arm/cpu/armv7/zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900755
Hans de Goedeea624e12014-11-14 09:34:30 +0100756source "arch/arm/cpu/armv7/Kconfig"
757
Stefano Babic7e929172014-08-11 10:18:41 +0200758source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900759source "board/BuR/kwb/Kconfig"
760source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900761source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900762source "board/Marvell/aspenite/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200763source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900764source "board/Marvell/dkb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900765source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900766source "board/altera/socfpga/Kconfig"
767source "board/armadeus/apf27/Kconfig"
768source "board/armltd/integrator/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900769source "board/armltd/vexpress/Kconfig"
770source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200771source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900772source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100773source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900774source "board/barco/titanium/Kconfig"
775source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900776source "board/boundary/nitrogen6x/Kconfig"
777source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800778source "board/broadcom/bcmcygnus/Kconfig"
779source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900780source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900781source "board/cm4008/Kconfig"
782source "board/cm41xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900783source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300784source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900785source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900786source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900787source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900788source "board/denx/m28evk/Kconfig"
789source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900790source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900791source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900792source "board/faraday/a320evb/Kconfig"
793source "board/freescale/ls2085a/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800794source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800795source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900796source "board/freescale/mx23evk/Kconfig"
797source "board/freescale/mx25pdk/Kconfig"
798source "board/freescale/mx28evk/Kconfig"
799source "board/freescale/mx31ads/Kconfig"
800source "board/freescale/mx31pdk/Kconfig"
801source "board/freescale/mx35pdk/Kconfig"
802source "board/freescale/mx51evk/Kconfig"
803source "board/freescale/mx53ard/Kconfig"
804source "board/freescale/mx53evk/Kconfig"
805source "board/freescale/mx53loco/Kconfig"
806source "board/freescale/mx53smd/Kconfig"
807source "board/freescale/mx6qarm2/Kconfig"
808source "board/freescale/mx6qsabreauto/Kconfig"
809source "board/freescale/mx6sabresd/Kconfig"
810source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300811source "board/freescale/mx6sxsabresd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900812source "board/freescale/vf610twr/Kconfig"
813source "board/gateworks/gw_ventana/Kconfig"
814source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900815source "board/gumstix/pepper/Kconfig"
816source "board/h2200/Kconfig"
817source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900818source "board/icpdas/lp8x4x/Kconfig"
819source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900820source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900821source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900822source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200823source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900824source "board/logicpd/imx27lite/Kconfig"
825source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200826source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900827source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900828source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900829source "board/palmld/Kconfig"
830source "board/palmtc/Kconfig"
831source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900832source "board/phytec/pcm051/Kconfig"
833source "board/ppcag/bg0900/Kconfig"
834source "board/pxa255_idp/Kconfig"
Stephen Warren9316e142014-11-19 20:41:03 -0700835source "board/raspberrypi/rpi/Kconfig"
Stephen Warren46414292015-02-16 12:16:15 -0700836source "board/raspberrypi/rpi_2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900837source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900838source "board/sandisk/sansa_fuze_plus/Kconfig"
839source "board/scb9328/Kconfig"
840source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841source "board/siemens/draco/Kconfig"
842source "board/siemens/pxm2/Kconfig"
843source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900844source "board/silica/pengwyn/Kconfig"
845source "board/solidrun/hummingboard/Kconfig"
846source "board/spear/spear300/Kconfig"
847source "board/spear/spear310/Kconfig"
848source "board/spear/spear320/Kconfig"
849source "board/spear/spear600/Kconfig"
850source "board/spear/x600/Kconfig"
851source "board/st-ericsson/snowball/Kconfig"
852source "board/st-ericsson/u8500/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800853source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900854source "board/sunxi/Kconfig"
855source "board/syteco/jadecpu/Kconfig"
856source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100857source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900858source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900859source "board/ti/am43xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900860source "board/ti/ti814x/Kconfig"
861source "board/ti/ti816x/Kconfig"
862source "board/ti/tnetv107xevm/Kconfig"
863source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900864source "board/toradex/colibri_pxa270/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900865source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866source "board/trizepsiv/Kconfig"
867source "board/ttcontrol/vision2/Kconfig"
868source "board/udoo/Kconfig"
869source "board/vpac270/Kconfig"
870source "board/wandboard/Kconfig"
871source "board/woodburn/Kconfig"
872source "board/xaeniax/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900873source "board/zipitz2/Kconfig"
874
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900875source "arch/arm/Kconfig.debug"
876
Masahiro Yamadadd840582014-07-30 14:08:14 +0900877endmenu