blob: 2f2c0ebb06896be3992b17be710577db30a0ba46 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada016a9542014-09-14 03:01:51 +09007config ARM64
8 bool
9
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010010config HAS_VBAR
11 bool
12
13config CPU_ARM720T
14 bool
15
16config CPU_ARM920T
17 bool
18
19config CPU_ARM926EJS
20 bool
21
22config CPU_ARM946ES
23 bool
24
25config CPU_ARM1136
26 bool
27
28config CPU_ARM1176
29 bool
30 select HAS_VBAR
31
32config CPU_V7
33 bool
34 select HAS_VBAR
35
rev13@wp.pl12d8a722015-03-01 12:44:39 +010036config CPU_V7M
37 bool
38
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010039config CPU_PXA
40 bool
41
42config CPU_SA1100
43 bool
44
45config SYS_CPU
46 default "arm720t" if CPU_ARM720T
47 default "arm920t" if CPU_ARM920T
48 default "arm926ejs" if CPU_ARM926EJS
49 default "arm946es" if CPU_ARM946ES
50 default "arm1136" if CPU_ARM1136
51 default "arm1176" if CPU_ARM1176
52 default "armv7" if CPU_V7
rev13@wp.pl12d8a722015-03-01 12:44:39 +010053 default "armv7m" if CPU_V7M
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010054 default "pxa" if CPU_PXA
55 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090056 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010057
Linus Walleijf91afc42015-01-23 11:50:53 +010058config SEMIHOSTING
59 bool "support boot from semihosting"
60 help
61 In emulated environments, semihosting is a way for
62 the hosted environment to call out to the emulator to
63 retrieve files from the host machine.
64
Masahiro Yamadadd840582014-07-30 14:08:14 +090065choice
66 prompt "Target select"
Joe Hershbergera26cd042015-05-12 14:46:23 -050067 optional
Masahiro Yamadadd840582014-07-30 14:08:14 +090068
Masahiro Yamada4614b892015-02-20 17:04:01 +090069config ARCH_AT91
70 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090071
72config TARGET_EDB93XX
73 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010074 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090075
76config TARGET_SCB9328
77 bool "Support scb9328"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010078 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090079
Masahiro Yamadadd840582014-07-30 14:08:14 +090080config TARGET_VCMA9
81 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010082 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090083
84config TARGET_SMDK2410
85 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010086 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090087
Masahiro Yamadadd840582014-07-30 14:08:14 +090088config TARGET_ASPENITE
89 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010090 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090091
92config TARGET_GPLUGD
93 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010094 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090095
Masahiro Yamada3491ba62014-08-31 07:11:01 +090096config ARCH_DAVINCI
97 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010098 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +090099 help
100 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900101
Masahiro Yamada47539e22014-08-31 07:10:59 +0900102config KIRKWOOD
103 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100104 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900105
Stefan Roese2bae75a2015-04-25 06:29:56 +0200106config TARGET_DB_88F6820_GP
107 bool "Support DB-88F6820-GP"
108 select CPU_V7
109 select SUPPORT_SPL
110
Stefan Roesedd580802014-10-22 12:13:18 +0200111config TARGET_DB_MV784MP_GP
112 bool "Support db-mv784mp-gp"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900113 select CPU_V7
Stefan Roese25541672015-01-19 11:33:46 +0100114 select SUPPORT_SPL
Stefan Roesedd580802014-10-22 12:13:18 +0200115
Stefan Roesea4884832014-10-22 12:13:19 +0200116config TARGET_MAXBCM
117 bool "Support maxbcm"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900118 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100119 select SUPPORT_SPL
Stefan Roesea4884832014-10-22 12:13:19 +0200120
Masahiro Yamadadd840582014-07-30 14:08:14 +0900121config TARGET_DEVKIT3250
122 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100123 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900124
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200125config TARGET_WORK_92105
126 bool "Support work_92105"
127 select CPU_ARM926EJS
128 select SUPPORT_SPL
129
Masahiro Yamadadd840582014-07-30 14:08:14 +0900130config TARGET_MX25PDK
131 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100132 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900133
134config TARGET_TX25
135 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100136 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900137 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900138
139config TARGET_ZMX25
140 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100141 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900142
143config TARGET_APF27
144 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100145 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900146 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900147
148config TARGET_IMX27LITE
149 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100150 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900151
152config TARGET_MAGNESIUM
153 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100154 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900155
156config TARGET_APX4DEVKIT
157 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100158 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900159 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900160
161config TARGET_XFI3
162 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100163 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900164 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900165
166config TARGET_M28EVK
167 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100168 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900169 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900170
171config TARGET_MX23EVK
172 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100173 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900174 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900175
176config TARGET_MX28EVK
177 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100178 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900179 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900180
181config TARGET_MX23_OLINUXINO
182 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100183 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900184 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900185
186config TARGET_BG0900
187 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100188 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900189 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900190
191config TARGET_SANSA_FUZE_PLUS
192 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900194 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900195
196config TARGET_SC_SPS_1
197 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900199 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900201config ARCH_NOMADIK
202 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900205config ORION5X
206 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900208
Masahiro Yamadadd840582014-07-30 14:08:14 +0900209config TARGET_SPEAR300
210 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900212
213config TARGET_SPEAR310
214 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900216
217config TARGET_SPEAR320
218 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100219 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900220
221config TARGET_SPEAR600
222 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100223 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900224
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800225config TARGET_STV0991
226 bool "Support stv0991"
227 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900228 select DM
229 select DM_SERIAL
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800230
Masahiro Yamadadd840582014-07-30 14:08:14 +0900231config TARGET_X600
232 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100233 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900234 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900235
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900236config ARCH_VERSATILE
237 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100238 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900239
Masahiro Yamadadd840582014-07-30 14:08:14 +0900240config TARGET_IMX31_PHYCORE
241 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100242 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243
244config TARGET_QONG
245 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100246 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
248config TARGET_MX31ADS
249 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100250 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900251
252config TARGET_MX31PDK
253 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100254 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900255 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900256
257config TARGET_TT01
258 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100259 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
261config TARGET_IMX31_LITEKIT
262 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100263 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900264
265config TARGET_WOODBURN
266 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100267 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900268
269config TARGET_WOODBURN_SD
270 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100271 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900272 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900273
274config TARGET_FLEA3
275 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100276 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900277
278config TARGET_MX35PDK
279 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100280 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900281
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900282config ARCH_BCM283X
283 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900284 select DM
285 select DM_SERIAL
286 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700287
Masahiro Yamadadd840582014-07-30 14:08:14 +0900288config TARGET_VEXPRESS_CA15_TC2
289 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100290 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100291 select CPU_V7_HAS_NONSEC
292 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900293
294config TARGET_VEXPRESS_CA5X2
295 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100296 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900297
298config TARGET_VEXPRESS_CA9X4
299 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100300 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900301
302config TARGET_KWB
303 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100304 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900305 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900306
307config TARGET_TSERIES
308 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100309 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900310 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900311
312config TARGET_CM_T335
313 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100314 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900315 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900316 select DM
317 select DM_SERIAL
318 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900319
320config TARGET_PEPPER
321 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100322 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900323 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900324 select DM
325 select DM_SERIAL
326 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900327
328config TARGET_AM335X_IGEP0033
329 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100330 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900331 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900332 select DM
333 select DM_SERIAL
334 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900335
336config TARGET_PCM051
337 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100338 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900339 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900340 select DM
341 select DM_SERIAL
342 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900343
344config TARGET_DRACO
345 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100346 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900347 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900348
349config TARGET_DXR2
350 bool "Support dxr2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100351 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900352 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900353
354config TARGET_PXM2
355 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100356 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900357 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900358
359config TARGET_RUT
360 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100361 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900362 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900363
364config TARGET_PENGWYN
365 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900367 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900368 select DM
369 select DM_SERIAL
370 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900371
372config TARGET_AM335X_EVM
373 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100374 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900375 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900376 select DM
377 select DM_SERIAL
378 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900379
380config TARGET_AM43XX_EVM
381 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100382 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900383 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900384
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800385config TARGET_BAV335X
386 bool "Support bav335x"
387 select CPU_V7
388 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900389 select DM
390 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800391 help
392 The BAV335x OEM Network Processor integrates all the functions of an
393 embedded network computer in a small, easy to use SODIMM module which
394 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
395 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
396 ethernet with simple connection to external connectors.
397
398 For more information, visit: http://birdland.com/oem
399
Masahiro Yamadadd840582014-07-30 14:08:14 +0900400config TARGET_TI814X_EVM
401 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100402 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900403 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900404
405config TARGET_TI816X_EVM
406 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100407 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900408 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900409
Masahiro Yamadadd840582014-07-30 14:08:14 +0900410config TARGET_BCM28155_AP
411 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100412 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900413
Steve Raeabb16782014-11-11 11:32:18 -0800414config TARGET_BCMCYGNUS
415 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100416 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700417
Steve Raeabb16782014-11-11 11:32:18 -0800418config TARGET_BCMNSP
419 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100420 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700421
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900422config ARCH_EXYNOS
423 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100424 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900425 select DM
426 select DM_SPI_FLASH
427 select DM_SERIAL
428 select DM_SPI
429 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900430
Simon Glass311757b2014-10-07 22:01:50 -0600431config ARCH_S5PC1XX
432 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100433 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900434 select DM
435 select DM_SERIAL
436 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600437
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900438config ARCH_HIGHBANK
439 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100440 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900441
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900442config ARCH_INTEGRATOR
443 bool "ARM Ltd. Integrator family"
444
Masahiro Yamadac338f092014-08-31 07:11:05 +0900445config ARCH_KEYSTONE
446 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100447 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900448 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900449
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100450config ARCH_MX6
451 bool "Freescale MX6"
452 select CPU_V7
453
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200454config ARCH_MX5
455 bool "Freescale MX5"
456 select CPU_V7
457
Masahiro Yamadadd840582014-07-30 14:08:14 +0900458config TARGET_M53EVK
459 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100460 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900461 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900462
463config TARGET_IMA3_MX53
464 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100465 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900466
467config TARGET_MX51EVK
468 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100469 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900470
471config TARGET_MX53ARD
472 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100473 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900474
475config TARGET_MX53EVK
476 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100477 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900478
479config TARGET_MX53LOCO
480 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100481 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900482
483config TARGET_MX53SMD
484 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100485 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900486
487config TARGET_MX51_EFIKAMX
488 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100489 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900490
491config TARGET_VISION2
492 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100493 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900494
495config TARGET_UDOO
496 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100497 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498
499config TARGET_WANDBOARD
500 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100501 select CPU_V7
Fabio Estevam0d1ea052015-05-11 20:50:22 -0300502 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900503
Otavio Salvador4579dc32015-02-17 10:42:46 -0200504config TARGET_WARP
505 bool "Support WaRP"
506 select CPU_V7
507
Masahiro Yamadadd840582014-07-30 14:08:14 +0900508config TARGET_TITANIUM
509 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100510 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900511
512config TARGET_NITROGEN6X
513 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100514 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900515
516config TARGET_CGTQMX6EVAL
517 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100518 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900519
520config TARGET_EMBESTMX6BOARDS
521 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100522 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900523
Stefano Babic7e929172014-08-11 10:18:41 +0200524config TARGET_ARISTAINETOS
525 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100526 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200527
Masahiro Yamadadd840582014-07-30 14:08:14 +0900528config TARGET_MX6QARM2
529 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100530 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900531
532config TARGET_MX6QSABREAUTO
533 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100534 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900535 select DM
536 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900537
538config TARGET_MX6SABRESD
539 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100540 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800541 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900542 select DM
543 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900544
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300545config TARGET_MX6CUBOXI
546 bool "Support Solid-run mx6 boards"
547 select CPU_V7
548 select SUPPORT_SPL
549
Masahiro Yamadadd840582014-07-30 14:08:14 +0900550config TARGET_MX6SLEVK
551 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100552 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900553
Fabio Estevam080d72f2014-08-14 21:00:28 -0300554config TARGET_MX6SXSABRESD
555 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100556 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800557 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900558 select DM
559 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300560
Masahiro Yamadadd840582014-07-30 14:08:14 +0900561config TARGET_GW_VENTANA
562 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100563 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900564 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900565
Marek Vasutf91c09a2014-10-24 23:39:07 +0200566config TARGET_KOSAGI_NOVENA
567 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900568 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100569 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200570
Soeren Moch05d492a2014-11-03 13:57:01 +0100571config TARGET_TBS2910
572 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100573 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100574
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900575config TARGET_TQMA6
576 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100577 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900578
Christian Gmeiner39d09732014-10-02 13:33:46 +0200579config TARGET_OT1200
580 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100581 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100582 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200583
Stefan Roese5d6050f2014-12-10 10:15:23 +0100584config TARGET_PLATINUM_PICON
585 bool "Support platinum-picon"
586 select CPU_V7
587 select SUPPORT_SPL
588
589config TARGET_PLATINUM_TITANIUM
590 bool "Support platinum-titanium"
591 select CPU_V7
592 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900593
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900594config OMAP34XX
595 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100596 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900597
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900598config OMAP44XX
599 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100600 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900601 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900602
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900603config OMAP54XX
604 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100605 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900606 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900607
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900608config RMOBILE
609 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100610 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900611
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300612config TARGET_CM_FX6
613 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100614 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900615 select SUPPORT_SPL
Masahiro Yamadae621bae2015-03-31 12:48:02 +0900616 select DM
617 select DM_SERIAL
618 select DM_GPIO
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300619
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900620config ARCH_SOCFPGA
621 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100622 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900623 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900624 select DM
625 select DM_SPI_FLASH
626 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900627
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100628config ARCH_SUNXI
629 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200630 select DM
631 select DM_GPIO
632 select OF_CONTROL
633 select OF_SEPARATE
634 select SPL_DISABLE_OF_CONTROL
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800635
Masahiro Yamadadd840582014-07-30 14:08:14 +0900636config TARGET_SNOWBALL
637 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100638 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900639
640config TARGET_U8500_HREF
641 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100642 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900643
644config TARGET_VF610TWR
645 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100646 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900647
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530648config TARGET_COLIBRI_VF
649 bool "Support Colibri VF50/61"
650 select CPU_V7
651
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900652config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900653 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100654 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900655 select SUPPORT_SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900656 select DM
Masahiro Yamadadd840582014-07-30 14:08:14 +0900657
Michal Simek84c72042015-01-15 10:01:51 +0100658config TARGET_XILINX_ZYNQMP
659 bool "Support Xilinx ZynqMP Platform"
660 select ARM64
661
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900662config TEGRA
663 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900664 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900665 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900666 select OF_CONTROL
667 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900668 select DM
669 select DM_SPI_FLASH
670 select DM_SERIAL
671 select DM_I2C
672 select DM_SPI
673 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900674
Linus Walleijf91afc42015-01-23 11:50:53 +0100675config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900676 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900677 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900678
Linus Walleijf91afc42015-01-23 11:50:53 +0100679config TARGET_VEXPRESS64_BASE_FVP
680 bool "Support Versatile Express ARMv8a FVP BASE model"
681 select ARM64
682 select SEMIHOSTING
683
Linus Walleijffc10372015-01-23 14:41:10 +0100684config TARGET_VEXPRESS64_JUNO
685 bool "Support Versatile Express Juno Development Platform"
686 select ARM64
687
Masahiro Yamadadd840582014-07-30 14:08:14 +0900688config TARGET_LS2085A_EMU
689 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900690 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100691 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900692
693config TARGET_LS2085A_SIMU
694 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900695 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100696 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900697
York Sun7288c2c2015-03-20 19:28:23 -0700698config TARGET_LS2085AQDS
699 bool "Support ls2085aqds"
700 select ARM64
701 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700702 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700703 help
704 Support for Freescale LS2085AQDS platform
705 The LS2085A Development System (QDS) is a high-performance
706 development platform that supports the QorIQ LS2085A
707 Layerscape Architecture processor.
708
York Sune2b65ea2015-03-20 19:28:24 -0700709config TARGET_LS2085ARDB
710 bool "Support ls2085ardb"
711 select ARM64
712 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700713 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700714 help
715 Support for Freescale LS2085ARDB platform.
716 The LS2085A Reference design board (RDB) is a high-performance
717 development platform that supports the QorIQ LS2085A
718 Layerscape Architecture processor.
719
Wang Huan550e3dc2014-09-05 13:52:44 +0800720config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800721 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100722 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800723 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800724
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800725config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800726 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100727 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800728 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800729
Masahiro Yamadadd840582014-07-30 14:08:14 +0900730config TARGET_BALLOON3
731 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100732 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900733
734config TARGET_H2200
735 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100736 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900737
738config TARGET_PALMLD
739 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100740 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900741
742config TARGET_PALMTC
743 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100744 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900745
746config TARGET_PALMTREO680
747 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100748 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900749 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900750
751config TARGET_PXA255_IDP
752 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100753 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900754
755config TARGET_TRIZEPSIV
756 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100757 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900758
759config TARGET_VPAC270
760 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100761 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900762 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900763
764config TARGET_XAENIAX
765 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100766 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900767
768config TARGET_ZIPITZ2
769 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100770 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900771
772config TARGET_LP8X4X
773 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100774 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900775
776config TARGET_COLIBRI_PXA270
777 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100778 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900779
780config TARGET_JORNADA
781 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100782 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900783
Masahiro Yamada66cba042014-10-03 19:21:07 +0900784config ARCH_UNIPHIER
785 bool "Panasonic UniPhier platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100786 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900787 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900788 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900789 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900790 select DM
791 select DM_SERIAL
792 select DM_I2C
Masahiro Yamada66cba042014-10-03 19:21:07 +0900793
rev13@wp.pled09a552015-03-01 12:44:42 +0100794config TARGET_STM32F429_DISCOVERY
795 bool "Support STM32F429 Discovery"
796 select CPU_V7M
797
Masahiro Yamadadd840582014-07-30 14:08:14 +0900798endchoice
799
Masahiro Yamada4614b892015-02-20 17:04:01 +0900800source "arch/arm/mach-at91/Kconfig"
801
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900802source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900803
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900804source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700805
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900806source "arch/arm/cpu/armv7/exynos/Kconfig"
807
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900808source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900809
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900810source "arch/arm/mach-integrator/Kconfig"
811
Masahiro Yamada39a72342015-02-20 17:04:11 +0900812source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900813
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900814source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900815
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100816source "arch/arm/cpu/armv7/mx6/Kconfig"
817
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200818source "arch/arm/cpu/armv7/mx5/Kconfig"
819
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900820source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900821
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900822source "arch/arm/cpu/armv7/omap3/Kconfig"
823
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900824source "arch/arm/cpu/armv7/omap4/Kconfig"
825
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900826source "arch/arm/cpu/armv7/omap5/Kconfig"
827
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900828source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900829
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900830source "arch/arm/cpu/armv7/rmobile/Kconfig"
831
Simon Glass311757b2014-10-07 22:01:50 -0600832source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
833
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900834source "arch/arm/mach-socfpga/Kconfig"
835
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900836source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900837
Masahiro Yamada4c425572015-02-27 02:26:42 +0900838source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900839
Masahiro Yamada63637a42015-02-20 17:04:10 +0900840source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900841
Masahiro Yamada0107f242015-03-16 16:43:22 +0900842source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900843
Hans de Goedeea624e12014-11-14 09:34:30 +0100844source "arch/arm/cpu/armv7/Kconfig"
845
Linus Walleij23b58772015-03-09 10:53:21 +0100846source "arch/arm/cpu/armv8/Kconfig"
847
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100848source "arch/arm/imx-common/Kconfig"
849
Stefano Babic7e929172014-08-11 10:18:41 +0200850source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900851source "board/BuR/kwb/Kconfig"
852source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900853source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900854source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200855source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200856source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900858source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900859source "board/armltd/vexpress/Kconfig"
860source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200861source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900862source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100863source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900864source "board/barco/titanium/Kconfig"
865source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866source "board/boundary/nitrogen6x/Kconfig"
867source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800868source "board/broadcom/bcmcygnus/Kconfig"
869source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900870source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900871source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300872source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900873source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900874source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900875source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900876source "board/denx/m28evk/Kconfig"
877source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900878source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900880source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700881source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700882source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800883source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800884source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900885source "board/freescale/mx23evk/Kconfig"
886source "board/freescale/mx25pdk/Kconfig"
887source "board/freescale/mx28evk/Kconfig"
888source "board/freescale/mx31ads/Kconfig"
889source "board/freescale/mx31pdk/Kconfig"
890source "board/freescale/mx35pdk/Kconfig"
891source "board/freescale/mx51evk/Kconfig"
892source "board/freescale/mx53ard/Kconfig"
893source "board/freescale/mx53evk/Kconfig"
894source "board/freescale/mx53loco/Kconfig"
895source "board/freescale/mx53smd/Kconfig"
896source "board/freescale/mx6qarm2/Kconfig"
897source "board/freescale/mx6qsabreauto/Kconfig"
898source "board/freescale/mx6sabresd/Kconfig"
899source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300900source "board/freescale/mx6sxsabresd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900901source "board/freescale/vf610twr/Kconfig"
902source "board/gateworks/gw_ventana/Kconfig"
903source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900904source "board/gumstix/pepper/Kconfig"
905source "board/h2200/Kconfig"
906source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900907source "board/icpdas/lp8x4x/Kconfig"
908source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900909source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900910source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900911source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200912source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900913source "board/logicpd/imx27lite/Kconfig"
914source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200915source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900916source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900917source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900918source "board/palmld/Kconfig"
919source "board/palmtc/Kconfig"
920source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900921source "board/phytec/pcm051/Kconfig"
922source "board/ppcag/bg0900/Kconfig"
923source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900924source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900925source "board/sandisk/sansa_fuze_plus/Kconfig"
926source "board/scb9328/Kconfig"
927source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900928source "board/siemens/draco/Kconfig"
929source "board/siemens/pxm2/Kconfig"
930source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900931source "board/silica/pengwyn/Kconfig"
Fabio Estevamb8ce6fe2015-04-20 14:48:57 -0300932source "board/solidrun/mx6cuboxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900933source "board/spear/spear300/Kconfig"
934source "board/spear/spear310/Kconfig"
935source "board/spear/spear320/Kconfig"
936source "board/spear/spear600/Kconfig"
937source "board/spear/x600/Kconfig"
938source "board/st-ericsson/snowball/Kconfig"
939source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100940source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800941source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900942source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900943source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100944source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900945source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900946source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800947source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900948source "board/ti/ti814x/Kconfig"
949source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900950source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900951source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530952source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900953source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900954source "board/trizepsiv/Kconfig"
955source "board/ttcontrol/vision2/Kconfig"
956source "board/udoo/Kconfig"
957source "board/vpac270/Kconfig"
958source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200959source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900960source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200961source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900962source "board/xaeniax/Kconfig"
Michal Simek84c72042015-01-15 10:01:51 +0100963source "board/xilinx/zynqmp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900964source "board/zipitz2/Kconfig"
965
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900966source "arch/arm/Kconfig.debug"
967
Masahiro Yamadadd840582014-07-30 14:08:14 +0900968endmenu