blob: 5ab0254f3bbeddca640929637db3143d0bee840b [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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900422
Simon Glass311757b2014-10-07 22:01:50 -0600423config ARCH_S5PC1XX
424 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900426 select DM
427 select DM_SERIAL
428 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600429
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900430config ARCH_HIGHBANK
431 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900433
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900434config ARCH_INTEGRATOR
435 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200436 select DM
437 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900438
Masahiro Yamadac338f092014-08-31 07:11:05 +0900439config ARCH_KEYSTONE
440 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100441 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900442 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900443
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500444config ARCH_MX7
445 bool "Freescale MX7"
446 select CPU_V7
447
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100448config ARCH_MX6
449 bool "Freescale MX6"
450 select CPU_V7
451
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200452config ARCH_MX5
453 bool "Freescale MX5"
454 select CPU_V7
455
Masahiro Yamadadd840582014-07-30 14:08:14 +0900456config TARGET_M53EVK
457 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100458 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900459 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900460
Masahiro Yamadadd840582014-07-30 14:08:14 +0900461config TARGET_MX51EVK
462 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100463 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900464
465config TARGET_MX53ARD
466 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100467 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900468
469config TARGET_MX53EVK
470 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100471 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900472
473config TARGET_MX53LOCO
474 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100475 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900476
477config TARGET_MX53SMD
478 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100479 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900480
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900481config OMAP34XX
482 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100483 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900484
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900485config OMAP44XX
486 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100487 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900488 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900489
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900490config OMAP54XX
491 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100492 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900493 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900494
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900495config RMOBILE
496 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100497 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900499config ARCH_SOCFPGA
500 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100501 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900502 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200503 select OF_CONTROL
504 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900505 select DM
506 select DM_SPI_FLASH
507 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900508
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300509config TARGET_CM_T43
510 bool "Support cm_t43"
511 select CPU_V7
512 select SUPPORT_SPL
513
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100514config ARCH_SUNXI
515 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200516 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200517 select DM
518 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400519 select DM_ETH
520 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200521 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200522 select OF_CONTROL
523 select OF_SEPARATE
Hans de Goedeff42d102015-09-13 13:02:48 +0200524 select SPL_STACK_R if !MACH_SUN9I
Hans de Goede6d0bdfd2015-09-13 12:31:24 +0200525 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
Tom Rini45368822015-06-30 16:51:15 -0400526 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200527 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200528 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800529
Lucile Quirion9ee16892015-06-30 17:17:47 -0400530config TARGET_TS4800
531 bool "Support TS4800"
532 select CPU_V7
533
Masahiro Yamadadd840582014-07-30 14:08:14 +0900534config TARGET_VF610TWR
535 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100536 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900537
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530538config TARGET_COLIBRI_VF
539 bool "Support Colibri VF50/61"
540 select CPU_V7
541
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200542config TARGET_PCM052
543 bool "Support pcm-052"
544 select CPU_V7
545
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900546config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900547 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100548 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900549 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530550 select OF_CONTROL
Simon Glass71556fb2015-10-17 19:41:23 -0600551 select SPL_OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900552 select DM
Simon Glass71556fb2015-10-17 19:41:23 -0600553 select SPL_DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530554 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600555 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530556 select DM_SPI_FLASH
Simon Glass71556fb2015-10-17 19:41:23 -0600557 select SPL_SEPARATE_BSS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900558
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530559config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100560 bool "Support Xilinx ZynqMP Platform"
561 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600562 select DM
563 select OF_CONTROL
564 select DM_SERIAL
Michal Simek84c72042015-01-15 10:01:51 +0100565
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900566config TEGRA
567 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900568
Linus Walleijf91afc42015-01-23 11:50:53 +0100569config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900570 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900571 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900572
Linus Walleijf91afc42015-01-23 11:50:53 +0100573config TARGET_VEXPRESS64_BASE_FVP
574 bool "Support Versatile Express ARMv8a FVP BASE model"
575 select ARM64
576 select SEMIHOSTING
577
Ryan Harkinfc04b922015-10-09 17:18:02 +0100578config TARGET_VEXPRESS64_BASE_FVP_DRAM
579 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
580 select ARM64
581 help
582 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
583 the default config to allow the user to load the images directly into
584 DRAM using model parameters rather than by using semi-hosting to load
585 the files from the host filesystem.
586
Linus Walleijffc10372015-01-23 14:41:10 +0100587config TARGET_VEXPRESS64_JUNO
588 bool "Support Versatile Express Juno Development Platform"
589 select ARM64
590
Masahiro Yamadadd840582014-07-30 14:08:14 +0900591config TARGET_LS2085A_EMU
592 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900593 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100594 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900595
596config TARGET_LS2085A_SIMU
597 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900598 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100599 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900600
York Sun7288c2c2015-03-20 19:28:23 -0700601config TARGET_LS2085AQDS
602 bool "Support ls2085aqds"
603 select ARM64
604 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700605 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700606 help
607 Support for Freescale LS2085AQDS platform
608 The LS2085A Development System (QDS) is a high-performance
609 development platform that supports the QorIQ LS2085A
610 Layerscape Architecture processor.
611
York Sune2b65ea2015-03-20 19:28:24 -0700612config TARGET_LS2085ARDB
613 bool "Support ls2085ardb"
614 select ARM64
615 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700616 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700617 help
618 Support for Freescale LS2085ARDB platform.
619 The LS2085A Reference design board (RDB) is a high-performance
620 development platform that supports the QorIQ LS2085A
621 Layerscape Architecture processor.
622
Peter Griffin11ac2362015-07-30 18:55:23 +0100623config TARGET_HIKEY
624 bool "Support HiKey 96boards Consumer Edition Platform"
625 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100626 select DM
627 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100628 select DM_SERIAL
Peter Griffin11ac2362015-07-30 18:55:23 +0100629 help
630 Support for HiKey 96boards platform. It features a HI6220
631 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
632
Wang Huan550e3dc2014-09-05 13:52:44 +0800633config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800634 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100635 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800636 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800637config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800638 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100639 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800640 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800641
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800642config TARGET_LS1043ARDB
643 bool "Support ls1043ardb"
644 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800645 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800646 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800647 help
648 Support for Freescale LS1043ARDB platform.
649
Masahiro Yamadadd840582014-07-30 14:08:14 +0900650config TARGET_H2200
651 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100652 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900653
Masahiro Yamadadd840582014-07-30 14:08:14 +0900654config TARGET_COLIBRI_PXA270
655 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100656 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900657
Masahiro Yamada66cba042014-10-03 19:21:07 +0900658config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900659 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100660 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900661 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900662 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900663 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900664 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900665 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900666 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900667 select DM_SERIAL
668 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900669 help
670 Support for UniPhier SoC family developed by Socionext Inc.
671 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900672
rev13@wp.pled09a552015-03-01 12:44:42 +0100673config TARGET_STM32F429_DISCOVERY
674 bool "Support STM32F429 Discovery"
675 select CPU_V7M
676
Simon Glass2444dae2015-08-30 16:55:38 -0600677config ARCH_ROCKCHIP
678 bool "Support Rockchip SoCs"
679 select SUPPORT_SPL
680 select SPL
681 select OF_CONTROL
682 select CPU_V7
683 select DM
684
Masahiro Yamadadd840582014-07-30 14:08:14 +0900685endchoice
686
Masahiro Yamada4614b892015-02-20 17:04:01 +0900687source "arch/arm/mach-at91/Kconfig"
688
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900689source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900690
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900691source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700692
Thomas Abraham77b55e82015-08-03 17:58:00 +0530693source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900694
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900695source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900696
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900697source "arch/arm/mach-integrator/Kconfig"
698
Masahiro Yamada39a72342015-02-20 17:04:11 +0900699source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900700
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900701source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900702
Stefan Roesec3d89142015-08-25 13:18:38 +0200703source "arch/arm/mach-mvebu/Kconfig"
704
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500705source "arch/arm/cpu/armv7/mx7/Kconfig"
706
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100707source "arch/arm/cpu/armv7/mx6/Kconfig"
708
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200709source "arch/arm/cpu/armv7/mx5/Kconfig"
710
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900711source "arch/arm/cpu/armv7/omap3/Kconfig"
712
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900713source "arch/arm/cpu/armv7/omap4/Kconfig"
714
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900715source "arch/arm/cpu/armv7/omap5/Kconfig"
716
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900717source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900718
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900719source "arch/arm/cpu/armv7/rmobile/Kconfig"
720
Simon Glass2444dae2015-08-30 16:55:38 -0600721source "arch/arm/mach-rockchip/Kconfig"
722
Simon Glass311757b2014-10-07 22:01:50 -0600723source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
724
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900725source "arch/arm/mach-socfpga/Kconfig"
726
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900727source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900728
Masahiro Yamada4c425572015-02-27 02:26:42 +0900729source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900730
Masahiro Yamada0107f242015-03-16 16:43:22 +0900731source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900732
Hans de Goedeea624e12014-11-14 09:34:30 +0100733source "arch/arm/cpu/armv7/Kconfig"
734
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530735source "arch/arm/cpu/armv8/zynqmp/Kconfig"
736
Linus Walleij23b58772015-03-09 10:53:21 +0100737source "arch/arm/cpu/armv8/Kconfig"
738
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100739source "arch/arm/imx-common/Kconfig"
740
Masahiro Yamadadd840582014-07-30 14:08:14 +0900741source "board/BuR/kwb/Kconfig"
742source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900743source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900744source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200745source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200746source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900747source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900748source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900749source "board/armltd/vexpress/Kconfig"
750source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900751source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900752source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800753source "board/broadcom/bcmcygnus/Kconfig"
754source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900755source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900756source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400757source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900758source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900759source "board/denx/m28evk/Kconfig"
760source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900761source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700762source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700763source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800764source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800765source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800766source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900767source "board/freescale/mx23evk/Kconfig"
768source "board/freescale/mx25pdk/Kconfig"
769source "board/freescale/mx28evk/Kconfig"
770source "board/freescale/mx31ads/Kconfig"
771source "board/freescale/mx31pdk/Kconfig"
772source "board/freescale/mx35pdk/Kconfig"
773source "board/freescale/mx51evk/Kconfig"
774source "board/freescale/mx53ard/Kconfig"
775source "board/freescale/mx53evk/Kconfig"
776source "board/freescale/mx53loco/Kconfig"
777source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900778source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900779source "board/gumstix/pepper/Kconfig"
780source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400781source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900782source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900783source "board/isee/igep0033/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200784source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900785source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900786source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900787source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200788source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900789source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900790source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900791source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900792source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900793source "board/siemens/draco/Kconfig"
794source "board/siemens/pxm2/Kconfig"
795source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900796source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900797source "board/spear/spear300/Kconfig"
798source "board/spear/spear310/Kconfig"
799source "board/spear/spear320/Kconfig"
800source "board/spear/spear600/Kconfig"
801source "board/spear/x600/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100802source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800803source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900804source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900805source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200806source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900807source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900808source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800809source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900810source "board/ti/ti814x/Kconfig"
811source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900812source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900813source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530814source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400815source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200816source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900817source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200818source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900819
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900820source "arch/arm/Kconfig.debug"
821
Masahiro Yamadadd840582014-07-30 14:08:14 +0900822endmenu