blob: 8b8269fd13eeca8a807269c336fe12fc06ea5034 [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 Manochae67abca2015-07-02 18:29:41 -0700230 select DM_SPI
231 select DM_SPI_FLASH
232 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800233
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234config TARGET_X600
235 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900237 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900239config ARCH_VERSATILE
240 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100241 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900242
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243config TARGET_IMX31_PHYCORE
244 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100245 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900246
247config TARGET_QONG
248 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100249 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900250
251config TARGET_MX31ADS
252 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100253 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900254
255config TARGET_MX31PDK
256 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100257 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900258 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900259
260config TARGET_TT01
261 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100262 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900263
264config TARGET_IMX31_LITEKIT
265 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100266 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900267
268config TARGET_WOODBURN
269 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100270 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900271
272config TARGET_WOODBURN_SD
273 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100274 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900275 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900276
277config TARGET_FLEA3
278 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100279 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900280
281config TARGET_MX35PDK
282 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100283 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900284
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900285config ARCH_BCM283X
286 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900287 select DM
288 select DM_SERIAL
289 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700290
Masahiro Yamadadd840582014-07-30 14:08:14 +0900291config TARGET_VEXPRESS_CA15_TC2
292 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100293 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100294 select CPU_V7_HAS_NONSEC
295 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900296
297config TARGET_VEXPRESS_CA5X2
298 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100299 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900300
301config TARGET_VEXPRESS_CA9X4
302 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100303 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900304
305config TARGET_KWB
306 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100307 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900308 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900309
310config TARGET_TSERIES
311 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100312 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900313 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900314
315config TARGET_CM_T335
316 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100317 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900318 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900319 select DM
320 select DM_SERIAL
321 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900322
323config TARGET_PEPPER
324 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100325 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900326 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900327 select DM
328 select DM_SERIAL
329 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900330
331config TARGET_AM335X_IGEP0033
332 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100333 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900334 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900335 select DM
336 select DM_SERIAL
337 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900338
339config TARGET_PCM051
340 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100341 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900342 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900343 select DM
344 select DM_SERIAL
345 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900346
347config TARGET_DRACO
348 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100349 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900350 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900351
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200352config TARGET_THUBAN
353 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100354 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900355 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900356
Heiko Schocher578056c2015-06-15 14:56:41 +0200357config TARGET_RASTABAN
358 bool "Support rastaban"
359 select CPU_V7
360 select SUPPORT_SPL
361
Masahiro Yamadadd840582014-07-30 14:08:14 +0900362config TARGET_PXM2
363 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100364 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900365 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900366
367config TARGET_RUT
368 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100369 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900370 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900371
372config TARGET_PENGWYN
373 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100374 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900375 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900376 select DM
377 select DM_SERIAL
378 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900379
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200380config TARGET_AM335X_BALTOS
381 bool "Support am335x_baltos"
382 select CPU_V7
383 select SUPPORT_SPL
384 select DM
385 select DM_SERIAL
386 select DM_GPIO
387
Masahiro Yamadadd840582014-07-30 14:08:14 +0900388config TARGET_AM335X_EVM
389 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100390 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900391 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900392 select DM
393 select DM_SERIAL
394 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900395
396config TARGET_AM43XX_EVM
397 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100398 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900399 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900400
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800401config TARGET_BAV335X
402 bool "Support bav335x"
403 select CPU_V7
404 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900405 select DM
406 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800407 help
408 The BAV335x OEM Network Processor integrates all the functions of an
409 embedded network computer in a small, easy to use SODIMM module which
410 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
411 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
412 ethernet with simple connection to external connectors.
413
414 For more information, visit: http://birdland.com/oem
415
Masahiro Yamadadd840582014-07-30 14:08:14 +0900416config TARGET_TI814X_EVM
417 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100418 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900419 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900420
421config TARGET_TI816X_EVM
422 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100423 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900424 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900425
Masahiro Yamadadd840582014-07-30 14:08:14 +0900426config TARGET_BCM28155_AP
427 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100428 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900429
Steve Raeabb16782014-11-11 11:32:18 -0800430config TARGET_BCMCYGNUS
431 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700433
Steve Raeabb16782014-11-11 11:32:18 -0800434config TARGET_BCMNSP
435 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100436 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700437
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900438config ARCH_EXYNOS
439 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100440 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900441 select DM
442 select DM_SPI_FLASH
443 select DM_SERIAL
444 select DM_SPI
445 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900446
Simon Glass311757b2014-10-07 22:01:50 -0600447config ARCH_S5PC1XX
448 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100449 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900450 select DM
451 select DM_SERIAL
452 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600453
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900454config ARCH_HIGHBANK
455 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100456 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900457
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900458config ARCH_INTEGRATOR
459 bool "ARM Ltd. Integrator family"
460
Masahiro Yamadac338f092014-08-31 07:11:05 +0900461config ARCH_KEYSTONE
462 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100463 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900464 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900465
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100466config ARCH_MX6
467 bool "Freescale MX6"
468 select CPU_V7
469
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200470config ARCH_MX5
471 bool "Freescale MX5"
472 select CPU_V7
473
Masahiro Yamadadd840582014-07-30 14:08:14 +0900474config TARGET_M53EVK
475 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100476 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900477 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900478
479config TARGET_IMA3_MX53
480 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100481 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900482
483config TARGET_MX51EVK
484 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100485 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900486
487config TARGET_MX53ARD
488 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100489 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900490
491config TARGET_MX53EVK
492 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100493 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900494
495config TARGET_MX53LOCO
496 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100497 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498
499config TARGET_MX53SMD
500 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100501 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900502
503config TARGET_MX51_EFIKAMX
504 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100505 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900506
507config TARGET_VISION2
508 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100509 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900510
511config TARGET_UDOO
512 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100513 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900514
515config TARGET_WANDBOARD
516 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100517 select CPU_V7
Fabio Estevam0d1ea052015-05-11 20:50:22 -0300518 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900519
Otavio Salvador4579dc32015-02-17 10:42:46 -0200520config TARGET_WARP
521 bool "Support WaRP"
522 select CPU_V7
523
Masahiro Yamadadd840582014-07-30 14:08:14 +0900524config TARGET_TITANIUM
525 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100526 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900527
528config TARGET_NITROGEN6X
529 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100530 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900531
532config TARGET_CGTQMX6EVAL
533 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100534 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900535
536config TARGET_EMBESTMX6BOARDS
537 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100538 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900539
Stefano Babic7e929172014-08-11 10:18:41 +0200540config TARGET_ARISTAINETOS
541 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100542 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200543
Heiko Schocher7254d922015-05-18 13:32:31 +0200544config TARGET_ARISTAINETOS2
545 bool "Support aristainetos2"
546 select CPU_V7
547
Masahiro Yamadadd840582014-07-30 14:08:14 +0900548config TARGET_MX6QARM2
549 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100550 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900551
552config TARGET_MX6QSABREAUTO
553 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100554 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900555 select DM
556 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900557
558config TARGET_MX6SABRESD
559 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100560 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800561 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900562 select DM
563 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900564
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300565config TARGET_MX6CUBOXI
566 bool "Support Solid-run mx6 boards"
567 select CPU_V7
568 select SUPPORT_SPL
569
Masahiro Yamadadd840582014-07-30 14:08:14 +0900570config TARGET_MX6SLEVK
571 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100572 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900573
Fabio Estevam080d72f2014-08-14 21:00:28 -0300574config TARGET_MX6SXSABRESD
575 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100576 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800577 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900578 select DM
579 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300580
Peng Fanf0ff57b2015-07-20 19:28:35 +0800581config TARGET_MX6UL_14X14_EVK
582 bool "Support mx6ul_14x14_evk"
583 select CPU_V7
584 select DM
585 select DM_THERMAL
586 select SUPPORT_SPL
587
Masahiro Yamadadd840582014-07-30 14:08:14 +0900588config TARGET_GW_VENTANA
589 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100590 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900591 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900592
Marek Vasutf91c09a2014-10-24 23:39:07 +0200593config TARGET_KOSAGI_NOVENA
594 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900595 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100596 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200597
Soeren Moch05d492a2014-11-03 13:57:01 +0100598config TARGET_TBS2910
599 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100600 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100601
Christian Gmeiner39d09732014-10-02 13:33:46 +0200602config TARGET_OT1200
603 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100604 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100605 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200606
Stefan Roese5d6050f2014-12-10 10:15:23 +0100607config TARGET_PLATINUM_PICON
608 bool "Support platinum-picon"
609 select CPU_V7
610 select SUPPORT_SPL
611
612config TARGET_PLATINUM_TITANIUM
613 bool "Support platinum-titanium"
614 select CPU_V7
615 select SUPPORT_SPL
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900616
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900617config OMAP34XX
618 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100619 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900620
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900621config OMAP44XX
622 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100623 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900624 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900625
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900626config OMAP54XX
627 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100628 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900629 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900630
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900631config RMOBILE
632 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100633 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900634
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900635config ARCH_SOCFPGA
636 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100637 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900638 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900639 select DM
640 select DM_SPI_FLASH
641 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900642
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100643config ARCH_SUNXI
644 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200645 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200646 select DM
647 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400648 select DM_ETH
649 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200650 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200651 select OF_CONTROL
652 select OF_SEPARATE
653 select SPL_DISABLE_OF_CONTROL
Tom Rini45368822015-06-30 16:51:15 -0400654 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200655 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200656 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800657
Masahiro Yamadadd840582014-07-30 14:08:14 +0900658config TARGET_SNOWBALL
659 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100660 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900661
662config TARGET_U8500_HREF
663 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100664 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900665
666config TARGET_VF610TWR
667 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100668 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900669
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530670config TARGET_COLIBRI_VF
671 bool "Support Colibri VF50/61"
672 select CPU_V7
673
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900674config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900675 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100676 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900677 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530678 select OF_CONTROL
679 select SPL_DISABLE_OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900680 select DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530681 select DM_SPI
682 select DM_SPI_FLASH
Masahiro Yamadadd840582014-07-30 14:08:14 +0900683
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530684config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100685 bool "Support Xilinx ZynqMP Platform"
686 select ARM64
687
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900688config TEGRA
689 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900690
Linus Walleijf91afc42015-01-23 11:50:53 +0100691config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900692 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900693 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900694
Linus Walleijf91afc42015-01-23 11:50:53 +0100695config TARGET_VEXPRESS64_BASE_FVP
696 bool "Support Versatile Express ARMv8a FVP BASE model"
697 select ARM64
698 select SEMIHOSTING
699
Linus Walleijffc10372015-01-23 14:41:10 +0100700config TARGET_VEXPRESS64_JUNO
701 bool "Support Versatile Express Juno Development Platform"
702 select ARM64
703
Masahiro Yamadadd840582014-07-30 14:08:14 +0900704config TARGET_LS2085A_EMU
705 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900706 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100707 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900708
709config TARGET_LS2085A_SIMU
710 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900711 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100712 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900713
York Sun7288c2c2015-03-20 19:28:23 -0700714config TARGET_LS2085AQDS
715 bool "Support ls2085aqds"
716 select ARM64
717 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700718 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700719 help
720 Support for Freescale LS2085AQDS platform
721 The LS2085A Development System (QDS) is a high-performance
722 development platform that supports the QorIQ LS2085A
723 Layerscape Architecture processor.
724
York Sune2b65ea2015-03-20 19:28:24 -0700725config TARGET_LS2085ARDB
726 bool "Support ls2085ardb"
727 select ARM64
728 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700729 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700730 help
731 Support for Freescale LS2085ARDB platform.
732 The LS2085A Reference design board (RDB) is a high-performance
733 development platform that supports the QorIQ LS2085A
734 Layerscape Architecture processor.
735
Wang Huan550e3dc2014-09-05 13:52:44 +0800736config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800737 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100738 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800739 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800740
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800741config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800742 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100743 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800744 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800745
Masahiro Yamadadd840582014-07-30 14:08:14 +0900746config TARGET_BALLOON3
747 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100748 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900749
750config TARGET_H2200
751 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100752 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900753
754config TARGET_PALMLD
755 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100756 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900757
758config TARGET_PALMTC
759 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100760 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900761
762config TARGET_PALMTREO680
763 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100764 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900765 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900766
767config TARGET_PXA255_IDP
768 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100769 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900770
771config TARGET_TRIZEPSIV
772 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100773 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900774
775config TARGET_VPAC270
776 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100777 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900778 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900779
780config TARGET_XAENIAX
781 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100782 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900783
784config TARGET_ZIPITZ2
785 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100786 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900787
788config TARGET_LP8X4X
789 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100790 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900791
792config TARGET_COLIBRI_PXA270
793 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100794 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900795
796config TARGET_JORNADA
797 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100798 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900799
Masahiro Yamada66cba042014-10-03 19:21:07 +0900800config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900801 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100802 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900803 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900804 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900805 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900806 select DM
807 select DM_SERIAL
808 select DM_I2C
Simon Glass47a785a2015-05-12 14:55:04 -0600809 select SPL_DISABLE_OF_CONTROL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900810 help
811 Support for UniPhier SoC family developed by Socionext Inc.
812 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900813
rev13@wp.pled09a552015-03-01 12:44:42 +0100814config TARGET_STM32F429_DISCOVERY
815 bool "Support STM32F429 Discovery"
816 select CPU_V7M
817
Masahiro Yamadadd840582014-07-30 14:08:14 +0900818endchoice
819
Masahiro Yamada4614b892015-02-20 17:04:01 +0900820source "arch/arm/mach-at91/Kconfig"
821
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900822source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900823
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900824source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700825
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900826source "arch/arm/cpu/armv7/exynos/Kconfig"
827
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900828source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900829
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900830source "arch/arm/mach-integrator/Kconfig"
831
Masahiro Yamada39a72342015-02-20 17:04:11 +0900832source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900833
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900834source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900835
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100836source "arch/arm/cpu/armv7/mx6/Kconfig"
837
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200838source "arch/arm/cpu/armv7/mx5/Kconfig"
839
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900840source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900841
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900842source "arch/arm/cpu/armv7/omap3/Kconfig"
843
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900844source "arch/arm/cpu/armv7/omap4/Kconfig"
845
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900846source "arch/arm/cpu/armv7/omap5/Kconfig"
847
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900848source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900849
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900850source "arch/arm/cpu/armv7/rmobile/Kconfig"
851
Simon Glass311757b2014-10-07 22:01:50 -0600852source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
853
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900854source "arch/arm/mach-socfpga/Kconfig"
855
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900856source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900857
Masahiro Yamada4c425572015-02-27 02:26:42 +0900858source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900859
Masahiro Yamada63637a42015-02-20 17:04:10 +0900860source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900861
Masahiro Yamada0107f242015-03-16 16:43:22 +0900862source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900863
Hans de Goedeea624e12014-11-14 09:34:30 +0100864source "arch/arm/cpu/armv7/Kconfig"
865
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530866source "arch/arm/cpu/armv8/zynqmp/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"
Peng Fanf0ff57b2015-07-20 19:28:35 +0800923source "board/freescale/mx6ul_14x14_evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900924source "board/freescale/vf610twr/Kconfig"
925source "board/gateworks/gw_ventana/Kconfig"
926source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900927source "board/gumstix/pepper/Kconfig"
928source "board/h2200/Kconfig"
929source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900930source "board/icpdas/lp8x4x/Kconfig"
931source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900932source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900934source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200935source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900936source "board/logicpd/imx27lite/Kconfig"
937source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200938source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900939source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900940source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900941source "board/palmld/Kconfig"
942source "board/palmtc/Kconfig"
943source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900944source "board/phytec/pcm051/Kconfig"
945source "board/ppcag/bg0900/Kconfig"
946source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900947source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900948source "board/sandisk/sansa_fuze_plus/Kconfig"
949source "board/scb9328/Kconfig"
950source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900951source "board/siemens/draco/Kconfig"
952source "board/siemens/pxm2/Kconfig"
953source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900954source "board/silica/pengwyn/Kconfig"
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300955source "board/solidrun/mx6cuboxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900956source "board/spear/spear300/Kconfig"
957source "board/spear/spear310/Kconfig"
958source "board/spear/spear320/Kconfig"
959source "board/spear/spear600/Kconfig"
960source "board/spear/x600/Kconfig"
961source "board/st-ericsson/snowball/Kconfig"
962source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100963source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800964source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900965source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900966source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100967source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900969source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800970source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900971source "board/ti/ti814x/Kconfig"
972source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900973source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900974source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530975source "board/toradex/colibri_vf/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"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900986source "board/zipitz2/Kconfig"
987
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900988source "arch/arm/Kconfig.debug"
989
Masahiro Yamadadd840582014-07-30 14:08:14 +0900990endmenu