blob: a436e8123bf7dd81a865d1b9fb8882273954b795 [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
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300124 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900125
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200126config TARGET_WORK_92105
127 bool "Support work_92105"
128 select CPU_ARM926EJS
129 select SUPPORT_SPL
130
Masahiro Yamadadd840582014-07-30 14:08:14 +0900131config TARGET_MX25PDK
132 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100133 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900134
135config TARGET_TX25
136 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100137 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900138 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900139
140config TARGET_ZMX25
141 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100142 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900143
144config TARGET_APF27
145 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100146 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900147 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900148
149config TARGET_IMX27LITE
150 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100151 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900152
153config TARGET_MAGNESIUM
154 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100155 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900156
157config TARGET_APX4DEVKIT
158 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100159 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900160 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900161
162config TARGET_XFI3
163 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100164 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900165 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900166
167config TARGET_M28EVK
168 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100169 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900170 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900171
172config TARGET_MX23EVK
173 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100174 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900175 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900176
177config TARGET_MX28EVK
178 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100179 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900180 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900181
182config TARGET_MX23_OLINUXINO
183 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100184 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900185 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900186
187config TARGET_BG0900
188 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900190 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900191
192config TARGET_SANSA_FUZE_PLUS
193 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900195 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900196
197config TARGET_SC_SPS_1
198 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900200 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900201
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900202config ARCH_NOMADIK
203 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100204 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900205
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900206config ORION5X
207 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100208 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900209
Masahiro Yamadadd840582014-07-30 14:08:14 +0900210config TARGET_SPEAR300
211 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100212 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900213
214config TARGET_SPEAR310
215 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100216 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900217
218config TARGET_SPEAR320
219 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100220 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900221
222config TARGET_SPEAR600
223 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100224 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900225
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800226config TARGET_STV0991
227 bool "Support stv0991"
228 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900229 select DM
230 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700231 select DM_SPI
232 select DM_SPI_FLASH
233 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800234
Masahiro Yamadadd840582014-07-30 14:08:14 +0900235config TARGET_X600
236 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900238 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900239
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900240config ARCH_VERSATILE
241 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100242 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243
Masahiro Yamadadd840582014-07-30 14:08:14 +0900244config TARGET_IMX31_PHYCORE
245 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100246 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
248config TARGET_QONG
249 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100250 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900251
252config TARGET_MX31ADS
253 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100254 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900255
256config TARGET_MX31PDK
257 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100258 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900259 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
261config TARGET_TT01
262 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100263 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900264
265config TARGET_IMX31_LITEKIT
266 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100267 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900268
269config TARGET_WOODBURN
270 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100271 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900272
273config TARGET_WOODBURN_SD
274 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100275 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900276 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900277
278config TARGET_FLEA3
279 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100280 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900281
282config TARGET_MX35PDK
283 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100284 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900285
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900286config ARCH_BCM283X
287 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900288 select DM
289 select DM_SERIAL
290 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700291
Masahiro Yamadadd840582014-07-30 14:08:14 +0900292config TARGET_VEXPRESS_CA15_TC2
293 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100294 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100295 select CPU_V7_HAS_NONSEC
296 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900297
298config TARGET_VEXPRESS_CA5X2
299 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100300 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900301
302config TARGET_VEXPRESS_CA9X4
303 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100304 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900305
306config TARGET_KWB
307 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100308 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900309 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900310
311config TARGET_TSERIES
312 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100313 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900314 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900315
316config TARGET_CM_T335
317 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100318 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900319 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900320 select DM
321 select DM_SERIAL
322 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900323
324config TARGET_PEPPER
325 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100326 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900327 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900328 select DM
329 select DM_SERIAL
330 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900331
332config TARGET_AM335X_IGEP0033
333 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100334 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900335 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900336 select DM
337 select DM_SERIAL
338 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900339
340config TARGET_PCM051
341 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100342 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900343 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900344 select DM
345 select DM_SERIAL
346 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900347
348config TARGET_DRACO
349 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100350 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900351 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900352
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200353config TARGET_THUBAN
354 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100355 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900356 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900357
Heiko Schocher578056c2015-06-15 14:56:41 +0200358config TARGET_RASTABAN
359 bool "Support rastaban"
360 select CPU_V7
361 select SUPPORT_SPL
362
Masahiro Yamadadd840582014-07-30 14:08:14 +0900363config TARGET_PXM2
364 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100365 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900366 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900367
368config TARGET_RUT
369 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100370 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900371 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900372
373config TARGET_PENGWYN
374 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100375 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900376 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900377 select DM
378 select DM_SERIAL
379 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900380
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200381config TARGET_AM335X_BALTOS
382 bool "Support am335x_baltos"
383 select CPU_V7
384 select SUPPORT_SPL
385 select DM
386 select DM_SERIAL
387 select DM_GPIO
388
Masahiro Yamadadd840582014-07-30 14:08:14 +0900389config TARGET_AM335X_EVM
390 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100391 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900392 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900393 select DM
394 select DM_SERIAL
395 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900396
397config TARGET_AM43XX_EVM
398 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100399 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900400 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900401
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800402config TARGET_BAV335X
403 bool "Support bav335x"
404 select CPU_V7
405 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900406 select DM
407 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800408 help
409 The BAV335x OEM Network Processor integrates all the functions of an
410 embedded network computer in a small, easy to use SODIMM module which
411 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
412 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
413 ethernet with simple connection to external connectors.
414
415 For more information, visit: http://birdland.com/oem
416
Masahiro Yamadadd840582014-07-30 14:08:14 +0900417config TARGET_TI814X_EVM
418 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100419 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900420 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900421
422config TARGET_TI816X_EVM
423 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100424 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900425 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900426
Masahiro Yamadadd840582014-07-30 14:08:14 +0900427config TARGET_BCM28155_AP
428 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100429 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900430
Steve Raeabb16782014-11-11 11:32:18 -0800431config TARGET_BCMCYGNUS
432 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100433 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700434
Steve Raeabb16782014-11-11 11:32:18 -0800435config TARGET_BCMNSP
436 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100437 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700438
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900439config ARCH_EXYNOS
440 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100441 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900442 select DM
443 select DM_SPI_FLASH
444 select DM_SERIAL
445 select DM_SPI
446 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900447
Simon Glass311757b2014-10-07 22:01:50 -0600448config ARCH_S5PC1XX
449 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100450 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900451 select DM
452 select DM_SERIAL
453 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600454
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900455config ARCH_HIGHBANK
456 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100457 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900458
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900459config ARCH_INTEGRATOR
460 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200461 select DM
462 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900463
Masahiro Yamadac338f092014-08-31 07:11:05 +0900464config ARCH_KEYSTONE
465 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100466 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900467 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900468
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100469config ARCH_MX6
470 bool "Freescale MX6"
471 select CPU_V7
472
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200473config ARCH_MX5
474 bool "Freescale MX5"
475 select CPU_V7
476
Masahiro Yamadadd840582014-07-30 14:08:14 +0900477config TARGET_M53EVK
478 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100479 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900480 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900481
482config TARGET_IMA3_MX53
483 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100484 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900485
486config TARGET_MX51EVK
487 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100488 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900489
490config TARGET_MX53ARD
491 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100492 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900493
494config TARGET_MX53EVK
495 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100496 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900497
498config TARGET_MX53LOCO
499 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100500 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900501
502config TARGET_MX53SMD
503 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100504 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900505
506config TARGET_MX51_EFIKAMX
507 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100508 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900509
510config TARGET_VISION2
511 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100512 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900513
514config TARGET_UDOO
515 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100516 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900517
518config TARGET_WANDBOARD
519 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100520 select CPU_V7
Fabio Estevam0d1ea052015-05-11 20:50:22 -0300521 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900522
Otavio Salvador4579dc32015-02-17 10:42:46 -0200523config TARGET_WARP
524 bool "Support WaRP"
525 select CPU_V7
526
Masahiro Yamadadd840582014-07-30 14:08:14 +0900527config TARGET_TITANIUM
528 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100529 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900530
531config TARGET_NITROGEN6X
532 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100533 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900534
535config TARGET_CGTQMX6EVAL
536 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100537 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900538
539config TARGET_EMBESTMX6BOARDS
540 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100541 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900542
Stefano Babic7e929172014-08-11 10:18:41 +0200543config TARGET_ARISTAINETOS
544 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100545 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200546
Heiko Schocher7254d922015-05-18 13:32:31 +0200547config TARGET_ARISTAINETOS2
548 bool "Support aristainetos2"
549 select CPU_V7
550
Masahiro Yamadadd840582014-07-30 14:08:14 +0900551config TARGET_MX6QARM2
552 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100553 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900554
555config TARGET_MX6QSABREAUTO
556 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100557 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900558 select DM
559 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900560
561config TARGET_MX6SABRESD
562 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100563 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800564 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900565 select DM
566 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900567
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300568config TARGET_MX6CUBOXI
569 bool "Support Solid-run mx6 boards"
570 select CPU_V7
571 select SUPPORT_SPL
572
Masahiro Yamadadd840582014-07-30 14:08:14 +0900573config TARGET_MX6SLEVK
574 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100575 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900576
Fabio Estevam080d72f2014-08-14 21:00:28 -0300577config TARGET_MX6SXSABRESD
578 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100579 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800580 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900581 select DM
582 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300583
Peng Fanf0ff57b2015-07-20 19:28:35 +0800584config TARGET_MX6UL_14X14_EVK
585 bool "Support mx6ul_14x14_evk"
586 select CPU_V7
587 select DM
588 select DM_THERMAL
589 select SUPPORT_SPL
590
Masahiro Yamadadd840582014-07-30 14:08:14 +0900591config TARGET_GW_VENTANA
592 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100593 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900594 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900595
Marek Vasutf91c09a2014-10-24 23:39:07 +0200596config TARGET_KOSAGI_NOVENA
597 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900598 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100599 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200600
Soeren Moch05d492a2014-11-03 13:57:01 +0100601config TARGET_TBS2910
602 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100603 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100604
Christian Gmeiner39d09732014-10-02 13:33:46 +0200605config TARGET_OT1200
606 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100607 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100608 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200609
Stefan Roese5d6050f2014-12-10 10:15:23 +0100610config TARGET_PLATINUM_PICON
611 bool "Support platinum-picon"
612 select CPU_V7
613 select SUPPORT_SPL
614
615config TARGET_PLATINUM_TITANIUM
616 bool "Support platinum-titanium"
617 select CPU_V7
618 select SUPPORT_SPL
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900619
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900620config OMAP34XX
621 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100622 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900623
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900624config OMAP44XX
625 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100626 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900627 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900628
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900629config OMAP54XX
630 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100631 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900632 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900633
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900634config RMOBILE
635 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100636 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900637
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900638config ARCH_SOCFPGA
639 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100640 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900641 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900642 select DM
643 select DM_SPI_FLASH
644 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900645
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100646config ARCH_SUNXI
647 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200648 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200649 select DM
650 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400651 select DM_ETH
652 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200653 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200654 select OF_CONTROL
655 select OF_SEPARATE
656 select SPL_DISABLE_OF_CONTROL
Tom Rini45368822015-06-30 16:51:15 -0400657 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200658 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200659 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800660
Masahiro Yamadadd840582014-07-30 14:08:14 +0900661config TARGET_SNOWBALL
662 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100663 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900664
665config TARGET_U8500_HREF
666 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100667 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900668
669config TARGET_VF610TWR
670 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100671 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900672
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530673config TARGET_COLIBRI_VF
674 bool "Support Colibri VF50/61"
675 select CPU_V7
676
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900677config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900678 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100679 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900680 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530681 select OF_CONTROL
682 select SPL_DISABLE_OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900683 select DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530684 select DM_SPI
685 select DM_SPI_FLASH
Masahiro Yamadadd840582014-07-30 14:08:14 +0900686
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530687config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100688 bool "Support Xilinx ZynqMP Platform"
689 select ARM64
690
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900691config TEGRA
692 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900693
Linus Walleijf91afc42015-01-23 11:50:53 +0100694config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900695 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900696 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900697
Linus Walleijf91afc42015-01-23 11:50:53 +0100698config TARGET_VEXPRESS64_BASE_FVP
699 bool "Support Versatile Express ARMv8a FVP BASE model"
700 select ARM64
701 select SEMIHOSTING
702
Linus Walleijffc10372015-01-23 14:41:10 +0100703config TARGET_VEXPRESS64_JUNO
704 bool "Support Versatile Express Juno Development Platform"
705 select ARM64
706
Masahiro Yamadadd840582014-07-30 14:08:14 +0900707config TARGET_LS2085A_EMU
708 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900709 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100710 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900711
712config TARGET_LS2085A_SIMU
713 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900714 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100715 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900716
York Sun7288c2c2015-03-20 19:28:23 -0700717config TARGET_LS2085AQDS
718 bool "Support ls2085aqds"
719 select ARM64
720 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700721 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700722 help
723 Support for Freescale LS2085AQDS platform
724 The LS2085A Development System (QDS) is a high-performance
725 development platform that supports the QorIQ LS2085A
726 Layerscape Architecture processor.
727
York Sune2b65ea2015-03-20 19:28:24 -0700728config TARGET_LS2085ARDB
729 bool "Support ls2085ardb"
730 select ARM64
731 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700732 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700733 help
734 Support for Freescale LS2085ARDB platform.
735 The LS2085A Reference design board (RDB) is a high-performance
736 development platform that supports the QorIQ LS2085A
737 Layerscape Architecture processor.
738
Wang Huan550e3dc2014-09-05 13:52:44 +0800739config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800740 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100741 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800742 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800743
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800744config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800745 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100746 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800747 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800748
Masahiro Yamadadd840582014-07-30 14:08:14 +0900749config TARGET_BALLOON3
750 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100751 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900752
753config TARGET_H2200
754 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100755 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900756
757config TARGET_PALMLD
758 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100759 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900760
761config TARGET_PALMTC
762 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100763 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900764
765config TARGET_PALMTREO680
766 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100767 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900768 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900769
770config TARGET_PXA255_IDP
771 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100772 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900773
774config TARGET_TRIZEPSIV
775 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100776 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900777
778config TARGET_VPAC270
779 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100780 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900781 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900782
783config TARGET_XAENIAX
784 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100785 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900786
787config TARGET_ZIPITZ2
788 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100789 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900790
791config TARGET_LP8X4X
792 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100793 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900794
795config TARGET_COLIBRI_PXA270
796 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100797 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900798
799config TARGET_JORNADA
800 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100801 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900802
Masahiro Yamada66cba042014-10-03 19:21:07 +0900803config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900804 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100805 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900806 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900807 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900808 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900809 select DM
810 select DM_SERIAL
811 select DM_I2C
Simon Glass47a785a2015-05-12 14:55:04 -0600812 select SPL_DISABLE_OF_CONTROL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900813 help
814 Support for UniPhier SoC family developed by Socionext Inc.
815 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900816
rev13@wp.pled09a552015-03-01 12:44:42 +0100817config TARGET_STM32F429_DISCOVERY
818 bool "Support STM32F429 Discovery"
819 select CPU_V7M
820
Masahiro Yamadadd840582014-07-30 14:08:14 +0900821endchoice
822
Masahiro Yamada4614b892015-02-20 17:04:01 +0900823source "arch/arm/mach-at91/Kconfig"
824
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900825source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900826
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900827source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700828
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900829source "arch/arm/cpu/armv7/exynos/Kconfig"
830
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900831source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900832
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900833source "arch/arm/mach-integrator/Kconfig"
834
Masahiro Yamada39a72342015-02-20 17:04:11 +0900835source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900836
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900837source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900838
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100839source "arch/arm/cpu/armv7/mx6/Kconfig"
840
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200841source "arch/arm/cpu/armv7/mx5/Kconfig"
842
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900843source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900844
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900845source "arch/arm/cpu/armv7/omap3/Kconfig"
846
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900847source "arch/arm/cpu/armv7/omap4/Kconfig"
848
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900849source "arch/arm/cpu/armv7/omap5/Kconfig"
850
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900851source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900852
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900853source "arch/arm/cpu/armv7/rmobile/Kconfig"
854
Simon Glass311757b2014-10-07 22:01:50 -0600855source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
856
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900857source "arch/arm/mach-socfpga/Kconfig"
858
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900859source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900860
Masahiro Yamada4c425572015-02-27 02:26:42 +0900861source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900862
Masahiro Yamada63637a42015-02-20 17:04:10 +0900863source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900864
Masahiro Yamada0107f242015-03-16 16:43:22 +0900865source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900866
Hans de Goedeea624e12014-11-14 09:34:30 +0100867source "arch/arm/cpu/armv7/Kconfig"
868
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530869source "arch/arm/cpu/armv8/zynqmp/Kconfig"
870
Linus Walleij23b58772015-03-09 10:53:21 +0100871source "arch/arm/cpu/armv8/Kconfig"
872
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100873source "arch/arm/imx-common/Kconfig"
874
Stefano Babic7e929172014-08-11 10:18:41 +0200875source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900876source "board/BuR/kwb/Kconfig"
877source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900878source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200880source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200881source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900882source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900883source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900884source "board/armltd/vexpress/Kconfig"
885source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200886source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900887source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100888source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900889source "board/barco/titanium/Kconfig"
890source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900891source "board/boundary/nitrogen6x/Kconfig"
892source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800893source "board/broadcom/bcmcygnus/Kconfig"
894source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900895source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900896source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300897source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900898source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900899source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900900source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900901source "board/denx/m28evk/Kconfig"
902source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900903source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900904source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900905source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700906source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700907source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800908source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800909source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900910source "board/freescale/mx23evk/Kconfig"
911source "board/freescale/mx25pdk/Kconfig"
912source "board/freescale/mx28evk/Kconfig"
913source "board/freescale/mx31ads/Kconfig"
914source "board/freescale/mx31pdk/Kconfig"
915source "board/freescale/mx35pdk/Kconfig"
916source "board/freescale/mx51evk/Kconfig"
917source "board/freescale/mx53ard/Kconfig"
918source "board/freescale/mx53evk/Kconfig"
919source "board/freescale/mx53loco/Kconfig"
920source "board/freescale/mx53smd/Kconfig"
921source "board/freescale/mx6qarm2/Kconfig"
922source "board/freescale/mx6qsabreauto/Kconfig"
923source "board/freescale/mx6sabresd/Kconfig"
924source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300925source "board/freescale/mx6sxsabresd/Kconfig"
Peng Fanf0ff57b2015-07-20 19:28:35 +0800926source "board/freescale/mx6ul_14x14_evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900927source "board/freescale/vf610twr/Kconfig"
928source "board/gateworks/gw_ventana/Kconfig"
929source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900930source "board/gumstix/pepper/Kconfig"
931source "board/h2200/Kconfig"
932source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/icpdas/lp8x4x/Kconfig"
934source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900935source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900936source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900937source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200938source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900939source "board/logicpd/imx27lite/Kconfig"
940source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200941source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900942source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900943source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900944source "board/palmld/Kconfig"
945source "board/palmtc/Kconfig"
946source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900947source "board/phytec/pcm051/Kconfig"
948source "board/ppcag/bg0900/Kconfig"
949source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900950source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900951source "board/sandisk/sansa_fuze_plus/Kconfig"
952source "board/scb9328/Kconfig"
953source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900954source "board/siemens/draco/Kconfig"
955source "board/siemens/pxm2/Kconfig"
956source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900957source "board/silica/pengwyn/Kconfig"
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300958source "board/solidrun/mx6cuboxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900959source "board/spear/spear300/Kconfig"
960source "board/spear/spear310/Kconfig"
961source "board/spear/spear320/Kconfig"
962source "board/spear/spear600/Kconfig"
963source "board/spear/x600/Kconfig"
964source "board/st-ericsson/snowball/Kconfig"
965source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100966source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800967source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900969source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100970source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900971source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900972source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800973source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900974source "board/ti/ti814x/Kconfig"
975source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900976source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900977source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530978source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900979source "board/trizepsiv/Kconfig"
980source "board/ttcontrol/vision2/Kconfig"
981source "board/udoo/Kconfig"
982source "board/vpac270/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200983source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900984source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200985source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900986source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200987source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900988source "board/xaeniax/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900989source "board/zipitz2/Kconfig"
990
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900991source "arch/arm/Kconfig.debug"
992
Masahiro Yamadadd840582014-07-30 14:08:14 +0900993endmenu