blob: 152a0296ccb494e9436b2feb11ece14ecffca25f [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 Roese2bae75a2015-04-25 06:29:56 +0200105config TARGET_DB_88F6820_GP
106 bool "Support DB-88F6820-GP"
107 select CPU_V7
108 select SUPPORT_SPL
109
Stefan Roesedd580802014-10-22 12:13:18 +0200110config TARGET_DB_MV784MP_GP
111 bool "Support db-mv784mp-gp"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900112 select CPU_V7
Stefan Roese25541672015-01-19 11:33:46 +0100113 select SUPPORT_SPL
Stefan Roesedd580802014-10-22 12:13:18 +0200114
Stefan Roesea4884832014-10-22 12:13:19 +0200115config TARGET_MAXBCM
116 bool "Support maxbcm"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900117 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100118 select SUPPORT_SPL
Stefan Roesea4884832014-10-22 12:13:19 +0200119
Masahiro Yamadadd840582014-07-30 14:08:14 +0900120config TARGET_DEVKIT3250
121 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100122 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900123
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200124config TARGET_WORK_92105
125 bool "Support work_92105"
126 select CPU_ARM926EJS
127 select SUPPORT_SPL
128
Masahiro Yamadadd840582014-07-30 14:08:14 +0900129config TARGET_MX25PDK
130 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100131 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900132
133config TARGET_TX25
134 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100135 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900136 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900137
138config TARGET_ZMX25
139 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100140 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900141
142config TARGET_APF27
143 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100144 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900145 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900146
147config TARGET_IMX27LITE
148 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100149 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900150
151config TARGET_MAGNESIUM
152 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100153 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900154
155config TARGET_APX4DEVKIT
156 bool "Support apx4devkit"
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_XFI3
161 bool "Support xfi3"
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_M28EVK
166 bool "Support m28evk"
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_MX23EVK
171 bool "Support mx23evk"
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_MX28EVK
176 bool "Support mx28evk"
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_MX23_OLINUXINO
181 bool "Support mx23_olinuxino"
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_BG0900
186 bool "Support bg0900"
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_SANSA_FUZE_PLUS
191 bool "Support sansa_fuze_plus"
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
195config TARGET_SC_SPS_1
196 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900198 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900199
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900200config ARCH_NOMADIK
201 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100202 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900203
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900204config ORION5X
205 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100206 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900207
Masahiro Yamadadd840582014-07-30 14:08:14 +0900208config TARGET_SPEAR300
209 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100210 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900211
212config TARGET_SPEAR310
213 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100214 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900215
216config TARGET_SPEAR320
217 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100218 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900219
220config TARGET_SPEAR600
221 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100222 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900223
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800224config TARGET_STV0991
225 bool "Support stv0991"
226 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900227 select DM
228 select DM_SERIAL
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800229
Masahiro Yamadadd840582014-07-30 14:08:14 +0900230config TARGET_X600
231 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100232 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900233 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900235config ARCH_VERSATILE
236 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238
Masahiro Yamadadd840582014-07-30 14:08:14 +0900239config TARGET_IMX31_PHYCORE
240 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100241 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900242
243config TARGET_QONG
244 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100245 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900246
247config TARGET_MX31ADS
248 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100249 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900250
251config TARGET_MX31PDK
252 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100253 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900254 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900255
256config TARGET_TT01
257 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100258 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900259
260config TARGET_IMX31_LITEKIT
261 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100262 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900263
264config TARGET_WOODBURN
265 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100266 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900267
268config TARGET_WOODBURN_SD
269 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100270 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900271 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900272
273config TARGET_FLEA3
274 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100275 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900276
277config TARGET_MX35PDK
278 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100279 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900280
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900281config ARCH_BCM283X
282 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900283 select DM
284 select DM_SERIAL
285 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700286
Masahiro Yamadadd840582014-07-30 14:08:14 +0900287config TARGET_VEXPRESS_CA15_TC2
288 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100289 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100290 select CPU_V7_HAS_NONSEC
291 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900292
293config TARGET_VEXPRESS_CA5X2
294 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100295 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900296
297config TARGET_VEXPRESS_CA9X4
298 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100299 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900300
301config TARGET_KWB
302 bool "Support kwb"
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_TSERIES
307 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100308 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900309 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900310
311config TARGET_CM_T335
312 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100313 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900314 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900315 select DM
316 select DM_SERIAL
317 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900318
319config TARGET_PEPPER
320 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100321 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900322 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900323 select DM
324 select DM_SERIAL
325 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900326
327config TARGET_AM335X_IGEP0033
328 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100329 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900330 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900331 select DM
332 select DM_SERIAL
333 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900334
335config TARGET_PCM051
336 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100337 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900338 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900339 select DM
340 select DM_SERIAL
341 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342
343config TARGET_DRACO
344 bool "Support draco"
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_DXR2
349 bool "Support dxr2"
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_PXM2
354 bool "Support pxm2"
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_RUT
359 bool "Support rut"
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_PENGWYN
364 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100365 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900366 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900367 select DM
368 select DM_SERIAL
369 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900370
371config TARGET_AM335X_EVM
372 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100373 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900374 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900375 select DM
376 select DM_SERIAL
377 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900378
379config TARGET_AM43XX_EVM
380 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100381 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900382 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900383
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800384config TARGET_BAV335X
385 bool "Support bav335x"
386 select CPU_V7
387 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900388 select DM
389 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800390 help
391 The BAV335x OEM Network Processor integrates all the functions of an
392 embedded network computer in a small, easy to use SODIMM module which
393 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
394 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
395 ethernet with simple connection to external connectors.
396
397 For more information, visit: http://birdland.com/oem
398
Masahiro Yamadadd840582014-07-30 14:08:14 +0900399config TARGET_TI814X_EVM
400 bool "Support ti814x_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
404config TARGET_TI816X_EVM
405 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100406 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900407 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900408
Masahiro Yamadadd840582014-07-30 14:08:14 +0900409config TARGET_BCM28155_AP
410 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100411 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900412
Steve Raeabb16782014-11-11 11:32:18 -0800413config TARGET_BCMCYGNUS
414 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100415 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700416
Steve Raeabb16782014-11-11 11:32:18 -0800417config TARGET_BCMNSP
418 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100419 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700420
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900421config ARCH_EXYNOS
422 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100423 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900424 select DM
425 select DM_SPI_FLASH
426 select DM_SERIAL
427 select DM_SPI
428 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900429
Simon Glass311757b2014-10-07 22:01:50 -0600430config ARCH_S5PC1XX
431 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900433 select DM
434 select DM_SERIAL
435 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600436
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900437config ARCH_HIGHBANK
438 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100439 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900440
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900441config ARCH_INTEGRATOR
442 bool "ARM Ltd. Integrator family"
443
Masahiro Yamadac338f092014-08-31 07:11:05 +0900444config ARCH_KEYSTONE
445 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100446 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900447 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900448
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100449config ARCH_MX6
450 bool "Freescale MX6"
451 select CPU_V7
452
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200453config ARCH_MX5
454 bool "Freescale MX5"
455 select CPU_V7
456
Masahiro Yamadadd840582014-07-30 14:08:14 +0900457config TARGET_M53EVK
458 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900460 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900461
462config TARGET_IMA3_MX53
463 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100464 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900465
466config TARGET_MX51EVK
467 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100468 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900469
470config TARGET_MX53ARD
471 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100472 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900473
474config TARGET_MX53EVK
475 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100476 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900477
478config TARGET_MX53LOCO
479 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100480 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900481
482config TARGET_MX53SMD
483 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100484 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900485
486config TARGET_MX51_EFIKAMX
487 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100488 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900489
490config TARGET_VISION2
491 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100492 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900493
494config TARGET_UDOO
495 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100496 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900497
498config TARGET_WANDBOARD
499 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100500 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900501
Otavio Salvador4579dc32015-02-17 10:42:46 -0200502config TARGET_WARP
503 bool "Support WaRP"
504 select CPU_V7
505
Masahiro Yamadadd840582014-07-30 14:08:14 +0900506config TARGET_TITANIUM
507 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100508 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900509
510config TARGET_NITROGEN6X
511 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100512 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900513
514config TARGET_CGTQMX6EVAL
515 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100516 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900517
518config TARGET_EMBESTMX6BOARDS
519 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100520 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900521
Stefano Babic7e929172014-08-11 10:18:41 +0200522config TARGET_ARISTAINETOS
523 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100524 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200525
Masahiro Yamadadd840582014-07-30 14:08:14 +0900526config TARGET_MX6QARM2
527 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100528 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900529
530config TARGET_MX6QSABREAUTO
531 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100532 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900533 select DM
534 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900535
536config TARGET_MX6SABRESD
537 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100538 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800539 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900540 select DM
541 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900542
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300543config TARGET_MX6CUBOXI
544 bool "Support Solid-run mx6 boards"
545 select CPU_V7
546 select SUPPORT_SPL
547
Masahiro Yamadadd840582014-07-30 14:08:14 +0900548config TARGET_MX6SLEVK
549 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100550 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900551
Fabio Estevam080d72f2014-08-14 21:00:28 -0300552config TARGET_MX6SXSABRESD
553 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100554 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800555 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900556 select DM
557 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300558
Masahiro Yamadadd840582014-07-30 14:08:14 +0900559config TARGET_GW_VENTANA
560 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100561 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900562 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900563
564config TARGET_HUMMINGBOARD
565 bool "Support hummingboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100566 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900567
Marek Vasutf91c09a2014-10-24 23:39:07 +0200568config TARGET_KOSAGI_NOVENA
569 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900570 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100571 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200572
Soeren Moch05d492a2014-11-03 13:57:01 +0100573config TARGET_TBS2910
574 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100575 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100576
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900577config TARGET_TQMA6
578 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100579 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900580
Christian Gmeiner39d09732014-10-02 13:33:46 +0200581config TARGET_OT1200
582 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100583 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100584 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200585
Stefan Roese5d6050f2014-12-10 10:15:23 +0100586config TARGET_PLATINUM_PICON
587 bool "Support platinum-picon"
588 select CPU_V7
589 select SUPPORT_SPL
590
591config TARGET_PLATINUM_TITANIUM
592 bool "Support platinum-titanium"
593 select CPU_V7
594 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900595
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900596config OMAP34XX
597 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100598 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900599
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900600config OMAP44XX
601 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100602 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900603 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900604
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900605config OMAP54XX
606 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100607 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900608 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900609
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900610config RMOBILE
611 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100612 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900613
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300614config TARGET_CM_FX6
615 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100616 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900617 select SUPPORT_SPL
Masahiro Yamadae621bae2015-03-31 12:48:02 +0900618 select DM
619 select DM_SERIAL
620 select DM_GPIO
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300621
Marek Vasutc115a0d2014-12-30 18:16:08 +0100622config TARGET_SOCFPGA_ARRIA5
623 bool "Support socfpga_arria5"
624 select CPU_V7
625 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900626 select DM
627 select DM_SPI_FLASH
628 select DM_SPI
Marek Vasutc115a0d2014-12-30 18:16:08 +0100629
Masahiro Yamadadd840582014-07-30 14:08:14 +0900630config TARGET_SOCFPGA_CYCLONE5
631 bool "Support socfpga_cyclone5"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100632 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900633 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900634 select DM
635 select DM_SPI_FLASH
636 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900637
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100638config ARCH_SUNXI
639 bool "Support sunxi (Allwinner) SoCs"
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800640
Masahiro Yamadadd840582014-07-30 14:08:14 +0900641config TARGET_SNOWBALL
642 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100643 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900644
645config TARGET_U8500_HREF
646 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100647 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900648
649config TARGET_VF610TWR
650 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100651 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900652
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530653config TARGET_COLIBRI_VF
654 bool "Support Colibri VF50/61"
655 select CPU_V7
656
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900657config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900658 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100659 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900660 select SUPPORT_SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900661 select DM
Masahiro Yamadadd840582014-07-30 14:08:14 +0900662
Michal Simek84c72042015-01-15 10:01:51 +0100663config TARGET_XILINX_ZYNQMP
664 bool "Support Xilinx ZynqMP Platform"
665 select ARM64
666
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900667config TEGRA
668 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900669 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900670 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900671 select OF_CONTROL
672 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900673 select DM
674 select DM_SPI_FLASH
675 select DM_SERIAL
676 select DM_I2C
677 select DM_SPI
678 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900679
Linus Walleijf91afc42015-01-23 11:50:53 +0100680config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900681 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900682 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900683
Linus Walleijf91afc42015-01-23 11:50:53 +0100684config TARGET_VEXPRESS64_BASE_FVP
685 bool "Support Versatile Express ARMv8a FVP BASE model"
686 select ARM64
687 select SEMIHOSTING
688
Linus Walleijffc10372015-01-23 14:41:10 +0100689config TARGET_VEXPRESS64_JUNO
690 bool "Support Versatile Express Juno Development Platform"
691 select ARM64
692
Masahiro Yamadadd840582014-07-30 14:08:14 +0900693config TARGET_LS2085A_EMU
694 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900695 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100696 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900697
698config TARGET_LS2085A_SIMU
699 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900700 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100701 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900702
York Sun7288c2c2015-03-20 19:28:23 -0700703config TARGET_LS2085AQDS
704 bool "Support ls2085aqds"
705 select ARM64
706 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700707 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700708 help
709 Support for Freescale LS2085AQDS platform
710 The LS2085A Development System (QDS) is a high-performance
711 development platform that supports the QorIQ LS2085A
712 Layerscape Architecture processor.
713
York Sune2b65ea2015-03-20 19:28:24 -0700714config TARGET_LS2085ARDB
715 bool "Support ls2085ardb"
716 select ARM64
717 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700718 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700719 help
720 Support for Freescale LS2085ARDB platform.
721 The LS2085A Reference design board (RDB) is a high-performance
722 development platform that supports the QorIQ LS2085A
723 Layerscape Architecture processor.
724
Wang Huan550e3dc2014-09-05 13:52:44 +0800725config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800726 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100727 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800728 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800729
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800730config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800731 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100732 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800733 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800734
Masahiro Yamadadd840582014-07-30 14:08:14 +0900735config TARGET_BALLOON3
736 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100737 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900738
739config TARGET_H2200
740 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100741 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900742
743config TARGET_PALMLD
744 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100745 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900746
747config TARGET_PALMTC
748 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100749 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900750
751config TARGET_PALMTREO680
752 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100753 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900754 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900755
756config TARGET_PXA255_IDP
757 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100758 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900759
760config TARGET_TRIZEPSIV
761 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100762 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900763
764config TARGET_VPAC270
765 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100766 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900767 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900768
769config TARGET_XAENIAX
770 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100771 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900772
773config TARGET_ZIPITZ2
774 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100775 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900776
777config TARGET_LP8X4X
778 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100779 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900780
781config TARGET_COLIBRI_PXA270
782 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100783 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900784
785config TARGET_JORNADA
786 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100787 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900788
Masahiro Yamada66cba042014-10-03 19:21:07 +0900789config ARCH_UNIPHIER
790 bool "Panasonic UniPhier platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100791 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900792 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900793 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900794 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900795 select DM
796 select DM_SERIAL
797 select DM_I2C
Masahiro Yamada66cba042014-10-03 19:21:07 +0900798
rev13@wp.pled09a552015-03-01 12:44:42 +0100799config TARGET_STM32F429_DISCOVERY
800 bool "Support STM32F429 Discovery"
801 select CPU_V7M
802
Masahiro Yamadadd840582014-07-30 14:08:14 +0900803endchoice
804
Masahiro Yamada4614b892015-02-20 17:04:01 +0900805source "arch/arm/mach-at91/Kconfig"
806
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900807source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900808
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900809source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700810
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900811source "arch/arm/cpu/armv7/exynos/Kconfig"
812
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900813source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900814
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900815source "arch/arm/mach-integrator/Kconfig"
816
Masahiro Yamada39a72342015-02-20 17:04:11 +0900817source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900818
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900819source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900820
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100821source "arch/arm/cpu/armv7/mx6/Kconfig"
822
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200823source "arch/arm/cpu/armv7/mx5/Kconfig"
824
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900825source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900826
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900827source "arch/arm/cpu/armv7/omap3/Kconfig"
828
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900829source "arch/arm/cpu/armv7/omap4/Kconfig"
830
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900831source "arch/arm/cpu/armv7/omap5/Kconfig"
832
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900833source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900834
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900835source "arch/arm/cpu/armv7/rmobile/Kconfig"
836
Simon Glass311757b2014-10-07 22:01:50 -0600837source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
838
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900839source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900840
Masahiro Yamada4c425572015-02-27 02:26:42 +0900841source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900842
Masahiro Yamada63637a42015-02-20 17:04:10 +0900843source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900844
Masahiro Yamada0107f242015-03-16 16:43:22 +0900845source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900846
Hans de Goedeea624e12014-11-14 09:34:30 +0100847source "arch/arm/cpu/armv7/Kconfig"
848
Linus Walleij23b58772015-03-09 10:53:21 +0100849source "arch/arm/cpu/armv8/Kconfig"
850
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100851source "arch/arm/imx-common/Kconfig"
852
Stefano Babic7e929172014-08-11 10:18:41 +0200853source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900854source "board/BuR/kwb/Kconfig"
855source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900856source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200858source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200859source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900860source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900861source "board/altera/socfpga/Kconfig"
862source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900863source "board/armltd/vexpress/Kconfig"
864source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200865source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100867source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900868source "board/barco/titanium/Kconfig"
869source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900870source "board/boundary/nitrogen6x/Kconfig"
871source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800872source "board/broadcom/bcmcygnus/Kconfig"
873source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900874source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900875source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300876source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900877source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900878source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900880source "board/denx/m28evk/Kconfig"
881source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900882source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900883source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900884source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700885source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700886source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800887source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800888source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900889source "board/freescale/mx23evk/Kconfig"
890source "board/freescale/mx25pdk/Kconfig"
891source "board/freescale/mx28evk/Kconfig"
892source "board/freescale/mx31ads/Kconfig"
893source "board/freescale/mx31pdk/Kconfig"
894source "board/freescale/mx35pdk/Kconfig"
895source "board/freescale/mx51evk/Kconfig"
896source "board/freescale/mx53ard/Kconfig"
897source "board/freescale/mx53evk/Kconfig"
898source "board/freescale/mx53loco/Kconfig"
899source "board/freescale/mx53smd/Kconfig"
900source "board/freescale/mx6qarm2/Kconfig"
901source "board/freescale/mx6qsabreauto/Kconfig"
902source "board/freescale/mx6sabresd/Kconfig"
903source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300904source "board/freescale/mx6sxsabresd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900905source "board/freescale/vf610twr/Kconfig"
906source "board/gateworks/gw_ventana/Kconfig"
907source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900908source "board/gumstix/pepper/Kconfig"
909source "board/h2200/Kconfig"
910source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900911source "board/icpdas/lp8x4x/Kconfig"
912source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900913source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900914source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900915source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200916source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900917source "board/logicpd/imx27lite/Kconfig"
918source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200919source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900920source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900921source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900922source "board/palmld/Kconfig"
923source "board/palmtc/Kconfig"
924source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900925source "board/phytec/pcm051/Kconfig"
926source "board/ppcag/bg0900/Kconfig"
927source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900928source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900929source "board/sandisk/sansa_fuze_plus/Kconfig"
930source "board/scb9328/Kconfig"
931source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900932source "board/siemens/draco/Kconfig"
933source "board/siemens/pxm2/Kconfig"
934source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900935source "board/silica/pengwyn/Kconfig"
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300936source "board/solidrun/mx6cuboxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900937source "board/solidrun/hummingboard/Kconfig"
938source "board/spear/spear300/Kconfig"
939source "board/spear/spear310/Kconfig"
940source "board/spear/spear320/Kconfig"
941source "board/spear/spear600/Kconfig"
942source "board/spear/x600/Kconfig"
943source "board/st-ericsson/snowball/Kconfig"
944source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100945source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800946source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900947source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900948source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100949source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900950source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900951source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800952source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900953source "board/ti/ti814x/Kconfig"
954source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900955source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900956source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530957source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900958source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900959source "board/trizepsiv/Kconfig"
960source "board/ttcontrol/vision2/Kconfig"
961source "board/udoo/Kconfig"
962source "board/vpac270/Kconfig"
963source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200964source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900965source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200966source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900967source "board/xaeniax/Kconfig"
Michal Simek84c72042015-01-15 10:01:51 +0100968source "board/xilinx/zynqmp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900969source "board/zipitz2/Kconfig"
970
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900971source "arch/arm/Kconfig.debug"
972
Masahiro Yamadadd840582014-07-30 14:08:14 +0900973endmenu