blob: 08292353336ebb2a070128178dbe1a99ac90b6cc [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
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200349config TARGET_THUBAN
350 bool "Support thuban"
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
Heiko Schocher578056c2015-06-15 14:56:41 +0200354config TARGET_RASTABAN
355 bool "Support rastaban"
356 select CPU_V7
357 select SUPPORT_SPL
358
Masahiro Yamadadd840582014-07-30 14:08:14 +0900359config TARGET_PXM2
360 bool "Support pxm2"
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_RUT
365 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900367 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900368
369config TARGET_PENGWYN
370 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100371 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900372 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900373 select DM
374 select DM_SERIAL
375 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900376
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200377config TARGET_AM335X_BALTOS
378 bool "Support am335x_baltos"
379 select CPU_V7
380 select SUPPORT_SPL
381 select DM
382 select DM_SERIAL
383 select DM_GPIO
384
Masahiro Yamadadd840582014-07-30 14:08:14 +0900385config TARGET_AM335X_EVM
386 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100387 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900388 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900389 select DM
390 select DM_SERIAL
391 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900392
393config TARGET_AM43XX_EVM
394 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100395 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900396 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900397
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800398config TARGET_BAV335X
399 bool "Support bav335x"
400 select CPU_V7
401 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900402 select DM
403 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800404 help
405 The BAV335x OEM Network Processor integrates all the functions of an
406 embedded network computer in a small, easy to use SODIMM module which
407 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
408 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
409 ethernet with simple connection to external connectors.
410
411 For more information, visit: http://birdland.com/oem
412
Masahiro Yamadadd840582014-07-30 14:08:14 +0900413config TARGET_TI814X_EVM
414 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100415 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900416 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900417
418config TARGET_TI816X_EVM
419 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100420 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900421 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900422
Masahiro Yamadadd840582014-07-30 14:08:14 +0900423config TARGET_BCM28155_AP
424 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900426
Steve Raeabb16782014-11-11 11:32:18 -0800427config TARGET_BCMCYGNUS
428 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100429 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700430
Steve Raeabb16782014-11-11 11:32:18 -0800431config TARGET_BCMNSP
432 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100433 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700434
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900435config ARCH_EXYNOS
436 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100437 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900438 select DM
439 select DM_SPI_FLASH
440 select DM_SERIAL
441 select DM_SPI
442 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900443
Simon Glass311757b2014-10-07 22:01:50 -0600444config ARCH_S5PC1XX
445 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100446 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900447 select DM
448 select DM_SERIAL
449 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600450
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900451config ARCH_HIGHBANK
452 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100453 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900454
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900455config ARCH_INTEGRATOR
456 bool "ARM Ltd. Integrator family"
457
Masahiro Yamadac338f092014-08-31 07:11:05 +0900458config ARCH_KEYSTONE
459 bool "TI Keystone"
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
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100463config ARCH_MX6
464 bool "Freescale MX6"
465 select CPU_V7
466
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200467config ARCH_MX5
468 bool "Freescale MX5"
469 select CPU_V7
470
Masahiro Yamadadd840582014-07-30 14:08:14 +0900471config TARGET_M53EVK
472 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100473 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900474 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900475
476config TARGET_IMA3_MX53
477 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100478 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900479
480config TARGET_MX51EVK
481 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483
484config TARGET_MX53ARD
485 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900487
488config TARGET_MX53EVK
489 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900491
492config TARGET_MX53LOCO
493 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900495
496config TARGET_MX53SMD
497 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100498 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900499
500config TARGET_MX51_EFIKAMX
501 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100502 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900503
504config TARGET_VISION2
505 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100506 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900507
508config TARGET_UDOO
509 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100510 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900511
512config TARGET_WANDBOARD
513 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100514 select CPU_V7
Fabio Estevam0d1ea052015-05-11 20:50:22 -0300515 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900516
Otavio Salvador4579dc32015-02-17 10:42:46 -0200517config TARGET_WARP
518 bool "Support WaRP"
519 select CPU_V7
520
Masahiro Yamadadd840582014-07-30 14:08:14 +0900521config TARGET_TITANIUM
522 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100523 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900524
525config TARGET_NITROGEN6X
526 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100527 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900528
529config TARGET_CGTQMX6EVAL
530 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100531 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900532
533config TARGET_EMBESTMX6BOARDS
534 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100535 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900536
Stefano Babic7e929172014-08-11 10:18:41 +0200537config TARGET_ARISTAINETOS
538 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100539 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200540
Heiko Schocher7254d922015-05-18 13:32:31 +0200541config TARGET_ARISTAINETOS2
542 bool "Support aristainetos2"
543 select CPU_V7
544
Masahiro Yamadadd840582014-07-30 14:08:14 +0900545config TARGET_MX6QARM2
546 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100547 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900548
549config TARGET_MX6QSABREAUTO
550 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100551 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900552 select DM
553 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900554
555config TARGET_MX6SABRESD
556 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100557 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800558 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900559 select DM
560 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900561
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300562config TARGET_MX6CUBOXI
563 bool "Support Solid-run mx6 boards"
564 select CPU_V7
565 select SUPPORT_SPL
566
Masahiro Yamadadd840582014-07-30 14:08:14 +0900567config TARGET_MX6SLEVK
568 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100569 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900570
Fabio Estevam080d72f2014-08-14 21:00:28 -0300571config TARGET_MX6SXSABRESD
572 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100573 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800574 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900575 select DM
576 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300577
Masahiro Yamadadd840582014-07-30 14:08:14 +0900578config TARGET_GW_VENTANA
579 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100580 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900581 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900582
Marek Vasutf91c09a2014-10-24 23:39:07 +0200583config TARGET_KOSAGI_NOVENA
584 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900585 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100586 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200587
Soeren Moch05d492a2014-11-03 13:57:01 +0100588config TARGET_TBS2910
589 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100590 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100591
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900592config TARGET_TQMA6
593 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100594 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900595
Christian Gmeiner39d09732014-10-02 13:33:46 +0200596config TARGET_OT1200
597 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100598 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100599 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200600
Stefan Roese5d6050f2014-12-10 10:15:23 +0100601config TARGET_PLATINUM_PICON
602 bool "Support platinum-picon"
603 select CPU_V7
604 select SUPPORT_SPL
605
606config TARGET_PLATINUM_TITANIUM
607 bool "Support platinum-titanium"
608 select CPU_V7
609 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900610
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900611config OMAP34XX
612 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100613 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900614
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900615config OMAP44XX
616 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100617 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900618 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900619
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900620config OMAP54XX
621 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100622 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900623 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900624
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900625config RMOBILE
626 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100627 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900628
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300629config TARGET_CM_FX6
630 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100631 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900632 select SUPPORT_SPL
Masahiro Yamadae621bae2015-03-31 12:48:02 +0900633 select DM
634 select DM_SERIAL
635 select DM_GPIO
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300636
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900637config ARCH_SOCFPGA
638 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100639 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900640 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900641 select DM
642 select DM_SPI_FLASH
643 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900644
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100645config ARCH_SUNXI
646 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200647 select DM
648 select DM_GPIO
649 select OF_CONTROL
650 select OF_SEPARATE
651 select SPL_DISABLE_OF_CONTROL
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800652
Masahiro Yamadadd840582014-07-30 14:08:14 +0900653config TARGET_SNOWBALL
654 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100655 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900656
657config TARGET_U8500_HREF
658 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100659 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900660
661config TARGET_VF610TWR
662 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100663 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900664
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530665config TARGET_COLIBRI_VF
666 bool "Support Colibri VF50/61"
667 select CPU_V7
668
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900669config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900670 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100671 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900672 select SUPPORT_SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900673 select DM
Masahiro Yamadadd840582014-07-30 14:08:14 +0900674
Michal Simek84c72042015-01-15 10:01:51 +0100675config TARGET_XILINX_ZYNQMP
676 bool "Support Xilinx ZynqMP Platform"
677 select ARM64
678
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900679config TEGRA
680 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900681 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900682 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900683 select OF_CONTROL
Simon Glass47a785a2015-05-12 14:55:04 -0600684 select SPL_DISABLE_OF_CONTROL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900685 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900686 select DM
687 select DM_SPI_FLASH
688 select DM_SERIAL
689 select DM_I2C
690 select DM_SPI
691 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900692
Linus Walleijf91afc42015-01-23 11:50:53 +0100693config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900694 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900695 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900696
Linus Walleijf91afc42015-01-23 11:50:53 +0100697config TARGET_VEXPRESS64_BASE_FVP
698 bool "Support Versatile Express ARMv8a FVP BASE model"
699 select ARM64
700 select SEMIHOSTING
701
Linus Walleijffc10372015-01-23 14:41:10 +0100702config TARGET_VEXPRESS64_JUNO
703 bool "Support Versatile Express Juno Development Platform"
704 select ARM64
705
Masahiro Yamadadd840582014-07-30 14:08:14 +0900706config TARGET_LS2085A_EMU
707 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900708 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100709 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900710
711config TARGET_LS2085A_SIMU
712 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900713 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100714 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900715
York Sun7288c2c2015-03-20 19:28:23 -0700716config TARGET_LS2085AQDS
717 bool "Support ls2085aqds"
718 select ARM64
719 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700720 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700721 help
722 Support for Freescale LS2085AQDS platform
723 The LS2085A Development System (QDS) is a high-performance
724 development platform that supports the QorIQ LS2085A
725 Layerscape Architecture processor.
726
York Sune2b65ea2015-03-20 19:28:24 -0700727config TARGET_LS2085ARDB
728 bool "Support ls2085ardb"
729 select ARM64
730 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700731 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700732 help
733 Support for Freescale LS2085ARDB platform.
734 The LS2085A Reference design board (RDB) is a high-performance
735 development platform that supports the QorIQ LS2085A
736 Layerscape Architecture processor.
737
Wang Huan550e3dc2014-09-05 13:52:44 +0800738config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800739 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100740 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800741 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800742
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800743config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800744 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100745 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800746 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800747
Masahiro Yamadadd840582014-07-30 14:08:14 +0900748config TARGET_BALLOON3
749 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100750 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900751
752config TARGET_H2200
753 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100754 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900755
756config TARGET_PALMLD
757 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100758 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900759
760config TARGET_PALMTC
761 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100762 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900763
764config TARGET_PALMTREO680
765 bool "Support palmtreo680"
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_PXA255_IDP
770 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100771 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900772
773config TARGET_TRIZEPSIV
774 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100775 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900776
777config TARGET_VPAC270
778 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100779 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900780 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900781
782config TARGET_XAENIAX
783 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100784 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900785
786config TARGET_ZIPITZ2
787 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100788 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900789
790config TARGET_LP8X4X
791 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100792 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900793
794config TARGET_COLIBRI_PXA270
795 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100796 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900797
798config TARGET_JORNADA
799 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100800 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900801
Masahiro Yamada66cba042014-10-03 19:21:07 +0900802config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900803 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100804 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900805 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900806 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900807 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900808 select DM
809 select DM_SERIAL
810 select DM_I2C
Simon Glass47a785a2015-05-12 14:55:04 -0600811 select SPL_DISABLE_OF_CONTROL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900812 help
813 Support for UniPhier SoC family developed by Socionext Inc.
814 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900815
rev13@wp.pled09a552015-03-01 12:44:42 +0100816config TARGET_STM32F429_DISCOVERY
817 bool "Support STM32F429 Discovery"
818 select CPU_V7M
819
Masahiro Yamadadd840582014-07-30 14:08:14 +0900820endchoice
821
Masahiro Yamada4614b892015-02-20 17:04:01 +0900822source "arch/arm/mach-at91/Kconfig"
823
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900824source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900825
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900826source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700827
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900828source "arch/arm/cpu/armv7/exynos/Kconfig"
829
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900830source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900831
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900832source "arch/arm/mach-integrator/Kconfig"
833
Masahiro Yamada39a72342015-02-20 17:04:11 +0900834source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900835
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900836source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900837
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100838source "arch/arm/cpu/armv7/mx6/Kconfig"
839
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200840source "arch/arm/cpu/armv7/mx5/Kconfig"
841
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900842source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900843
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900844source "arch/arm/cpu/armv7/omap3/Kconfig"
845
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900846source "arch/arm/cpu/armv7/omap4/Kconfig"
847
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900848source "arch/arm/cpu/armv7/omap5/Kconfig"
849
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900850source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900851
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900852source "arch/arm/cpu/armv7/rmobile/Kconfig"
853
Simon Glass311757b2014-10-07 22:01:50 -0600854source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
855
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900856source "arch/arm/mach-socfpga/Kconfig"
857
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900858source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900859
Masahiro Yamada4c425572015-02-27 02:26:42 +0900860source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900861
Masahiro Yamada63637a42015-02-20 17:04:10 +0900862source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900863
Masahiro Yamada0107f242015-03-16 16:43:22 +0900864source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900865
Hans de Goedeea624e12014-11-14 09:34:30 +0100866source "arch/arm/cpu/armv7/Kconfig"
867
Linus Walleij23b58772015-03-09 10:53:21 +0100868source "arch/arm/cpu/armv8/Kconfig"
869
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100870source "arch/arm/imx-common/Kconfig"
871
Stefano Babic7e929172014-08-11 10:18:41 +0200872source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900873source "board/BuR/kwb/Kconfig"
874source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900875source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900876source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200877source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200878source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900880source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900881source "board/armltd/vexpress/Kconfig"
882source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200883source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900884source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100885source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900886source "board/barco/titanium/Kconfig"
887source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900888source "board/boundary/nitrogen6x/Kconfig"
889source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800890source "board/broadcom/bcmcygnus/Kconfig"
891source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900892source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900893source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300894source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900895source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900896source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900897source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900898source "board/denx/m28evk/Kconfig"
899source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900900source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900901source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900902source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700903source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700904source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800905source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800906source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900907source "board/freescale/mx23evk/Kconfig"
908source "board/freescale/mx25pdk/Kconfig"
909source "board/freescale/mx28evk/Kconfig"
910source "board/freescale/mx31ads/Kconfig"
911source "board/freescale/mx31pdk/Kconfig"
912source "board/freescale/mx35pdk/Kconfig"
913source "board/freescale/mx51evk/Kconfig"
914source "board/freescale/mx53ard/Kconfig"
915source "board/freescale/mx53evk/Kconfig"
916source "board/freescale/mx53loco/Kconfig"
917source "board/freescale/mx53smd/Kconfig"
918source "board/freescale/mx6qarm2/Kconfig"
919source "board/freescale/mx6qsabreauto/Kconfig"
920source "board/freescale/mx6sabresd/Kconfig"
921source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300922source "board/freescale/mx6sxsabresd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900923source "board/freescale/vf610twr/Kconfig"
924source "board/gateworks/gw_ventana/Kconfig"
925source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900926source "board/gumstix/pepper/Kconfig"
927source "board/h2200/Kconfig"
928source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900929source "board/icpdas/lp8x4x/Kconfig"
930source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900931source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900932source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200934source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900935source "board/logicpd/imx27lite/Kconfig"
936source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200937source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900938source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900939source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900940source "board/palmld/Kconfig"
941source "board/palmtc/Kconfig"
942source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900943source "board/phytec/pcm051/Kconfig"
944source "board/ppcag/bg0900/Kconfig"
945source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900946source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900947source "board/sandisk/sansa_fuze_plus/Kconfig"
948source "board/scb9328/Kconfig"
949source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900950source "board/siemens/draco/Kconfig"
951source "board/siemens/pxm2/Kconfig"
952source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900953source "board/silica/pengwyn/Kconfig"
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300954source "board/solidrun/mx6cuboxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900955source "board/spear/spear300/Kconfig"
956source "board/spear/spear310/Kconfig"
957source "board/spear/spear320/Kconfig"
958source "board/spear/spear600/Kconfig"
959source "board/spear/x600/Kconfig"
960source "board/st-ericsson/snowball/Kconfig"
961source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100962source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800963source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900964source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900965source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100966source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900967source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800969source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900970source "board/ti/ti814x/Kconfig"
971source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900972source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900973source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530974source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900975source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900976source "board/trizepsiv/Kconfig"
977source "board/ttcontrol/vision2/Kconfig"
978source "board/udoo/Kconfig"
979source "board/vpac270/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200980source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900981source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200982source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900983source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200984source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900985source "board/xaeniax/Kconfig"
Michal Simek84c72042015-01-15 10:01:51 +0100986source "board/xilinx/zynqmp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900987source "board/zipitz2/Kconfig"
988
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900989source "arch/arm/Kconfig.debug"
990
Masahiro Yamadadd840582014-07-30 14:08:14 +0900991endmenu