blob: b62842f3dc816f54a40bcd5d9ecd38c3e941ea0e [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"
Joe Hershbergera26cd042015-05-12 14:46:23 -050067 optional
Masahiro Yamadadd840582014-07-30 14:08:14 +090068
Masahiro Yamada4614b892015-02-20 17:04:01 +090069config ARCH_AT91
70 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090071
72config TARGET_EDB93XX
73 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010074 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090075
76config TARGET_SCB9328
77 bool "Support scb9328"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010078 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090079
Masahiro Yamadadd840582014-07-30 14:08:14 +090080config TARGET_VCMA9
81 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010082 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090083
84config TARGET_SMDK2410
85 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010086 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090087
Masahiro Yamadadd840582014-07-30 14:08:14 +090088config TARGET_ASPENITE
89 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010090 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090091
92config TARGET_GPLUGD
93 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010094 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090095
Masahiro Yamada3491ba62014-08-31 07:11:01 +090096config ARCH_DAVINCI
97 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010098 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +090099 help
100 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900101
Masahiro Yamada47539e22014-08-31 07:10:59 +0900102config KIRKWOOD
103 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100104 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900105
Stefan Roese2bae75a2015-04-25 06:29:56 +0200106config TARGET_DB_88F6820_GP
107 bool "Support DB-88F6820-GP"
108 select CPU_V7
109 select SUPPORT_SPL
110
Stefan Roesedd580802014-10-22 12:13:18 +0200111config TARGET_DB_MV784MP_GP
112 bool "Support db-mv784mp-gp"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900113 select CPU_V7
Stefan Roese25541672015-01-19 11:33:46 +0100114 select SUPPORT_SPL
Stefan Roesedd580802014-10-22 12:13:18 +0200115
Stefan Roesea4884832014-10-22 12:13:19 +0200116config TARGET_MAXBCM
117 bool "Support maxbcm"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900118 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100119 select SUPPORT_SPL
Stefan Roesea4884832014-10-22 12:13:19 +0200120
Masahiro Yamadadd840582014-07-30 14:08:14 +0900121config TARGET_DEVKIT3250
122 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100123 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900124
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200125config TARGET_WORK_92105
126 bool "Support work_92105"
127 select CPU_ARM926EJS
128 select SUPPORT_SPL
129
Masahiro Yamadadd840582014-07-30 14:08:14 +0900130config TARGET_MX25PDK
131 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100132 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900133
134config TARGET_TX25
135 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100136 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900137 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900138
139config TARGET_ZMX25
140 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100141 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900142
143config TARGET_APF27
144 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100145 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900146 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900147
148config TARGET_IMX27LITE
149 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100150 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900151
152config TARGET_MAGNESIUM
153 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100154 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900155
156config TARGET_APX4DEVKIT
157 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100158 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900159 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900160
161config TARGET_XFI3
162 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100163 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900164 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900165
166config TARGET_M28EVK
167 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100168 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900169 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900170
171config TARGET_MX23EVK
172 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100173 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900174 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900175
176config TARGET_MX28EVK
177 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100178 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900179 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900180
181config TARGET_MX23_OLINUXINO
182 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100183 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900184 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900185
186config TARGET_BG0900
187 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100188 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900189 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900190
191config TARGET_SANSA_FUZE_PLUS
192 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900194 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900195
196config TARGET_SC_SPS_1
197 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900199 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900201config ARCH_NOMADIK
202 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900205config ORION5X
206 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900208
Masahiro Yamadadd840582014-07-30 14:08:14 +0900209config TARGET_SPEAR300
210 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900212
213config TARGET_SPEAR310
214 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900216
217config TARGET_SPEAR320
218 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100219 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900220
221config TARGET_SPEAR600
222 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100223 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900224
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800225config TARGET_STV0991
226 bool "Support stv0991"
227 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900228 select DM
229 select DM_SERIAL
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800230
Masahiro Yamadadd840582014-07-30 14:08:14 +0900231config TARGET_X600
232 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100233 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900234 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900235
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900236config ARCH_VERSATILE
237 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100238 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900239
Masahiro Yamadadd840582014-07-30 14:08:14 +0900240config TARGET_IMX31_PHYCORE
241 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100242 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243
244config TARGET_QONG
245 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100246 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
248config TARGET_MX31ADS
249 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100250 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900251
252config TARGET_MX31PDK
253 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100254 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900255 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900256
257config TARGET_TT01
258 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100259 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
261config TARGET_IMX31_LITEKIT
262 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100263 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900264
265config TARGET_WOODBURN
266 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100267 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900268
269config TARGET_WOODBURN_SD
270 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100271 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900272 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900273
274config TARGET_FLEA3
275 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100276 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900277
278config TARGET_MX35PDK
279 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100280 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900281
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900282config ARCH_BCM283X
283 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900284 select DM
285 select DM_SERIAL
286 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700287
Masahiro Yamadadd840582014-07-30 14:08:14 +0900288config TARGET_VEXPRESS_CA15_TC2
289 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100290 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100291 select CPU_V7_HAS_NONSEC
292 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900293
294config TARGET_VEXPRESS_CA5X2
295 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100296 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900297
298config TARGET_VEXPRESS_CA9X4
299 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100300 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900301
302config TARGET_KWB
303 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100304 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900305 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900306
307config TARGET_TSERIES
308 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100309 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900310 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900311
312config TARGET_CM_T335
313 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100314 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900315 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900316 select DM
317 select DM_SERIAL
318 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900319
320config TARGET_PEPPER
321 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100322 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900323 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900324 select DM
325 select DM_SERIAL
326 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900327
328config TARGET_AM335X_IGEP0033
329 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100330 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900331 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900332 select DM
333 select DM_SERIAL
334 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900335
336config TARGET_PCM051
337 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100338 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900339 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900340 select DM
341 select DM_SERIAL
342 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900343
344config TARGET_DRACO
345 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100346 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900347 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900348
349config TARGET_DXR2
350 bool "Support dxr2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100351 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900352 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900353
354config TARGET_PXM2
355 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100356 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900357 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900358
359config TARGET_RUT
360 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100361 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900362 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900363
364config TARGET_PENGWYN
365 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900367 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900368 select DM
369 select DM_SERIAL
370 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900371
372config TARGET_AM335X_EVM
373 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100374 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900375 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900376 select DM
377 select DM_SERIAL
378 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900379
380config TARGET_AM43XX_EVM
381 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100382 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900383 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900384
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800385config TARGET_BAV335X
386 bool "Support bav335x"
387 select CPU_V7
388 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900389 select DM
390 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800391 help
392 The BAV335x OEM Network Processor integrates all the functions of an
393 embedded network computer in a small, easy to use SODIMM module which
394 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
395 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
396 ethernet with simple connection to external connectors.
397
398 For more information, visit: http://birdland.com/oem
399
Masahiro Yamadadd840582014-07-30 14:08:14 +0900400config TARGET_TI814X_EVM
401 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100402 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900403 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900404
405config TARGET_TI816X_EVM
406 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100407 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900408 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900409
Masahiro Yamadadd840582014-07-30 14:08:14 +0900410config TARGET_BCM28155_AP
411 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100412 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900413
Steve Raeabb16782014-11-11 11:32:18 -0800414config TARGET_BCMCYGNUS
415 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100416 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700417
Steve Raeabb16782014-11-11 11:32:18 -0800418config TARGET_BCMNSP
419 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100420 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700421
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900422config ARCH_EXYNOS
423 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100424 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900425 select DM
426 select DM_SPI_FLASH
427 select DM_SERIAL
428 select DM_SPI
429 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900430
Simon Glass311757b2014-10-07 22:01:50 -0600431config ARCH_S5PC1XX
432 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100433 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900434 select DM
435 select DM_SERIAL
436 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600437
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900438config ARCH_HIGHBANK
439 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100440 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900441
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900442config ARCH_INTEGRATOR
443 bool "ARM Ltd. Integrator family"
444
Masahiro Yamadac338f092014-08-31 07:11:05 +0900445config ARCH_KEYSTONE
446 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100447 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900448 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900449
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100450config ARCH_MX6
451 bool "Freescale MX6"
452 select CPU_V7
453
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200454config ARCH_MX5
455 bool "Freescale MX5"
456 select CPU_V7
457
Masahiro Yamadadd840582014-07-30 14:08:14 +0900458config TARGET_M53EVK
459 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100460 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900461 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900462
463config TARGET_IMA3_MX53
464 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100465 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900466
467config TARGET_MX51EVK
468 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100469 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900470
471config TARGET_MX53ARD
472 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100473 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900474
475config TARGET_MX53EVK
476 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100477 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900478
479config TARGET_MX53LOCO
480 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100481 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900482
483config TARGET_MX53SMD
484 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100485 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900486
487config TARGET_MX51_EFIKAMX
488 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100489 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900490
491config TARGET_VISION2
492 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100493 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900494
495config TARGET_UDOO
496 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100497 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498
499config TARGET_WANDBOARD
500 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100501 select CPU_V7
Fabio Estevam0d1ea052015-05-11 20:50:22 -0300502 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900503
Otavio Salvador4579dc32015-02-17 10:42:46 -0200504config TARGET_WARP
505 bool "Support WaRP"
506 select CPU_V7
507
Masahiro Yamadadd840582014-07-30 14:08:14 +0900508config TARGET_TITANIUM
509 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100510 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900511
512config TARGET_NITROGEN6X
513 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100514 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900515
516config TARGET_CGTQMX6EVAL
517 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100518 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900519
520config TARGET_EMBESTMX6BOARDS
521 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100522 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900523
Stefano Babic7e929172014-08-11 10:18:41 +0200524config TARGET_ARISTAINETOS
525 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100526 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200527
Heiko Schocher7254d922015-05-18 13:32:31 +0200528config TARGET_ARISTAINETOS2
529 bool "Support aristainetos2"
530 select CPU_V7
531
Masahiro Yamadadd840582014-07-30 14:08:14 +0900532config TARGET_MX6QARM2
533 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100534 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900535
536config TARGET_MX6QSABREAUTO
537 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100538 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900539 select DM
540 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900541
542config TARGET_MX6SABRESD
543 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100544 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800545 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900546 select DM
547 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900548
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300549config TARGET_MX6CUBOXI
550 bool "Support Solid-run mx6 boards"
551 select CPU_V7
552 select SUPPORT_SPL
553
Masahiro Yamadadd840582014-07-30 14:08:14 +0900554config TARGET_MX6SLEVK
555 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100556 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900557
Fabio Estevam080d72f2014-08-14 21:00:28 -0300558config TARGET_MX6SXSABRESD
559 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100560 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800561 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900562 select DM
563 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300564
Masahiro Yamadadd840582014-07-30 14:08:14 +0900565config TARGET_GW_VENTANA
566 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100567 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900568 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900569
Marek Vasutf91c09a2014-10-24 23:39:07 +0200570config TARGET_KOSAGI_NOVENA
571 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900572 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100573 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200574
Soeren Moch05d492a2014-11-03 13:57:01 +0100575config TARGET_TBS2910
576 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100577 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100578
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900579config TARGET_TQMA6
580 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100581 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900582
Christian Gmeiner39d09732014-10-02 13:33:46 +0200583config TARGET_OT1200
584 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100585 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100586 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200587
Stefan Roese5d6050f2014-12-10 10:15:23 +0100588config TARGET_PLATINUM_PICON
589 bool "Support platinum-picon"
590 select CPU_V7
591 select SUPPORT_SPL
592
593config TARGET_PLATINUM_TITANIUM
594 bool "Support platinum-titanium"
595 select CPU_V7
596 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900597
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900598config OMAP34XX
599 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100600 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900601
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900602config OMAP44XX
603 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100604 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900605 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900606
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900607config OMAP54XX
608 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100609 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900610 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900611
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900612config RMOBILE
613 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100614 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900615
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300616config TARGET_CM_FX6
617 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100618 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900619 select SUPPORT_SPL
Masahiro Yamadae621bae2015-03-31 12:48:02 +0900620 select DM
621 select DM_SERIAL
622 select DM_GPIO
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300623
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900624config ARCH_SOCFPGA
625 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100626 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900627 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900628 select DM
629 select DM_SPI_FLASH
630 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900631
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100632config ARCH_SUNXI
633 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200634 select DM
635 select DM_GPIO
636 select OF_CONTROL
637 select OF_SEPARATE
638 select SPL_DISABLE_OF_CONTROL
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800639
Masahiro Yamadadd840582014-07-30 14:08:14 +0900640config TARGET_SNOWBALL
641 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100642 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900643
644config TARGET_U8500_HREF
645 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100646 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900647
648config TARGET_VF610TWR
649 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100650 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900651
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530652config TARGET_COLIBRI_VF
653 bool "Support Colibri VF50/61"
654 select CPU_V7
655
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900656config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900657 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100658 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900659 select SUPPORT_SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900660 select DM
Masahiro Yamadadd840582014-07-30 14:08:14 +0900661
Michal Simek84c72042015-01-15 10:01:51 +0100662config TARGET_XILINX_ZYNQMP
663 bool "Support Xilinx ZynqMP Platform"
664 select ARM64
665
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900666config TEGRA
667 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900668 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900669 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900670 select OF_CONTROL
671 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900672 select DM
673 select DM_SPI_FLASH
674 select DM_SERIAL
675 select DM_I2C
676 select DM_SPI
677 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900678
Linus Walleijf91afc42015-01-23 11:50:53 +0100679config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900680 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900681 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900682
Linus Walleijf91afc42015-01-23 11:50:53 +0100683config TARGET_VEXPRESS64_BASE_FVP
684 bool "Support Versatile Express ARMv8a FVP BASE model"
685 select ARM64
686 select SEMIHOSTING
687
Linus Walleijffc10372015-01-23 14:41:10 +0100688config TARGET_VEXPRESS64_JUNO
689 bool "Support Versatile Express Juno Development Platform"
690 select ARM64
691
Masahiro Yamadadd840582014-07-30 14:08:14 +0900692config TARGET_LS2085A_EMU
693 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900694 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100695 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900696
697config TARGET_LS2085A_SIMU
698 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900699 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100700 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900701
York Sun7288c2c2015-03-20 19:28:23 -0700702config TARGET_LS2085AQDS
703 bool "Support ls2085aqds"
704 select ARM64
705 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700706 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700707 help
708 Support for Freescale LS2085AQDS platform
709 The LS2085A Development System (QDS) is a high-performance
710 development platform that supports the QorIQ LS2085A
711 Layerscape Architecture processor.
712
York Sune2b65ea2015-03-20 19:28:24 -0700713config TARGET_LS2085ARDB
714 bool "Support ls2085ardb"
715 select ARM64
716 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700717 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700718 help
719 Support for Freescale LS2085ARDB platform.
720 The LS2085A Reference design board (RDB) is a high-performance
721 development platform that supports the QorIQ LS2085A
722 Layerscape Architecture processor.
723
Wang Huan550e3dc2014-09-05 13:52:44 +0800724config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800725 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100726 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800727 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800728
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800729config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800730 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100731 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800732 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800733
Masahiro Yamadadd840582014-07-30 14:08:14 +0900734config TARGET_BALLOON3
735 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100736 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900737
738config TARGET_H2200
739 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100740 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900741
742config TARGET_PALMLD
743 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100744 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900745
746config TARGET_PALMTC
747 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100748 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900749
750config TARGET_PALMTREO680
751 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100752 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900753 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900754
755config TARGET_PXA255_IDP
756 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100757 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900758
759config TARGET_TRIZEPSIV
760 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100761 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900762
763config TARGET_VPAC270
764 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100765 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900766 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900767
768config TARGET_XAENIAX
769 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100770 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900771
772config TARGET_ZIPITZ2
773 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100774 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900775
776config TARGET_LP8X4X
777 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100778 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900779
780config TARGET_COLIBRI_PXA270
781 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100782 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900783
784config TARGET_JORNADA
785 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100786 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900787
Masahiro Yamada66cba042014-10-03 19:21:07 +0900788config ARCH_UNIPHIER
789 bool "Panasonic UniPhier platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100790 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900791 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900792 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900793 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900794 select DM
795 select DM_SERIAL
796 select DM_I2C
Masahiro Yamada66cba042014-10-03 19:21:07 +0900797
rev13@wp.pled09a552015-03-01 12:44:42 +0100798config TARGET_STM32F429_DISCOVERY
799 bool "Support STM32F429 Discovery"
800 select CPU_V7M
801
Masahiro Yamadadd840582014-07-30 14:08:14 +0900802endchoice
803
Masahiro Yamada4614b892015-02-20 17:04:01 +0900804source "arch/arm/mach-at91/Kconfig"
805
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900806source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900807
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900808source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700809
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900810source "arch/arm/cpu/armv7/exynos/Kconfig"
811
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900812source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900813
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900814source "arch/arm/mach-integrator/Kconfig"
815
Masahiro Yamada39a72342015-02-20 17:04:11 +0900816source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900817
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900818source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900819
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100820source "arch/arm/cpu/armv7/mx6/Kconfig"
821
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200822source "arch/arm/cpu/armv7/mx5/Kconfig"
823
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900824source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900825
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900826source "arch/arm/cpu/armv7/omap3/Kconfig"
827
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900828source "arch/arm/cpu/armv7/omap4/Kconfig"
829
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900830source "arch/arm/cpu/armv7/omap5/Kconfig"
831
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900832source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900833
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900834source "arch/arm/cpu/armv7/rmobile/Kconfig"
835
Simon Glass311757b2014-10-07 22:01:50 -0600836source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
837
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900838source "arch/arm/mach-socfpga/Kconfig"
839
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900840source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900841
Masahiro Yamada4c425572015-02-27 02:26:42 +0900842source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900843
Masahiro Yamada63637a42015-02-20 17:04:10 +0900844source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900845
Masahiro Yamada0107f242015-03-16 16:43:22 +0900846source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900847
Hans de Goedeea624e12014-11-14 09:34:30 +0100848source "arch/arm/cpu/armv7/Kconfig"
849
Linus Walleij23b58772015-03-09 10:53:21 +0100850source "arch/arm/cpu/armv8/Kconfig"
851
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100852source "arch/arm/imx-common/Kconfig"
853
Stefano Babic7e929172014-08-11 10:18:41 +0200854source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900855source "board/BuR/kwb/Kconfig"
856source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900858source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200859source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200860source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900861source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900862source "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/spear/spear300/Kconfig"
938source "board/spear/spear310/Kconfig"
939source "board/spear/spear320/Kconfig"
940source "board/spear/spear600/Kconfig"
941source "board/spear/x600/Kconfig"
942source "board/st-ericsson/snowball/Kconfig"
943source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100944source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800945source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900946source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900947source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100948source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900949source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900950source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800951source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900952source "board/ti/ti814x/Kconfig"
953source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900954source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900955source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530956source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900957source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900958source "board/trizepsiv/Kconfig"
959source "board/ttcontrol/vision2/Kconfig"
960source "board/udoo/Kconfig"
961source "board/vpac270/Kconfig"
962source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200963source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900964source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200965source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900966source "board/xaeniax/Kconfig"
Michal Simek84c72042015-01-15 10:01:51 +0100967source "board/xilinx/zynqmp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/zipitz2/Kconfig"
969
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900970source "arch/arm/Kconfig.debug"
971
Masahiro Yamadadd840582014-07-30 14:08:14 +0900972endmenu