blob: ac86518eb02d6ae33614956631da8474a3b66cc3 [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
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200372config TARGET_AM335X_BALTOS
373 bool "Support am335x_baltos"
374 select CPU_V7
375 select SUPPORT_SPL
376 select DM
377 select DM_SERIAL
378 select DM_GPIO
379
Masahiro Yamadadd840582014-07-30 14:08:14 +0900380config TARGET_AM335X_EVM
381 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100382 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900383 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900384 select DM
385 select DM_SERIAL
386 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900387
388config TARGET_AM43XX_EVM
389 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100390 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900391 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900392
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800393config TARGET_BAV335X
394 bool "Support bav335x"
395 select CPU_V7
396 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900397 select DM
398 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800399 help
400 The BAV335x OEM Network Processor integrates all the functions of an
401 embedded network computer in a small, easy to use SODIMM module which
402 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
403 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
404 ethernet with simple connection to external connectors.
405
406 For more information, visit: http://birdland.com/oem
407
Masahiro Yamadadd840582014-07-30 14:08:14 +0900408config TARGET_TI814X_EVM
409 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100410 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900411 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900412
413config TARGET_TI816X_EVM
414 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100415 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900416 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900417
Masahiro Yamadadd840582014-07-30 14:08:14 +0900418config TARGET_BCM28155_AP
419 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100420 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900421
Steve Raeabb16782014-11-11 11:32:18 -0800422config TARGET_BCMCYGNUS
423 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100424 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700425
Steve Raeabb16782014-11-11 11:32:18 -0800426config TARGET_BCMNSP
427 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100428 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700429
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900430config ARCH_EXYNOS
431 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900433 select DM
434 select DM_SPI_FLASH
435 select DM_SERIAL
436 select DM_SPI
437 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900438
Simon Glass311757b2014-10-07 22:01:50 -0600439config ARCH_S5PC1XX
440 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100441 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900442 select DM
443 select DM_SERIAL
444 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600445
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900446config ARCH_HIGHBANK
447 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100448 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900449
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900450config ARCH_INTEGRATOR
451 bool "ARM Ltd. Integrator family"
452
Masahiro Yamadac338f092014-08-31 07:11:05 +0900453config ARCH_KEYSTONE
454 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100455 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900456 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900457
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100458config ARCH_MX6
459 bool "Freescale MX6"
460 select CPU_V7
461
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200462config ARCH_MX5
463 bool "Freescale MX5"
464 select CPU_V7
465
Masahiro Yamadadd840582014-07-30 14:08:14 +0900466config TARGET_M53EVK
467 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100468 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900469 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900470
471config TARGET_IMA3_MX53
472 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100473 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900474
475config TARGET_MX51EVK
476 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100477 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900478
479config TARGET_MX53ARD
480 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100481 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900482
483config TARGET_MX53EVK
484 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100485 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900486
487config TARGET_MX53LOCO
488 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100489 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900490
491config TARGET_MX53SMD
492 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100493 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900494
495config TARGET_MX51_EFIKAMX
496 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100497 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498
499config TARGET_VISION2
500 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100501 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900502
503config TARGET_UDOO
504 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100505 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900506
507config TARGET_WANDBOARD
508 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100509 select CPU_V7
Fabio Estevam0d1ea052015-05-11 20:50:22 -0300510 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900511
Otavio Salvador4579dc32015-02-17 10:42:46 -0200512config TARGET_WARP
513 bool "Support WaRP"
514 select CPU_V7
515
Masahiro Yamadadd840582014-07-30 14:08:14 +0900516config TARGET_TITANIUM
517 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100518 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900519
520config TARGET_NITROGEN6X
521 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100522 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900523
524config TARGET_CGTQMX6EVAL
525 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100526 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900527
528config TARGET_EMBESTMX6BOARDS
529 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100530 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900531
Stefano Babic7e929172014-08-11 10:18:41 +0200532config TARGET_ARISTAINETOS
533 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100534 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200535
Heiko Schocher7254d922015-05-18 13:32:31 +0200536config TARGET_ARISTAINETOS2
537 bool "Support aristainetos2"
538 select CPU_V7
539
Masahiro Yamadadd840582014-07-30 14:08:14 +0900540config TARGET_MX6QARM2
541 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100542 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900543
544config TARGET_MX6QSABREAUTO
545 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100546 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900547 select DM
548 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900549
550config TARGET_MX6SABRESD
551 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100552 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800553 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900554 select DM
555 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900556
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300557config TARGET_MX6CUBOXI
558 bool "Support Solid-run mx6 boards"
559 select CPU_V7
560 select SUPPORT_SPL
561
Masahiro Yamadadd840582014-07-30 14:08:14 +0900562config TARGET_MX6SLEVK
563 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100564 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900565
Fabio Estevam080d72f2014-08-14 21:00:28 -0300566config TARGET_MX6SXSABRESD
567 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100568 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800569 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900570 select DM
571 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300572
Masahiro Yamadadd840582014-07-30 14:08:14 +0900573config TARGET_GW_VENTANA
574 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100575 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900576 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900577
Marek Vasutf91c09a2014-10-24 23:39:07 +0200578config TARGET_KOSAGI_NOVENA
579 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900580 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100581 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200582
Soeren Moch05d492a2014-11-03 13:57:01 +0100583config TARGET_TBS2910
584 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100585 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100586
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900587config TARGET_TQMA6
588 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100589 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900590
Christian Gmeiner39d09732014-10-02 13:33:46 +0200591config TARGET_OT1200
592 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100593 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100594 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200595
Stefan Roese5d6050f2014-12-10 10:15:23 +0100596config TARGET_PLATINUM_PICON
597 bool "Support platinum-picon"
598 select CPU_V7
599 select SUPPORT_SPL
600
601config TARGET_PLATINUM_TITANIUM
602 bool "Support platinum-titanium"
603 select CPU_V7
604 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900605
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900606config OMAP34XX
607 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100608 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900609
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900610config OMAP44XX
611 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100612 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900613 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900614
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900615config OMAP54XX
616 bool "OMAP54XX 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 Yamadaf40b9892014-08-31 07:10:57 +0900620config RMOBILE
621 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100622 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900623
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300624config TARGET_CM_FX6
625 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100626 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900627 select SUPPORT_SPL
Masahiro Yamadae621bae2015-03-31 12:48:02 +0900628 select DM
629 select DM_SERIAL
630 select DM_GPIO
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300631
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900632config ARCH_SOCFPGA
633 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100634 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900635 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900636 select DM
637 select DM_SPI_FLASH
638 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900639
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100640config ARCH_SUNXI
641 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200642 select DM
643 select DM_GPIO
644 select OF_CONTROL
645 select OF_SEPARATE
646 select SPL_DISABLE_OF_CONTROL
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800647
Masahiro Yamadadd840582014-07-30 14:08:14 +0900648config TARGET_SNOWBALL
649 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100650 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900651
652config TARGET_U8500_HREF
653 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100654 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900655
656config TARGET_VF610TWR
657 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100658 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900659
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530660config TARGET_COLIBRI_VF
661 bool "Support Colibri VF50/61"
662 select CPU_V7
663
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900664config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900665 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100666 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900667 select SUPPORT_SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900668 select DM
Masahiro Yamadadd840582014-07-30 14:08:14 +0900669
Michal Simek84c72042015-01-15 10:01:51 +0100670config TARGET_XILINX_ZYNQMP
671 bool "Support Xilinx ZynqMP Platform"
672 select ARM64
673
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900674config TEGRA
675 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900676 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900677 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900678 select OF_CONTROL
Simon Glass47a785a2015-05-12 14:55:04 -0600679 select SPL_DISABLE_OF_CONTROL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900680 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900681 select DM
682 select DM_SPI_FLASH
683 select DM_SERIAL
684 select DM_I2C
685 select DM_SPI
686 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900687
Linus Walleijf91afc42015-01-23 11:50:53 +0100688config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900689 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900690 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900691
Linus Walleijf91afc42015-01-23 11:50:53 +0100692config TARGET_VEXPRESS64_BASE_FVP
693 bool "Support Versatile Express ARMv8a FVP BASE model"
694 select ARM64
695 select SEMIHOSTING
696
Linus Walleijffc10372015-01-23 14:41:10 +0100697config TARGET_VEXPRESS64_JUNO
698 bool "Support Versatile Express Juno Development Platform"
699 select ARM64
700
Masahiro Yamadadd840582014-07-30 14:08:14 +0900701config TARGET_LS2085A_EMU
702 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900703 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100704 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900705
706config TARGET_LS2085A_SIMU
707 bool "Support ls2085a_simu"
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
York Sun7288c2c2015-03-20 19:28:23 -0700711config TARGET_LS2085AQDS
712 bool "Support ls2085aqds"
713 select ARM64
714 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700715 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700716 help
717 Support for Freescale LS2085AQDS platform
718 The LS2085A Development System (QDS) is a high-performance
719 development platform that supports the QorIQ LS2085A
720 Layerscape Architecture processor.
721
York Sune2b65ea2015-03-20 19:28:24 -0700722config TARGET_LS2085ARDB
723 bool "Support ls2085ardb"
724 select ARM64
725 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700726 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700727 help
728 Support for Freescale LS2085ARDB platform.
729 The LS2085A Reference design board (RDB) is a high-performance
730 development platform that supports the QorIQ LS2085A
731 Layerscape Architecture processor.
732
Wang Huan550e3dc2014-09-05 13:52:44 +0800733config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800734 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100735 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800736 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800737
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800738config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800739 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100740 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800741 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800742
Masahiro Yamadadd840582014-07-30 14:08:14 +0900743config TARGET_BALLOON3
744 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100745 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900746
747config TARGET_H2200
748 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100749 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900750
751config TARGET_PALMLD
752 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100753 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900754
755config TARGET_PALMTC
756 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100757 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900758
759config TARGET_PALMTREO680
760 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100761 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900762 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900763
764config TARGET_PXA255_IDP
765 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100766 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900767
768config TARGET_TRIZEPSIV
769 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100770 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900771
772config TARGET_VPAC270
773 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100774 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900775 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900776
777config TARGET_XAENIAX
778 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100779 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900780
781config TARGET_ZIPITZ2
782 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100783 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900784
785config TARGET_LP8X4X
786 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100787 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900788
789config TARGET_COLIBRI_PXA270
790 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100791 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900792
793config TARGET_JORNADA
794 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100795 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900796
Masahiro Yamada66cba042014-10-03 19:21:07 +0900797config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900798 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100799 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900800 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900801 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900802 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900803 select DM
804 select DM_SERIAL
805 select DM_I2C
Simon Glass47a785a2015-05-12 14:55:04 -0600806 select SPL_DISABLE_OF_CONTROL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900807 help
808 Support for UniPhier SoC family developed by Socionext Inc.
809 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900810
rev13@wp.pled09a552015-03-01 12:44:42 +0100811config TARGET_STM32F429_DISCOVERY
812 bool "Support STM32F429 Discovery"
813 select CPU_V7M
814
Masahiro Yamadadd840582014-07-30 14:08:14 +0900815endchoice
816
Masahiro Yamada4614b892015-02-20 17:04:01 +0900817source "arch/arm/mach-at91/Kconfig"
818
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900819source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900820
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900821source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700822
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900823source "arch/arm/cpu/armv7/exynos/Kconfig"
824
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900825source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900826
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900827source "arch/arm/mach-integrator/Kconfig"
828
Masahiro Yamada39a72342015-02-20 17:04:11 +0900829source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900830
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900831source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900832
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100833source "arch/arm/cpu/armv7/mx6/Kconfig"
834
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200835source "arch/arm/cpu/armv7/mx5/Kconfig"
836
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900837source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900838
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900839source "arch/arm/cpu/armv7/omap3/Kconfig"
840
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900841source "arch/arm/cpu/armv7/omap4/Kconfig"
842
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900843source "arch/arm/cpu/armv7/omap5/Kconfig"
844
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900845source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900846
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900847source "arch/arm/cpu/armv7/rmobile/Kconfig"
848
Simon Glass311757b2014-10-07 22:01:50 -0600849source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
850
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900851source "arch/arm/mach-socfpga/Kconfig"
852
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900853source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900854
Masahiro Yamada4c425572015-02-27 02:26:42 +0900855source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900856
Masahiro Yamada63637a42015-02-20 17:04:10 +0900857source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900858
Masahiro Yamada0107f242015-03-16 16:43:22 +0900859source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900860
Hans de Goedeea624e12014-11-14 09:34:30 +0100861source "arch/arm/cpu/armv7/Kconfig"
862
Linus Walleij23b58772015-03-09 10:53:21 +0100863source "arch/arm/cpu/armv8/Kconfig"
864
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100865source "arch/arm/imx-common/Kconfig"
866
Stefano Babic7e929172014-08-11 10:18:41 +0200867source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900868source "board/BuR/kwb/Kconfig"
869source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900870source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900871source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200872source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200873source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900874source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900875source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900876source "board/armltd/vexpress/Kconfig"
877source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200878source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100880source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900881source "board/barco/titanium/Kconfig"
882source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900883source "board/boundary/nitrogen6x/Kconfig"
884source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800885source "board/broadcom/bcmcygnus/Kconfig"
886source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900887source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900888source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300889source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900890source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900891source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900892source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900893source "board/denx/m28evk/Kconfig"
894source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900895source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900896source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900897source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700898source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700899source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800900source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800901source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900902source "board/freescale/mx23evk/Kconfig"
903source "board/freescale/mx25pdk/Kconfig"
904source "board/freescale/mx28evk/Kconfig"
905source "board/freescale/mx31ads/Kconfig"
906source "board/freescale/mx31pdk/Kconfig"
907source "board/freescale/mx35pdk/Kconfig"
908source "board/freescale/mx51evk/Kconfig"
909source "board/freescale/mx53ard/Kconfig"
910source "board/freescale/mx53evk/Kconfig"
911source "board/freescale/mx53loco/Kconfig"
912source "board/freescale/mx53smd/Kconfig"
913source "board/freescale/mx6qarm2/Kconfig"
914source "board/freescale/mx6qsabreauto/Kconfig"
915source "board/freescale/mx6sabresd/Kconfig"
916source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300917source "board/freescale/mx6sxsabresd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900918source "board/freescale/vf610twr/Kconfig"
919source "board/gateworks/gw_ventana/Kconfig"
920source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900921source "board/gumstix/pepper/Kconfig"
922source "board/h2200/Kconfig"
923source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900924source "board/icpdas/lp8x4x/Kconfig"
925source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900926source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900927source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900928source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200929source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900930source "board/logicpd/imx27lite/Kconfig"
931source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200932source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900934source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900935source "board/palmld/Kconfig"
936source "board/palmtc/Kconfig"
937source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900938source "board/phytec/pcm051/Kconfig"
939source "board/ppcag/bg0900/Kconfig"
940source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900941source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900942source "board/sandisk/sansa_fuze_plus/Kconfig"
943source "board/scb9328/Kconfig"
944source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900945source "board/siemens/draco/Kconfig"
946source "board/siemens/pxm2/Kconfig"
947source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900948source "board/silica/pengwyn/Kconfig"
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300949source "board/solidrun/mx6cuboxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900950source "board/spear/spear300/Kconfig"
951source "board/spear/spear310/Kconfig"
952source "board/spear/spear320/Kconfig"
953source "board/spear/spear600/Kconfig"
954source "board/spear/x600/Kconfig"
955source "board/st-ericsson/snowball/Kconfig"
956source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100957source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800958source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900959source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900960source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100961source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900962source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900963source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800964source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900965source "board/ti/ti814x/Kconfig"
966source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900967source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530969source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900970source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900971source "board/trizepsiv/Kconfig"
972source "board/ttcontrol/vision2/Kconfig"
973source "board/udoo/Kconfig"
974source "board/vpac270/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200975source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900976source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200977source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900978source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200979source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900980source "board/xaeniax/Kconfig"
Michal Simek84c72042015-01-15 10:01:51 +0100981source "board/xilinx/zynqmp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900982source "board/zipitz2/Kconfig"
983
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900984source "arch/arm/Kconfig.debug"
985
Masahiro Yamadadd840582014-07-30 14:08:14 +0900986endmenu