blob: 0d756cbc55a2afa4612195ec21dec48c4d835897 [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
Peng Fanf3e9bec2015-08-19 15:48:57 +080065config SYS_L2CACHE_OFF
66 bool "L2cache off"
67 help
68 If SoC does not support L2CACHE or one do not want to enable
69 L2CACHE, choose this option.
70
Masahiro Yamadadd840582014-07-30 14:08:14 +090071choice
72 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -060073 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +090074
Masahiro Yamada4614b892015-02-20 17:04:01 +090075config ARCH_AT91
76 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090077
78config TARGET_EDB93XX
79 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010080 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090081
Masahiro Yamadadd840582014-07-30 14:08:14 +090082config TARGET_VCMA9
83 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010084 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090085
86config TARGET_SMDK2410
87 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010088 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090089
Masahiro Yamadadd840582014-07-30 14:08:14 +090090config TARGET_ASPENITE
91 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010092 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090093
94config TARGET_GPLUGD
95 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010096 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090097
Masahiro Yamada3491ba62014-08-31 07:11:01 +090098config ARCH_DAVINCI
99 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100100 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900101 help
102 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900103
Masahiro Yamada47539e22014-08-31 07:10:59 +0900104config KIRKWOOD
105 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100106 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900107
Stefan Roesec3d89142015-08-25 13:18:38 +0200108config ARCH_MVEBU
109 bool "Marvell MVEBU family (Armada XP/38x)"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200110 select CPU_V7
111 select SUPPORT_SPL
Stefan Roese9cffb232015-09-01 11:27:52 +0200112 select OF_CONTROL
113 select OF_SEPARATE
114 select DM
Stefan Roese1d51ea12015-09-02 08:41:41 +0200115 select DM_SERIAL
Stefan Roesea4884832014-10-22 12:13:19 +0200116
Masahiro Yamadadd840582014-07-30 14:08:14 +0900117config TARGET_DEVKIT3250
118 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100119 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300120 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900121
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200122config TARGET_WORK_92105
123 bool "Support work_92105"
124 select CPU_ARM926EJS
125 select SUPPORT_SPL
126
Masahiro Yamadadd840582014-07-30 14:08:14 +0900127config TARGET_MX25PDK
128 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100129 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900130
Masahiro Yamadadd840582014-07-30 14:08:14 +0900131config TARGET_ZMX25
132 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100133 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900134
135config TARGET_APF27
136 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100137 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900138 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900139
Masahiro Yamadadd840582014-07-30 14:08:14 +0900140config TARGET_APX4DEVKIT
141 bool "Support apx4devkit"
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
145config TARGET_XFI3
146 bool "Support xfi3"
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_M28EVK
151 bool "Support m28evk"
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_MX23EVK
156 bool "Support mx23evk"
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_MX28EVK
161 bool "Support mx28evk"
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_MX23_OLINUXINO
166 bool "Support mx23_olinuxino"
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_BG0900
171 bool "Support bg0900"
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_SANSA_FUZE_PLUS
176 bool "Support sansa_fuze_plus"
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_SC_SPS_1
181 bool "Support sc_sps_1"
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
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900185config ORION5X
186 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100187 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900188
Masahiro Yamadadd840582014-07-30 14:08:14 +0900189config TARGET_SPEAR300
190 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100191 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900192
193config TARGET_SPEAR310
194 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100195 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900196
197config TARGET_SPEAR320
198 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
201config TARGET_SPEAR600
202 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800205config TARGET_STV0991
206 bool "Support stv0991"
207 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900208 select DM
209 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700210 select DM_SPI
211 select DM_SPI_FLASH
212 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800213
Masahiro Yamadadd840582014-07-30 14:08:14 +0900214config TARGET_X600
215 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100216 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900217 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900218
Masahiro Yamadadd840582014-07-30 14:08:14 +0900219config TARGET_IMX31_PHYCORE
220 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100221 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900222
Masahiro Yamadadd840582014-07-30 14:08:14 +0900223config TARGET_MX31ADS
224 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100225 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900226
227config TARGET_MX31PDK
228 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100229 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900230 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900231
Masahiro Yamadadd840582014-07-30 14:08:14 +0900232config TARGET_WOODBURN
233 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100234 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900235
236config TARGET_WOODBURN_SD
237 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100238 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900239 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900240
241config TARGET_FLEA3
242 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100243 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900244
245config TARGET_MX35PDK
246 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100247 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900248
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900249config ARCH_BCM283X
250 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900251 select DM
252 select DM_SERIAL
253 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700254
Masahiro Yamadadd840582014-07-30 14:08:14 +0900255config TARGET_VEXPRESS_CA15_TC2
256 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100257 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100258 select CPU_V7_HAS_NONSEC
259 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
261config TARGET_VEXPRESS_CA5X2
262 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100263 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900264
265config TARGET_VEXPRESS_CA9X4
266 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100267 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900268
269config TARGET_KWB
270 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100271 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900272 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900273
274config TARGET_TSERIES
275 bool "Support tseries"
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_CM_T335
280 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100281 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900282 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900283 select DM
284 select DM_SERIAL
285 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900286
287config TARGET_PEPPER
288 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100289 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900290 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900291 select DM
292 select DM_SERIAL
293 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900294
295config TARGET_AM335X_IGEP0033
296 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100297 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900298 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900299 select DM
300 select DM_SERIAL
301 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900302
303config TARGET_PCM051
304 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100305 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900306 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900307 select DM
308 select DM_SERIAL
309 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900310
311config TARGET_DRACO
312 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100313 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900314 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900315
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200316config TARGET_THUBAN
317 bool "Support thuban"
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 Schocher578056c2015-06-15 14:56:41 +0200321config TARGET_RASTABAN
322 bool "Support rastaban"
323 select CPU_V7
324 select SUPPORT_SPL
325
Masahiro Yamadadd840582014-07-30 14:08:14 +0900326config TARGET_PXM2
327 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100328 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900329 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900330
331config TARGET_RUT
332 bool "Support rut"
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_PENGWYN
337 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100338 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900339 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900340 select DM
341 select DM_SERIAL
342 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900343
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200344config TARGET_AM335X_BALTOS
345 bool "Support am335x_baltos"
346 select CPU_V7
347 select SUPPORT_SPL
348 select DM
349 select DM_SERIAL
350 select DM_GPIO
351
Masahiro Yamadadd840582014-07-30 14:08:14 +0900352config TARGET_AM335X_EVM
353 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100354 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900355 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900356 select DM
357 select DM_SERIAL
358 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900359
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200360config TARGET_AM335X_SL50
361 bool "Support am335x_sl50"
362 select CPU_V7
363 select SUPPORT_SPL
364 select DM
365 select DM_SERIAL
366
Masahiro Yamadadd840582014-07-30 14:08:14 +0900367config TARGET_AM43XX_EVM
368 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100369 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900370 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900371
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800372config TARGET_BAV335X
373 bool "Support bav335x"
374 select CPU_V7
375 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900376 select DM
377 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800378 help
379 The BAV335x OEM Network Processor integrates all the functions of an
380 embedded network computer in a small, easy to use SODIMM module which
381 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
382 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
383 ethernet with simple connection to external connectors.
384
385 For more information, visit: http://birdland.com/oem
386
Masahiro Yamadadd840582014-07-30 14:08:14 +0900387config TARGET_TI814X_EVM
388 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100389 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900390 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900391
392config TARGET_TI816X_EVM
393 bool "Support ti816x_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
Masahiro Yamadadd840582014-07-30 14:08:14 +0900397config TARGET_BCM28155_AP
398 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100399 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900400
Steve Raeabb16782014-11-11 11:32:18 -0800401config TARGET_BCMCYGNUS
402 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100403 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700404
Steve Raeabb16782014-11-11 11:32:18 -0800405config TARGET_BCMNSP
406 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100407 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700408
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900409config ARCH_EXYNOS
410 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100411 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900412 select DM
413 select DM_SPI_FLASH
414 select DM_SERIAL
415 select DM_SPI
416 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900417
Simon Glass311757b2014-10-07 22:01:50 -0600418config ARCH_S5PC1XX
419 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100420 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900421 select DM
422 select DM_SERIAL
423 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600424
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900425config ARCH_HIGHBANK
426 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100427 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900428
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900429config ARCH_INTEGRATOR
430 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200431 select DM
432 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900433
Masahiro Yamadac338f092014-08-31 07:11:05 +0900434config ARCH_KEYSTONE
435 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100436 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900437 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900438
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500439config ARCH_MX7
440 bool "Freescale MX7"
441 select CPU_V7
442
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100443config ARCH_MX6
444 bool "Freescale MX6"
445 select CPU_V7
446
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200447config ARCH_MX5
448 bool "Freescale MX5"
449 select CPU_V7
450
Masahiro Yamadadd840582014-07-30 14:08:14 +0900451config TARGET_M53EVK
452 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100453 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900454 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900455
Masahiro Yamadadd840582014-07-30 14:08:14 +0900456config TARGET_MX51EVK
457 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100458 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900459
460config TARGET_MX53ARD
461 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100462 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900463
464config TARGET_MX53EVK
465 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100466 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900467
468config TARGET_MX53LOCO
469 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100470 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900471
472config TARGET_MX53SMD
473 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100474 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900475
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900476config OMAP34XX
477 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100478 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900479
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900480config OMAP44XX
481 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900483 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900484
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900485config OMAP54XX
486 bool "OMAP54XX 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 Yamadaf40b9892014-08-31 07:10:57 +0900490config RMOBILE
491 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100492 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900493
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900494config ARCH_SOCFPGA
495 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100496 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900497 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200498 select OF_CONTROL
499 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900500 select DM
501 select DM_SPI_FLASH
502 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900503
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300504config TARGET_CM_T43
505 bool "Support cm_t43"
506 select CPU_V7
507 select SUPPORT_SPL
508
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100509config ARCH_SUNXI
510 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200511 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200512 select DM
513 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400514 select DM_ETH
515 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200516 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200517 select OF_CONTROL
518 select OF_SEPARATE
Hans de Goedeff42d102015-09-13 13:02:48 +0200519 select SPL_STACK_R if !MACH_SUN9I
Hans de Goede6d0bdfd2015-09-13 12:31:24 +0200520 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
Tom Rini45368822015-06-30 16:51:15 -0400521 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200522 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200523 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800524
Lucile Quirion9ee16892015-06-30 17:17:47 -0400525config TARGET_TS4800
526 bool "Support TS4800"
527 select CPU_V7
528
Masahiro Yamadadd840582014-07-30 14:08:14 +0900529config TARGET_VF610TWR
530 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100531 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900532
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530533config TARGET_COLIBRI_VF
534 bool "Support Colibri VF50/61"
535 select CPU_V7
536
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200537config TARGET_PCM052
538 bool "Support pcm-052"
539 select CPU_V7
540
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900541config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900542 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100543 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900544 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530545 select OF_CONTROL
Simon Glass71556fb2015-10-17 19:41:23 -0600546 select SPL_OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900547 select DM
Simon Glass71556fb2015-10-17 19:41:23 -0600548 select SPL_DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530549 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600550 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530551 select DM_SPI_FLASH
Simon Glass71556fb2015-10-17 19:41:23 -0600552 select SPL_SEPARATE_BSS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900553
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530554config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100555 bool "Support Xilinx ZynqMP Platform"
556 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600557 select DM
558 select OF_CONTROL
559 select DM_SERIAL
Michal Simek84c72042015-01-15 10:01:51 +0100560
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900561config TEGRA
562 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900563
Linus Walleijf91afc42015-01-23 11:50:53 +0100564config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900565 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900566 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900567
Linus Walleijf91afc42015-01-23 11:50:53 +0100568config TARGET_VEXPRESS64_BASE_FVP
569 bool "Support Versatile Express ARMv8a FVP BASE model"
570 select ARM64
571 select SEMIHOSTING
572
Ryan Harkinfc04b922015-10-09 17:18:02 +0100573config TARGET_VEXPRESS64_BASE_FVP_DRAM
574 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
575 select ARM64
576 help
577 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
578 the default config to allow the user to load the images directly into
579 DRAM using model parameters rather than by using semi-hosting to load
580 the files from the host filesystem.
581
Linus Walleijffc10372015-01-23 14:41:10 +0100582config TARGET_VEXPRESS64_JUNO
583 bool "Support Versatile Express Juno Development Platform"
584 select ARM64
585
Masahiro Yamadadd840582014-07-30 14:08:14 +0900586config TARGET_LS2085A_EMU
587 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900588 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100589 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900590
591config TARGET_LS2085A_SIMU
592 bool "Support ls2085a_simu"
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
York Sun7288c2c2015-03-20 19:28:23 -0700596config TARGET_LS2085AQDS
597 bool "Support ls2085aqds"
598 select ARM64
599 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700600 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700601 help
602 Support for Freescale LS2085AQDS platform
603 The LS2085A Development System (QDS) is a high-performance
604 development platform that supports the QorIQ LS2085A
605 Layerscape Architecture processor.
606
York Sune2b65ea2015-03-20 19:28:24 -0700607config TARGET_LS2085ARDB
608 bool "Support ls2085ardb"
609 select ARM64
610 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700611 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700612 help
613 Support for Freescale LS2085ARDB platform.
614 The LS2085A Reference design board (RDB) is a high-performance
615 development platform that supports the QorIQ LS2085A
616 Layerscape Architecture processor.
617
Peter Griffin11ac2362015-07-30 18:55:23 +0100618config TARGET_HIKEY
619 bool "Support HiKey 96boards Consumer Edition Platform"
620 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100621 select DM
622 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100623 select DM_SERIAL
Peter Griffin11ac2362015-07-30 18:55:23 +0100624 help
625 Support for HiKey 96boards platform. It features a HI6220
626 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
627
Wang Huan550e3dc2014-09-05 13:52:44 +0800628config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800629 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100630 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800631 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800632config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800633 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100634 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800635 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800636
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800637config TARGET_LS1043ARDB
638 bool "Support ls1043ardb"
639 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800640 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800641 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800642 help
643 Support for Freescale LS1043ARDB platform.
644
Masahiro Yamadadd840582014-07-30 14:08:14 +0900645config TARGET_H2200
646 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100647 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900648
Masahiro Yamadadd840582014-07-30 14:08:14 +0900649config TARGET_COLIBRI_PXA270
650 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100651 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900652
Masahiro Yamada66cba042014-10-03 19:21:07 +0900653config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900654 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100655 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900656 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900657 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900658 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900659 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900660 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900661 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900662 select DM_SERIAL
663 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900664 help
665 Support for UniPhier SoC family developed by Socionext Inc.
666 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900667
rev13@wp.pled09a552015-03-01 12:44:42 +0100668config TARGET_STM32F429_DISCOVERY
669 bool "Support STM32F429 Discovery"
670 select CPU_V7M
671
Simon Glass2444dae2015-08-30 16:55:38 -0600672config ARCH_ROCKCHIP
673 bool "Support Rockchip SoCs"
674 select SUPPORT_SPL
675 select SPL
676 select OF_CONTROL
677 select CPU_V7
678 select DM
679
Masahiro Yamadadd840582014-07-30 14:08:14 +0900680endchoice
681
Masahiro Yamada4614b892015-02-20 17:04:01 +0900682source "arch/arm/mach-at91/Kconfig"
683
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900684source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900685
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900686source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700687
Thomas Abraham77b55e82015-08-03 17:58:00 +0530688source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900689
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900690source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900691
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900692source "arch/arm/mach-integrator/Kconfig"
693
Masahiro Yamada39a72342015-02-20 17:04:11 +0900694source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900695
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900696source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900697
Stefan Roesec3d89142015-08-25 13:18:38 +0200698source "arch/arm/mach-mvebu/Kconfig"
699
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500700source "arch/arm/cpu/armv7/mx7/Kconfig"
701
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100702source "arch/arm/cpu/armv7/mx6/Kconfig"
703
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200704source "arch/arm/cpu/armv7/mx5/Kconfig"
705
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900706source "arch/arm/cpu/armv7/omap3/Kconfig"
707
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900708source "arch/arm/cpu/armv7/omap4/Kconfig"
709
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900710source "arch/arm/cpu/armv7/omap5/Kconfig"
711
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900712source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900713
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900714source "arch/arm/cpu/armv7/rmobile/Kconfig"
715
Simon Glass2444dae2015-08-30 16:55:38 -0600716source "arch/arm/mach-rockchip/Kconfig"
717
Simon Glass311757b2014-10-07 22:01:50 -0600718source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
719
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900720source "arch/arm/mach-socfpga/Kconfig"
721
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900722source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900723
Masahiro Yamada4c425572015-02-27 02:26:42 +0900724source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900725
Masahiro Yamada0107f242015-03-16 16:43:22 +0900726source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900727
Hans de Goedeea624e12014-11-14 09:34:30 +0100728source "arch/arm/cpu/armv7/Kconfig"
729
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530730source "arch/arm/cpu/armv8/zynqmp/Kconfig"
731
Linus Walleij23b58772015-03-09 10:53:21 +0100732source "arch/arm/cpu/armv8/Kconfig"
733
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100734source "arch/arm/imx-common/Kconfig"
735
Masahiro Yamadadd840582014-07-30 14:08:14 +0900736source "board/BuR/kwb/Kconfig"
737source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900738source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900739source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200740source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200741source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900742source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900743source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900744source "board/armltd/vexpress/Kconfig"
745source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900746source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900747source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800748source "board/broadcom/bcmcygnus/Kconfig"
749source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900750source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900751source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400752source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900753source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900754source "board/denx/m28evk/Kconfig"
755source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900756source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700757source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700758source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800759source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800760source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800761source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900762source "board/freescale/mx23evk/Kconfig"
763source "board/freescale/mx25pdk/Kconfig"
764source "board/freescale/mx28evk/Kconfig"
765source "board/freescale/mx31ads/Kconfig"
766source "board/freescale/mx31pdk/Kconfig"
767source "board/freescale/mx35pdk/Kconfig"
768source "board/freescale/mx51evk/Kconfig"
769source "board/freescale/mx53ard/Kconfig"
770source "board/freescale/mx53evk/Kconfig"
771source "board/freescale/mx53loco/Kconfig"
772source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900773source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900774source "board/gumstix/pepper/Kconfig"
775source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400776source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900777source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900778source "board/isee/igep0033/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200779source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900780source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900781source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900782source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200783source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900784source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900785source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900786source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900787source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900788source "board/siemens/draco/Kconfig"
789source "board/siemens/pxm2/Kconfig"
790source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900791source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900792source "board/spear/spear300/Kconfig"
793source "board/spear/spear310/Kconfig"
794source "board/spear/spear320/Kconfig"
795source "board/spear/spear600/Kconfig"
796source "board/spear/x600/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100797source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800798source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900799source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900800source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200801source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900802source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900803source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800804source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900805source "board/ti/ti814x/Kconfig"
806source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900807source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900808source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530809source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400810source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200811source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900812source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200813source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900814
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900815source "arch/arm/Kconfig.debug"
816
Masahiro Yamadadd840582014-07-30 14:08:14 +0900817endmenu