blob: f646c9534dd2603587100d40361bef5636caef53 [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"
67
68config TARGET_INTEGRATORAP_CM720T
69 bool "Support integratorap_cm720t"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010070 select CPU_ARM720T
Masahiro Yamadadd840582014-07-30 14:08:14 +090071
72config TARGET_INTEGRATORAP_CM920T
73 bool "Support integratorap_cm920t"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010074 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090075
76config TARGET_INTEGRATORCP_CM920T
77 bool "Support integratorcp_cm920t"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010078 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090079
Masahiro Yamada4614b892015-02-20 17:04:01 +090080config ARCH_AT91
81 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090082
83config TARGET_EDB93XX
84 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010085 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090086
87config TARGET_SCB9328
88 bool "Support scb9328"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010089 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090090
Masahiro Yamadadd840582014-07-30 14:08:14 +090091config TARGET_VCMA9
92 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010093 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090094
95config TARGET_SMDK2410
96 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010097 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090098
99config TARGET_INTEGRATORAP_CM926EJS
100 bool "Support integratorap_cm926ejs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100101 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900102
103config TARGET_INTEGRATORCP_CM926EJS
104 bool "Support integratorcp_cm926ejs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100105 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900106
107config TARGET_ASPENITE
108 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100109 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900110
111config TARGET_GPLUGD
112 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100113 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900114
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900115config ARCH_DAVINCI
116 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100117 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900118 help
119 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900120
Masahiro Yamada47539e22014-08-31 07:10:59 +0900121config KIRKWOOD
122 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100123 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900124
Stefan Roesedd580802014-10-22 12:13:18 +0200125config TARGET_DB_MV784MP_GP
126 bool "Support db-mv784mp-gp"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900127 select CPU_V7
Stefan Roese25541672015-01-19 11:33:46 +0100128 select SUPPORT_SPL
Stefan Roesedd580802014-10-22 12:13:18 +0200129
Stefan Roesea4884832014-10-22 12:13:19 +0200130config TARGET_MAXBCM
131 bool "Support maxbcm"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900132 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100133 select SUPPORT_SPL
Stefan Roesea4884832014-10-22 12:13:19 +0200134
Masahiro Yamadadd840582014-07-30 14:08:14 +0900135config TARGET_DEVKIT3250
136 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100137 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900138
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200139config TARGET_WORK_92105
140 bool "Support work_92105"
141 select CPU_ARM926EJS
142 select SUPPORT_SPL
143
Masahiro Yamadadd840582014-07-30 14:08:14 +0900144config TARGET_MX25PDK
145 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100146 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900147
148config TARGET_TX25
149 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100150 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900151 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900152
153config TARGET_ZMX25
154 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100155 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900156
157config TARGET_APF27
158 bool "Support apf27"
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_IMX27LITE
163 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100164 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900165
166config TARGET_MAGNESIUM
167 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100168 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900169
170config TARGET_APX4DEVKIT
171 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100172 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900173 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900174
175config TARGET_XFI3
176 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100177 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900178 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900179
180config TARGET_M28EVK
181 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100182 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900183 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900184
185config TARGET_MX23EVK
186 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100187 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900188 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900189
190config TARGET_MX28EVK
191 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100192 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900193 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900194
195config TARGET_MX23_OLINUXINO
196 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900198 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900199
200config TARGET_BG0900
201 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100202 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900203 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
205config TARGET_SANSA_FUZE_PLUS
206 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900208 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900209
210config TARGET_SC_SPS_1
211 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100212 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900213 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900214
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900215config ARCH_NOMADIK
216 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100217 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900218
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900219config ORION5X
220 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100221 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900222
Masahiro Yamadadd840582014-07-30 14:08:14 +0900223config TARGET_SPEAR300
224 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100225 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900226
227config TARGET_SPEAR310
228 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100229 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900230
231config TARGET_SPEAR320
232 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100233 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234
235config TARGET_SPEAR600
236 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800239config TARGET_STV0991
240 bool "Support stv0991"
241 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900242 select DM
243 select DM_SERIAL
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800244
Masahiro Yamadadd840582014-07-30 14:08:14 +0900245config TARGET_X600
246 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100247 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900248 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900249
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900250config ARCH_VERSATILE
251 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100252 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900253
254config TARGET_INTEGRATORCP_CM1136
255 bool "Support integratorcp_cm1136"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100256 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900257
258config TARGET_IMX31_PHYCORE
259 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100260 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900261
262config TARGET_QONG
263 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100264 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900265
266config TARGET_MX31ADS
267 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100268 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900269
270config TARGET_MX31PDK
271 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100272 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900273 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900274
275config TARGET_TT01
276 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100277 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900278
279config TARGET_IMX31_LITEKIT
280 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100281 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900282
283config TARGET_WOODBURN
284 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100285 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900286
287config TARGET_WOODBURN_SD
288 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100289 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900290 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900291
292config TARGET_FLEA3
293 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100294 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900295
296config TARGET_MX35PDK
297 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100298 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900299
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900300config ARCH_BCM283X
301 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900302 select DM
303 select DM_SERIAL
304 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700305
Masahiro Yamadadd840582014-07-30 14:08:14 +0900306config TARGET_INTEGRATORAP_CM946ES
307 bool "Support integratorap_cm946es"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100308 select CPU_ARM946ES
Masahiro Yamadadd840582014-07-30 14:08:14 +0900309
310config TARGET_INTEGRATORCP_CM946ES
311 bool "Support integratorcp_cm946es"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100312 select CPU_ARM946ES
Masahiro Yamadadd840582014-07-30 14:08:14 +0900313
314config TARGET_VEXPRESS_CA15_TC2
315 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100316 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100317 select CPU_V7_HAS_NONSEC
318 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900319
320config TARGET_VEXPRESS_CA5X2
321 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100322 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900323
324config TARGET_VEXPRESS_CA9X4
325 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100326 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900327
328config TARGET_KWB
329 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100330 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900331 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900332
333config TARGET_TSERIES
334 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100335 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900336 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900337
338config TARGET_CM_T335
339 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100340 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900341 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900342 select DM
343 select DM_SERIAL
344 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900345
346config TARGET_PEPPER
347 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100348 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900349 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900350 select DM
351 select DM_SERIAL
352 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900353
354config TARGET_AM335X_IGEP0033
355 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100356 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900357 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900358 select DM
359 select DM_SERIAL
360 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900361
362config TARGET_PCM051
363 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100364 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900365 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900366 select DM
367 select DM_SERIAL
368 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900369
370config TARGET_DRACO
371 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100372 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900373 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900374
375config TARGET_DXR2
376 bool "Support dxr2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100377 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900378 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900379
380config TARGET_PXM2
381 bool "Support pxm2"
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
385config TARGET_RUT
386 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100387 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900388 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900389
390config TARGET_PENGWYN
391 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100392 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900393 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900394 select DM
395 select DM_SERIAL
396 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900397
398config TARGET_AM335X_EVM
399 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100400 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900401 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900402 select DM
403 select DM_SERIAL
404 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900405
406config TARGET_AM43XX_EVM
407 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100408 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900409 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900410
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800411config TARGET_BAV335X
412 bool "Support bav335x"
413 select CPU_V7
414 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900415 select DM
416 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800417 help
418 The BAV335x OEM Network Processor integrates all the functions of an
419 embedded network computer in a small, easy to use SODIMM module which
420 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
421 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
422 ethernet with simple connection to external connectors.
423
424 For more information, visit: http://birdland.com/oem
425
Masahiro Yamadadd840582014-07-30 14:08:14 +0900426config TARGET_TI814X_EVM
427 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100428 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900429 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900430
431config TARGET_TI816X_EVM
432 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100433 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900434 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900435
Masahiro Yamadadd840582014-07-30 14:08:14 +0900436config TARGET_BCM28155_AP
437 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100438 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900439
Steve Raeabb16782014-11-11 11:32:18 -0800440config TARGET_BCMCYGNUS
441 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100442 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700443
Steve Raeabb16782014-11-11 11:32:18 -0800444config TARGET_BCMNSP
445 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100446 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700447
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900448config ARCH_EXYNOS
449 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100450 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900451 select DM
452 select DM_SPI_FLASH
453 select DM_SERIAL
454 select DM_SPI
455 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900456
Simon Glass311757b2014-10-07 22:01:50 -0600457config ARCH_S5PC1XX
458 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900460 select DM
461 select DM_SERIAL
462 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600463
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900464config ARCH_HIGHBANK
465 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100466 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900467
Masahiro Yamadac338f092014-08-31 07:11:05 +0900468config ARCH_KEYSTONE
469 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100470 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900471 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900472
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100473config ARCH_MX6
474 bool "Freescale MX6"
475 select CPU_V7
476
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200477config ARCH_MX5
478 bool "Freescale MX5"
479 select CPU_V7
480
Masahiro Yamadadd840582014-07-30 14:08:14 +0900481config TARGET_M53EVK
482 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100483 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900484 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900485
486config TARGET_IMA3_MX53
487 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100488 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900489
490config TARGET_MX51EVK
491 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100492 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900493
494config TARGET_MX53ARD
495 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100496 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900497
498config TARGET_MX53EVK
499 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100500 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900501
502config TARGET_MX53LOCO
503 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100504 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900505
506config TARGET_MX53SMD
507 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100508 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900509
510config TARGET_MX51_EFIKAMX
511 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100512 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900513
514config TARGET_VISION2
515 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100516 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900517
518config TARGET_UDOO
519 bool "Support udoo"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100520 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900521
522config TARGET_WANDBOARD
523 bool "Support wandboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100524 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900525
Otavio Salvador4579dc32015-02-17 10:42:46 -0200526config TARGET_WARP
527 bool "Support WaRP"
528 select CPU_V7
529
Masahiro Yamadadd840582014-07-30 14:08:14 +0900530config TARGET_TITANIUM
531 bool "Support titanium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100532 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900533
534config TARGET_NITROGEN6X
535 bool "Support nitrogen6x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100536 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900537
538config TARGET_CGTQMX6EVAL
539 bool "Support cgtqmx6eval"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100540 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900541
542config TARGET_EMBESTMX6BOARDS
543 bool "Support embestmx6boards"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100544 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900545
Stefano Babic7e929172014-08-11 10:18:41 +0200546config TARGET_ARISTAINETOS
547 bool "Support aristainetos"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100548 select CPU_V7
Stefano Babic7e929172014-08-11 10:18:41 +0200549
Masahiro Yamadadd840582014-07-30 14:08:14 +0900550config TARGET_MX6QARM2
551 bool "Support mx6qarm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100552 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900553
554config TARGET_MX6QSABREAUTO
555 bool "Support mx6qsabreauto"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100556 select CPU_V7
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900557 select DM
558 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900559
560config TARGET_MX6SABRESD
561 bool "Support mx6sabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100562 select CPU_V7
John Tobiase451e9b2014-11-12 14:27:43 -0800563 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900564 select DM
565 select DM_THERMAL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900566
567config TARGET_MX6SLEVK
568 bool "Support mx6slevk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100569 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900570
Fabio Estevam080d72f2014-08-14 21:00:28 -0300571config TARGET_MX6SXSABRESD
572 bool "Support mx6sxsabresd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100573 select CPU_V7
Peng Fan3dae50d2014-12-30 17:23:59 +0800574 select SUPPORT_SPL
Masahiro Yamadab507c5e2015-03-31 12:47:58 +0900575 select DM
576 select DM_THERMAL
Fabio Estevam080d72f2014-08-14 21:00:28 -0300577
Masahiro Yamadadd840582014-07-30 14:08:14 +0900578config TARGET_GW_VENTANA
579 bool "Support gw_ventana"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100580 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900581 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900582
583config TARGET_HUMMINGBOARD
584 bool "Support hummingboard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100585 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900586
Marek Vasutf91c09a2014-10-24 23:39:07 +0200587config TARGET_KOSAGI_NOVENA
588 bool "Support Kosagi Novena"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900589 select CPU_V7
Marek Vasutbdf16382014-11-13 11:06:21 +0100590 select SUPPORT_SPL
Marek Vasutf91c09a2014-10-24 23:39:07 +0200591
Soeren Moch05d492a2014-11-03 13:57:01 +0100592config TARGET_TBS2910
593 bool "Support tbs2910"
Soeren Mochf8bbd7f2014-11-26 12:39:24 +0100594 select CPU_V7
Soeren Moch05d492a2014-11-03 13:57:01 +0100595
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900596config TARGET_TQMA6
597 bool "TQ Systems TQMa6 board"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100598 select CPU_V7
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900599
Christian Gmeiner39d09732014-10-02 13:33:46 +0200600config TARGET_OT1200
601 bool "Bachmann OT1200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100602 select CPU_V7
Christian Gmeiner8551b362015-01-19 17:26:44 +0100603 select SUPPORT_SPL
Christian Gmeiner39d09732014-10-02 13:33:46 +0200604
Stefan Roese5d6050f2014-12-10 10:15:23 +0100605config TARGET_PLATINUM_PICON
606 bool "Support platinum-picon"
607 select CPU_V7
608 select SUPPORT_SPL
609
610config TARGET_PLATINUM_TITANIUM
611 bool "Support platinum-titanium"
612 select CPU_V7
613 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900614
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900615config OMAP34XX
616 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100617 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900618
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900619config OMAP44XX
620 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100621 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900622 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900623
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900624config OMAP54XX
625 bool "OMAP54XX 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 Yamadaf40b9892014-08-31 07:10:57 +0900629config RMOBILE
630 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100631 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900632
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300633config TARGET_CM_FX6
634 bool "Support cm_fx6"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100635 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900636 select SUPPORT_SPL
Masahiro Yamadae621bae2015-03-31 12:48:02 +0900637 select DM
638 select DM_SERIAL
639 select DM_GPIO
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300640
Marek Vasutc115a0d2014-12-30 18:16:08 +0100641config TARGET_SOCFPGA_ARRIA5
642 bool "Support socfpga_arria5"
643 select CPU_V7
644 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900645 select DM
646 select DM_SPI_FLASH
647 select DM_SPI
Marek Vasutc115a0d2014-12-30 18:16:08 +0100648
Masahiro Yamadadd840582014-07-30 14:08:14 +0900649config TARGET_SOCFPGA_CYCLONE5
650 bool "Support socfpga_cyclone5"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100651 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900652 select SUPPORT_SPL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900653 select DM
654 select DM_SPI_FLASH
655 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900656
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100657config ARCH_SUNXI
658 bool "Support sunxi (Allwinner) SoCs"
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800659
Masahiro Yamadadd840582014-07-30 14:08:14 +0900660config TARGET_SNOWBALL
661 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100662 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900663
664config TARGET_U8500_HREF
665 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100666 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900667
668config TARGET_VF610TWR
669 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100670 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900671
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900672config ZYNQ
673 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100674 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900675 select SUPPORT_SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900676 select DM
Masahiro Yamadadd840582014-07-30 14:08:14 +0900677
Michal Simek84c72042015-01-15 10:01:51 +0100678config TARGET_XILINX_ZYNQMP
679 bool "Support Xilinx ZynqMP Platform"
680 select ARM64
681
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900682config TEGRA
683 bool "NVIDIA Tegra"
Masahiro Yamada02627352014-10-20 17:45:56 +0900684 select SUPPORT_SPL
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900685 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900686 select OF_CONTROL
687 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900688 select DM
689 select DM_SPI_FLASH
690 select DM_SERIAL
691 select DM_I2C
692 select DM_SPI
693 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900694
Linus Walleijf91afc42015-01-23 11:50:53 +0100695config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900696 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900697 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900698
Linus Walleijf91afc42015-01-23 11:50:53 +0100699config TARGET_VEXPRESS64_BASE_FVP
700 bool "Support Versatile Express ARMv8a FVP BASE model"
701 select ARM64
702 select SEMIHOSTING
703
Linus Walleijffc10372015-01-23 14:41:10 +0100704config TARGET_VEXPRESS64_JUNO
705 bool "Support Versatile Express Juno Development Platform"
706 select ARM64
707
Masahiro Yamadadd840582014-07-30 14:08:14 +0900708config TARGET_LS2085A_EMU
709 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900710 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100711 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900712
713config TARGET_LS2085A_SIMU
714 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900715 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100716 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900717
Wang Huan550e3dc2014-09-05 13:52:44 +0800718config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800719 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100720 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800721 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800722
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800723config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800724 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100725 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800726 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800727
Masahiro Yamadadd840582014-07-30 14:08:14 +0900728config TARGET_BALLOON3
729 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100730 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900731
732config TARGET_H2200
733 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100734 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900735
736config TARGET_PALMLD
737 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100738 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900739
740config TARGET_PALMTC
741 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100742 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900743
744config TARGET_PALMTREO680
745 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100746 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900747 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900748
749config TARGET_PXA255_IDP
750 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100751 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900752
753config TARGET_TRIZEPSIV
754 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100755 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900756
757config TARGET_VPAC270
758 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100759 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900760 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900761
762config TARGET_XAENIAX
763 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100764 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900765
766config TARGET_ZIPITZ2
767 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100768 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900769
770config TARGET_LP8X4X
771 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100772 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900773
774config TARGET_COLIBRI_PXA270
775 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100776 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900777
778config TARGET_JORNADA
779 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100780 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900781
Masahiro Yamada66cba042014-10-03 19:21:07 +0900782config ARCH_UNIPHIER
783 bool "Panasonic UniPhier platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100784 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900785 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900786 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900787 select OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900788 select DM
789 select DM_SERIAL
790 select DM_I2C
Masahiro Yamada66cba042014-10-03 19:21:07 +0900791
rev13@wp.pled09a552015-03-01 12:44:42 +0100792config TARGET_STM32F429_DISCOVERY
793 bool "Support STM32F429 Discovery"
794 select CPU_V7M
795
Masahiro Yamadadd840582014-07-30 14:08:14 +0900796endchoice
797
Masahiro Yamada4614b892015-02-20 17:04:01 +0900798source "arch/arm/mach-at91/Kconfig"
799
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900800source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900801
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900802source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700803
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900804source "arch/arm/cpu/armv7/exynos/Kconfig"
805
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900806source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900807
Masahiro Yamada39a72342015-02-20 17:04:11 +0900808source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900809
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900810source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900811
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100812source "arch/arm/cpu/armv7/mx6/Kconfig"
813
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200814source "arch/arm/cpu/armv7/mx5/Kconfig"
815
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900816source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900817
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900818source "arch/arm/cpu/armv7/omap3/Kconfig"
819
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900820source "arch/arm/cpu/armv7/omap4/Kconfig"
821
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900822source "arch/arm/cpu/armv7/omap5/Kconfig"
823
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900824source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900825
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900826source "arch/arm/cpu/armv7/rmobile/Kconfig"
827
Simon Glass311757b2014-10-07 22:01:50 -0600828source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
829
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900830source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900831
Masahiro Yamada4c425572015-02-27 02:26:42 +0900832source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900833
Masahiro Yamada63637a42015-02-20 17:04:10 +0900834source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900835
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900836source "arch/arm/cpu/armv7/zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900837
Hans de Goedeea624e12014-11-14 09:34:30 +0100838source "arch/arm/cpu/armv7/Kconfig"
839
Linus Walleij23b58772015-03-09 10:53:21 +0100840source "arch/arm/cpu/armv8/Kconfig"
841
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100842source "arch/arm/imx-common/Kconfig"
843
Stefano Babic7e929172014-08-11 10:18:41 +0200844source "board/aristainetos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900845source "board/BuR/kwb/Kconfig"
846source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900847source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900848source "board/Marvell/aspenite/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200849source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900850source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900851source "board/altera/socfpga/Kconfig"
852source "board/armadeus/apf27/Kconfig"
853source "board/armltd/integrator/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900854source "board/armltd/vexpress/Kconfig"
855source "board/armltd/vexpress64/Kconfig"
Christian Gmeiner39d09732014-10-02 13:33:46 +0200856source "board/bachmann/ot1200/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857source "board/balloon3/Kconfig"
Stefan Roese5d6050f2014-12-10 10:15:23 +0100858source "board/barco/platinum/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900859source "board/barco/titanium/Kconfig"
860source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900861source "board/boundary/nitrogen6x/Kconfig"
862source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800863source "board/broadcom/bcmcygnus/Kconfig"
864source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900865source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866source "board/compulab/cm_t335/Kconfig"
Nikita Kiryanove32028a2014-09-07 18:59:29 +0300867source "board/compulab/cm_fx6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900868source "board/congatec/cgtqmx6eval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900869source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900870source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900871source "board/denx/m28evk/Kconfig"
872source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900873source "board/embest/mx6boards/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900874source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900875source "board/freescale/ls2085a/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800876source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800877source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900878source "board/freescale/mx23evk/Kconfig"
879source "board/freescale/mx25pdk/Kconfig"
880source "board/freescale/mx28evk/Kconfig"
881source "board/freescale/mx31ads/Kconfig"
882source "board/freescale/mx31pdk/Kconfig"
883source "board/freescale/mx35pdk/Kconfig"
884source "board/freescale/mx51evk/Kconfig"
885source "board/freescale/mx53ard/Kconfig"
886source "board/freescale/mx53evk/Kconfig"
887source "board/freescale/mx53loco/Kconfig"
888source "board/freescale/mx53smd/Kconfig"
889source "board/freescale/mx6qarm2/Kconfig"
890source "board/freescale/mx6qsabreauto/Kconfig"
891source "board/freescale/mx6sabresd/Kconfig"
892source "board/freescale/mx6slevk/Kconfig"
Fabio Estevam080d72f2014-08-14 21:00:28 -0300893source "board/freescale/mx6sxsabresd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900894source "board/freescale/vf610twr/Kconfig"
895source "board/gateworks/gw_ventana/Kconfig"
896source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900897source "board/gumstix/pepper/Kconfig"
898source "board/h2200/Kconfig"
899source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900900source "board/icpdas/lp8x4x/Kconfig"
901source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900902source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900903source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900904source "board/karo/tx25/Kconfig"
Marek Vasutf91c09a2014-10-24 23:39:07 +0200905source "board/kosagi/novena/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900906source "board/logicpd/imx27lite/Kconfig"
907source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200908source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900909source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900910source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900911source "board/palmld/Kconfig"
912source "board/palmtc/Kconfig"
913source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900914source "board/phytec/pcm051/Kconfig"
915source "board/ppcag/bg0900/Kconfig"
916source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900917source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900918source "board/sandisk/sansa_fuze_plus/Kconfig"
919source "board/scb9328/Kconfig"
920source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900921source "board/siemens/draco/Kconfig"
922source "board/siemens/pxm2/Kconfig"
923source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900924source "board/silica/pengwyn/Kconfig"
925source "board/solidrun/hummingboard/Kconfig"
926source "board/spear/spear300/Kconfig"
927source "board/spear/spear310/Kconfig"
928source "board/spear/spear320/Kconfig"
929source "board/spear/spear600/Kconfig"
930source "board/spear/x600/Kconfig"
931source "board/st-ericsson/snowball/Kconfig"
932source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100933source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800934source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900935source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900936source "board/syteco/zmx25/Kconfig"
Soeren Moch05d492a2014-11-03 13:57:01 +0100937source "board/tbs/tbs2910/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900938source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900939source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800940source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900941source "board/ti/ti814x/Kconfig"
942source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900943source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900944source "board/toradex/colibri_pxa270/Kconfig"
Masahiro Yamadaa1263632014-09-01 00:47:55 +0900945source "board/tqc/tqma6/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900946source "board/trizepsiv/Kconfig"
947source "board/ttcontrol/vision2/Kconfig"
948source "board/udoo/Kconfig"
949source "board/vpac270/Kconfig"
950source "board/wandboard/Kconfig"
Otavio Salvador4579dc32015-02-17 10:42:46 -0200951source "board/warp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900952source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200953source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900954source "board/xaeniax/Kconfig"
Michal Simek84c72042015-01-15 10:01:51 +0100955source "board/xilinx/zynqmp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900956source "board/zipitz2/Kconfig"
957
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900958source "arch/arm/Kconfig.debug"
959
Masahiro Yamadadd840582014-07-30 14:08:14 +0900960endmenu