blob: b39bb4f532f75181da14d8d1d05464dcf50a8b58 [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
rev13@wp.pl12d8a722015-03-01 12:44:39 +010036config CPU_V7M
37 bool
38
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010039config CPU_PXA
40 bool
41
42config CPU_SA1100
43 bool
44
45config SYS_CPU
46 default "arm720t" if CPU_ARM720T
47 default "arm920t" if CPU_ARM920T
48 default "arm926ejs" if CPU_ARM926EJS
49 default "arm946es" if CPU_ARM946ES
50 default "arm1136" if CPU_ARM1136
51 default "arm1176" if CPU_ARM1176
52 default "armv7" if CPU_V7
rev13@wp.pl12d8a722015-03-01 12:44:39 +010053 default "armv7m" if CPU_V7M
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010054 default "pxa" if CPU_PXA
55 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090056 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010057
Linus Walleijf91afc42015-01-23 11:50:53 +010058config SEMIHOSTING
59 bool "support boot from semihosting"
60 help
61 In emulated environments, semihosting is a way for
62 the hosted environment to call out to the emulator to
63 retrieve files from the host machine.
64
Masahiro Yamadadd840582014-07-30 14:08:14 +090065choice
66 prompt "Target select"
67
Masahiro Yamada4614b892015-02-20 17:04:01 +090068config ARCH_AT91
69 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090070
71config TARGET_EDB93XX
72 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010073 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090074
75config TARGET_SCB9328
76 bool "Support scb9328"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010077 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090078
Masahiro Yamadadd840582014-07-30 14:08:14 +090079config TARGET_VCMA9
80 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010081 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090082
83config TARGET_SMDK2410
84 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010085 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090086
Masahiro Yamadadd840582014-07-30 14:08:14 +090087config TARGET_ASPENITE
88 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010089 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090090
91config TARGET_GPLUGD
92 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010093 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090094
Masahiro Yamada3491ba62014-08-31 07:11:01 +090095config ARCH_DAVINCI
96 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010097 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +090098 help
99 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900100
Masahiro Yamada47539e22014-08-31 07:10:59 +0900101config KIRKWOOD
102 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100103 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900104
Stefan Roesedd580802014-10-22 12:13:18 +0200105config TARGET_DB_MV784MP_GP
106 bool "Support db-mv784mp-gp"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900107 select CPU_V7
Stefan Roese25541672015-01-19 11:33:46 +0100108 select SUPPORT_SPL
Stefan Roesedd580802014-10-22 12:13:18 +0200109
Stefan Roesea4884832014-10-22 12:13:19 +0200110config TARGET_MAXBCM
111 bool "Support maxbcm"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900112 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100113 select SUPPORT_SPL
Stefan Roesea4884832014-10-22 12:13:19 +0200114
Masahiro Yamadadd840582014-07-30 14:08:14 +0900115config TARGET_DEVKIT3250
116 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100117 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900118
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200119config TARGET_WORK_92105
120 bool "Support work_92105"
121 select CPU_ARM926EJS
122 select SUPPORT_SPL
123
Masahiro Yamadadd840582014-07-30 14:08:14 +0900124config TARGET_MX25PDK
125 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100126 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900127
128config TARGET_TX25
129 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100130 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900131 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900132
133config TARGET_ZMX25
134 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100135 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900136
137config TARGET_APF27
138 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100139 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900140 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900141
142config TARGET_IMX27LITE
143 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100144 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900145
146config TARGET_MAGNESIUM
147 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100148 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900149
150config TARGET_APX4DEVKIT
151 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100152 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900153 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900154
155config TARGET_XFI3
156 bool "Support xfi3"
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_M28EVK
161 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100162 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900163 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900164
165config TARGET_MX23EVK
166 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100167 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900168 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900169
170config TARGET_MX28EVK
171 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100172 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900173 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900174
175config TARGET_MX23_OLINUXINO
176 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100177 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900178 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900179
180config TARGET_BG0900
181 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100182 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900183 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900184
185config TARGET_SANSA_FUZE_PLUS
186 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100187 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900188 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900189
190config TARGET_SC_SPS_1
191 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100192 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900193 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900194
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900195config ARCH_NOMADIK
196 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900198
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900199config ORION5X
200 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100201 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900202
Masahiro Yamadadd840582014-07-30 14:08:14 +0900203config TARGET_SPEAR300
204 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100205 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900206
207config TARGET_SPEAR310
208 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100209 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900210
211config TARGET_SPEAR320
212 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100213 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900214
215config TARGET_SPEAR600
216 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100217 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900218
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800219config TARGET_STV0991
220 bool "Support stv0991"
221 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900222 select DM
223 select DM_SERIAL
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800224
Masahiro Yamadadd840582014-07-30 14:08:14 +0900225config TARGET_X600
226 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100227 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900228 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900229
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900230config ARCH_VERSATILE
231 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100232 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900233
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234config TARGET_IMX31_PHYCORE
235 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100236 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900237
238config TARGET_QONG
239 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100240 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900241
242config TARGET_MX31ADS
243 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100244 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900245
246config TARGET_MX31PDK
247 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100248 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900249 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900250
251config TARGET_TT01
252 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100253 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900254
255config TARGET_IMX31_LITEKIT
256 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100257 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900258
259config TARGET_WOODBURN
260 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100261 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900262
263config TARGET_WOODBURN_SD
264 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100265 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900266 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900267
268config TARGET_FLEA3
269 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100270 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900271
272config TARGET_MX35PDK
273 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100274 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900275
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900276config ARCH_BCM283X
277 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900278 select DM
279 select DM_SERIAL
280 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700281
Masahiro Yamadadd840582014-07-30 14:08:14 +0900282config TARGET_VEXPRESS_CA15_TC2
283 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100284 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100285 select CPU_V7_HAS_NONSEC
286 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900287
288config TARGET_VEXPRESS_CA5X2
289 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100290 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900291
292config TARGET_VEXPRESS_CA9X4
293 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100294 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900295
296config TARGET_KWB
297 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100298 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900299 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900300
301config TARGET_TSERIES
302 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100303 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900304 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900305
306config TARGET_CM_T335
307 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100308 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900309 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900310 select DM
311 select DM_SERIAL
312 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900313
314config TARGET_PEPPER
315 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100316 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900317 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900318 select DM
319 select DM_SERIAL
320 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900321
322config TARGET_AM335X_IGEP0033
323 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100324 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900325 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900326 select DM
327 select DM_SERIAL
328 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900329
330config TARGET_PCM051
331 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100332 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900333 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900334 select DM
335 select DM_SERIAL
336 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900337
338config TARGET_DRACO
339 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100340 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900341 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342
343config TARGET_DXR2
344 bool "Support dxr2"
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_PXM2
349 bool "Support pxm2"
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_RUT
354 bool "Support rut"
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_PENGWYN
359 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100360 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900361 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900362 select DM
363 select DM_SERIAL
364 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900365
366config TARGET_AM335X_EVM
367 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100368 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900369 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900370 select DM
371 select DM_SERIAL
372 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900373
374config TARGET_AM43XX_EVM
375 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100376 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900377 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900378
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800379config TARGET_BAV335X
380 bool "Support bav335x"
381 select CPU_V7
382 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900383 select DM
384 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800385 help
386 The BAV335x OEM Network Processor integrates all the functions of an
387 embedded network computer in a small, easy to use SODIMM module which
388 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
389 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
390 ethernet with simple connection to external connectors.
391
392 For more information, visit: http://birdland.com/oem
393
Masahiro Yamadadd840582014-07-30 14:08:14 +0900394config TARGET_TI814X_EVM
395 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100396 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900397 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900398
399config TARGET_TI816X_EVM
400 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100401 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900402 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900403
Masahiro Yamadadd840582014-07-30 14:08:14 +0900404config TARGET_BCM28155_AP
405 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100406 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900407
Steve Raeabb16782014-11-11 11:32:18 -0800408config TARGET_BCMCYGNUS
409 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100410 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700411
Steve Raeabb16782014-11-11 11:32:18 -0800412config TARGET_BCMNSP
413 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100414 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700415
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900416config ARCH_EXYNOS
417 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100418 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900419 select DM
420 select DM_SPI_FLASH
421 select DM_SERIAL
422 select DM_SPI
423 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900424
Simon Glass311757b2014-10-07 22:01:50 -0600425config ARCH_S5PC1XX
426 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100427 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900428 select DM
429 select DM_SERIAL
430 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600431
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900432config ARCH_HIGHBANK
433 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100434 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900435
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900436config ARCH_INTEGRATOR
437 bool "ARM Ltd. Integrator family"
438
Masahiro Yamadac338f092014-08-31 07:11:05 +0900439config ARCH_KEYSTONE
440 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100441 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900442 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900443
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100444config ARCH_MX6
445 bool "Freescale MX6"
446 select CPU_V7
447
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200448config ARCH_MX5
449 bool "Freescale MX5"
450 select CPU_V7
451
Masahiro Yamadadd840582014-07-30 14:08:14 +0900452config TARGET_M53EVK
453 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100454 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900455 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900456
457config TARGET_IMA3_MX53
458 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900460
461config TARGET_MX51EVK
462 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100463 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900464
465config TARGET_MX53ARD
466 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100467 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900468
469config TARGET_MX53EVK
470 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100471 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900472
473config TARGET_MX53LOCO
474 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100475 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900476
477config TARGET_MX53SMD
478 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100479 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900480
481config TARGET_MX51_EFIKAMX
482 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100483 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900484
485config TARGET_VISION2
486 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100487 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900488
489config TARGET_UDOO
490 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100491 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900492
493config TARGET_WANDBOARD
494 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100495 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900496
Otavio Salvador4579dc32015-02-17 10:42:46 -0200497config TARGET_WARP
498 bool "Support WaRP"
499 select CPU_V7
500
Masahiro Yamadadd840582014-07-30 14:08:14 +0900501config TARGET_TITANIUM
502 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100503 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900504
505config TARGET_NITROGEN6X
506 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100507 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900508
509config TARGET_CGTQMX6EVAL
510 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100511 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900512
513config TARGET_EMBESTMX6BOARDS
514 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100515 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900516
Stefano Babic7e929172014-08-11 10:18:41 +0200517config TARGET_ARISTAINETOS
518 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100519 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200520
Masahiro Yamadadd840582014-07-30 14:08:14 +0900521config TARGET_MX6QARM2
522 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100523 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900524
525config TARGET_MX6QSABREAUTO
526 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100527 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900528 select DM
529 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900530
531config TARGET_MX6SABRESD
532 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100533 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800534 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900535 select DM
536 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900537
538config TARGET_MX6SLEVK
539 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100540 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900541
Fabio Estevam080d72f2014-08-14 21:00:28 -0300542config TARGET_MX6SXSABRESD
543 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100544 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800545 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900546 select DM
547 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300548
Masahiro Yamadadd840582014-07-30 14:08:14 +0900549config TARGET_GW_VENTANA
550 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100551 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900552 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900553
554config TARGET_HUMMINGBOARD
555 bool "Support hummingboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100556 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900557
Marek Vasutf91c09a2014-10-24 23:39:07 +0200558config TARGET_KOSAGI_NOVENA
559 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900560 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100561 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200562
Soeren Moch05d492a2014-11-03 13:57:01 +0100563config TARGET_TBS2910
564 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100565 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100566
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900567config TARGET_TQMA6
568 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100569 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900570
Christian Gmeiner39d09732014-10-02 13:33:46 +0200571config TARGET_OT1200
572 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100573 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100574 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200575
Stefan Roese5d6050f2014-12-10 10:15:23 +0100576config TARGET_PLATINUM_PICON
577 bool "Support platinum-picon"
578 select CPU_V7
579 select SUPPORT_SPL
580
581config TARGET_PLATINUM_TITANIUM
582 bool "Support platinum-titanium"
583 select CPU_V7
584 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900585
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900586config OMAP34XX
587 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100588 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900589
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900590config OMAP44XX
591 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100592 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900593 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900594
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900595config OMAP54XX
596 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100597 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900598 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900599
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900600config RMOBILE
601 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100602 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900603
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300604config TARGET_CM_FX6
605 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100606 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900607 select SUPPORT_SPL
Masahiro Yamadae621bae2015-03-31 12:48:02 +0900608 select DM
609 select DM_SERIAL
610 select DM_GPIO
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300611
Marek Vasutc115a0d2014-12-30 18:16:08 +0100612config TARGET_SOCFPGA_ARRIA5
613 bool "Support socfpga_arria5"
614 select CPU_V7
615 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900616 select DM
617 select DM_SPI_FLASH
618 select DM_SPI
Marek Vasutc115a0d2014-12-30 18:16:08 +0100619
Masahiro Yamadadd840582014-07-30 14:08:14 +0900620config TARGET_SOCFPGA_CYCLONE5
621 bool "Support socfpga_cyclone5"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100622 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900623 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900624 select DM
625 select DM_SPI_FLASH
626 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900627
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100628config ARCH_SUNXI
629 bool "Support sunxi (Allwinner) SoCs"
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800630
Masahiro Yamadadd840582014-07-30 14:08:14 +0900631config TARGET_SNOWBALL
632 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100633 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900634
635config TARGET_U8500_HREF
636 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100637 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900638
639config TARGET_VF610TWR
640 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100641 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900642
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530643config TARGET_COLIBRI_VF
644 bool "Support Colibri VF50/61"
645 select CPU_V7
646
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900647config ZYNQ
648 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100649 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900650 select SUPPORT_SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900651 select DM
Masahiro Yamadadd840582014-07-30 14:08:14 +0900652
Michal Simek84c72042015-01-15 10:01:51 +0100653config TARGET_XILINX_ZYNQMP
654 bool "Support Xilinx ZynqMP Platform"
655 select ARM64
656
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900657config TEGRA
658 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900659 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900660 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900661 select OF_CONTROL
662 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900663 select DM
664 select DM_SPI_FLASH
665 select DM_SERIAL
666 select DM_I2C
667 select DM_SPI
668 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900669
Linus Walleijf91afc42015-01-23 11:50:53 +0100670config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900671 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900672 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900673
Linus Walleijf91afc42015-01-23 11:50:53 +0100674config TARGET_VEXPRESS64_BASE_FVP
675 bool "Support Versatile Express ARMv8a FVP BASE model"
676 select ARM64
677 select SEMIHOSTING
678
Linus Walleijffc10372015-01-23 14:41:10 +0100679config TARGET_VEXPRESS64_JUNO
680 bool "Support Versatile Express Juno Development Platform"
681 select ARM64
682
Masahiro Yamadadd840582014-07-30 14:08:14 +0900683config TARGET_LS2085A_EMU
684 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900685 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100686 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900687
688config TARGET_LS2085A_SIMU
689 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900690 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100691 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900692
Wang Huan550e3dc2014-09-05 13:52:44 +0800693config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800694 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100695 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800696 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800697
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800698config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800699 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100700 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800701 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800702
Masahiro Yamadadd840582014-07-30 14:08:14 +0900703config TARGET_BALLOON3
704 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100705 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900706
707config TARGET_H2200
708 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100709 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900710
711config TARGET_PALMLD
712 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100713 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900714
715config TARGET_PALMTC
716 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100717 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900718
719config TARGET_PALMTREO680
720 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100721 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900722 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900723
724config TARGET_PXA255_IDP
725 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100726 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900727
728config TARGET_TRIZEPSIV
729 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100730 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900731
732config TARGET_VPAC270
733 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100734 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900735 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900736
737config TARGET_XAENIAX
738 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100739 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900740
741config TARGET_ZIPITZ2
742 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100743 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900744
745config TARGET_LP8X4X
746 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100747 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900748
749config TARGET_COLIBRI_PXA270
750 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100751 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900752
753config TARGET_JORNADA
754 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100755 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900756
Masahiro Yamada66cba042014-10-03 19:21:07 +0900757config ARCH_UNIPHIER
758 bool "Panasonic UniPhier platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100759 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900760 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900761 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900762 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900763 select DM
764 select DM_SERIAL
765 select DM_I2C
Masahiro Yamada66cba042014-10-03 19:21:07 +0900766
rev13@wp.pled09a552015-03-01 12:44:42 +0100767config TARGET_STM32F429_DISCOVERY
768 bool "Support STM32F429 Discovery"
769 select CPU_V7M
770
Masahiro Yamadadd840582014-07-30 14:08:14 +0900771endchoice
772
Masahiro Yamada4614b892015-02-20 17:04:01 +0900773source "arch/arm/mach-at91/Kconfig"
774
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900775source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900776
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900777source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700778
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900779source "arch/arm/cpu/armv7/exynos/Kconfig"
780
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900781source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900782
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900783source "arch/arm/mach-integrator/Kconfig"
784
Masahiro Yamada39a72342015-02-20 17:04:11 +0900785source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900786
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900787source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900788
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100789source "arch/arm/cpu/armv7/mx6/Kconfig"
790
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200791source "arch/arm/cpu/armv7/mx5/Kconfig"
792
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900793source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900794
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900795source "arch/arm/cpu/armv7/omap3/Kconfig"
796
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900797source "arch/arm/cpu/armv7/omap4/Kconfig"
798
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900799source "arch/arm/cpu/armv7/omap5/Kconfig"
800
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900801source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900802
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900803source "arch/arm/cpu/armv7/rmobile/Kconfig"
804
Simon Glass311757b2014-10-07 22:01:50 -0600805source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
806
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900807source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900808
Masahiro Yamada4c425572015-02-27 02:26:42 +0900809source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900810
Masahiro Yamada63637a42015-02-20 17:04:10 +0900811source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900812
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900813source "arch/arm/cpu/armv7/zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900814
Hans de Goedeea624e12014-11-14 09:34:30 +0100815source "arch/arm/cpu/armv7/Kconfig"
816
Linus Walleij23b58772015-03-09 10:53:21 +0100817source "arch/arm/cpu/armv8/Kconfig"
818
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100819source "arch/arm/imx-common/Kconfig"
820
Stefano Babic7e929172014-08-11 10:18:41 +0200821source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900822source "board/BuR/kwb/Kconfig"
823source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900824source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900825source "board/Marvell/aspenite/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200826source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900827source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900828source "board/altera/socfpga/Kconfig"
829source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/armltd/vexpress/Kconfig"
831source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200832source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900833source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100834source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900835source "board/barco/titanium/Kconfig"
836source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900837source "board/boundary/nitrogen6x/Kconfig"
838source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800839source "board/broadcom/bcmcygnus/Kconfig"
840source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900842source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300843source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900844source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900845source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900846source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900847source "board/denx/m28evk/Kconfig"
848source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900849source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900850source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900851source "board/freescale/ls2085a/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800852source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800853source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900854source "board/freescale/mx23evk/Kconfig"
855source "board/freescale/mx25pdk/Kconfig"
856source "board/freescale/mx28evk/Kconfig"
857source "board/freescale/mx31ads/Kconfig"
858source "board/freescale/mx31pdk/Kconfig"
859source "board/freescale/mx35pdk/Kconfig"
860source "board/freescale/mx51evk/Kconfig"
861source "board/freescale/mx53ard/Kconfig"
862source "board/freescale/mx53evk/Kconfig"
863source "board/freescale/mx53loco/Kconfig"
864source "board/freescale/mx53smd/Kconfig"
865source "board/freescale/mx6qarm2/Kconfig"
866source "board/freescale/mx6qsabreauto/Kconfig"
867source "board/freescale/mx6sabresd/Kconfig"
868source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300869source "board/freescale/mx6sxsabresd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900870source "board/freescale/vf610twr/Kconfig"
871source "board/gateworks/gw_ventana/Kconfig"
872source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900873source "board/gumstix/pepper/Kconfig"
874source "board/h2200/Kconfig"
875source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900876source "board/icpdas/lp8x4x/Kconfig"
877source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900878source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900880source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200881source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900882source "board/logicpd/imx27lite/Kconfig"
883source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200884source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900885source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900886source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900887source "board/palmld/Kconfig"
888source "board/palmtc/Kconfig"
889source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900890source "board/phytec/pcm051/Kconfig"
891source "board/ppcag/bg0900/Kconfig"
892source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900893source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900894source "board/sandisk/sansa_fuze_plus/Kconfig"
895source "board/scb9328/Kconfig"
896source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900897source "board/siemens/draco/Kconfig"
898source "board/siemens/pxm2/Kconfig"
899source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900900source "board/silica/pengwyn/Kconfig"
901source "board/solidrun/hummingboard/Kconfig"
902source "board/spear/spear300/Kconfig"
903source "board/spear/spear310/Kconfig"
904source "board/spear/spear320/Kconfig"
905source "board/spear/spear600/Kconfig"
906source "board/spear/x600/Kconfig"
907source "board/st-ericsson/snowball/Kconfig"
908source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100909source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800910source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900911source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900912source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100913source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900914source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900915source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800916source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900917source "board/ti/ti814x/Kconfig"
918source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900919source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900920source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530921source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900922source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900923source "board/trizepsiv/Kconfig"
924source "board/ttcontrol/vision2/Kconfig"
925source "board/udoo/Kconfig"
926source "board/vpac270/Kconfig"
927source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200928source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900929source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200930source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900931source "board/xaeniax/Kconfig"
Michal Simek84c72042015-01-15 10:01:51 +0100932source "board/xilinx/zynqmp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/zipitz2/Kconfig"
934
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900935source "arch/arm/Kconfig.debug"
936
Masahiro Yamadadd840582014-07-30 14:08:14 +0900937endmenu