blob: 67d4fd59ac43b7ef4242f17b28b0af138071acdf [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
Albert ARIBAUD62e92072015-10-23 18:06:40 +020013config HAS_THUMB2
14 bool
15
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010016config CPU_ARM720T
17 bool
18
19config CPU_ARM920T
20 bool
21
22config CPU_ARM926EJS
23 bool
24
25config CPU_ARM946ES
26 bool
27
28config CPU_ARM1136
29 bool
30
31config CPU_ARM1176
32 bool
33 select HAS_VBAR
34
35config CPU_V7
36 bool
37 select HAS_VBAR
Albert ARIBAUD62e92072015-10-23 18:06:40 +020038 select HAS_THUMB2
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010039
rev13@wp.pl12d8a722015-03-01 12:44:39 +010040config CPU_V7M
41 bool
Albert ARIBAUD62e92072015-10-23 18:06:40 +020042 select HAS_THUMB2
rev13@wp.pl12d8a722015-03-01 12:44:39 +010043
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010044config CPU_PXA
45 bool
46
47config CPU_SA1100
48 bool
49
50config SYS_CPU
51 default "arm720t" if CPU_ARM720T
52 default "arm920t" if CPU_ARM920T
53 default "arm926ejs" if CPU_ARM926EJS
54 default "arm946es" if CPU_ARM946ES
55 default "arm1136" if CPU_ARM1136
56 default "arm1176" if CPU_ARM1176
57 default "armv7" if CPU_V7
rev13@wp.pl12d8a722015-03-01 12:44:39 +010058 default "armv7m" if CPU_V7M
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010059 default "pxa" if CPU_PXA
60 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090061 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010062
Linus Walleijf91afc42015-01-23 11:50:53 +010063config SEMIHOSTING
64 bool "support boot from semihosting"
65 help
66 In emulated environments, semihosting is a way for
67 the hosted environment to call out to the emulator to
68 retrieve files from the host machine.
69
Peng Fanf3e9bec2015-08-19 15:48:57 +080070config SYS_L2CACHE_OFF
71 bool "L2cache off"
72 help
73 If SoC does not support L2CACHE or one do not want to enable
74 L2CACHE, choose this option.
75
Masahiro Yamadadd840582014-07-30 14:08:14 +090076choice
77 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -060078 default TARGET_HIKEY
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
Masahiro Yamadadd840582014-07-30 14:08:14 +090087config TARGET_VCMA9
88 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010089 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090090
91config TARGET_SMDK2410
92 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010093 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090094
Masahiro Yamadadd840582014-07-30 14:08:14 +090095config TARGET_ASPENITE
96 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010097 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090098
99config TARGET_GPLUGD
100 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100101 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900102
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900103config ARCH_DAVINCI
104 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100105 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900106 help
107 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900108
Masahiro Yamada47539e22014-08-31 07:10:59 +0900109config KIRKWOOD
110 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100111 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900112
Stefan Roesec3d89142015-08-25 13:18:38 +0200113config ARCH_MVEBU
114 bool "Marvell MVEBU family (Armada XP/38x)"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200115 select CPU_V7
116 select SUPPORT_SPL
Stefan Roese9cffb232015-09-01 11:27:52 +0200117 select OF_CONTROL
118 select OF_SEPARATE
119 select DM
Stefan Roese1d51ea12015-09-02 08:41:41 +0200120 select DM_SERIAL
Stefan Roesea4884832014-10-22 12:13:19 +0200121
Masahiro Yamadadd840582014-07-30 14:08:14 +0900122config TARGET_DEVKIT3250
123 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100124 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300125 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900126
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200127config TARGET_WORK_92105
128 bool "Support work_92105"
129 select CPU_ARM926EJS
130 select SUPPORT_SPL
131
Masahiro Yamadadd840582014-07-30 14:08:14 +0900132config TARGET_MX25PDK
133 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100134 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900135
Masahiro Yamadadd840582014-07-30 14:08:14 +0900136config TARGET_ZMX25
137 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100138 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900139
140config TARGET_APF27
141 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100142 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900143 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900144
Masahiro Yamadadd840582014-07-30 14:08:14 +0900145config TARGET_APX4DEVKIT
146 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100147 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900148 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900149
150config TARGET_XFI3
151 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100152 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900153 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900154
155config TARGET_M28EVK
156 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100157 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900158 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900159
160config TARGET_MX23EVK
161 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100162 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900163 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900164
165config TARGET_MX28EVK
166 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100167 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900168 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900169
170config TARGET_MX23_OLINUXINO
171 bool "Support mx23_olinuxino"
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_BG0900
176 bool "Support bg0900"
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_SANSA_FUZE_PLUS
181 bool "Support sansa_fuze_plus"
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_SC_SPS_1
186 bool "Support sc_sps_1"
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
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900190config ORION5X
191 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100192 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900193
Masahiro Yamadadd840582014-07-30 14:08:14 +0900194config TARGET_SPEAR300
195 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100196 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900197
198config TARGET_SPEAR310
199 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100200 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900201
202config TARGET_SPEAR320
203 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100204 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900205
206config TARGET_SPEAR600
207 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100208 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900209
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800210config TARGET_STV0991
211 bool "Support stv0991"
212 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900213 select DM
214 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700215 select DM_SPI
216 select DM_SPI_FLASH
217 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800218
Masahiro Yamadadd840582014-07-30 14:08:14 +0900219config TARGET_X600
220 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100221 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900222 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900223
Masahiro Yamadadd840582014-07-30 14:08:14 +0900224config TARGET_IMX31_PHYCORE
225 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100226 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900227
Masahiro Yamadadd840582014-07-30 14:08:14 +0900228config TARGET_MX31ADS
229 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100230 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900231
232config TARGET_MX31PDK
233 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100234 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900235 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900236
Masahiro Yamadadd840582014-07-30 14:08:14 +0900237config TARGET_WOODBURN
238 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100239 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900240
241config TARGET_WOODBURN_SD
242 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100243 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900244 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900245
246config TARGET_FLEA3
247 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100248 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900249
250config TARGET_MX35PDK
251 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100252 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900253
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900254config ARCH_BCM283X
255 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900256 select DM
257 select DM_SERIAL
258 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700259
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260config TARGET_VEXPRESS_CA15_TC2
261 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100262 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100263 select CPU_V7_HAS_NONSEC
264 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900265
266config TARGET_VEXPRESS_CA5X2
267 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100268 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900269
270config TARGET_VEXPRESS_CA9X4
271 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100272 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900273
274config TARGET_KWB
275 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100276 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900277 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900278
279config TARGET_TSERIES
280 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100281 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900282 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900283
284config TARGET_CM_T335
285 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100286 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900287 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900288 select DM
289 select DM_SERIAL
290 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900291
292config TARGET_PEPPER
293 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100294 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900295 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900296 select DM
297 select DM_SERIAL
298 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900299
300config TARGET_AM335X_IGEP0033
301 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100302 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900303 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900304 select DM
305 select DM_SERIAL
306 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900307
308config TARGET_PCM051
309 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100310 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900311 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900312 select DM
313 select DM_SERIAL
314 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900315
316config TARGET_DRACO
317 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100318 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900319 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900320
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200321config TARGET_THUBAN
322 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100323 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900324 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900325
Heiko Schocher578056c2015-06-15 14:56:41 +0200326config TARGET_RASTABAN
327 bool "Support rastaban"
328 select CPU_V7
329 select SUPPORT_SPL
330
Masahiro Yamadadd840582014-07-30 14:08:14 +0900331config TARGET_PXM2
332 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100333 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900334 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900335
336config TARGET_RUT
337 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100338 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900339 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900340
341config TARGET_PENGWYN
342 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100343 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900344 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900345 select DM
346 select DM_SERIAL
347 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900348
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200349config TARGET_AM335X_BALTOS
350 bool "Support am335x_baltos"
351 select CPU_V7
352 select SUPPORT_SPL
353 select DM
354 select DM_SERIAL
355 select DM_GPIO
356
Masahiro Yamadadd840582014-07-30 14:08:14 +0900357config TARGET_AM335X_EVM
358 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100359 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900360 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900361 select DM
362 select DM_SERIAL
363 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900364
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200365config TARGET_AM335X_SL50
366 bool "Support am335x_sl50"
367 select CPU_V7
368 select SUPPORT_SPL
369 select DM
370 select DM_SERIAL
371
Masahiro Yamadadd840582014-07-30 14:08:14 +0900372config TARGET_AM43XX_EVM
373 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100374 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900375 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900376
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800377config TARGET_BAV335X
378 bool "Support bav335x"
379 select CPU_V7
380 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900381 select DM
382 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800383 help
384 The BAV335x OEM Network Processor integrates all the functions of an
385 embedded network computer in a small, easy to use SODIMM module which
386 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
387 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
388 ethernet with simple connection to external connectors.
389
390 For more information, visit: http://birdland.com/oem
391
Masahiro Yamadadd840582014-07-30 14:08:14 +0900392config TARGET_TI814X_EVM
393 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100394 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900395 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900396
397config TARGET_TI816X_EVM
398 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100399 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900400 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900401
Masahiro Yamadadd840582014-07-30 14:08:14 +0900402config TARGET_BCM28155_AP
403 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100404 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900405
Steve Raeabb16782014-11-11 11:32:18 -0800406config TARGET_BCMCYGNUS
407 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100408 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700409
Steve Raeabb16782014-11-11 11:32:18 -0800410config TARGET_BCMNSP
411 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100412 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700413
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900414config ARCH_EXYNOS
415 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100416 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900417 select DM
418 select DM_SPI_FLASH
419 select DM_SERIAL
420 select DM_SPI
421 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600422 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900423
Simon Glass311757b2014-10-07 22:01:50 -0600424config ARCH_S5PC1XX
425 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100426 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900427 select DM
428 select DM_SERIAL
429 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600430
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900431config ARCH_HIGHBANK
432 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100433 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900434
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900435config ARCH_INTEGRATOR
436 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200437 select DM
438 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900439
Masahiro Yamadac338f092014-08-31 07:11:05 +0900440config ARCH_KEYSTONE
441 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100442 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900443 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900444
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500445config ARCH_MX7
446 bool "Freescale MX7"
447 select CPU_V7
448
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100449config ARCH_MX6
450 bool "Freescale MX6"
451 select CPU_V7
452
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200453config ARCH_MX5
454 bool "Freescale MX5"
455 select CPU_V7
456
Masahiro Yamadadd840582014-07-30 14:08:14 +0900457config TARGET_M53EVK
458 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900460 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900461
Masahiro Yamadadd840582014-07-30 14:08:14 +0900462config TARGET_MX51EVK
463 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100464 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900465
466config TARGET_MX53ARD
467 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100468 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900469
470config TARGET_MX53EVK
471 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100472 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900473
474config TARGET_MX53LOCO
475 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100476 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900477
478config TARGET_MX53SMD
479 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100480 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900481
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900482config OMAP34XX
483 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100484 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900485
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900486config OMAP44XX
487 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100488 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900489 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900490
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900491config OMAP54XX
492 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100493 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900494 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900495
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900496config RMOBILE
497 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100498 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900499
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900500config ARCH_SOCFPGA
501 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100502 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900503 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200504 select OF_CONTROL
505 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900506 select DM
507 select DM_SPI_FLASH
508 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900509
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300510config TARGET_CM_T43
511 bool "Support cm_t43"
512 select CPU_V7
513 select SUPPORT_SPL
514
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100515config ARCH_SUNXI
516 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200517 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200518 select DM
519 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400520 select DM_ETH
521 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200522 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200523 select OF_CONTROL
524 select OF_SEPARATE
Hans de Goedeff42d102015-09-13 13:02:48 +0200525 select SPL_STACK_R if !MACH_SUN9I
Hans de Goede6d0bdfd2015-09-13 12:31:24 +0200526 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
Tom Rini45368822015-06-30 16:51:15 -0400527 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200528 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200529 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800530
Lucile Quirion9ee16892015-06-30 17:17:47 -0400531config TARGET_TS4800
532 bool "Support TS4800"
533 select CPU_V7
534
Masahiro Yamadadd840582014-07-30 14:08:14 +0900535config TARGET_VF610TWR
536 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100537 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900538
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530539config TARGET_COLIBRI_VF
540 bool "Support Colibri VF50/61"
541 select CPU_V7
542
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200543config TARGET_PCM052
544 bool "Support pcm-052"
545 select CPU_V7
546
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900547config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900548 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100549 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900550 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530551 select OF_CONTROL
Simon Glass71556fb2015-10-17 19:41:23 -0600552 select SPL_OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900553 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100554 select DM_ETH
Simon Glass71556fb2015-10-17 19:41:23 -0600555 select SPL_DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530556 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600557 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530558 select DM_SPI_FLASH
Simon Glass71556fb2015-10-17 19:41:23 -0600559 select SPL_SEPARATE_BSS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900560
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530561config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100562 bool "Support Xilinx ZynqMP Platform"
563 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600564 select DM
565 select OF_CONTROL
Michal Simek6889ca72015-11-30 14:14:56 +0100566 select DM_ETH
Michal Simekc2490bf2015-10-17 19:41:25 -0600567 select DM_SERIAL
Michal Simek84c72042015-01-15 10:01:51 +0100568
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900569config TEGRA
570 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900571
Linus Walleijf91afc42015-01-23 11:50:53 +0100572config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900573 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900574 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900575
Linus Walleijf91afc42015-01-23 11:50:53 +0100576config TARGET_VEXPRESS64_BASE_FVP
577 bool "Support Versatile Express ARMv8a FVP BASE model"
578 select ARM64
579 select SEMIHOSTING
580
Ryan Harkinfc04b922015-10-09 17:18:02 +0100581config TARGET_VEXPRESS64_BASE_FVP_DRAM
582 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
583 select ARM64
584 help
585 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
586 the default config to allow the user to load the images directly into
587 DRAM using model parameters rather than by using semi-hosting to load
588 the files from the host filesystem.
589
Linus Walleijffc10372015-01-23 14:41:10 +0100590config TARGET_VEXPRESS64_JUNO
591 bool "Support Versatile Express Juno Development Platform"
592 select ARM64
593
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530594config TARGET_LS2080A_EMU
595 bool "Support ls2080a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900596 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100597 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700598 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530599 Support for Freescale LS2080A_EMU platform
600 The LS2080A Development System (EMULATOR) is a pre silicon
601 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700602 Layerscape Architecture processor.
603
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530604config TARGET_LS2080A_SIMU
605 bool "Support ls2080a_simu"
606 select ARM64
607 select ARMV8_MULTIENTRY
608 help
609 Support for Freescale LS2080A_SIMU platform
610 The LS2080A Development System (QDS) is a pre silicon
611 development platform that supports the QorIQ LS2080A
612 Layerscape Architecture processor.
613
614config TARGET_LS2080AQDS
615 bool "Support ls2080aqds"
York Sune2b65ea2015-03-20 19:28:24 -0700616 select ARM64
617 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700618 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700619 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530620 Support for Freescale LS2080AQDS platform
621 The LS2080A Development System (QDS) is a high-performance
622 development platform that supports the QorIQ LS2080A
623 Layerscape Architecture processor.
624
625config TARGET_LS2080ARDB
626 bool "Support ls2080ardb"
627 select ARM64
628 select ARMV8_MULTIENTRY
629 select SUPPORT_SPL
630 help
631 Support for Freescale LS2080ARDB platform.
632 The LS2080A Reference design board (RDB) is a high-performance
633 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700634 Layerscape Architecture processor.
635
Peter Griffin11ac2362015-07-30 18:55:23 +0100636config TARGET_HIKEY
637 bool "Support HiKey 96boards Consumer Edition Platform"
638 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100639 select DM
640 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100641 select DM_SERIAL
Peter Griffin11ac2362015-07-30 18:55:23 +0100642 help
643 Support for HiKey 96boards platform. It features a HI6220
644 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
645
Wang Huan550e3dc2014-09-05 13:52:44 +0800646config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800647 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100648 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800649 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800650config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800651 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100652 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800653 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800654
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800655config TARGET_LS1043AQDS
656 bool "Support ls1043aqds"
657 select ARM64
658 select ARMV8_MULTIENTRY
659 select SUPPORT_SPL
660 help
661 Support for Freescale LS1043AQDS platform.
662
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800663config TARGET_LS1043ARDB
664 bool "Support ls1043ardb"
665 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800666 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800667 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800668 help
669 Support for Freescale LS1043ARDB platform.
670
Masahiro Yamadadd840582014-07-30 14:08:14 +0900671config TARGET_H2200
672 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100673 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900674
Masahiro Yamadadd840582014-07-30 14:08:14 +0900675config TARGET_COLIBRI_PXA270
676 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100677 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900678
Masahiro Yamada66cba042014-10-03 19:21:07 +0900679config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900680 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100681 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900682 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900683 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900684 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900685 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900686 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900687 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900688 select DM_SERIAL
689 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900690 help
691 Support for UniPhier SoC family developed by Socionext Inc.
692 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900693
rev13@wp.pled09a552015-03-01 12:44:42 +0100694config TARGET_STM32F429_DISCOVERY
695 bool "Support STM32F429 Discovery"
696 select CPU_V7M
697
Simon Glass2444dae2015-08-30 16:55:38 -0600698config ARCH_ROCKCHIP
699 bool "Support Rockchip SoCs"
700 select SUPPORT_SPL
701 select SPL
702 select OF_CONTROL
703 select CPU_V7
704 select DM
705
Masahiro Yamadadd840582014-07-30 14:08:14 +0900706endchoice
707
Masahiro Yamada4614b892015-02-20 17:04:01 +0900708source "arch/arm/mach-at91/Kconfig"
709
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900710source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900711
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900712source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700713
Thomas Abraham77b55e82015-08-03 17:58:00 +0530714source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900715
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900716source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900717
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900718source "arch/arm/mach-integrator/Kconfig"
719
Masahiro Yamada39a72342015-02-20 17:04:11 +0900720source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900721
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900722source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900723
Stefan Roesec3d89142015-08-25 13:18:38 +0200724source "arch/arm/mach-mvebu/Kconfig"
725
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500726source "arch/arm/cpu/armv7/mx7/Kconfig"
727
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100728source "arch/arm/cpu/armv7/mx6/Kconfig"
729
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200730source "arch/arm/cpu/armv7/mx5/Kconfig"
731
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900732source "arch/arm/cpu/armv7/omap3/Kconfig"
733
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900734source "arch/arm/cpu/armv7/omap4/Kconfig"
735
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900736source "arch/arm/cpu/armv7/omap5/Kconfig"
737
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900738source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900739
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900740source "arch/arm/cpu/armv7/rmobile/Kconfig"
741
Simon Glass2444dae2015-08-30 16:55:38 -0600742source "arch/arm/mach-rockchip/Kconfig"
743
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900744source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600745
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900746source "arch/arm/mach-socfpga/Kconfig"
747
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900748source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900749
Masahiro Yamada4c425572015-02-27 02:26:42 +0900750source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900751
Masahiro Yamada0107f242015-03-16 16:43:22 +0900752source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900753
Hans de Goedeea624e12014-11-14 09:34:30 +0100754source "arch/arm/cpu/armv7/Kconfig"
755
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530756source "arch/arm/cpu/armv8/zynqmp/Kconfig"
757
Linus Walleij23b58772015-03-09 10:53:21 +0100758source "arch/arm/cpu/armv8/Kconfig"
759
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100760source "arch/arm/imx-common/Kconfig"
761
Masahiro Yamadadd840582014-07-30 14:08:14 +0900762source "board/BuR/kwb/Kconfig"
763source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900764source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900765source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200766source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200767source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900768source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900769source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900770source "board/armltd/vexpress/Kconfig"
771source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900772source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900773source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800774source "board/broadcom/bcmcygnus/Kconfig"
775source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900776source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900777source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400778source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900779source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900780source "board/denx/m28evk/Kconfig"
781source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530782source "board/freescale/ls2080a/Kconfig"
783source "board/freescale/ls2080aqds/Kconfig"
784source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800785source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800786source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800787source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800788source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900789source "board/freescale/mx23evk/Kconfig"
790source "board/freescale/mx25pdk/Kconfig"
791source "board/freescale/mx28evk/Kconfig"
792source "board/freescale/mx31ads/Kconfig"
793source "board/freescale/mx31pdk/Kconfig"
794source "board/freescale/mx35pdk/Kconfig"
795source "board/freescale/mx51evk/Kconfig"
796source "board/freescale/mx53ard/Kconfig"
797source "board/freescale/mx53evk/Kconfig"
798source "board/freescale/mx53loco/Kconfig"
799source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900800source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900801source "board/gumstix/pepper/Kconfig"
802source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400803source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900804source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900805source "board/isee/igep0033/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200806source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900807source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900808source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900809source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200810source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900811source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900812source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900813source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900814source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900815source "board/siemens/draco/Kconfig"
816source "board/siemens/pxm2/Kconfig"
817source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900818source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900819source "board/spear/spear300/Kconfig"
820source "board/spear/spear310/Kconfig"
821source "board/spear/spear320/Kconfig"
822source "board/spear/spear600/Kconfig"
823source "board/spear/x600/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100824source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800825source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900826source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900827source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200828source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900829source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800831source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900832source "board/ti/ti814x/Kconfig"
833source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900834source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900835source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530836source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400837source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200838source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900839source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200840source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900842source "arch/arm/Kconfig.debug"
843
Masahiro Yamadadd840582014-07-30 14:08:14 +0900844endmenu