blob: 50322c4158370d6252c659c71a0e29a4d22c11ea [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)"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900110 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100111 select SUPPORT_SPL
Stefan Roese9cffb232015-09-01 11:27:52 +0200112 select OF_CONTROL
113 select OF_SEPARATE
114 select DM
Stefan Roesea4884832014-10-22 12:13:19 +0200115
Masahiro Yamadadd840582014-07-30 14:08:14 +0900116config TARGET_DEVKIT3250
117 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100118 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300119 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900120
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200121config TARGET_WORK_92105
122 bool "Support work_92105"
123 select CPU_ARM926EJS
124 select SUPPORT_SPL
125
Masahiro Yamadadd840582014-07-30 14:08:14 +0900126config TARGET_MX25PDK
127 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100128 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900129
Masahiro Yamadadd840582014-07-30 14:08:14 +0900130config TARGET_ZMX25
131 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100132 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900133
134config TARGET_APF27
135 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100136 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900137 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900138
Masahiro Yamadadd840582014-07-30 14:08:14 +0900139config TARGET_APX4DEVKIT
140 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100141 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900142 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900143
144config TARGET_XFI3
145 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100146 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900147 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900148
149config TARGET_M28EVK
150 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100151 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900152 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900153
154config TARGET_MX23EVK
155 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100156 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900157 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900158
159config TARGET_MX28EVK
160 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100161 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900162 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900163
164config TARGET_MX23_OLINUXINO
165 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100166 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900167 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900168
169config TARGET_BG0900
170 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100171 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900172 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900173
174config TARGET_SANSA_FUZE_PLUS
175 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100176 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900177 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900178
179config TARGET_SC_SPS_1
180 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100181 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900182 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900183
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900184config ORION5X
185 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100186 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900187
Masahiro Yamadadd840582014-07-30 14:08:14 +0900188config TARGET_SPEAR300
189 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100190 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900191
192config TARGET_SPEAR310
193 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900195
196config TARGET_SPEAR320
197 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900199
200config TARGET_SPEAR600
201 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100202 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900203
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800204config TARGET_STV0991
205 bool "Support stv0991"
206 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900207 select DM
208 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700209 select DM_SPI
210 select DM_SPI_FLASH
211 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800212
Masahiro Yamadadd840582014-07-30 14:08:14 +0900213config TARGET_X600
214 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900216 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900217
Masahiro Yamadadd840582014-07-30 14:08:14 +0900218config TARGET_IMX31_PHYCORE
219 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100220 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900221
Masahiro Yamadadd840582014-07-30 14:08:14 +0900222config TARGET_MX31ADS
223 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100224 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900225
226config TARGET_MX31PDK
227 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100228 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900229 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900230
Masahiro Yamadadd840582014-07-30 14:08:14 +0900231config TARGET_WOODBURN
232 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100233 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234
235config TARGET_WOODBURN_SD
236 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900238 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900239
240config TARGET_FLEA3
241 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100242 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243
244config TARGET_MX35PDK
245 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100246 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900248config ARCH_BCM283X
249 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900250 select DM
251 select DM_SERIAL
252 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700253
Masahiro Yamadadd840582014-07-30 14:08:14 +0900254config TARGET_VEXPRESS_CA15_TC2
255 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100256 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100257 select CPU_V7_HAS_NONSEC
258 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900259
260config TARGET_VEXPRESS_CA5X2
261 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100262 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900263
264config TARGET_VEXPRESS_CA9X4
265 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100266 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900267
268config TARGET_KWB
269 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100270 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900271 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900272
273config TARGET_TSERIES
274 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100275 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900276 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900277
278config TARGET_CM_T335
279 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100280 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900281 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900282 select DM
283 select DM_SERIAL
284 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900285
286config TARGET_PEPPER
287 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100288 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900289 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900290 select DM
291 select DM_SERIAL
292 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900293
294config TARGET_AM335X_IGEP0033
295 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100296 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900297 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900298 select DM
299 select DM_SERIAL
300 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900301
302config TARGET_PCM051
303 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100304 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900305 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900306 select DM
307 select DM_SERIAL
308 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900309
310config TARGET_DRACO
311 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100312 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900313 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900314
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200315config TARGET_THUBAN
316 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100317 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900318 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900319
Heiko Schocher578056c2015-06-15 14:56:41 +0200320config TARGET_RASTABAN
321 bool "Support rastaban"
322 select CPU_V7
323 select SUPPORT_SPL
324
Masahiro Yamadadd840582014-07-30 14:08:14 +0900325config TARGET_PXM2
326 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100327 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900328 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900329
330config TARGET_RUT
331 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100332 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900333 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900334
335config TARGET_PENGWYN
336 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100337 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900338 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900339 select DM
340 select DM_SERIAL
341 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200343config TARGET_AM335X_BALTOS
344 bool "Support am335x_baltos"
345 select CPU_V7
346 select SUPPORT_SPL
347 select DM
348 select DM_SERIAL
349 select DM_GPIO
350
Masahiro Yamadadd840582014-07-30 14:08:14 +0900351config TARGET_AM335X_EVM
352 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100353 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900354 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900355 select DM
356 select DM_SERIAL
357 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900358
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200359config TARGET_AM335X_SL50
360 bool "Support am335x_sl50"
361 select CPU_V7
362 select SUPPORT_SPL
363 select DM
364 select DM_SERIAL
365
Masahiro Yamadadd840582014-07-30 14:08:14 +0900366config TARGET_AM43XX_EVM
367 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100368 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900369 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900370
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800371config TARGET_BAV335X
372 bool "Support bav335x"
373 select CPU_V7
374 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900375 select DM
376 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800377 help
378 The BAV335x OEM Network Processor integrates all the functions of an
379 embedded network computer in a small, easy to use SODIMM module which
380 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
381 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
382 ethernet with simple connection to external connectors.
383
384 For more information, visit: http://birdland.com/oem
385
Masahiro Yamadadd840582014-07-30 14:08:14 +0900386config TARGET_TI814X_EVM
387 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100388 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900389 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900390
391config TARGET_TI816X_EVM
392 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100393 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900394 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900395
Masahiro Yamadadd840582014-07-30 14:08:14 +0900396config TARGET_BCM28155_AP
397 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100398 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900399
Steve Raeabb16782014-11-11 11:32:18 -0800400config TARGET_BCMCYGNUS
401 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100402 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700403
Steve Raeabb16782014-11-11 11:32:18 -0800404config TARGET_BCMNSP
405 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100406 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700407
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900408config ARCH_EXYNOS
409 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100410 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900411 select DM
412 select DM_SPI_FLASH
413 select DM_SERIAL
414 select DM_SPI
415 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900416
Simon Glass311757b2014-10-07 22:01:50 -0600417config ARCH_S5PC1XX
418 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100419 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900420 select DM
421 select DM_SERIAL
422 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600423
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900424config ARCH_HIGHBANK
425 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100426 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900427
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900428config ARCH_INTEGRATOR
429 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200430 select DM
431 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900432
Masahiro Yamadac338f092014-08-31 07:11:05 +0900433config ARCH_KEYSTONE
434 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100435 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900436 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900437
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500438config ARCH_MX7
439 bool "Freescale MX7"
440 select CPU_V7
441
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100442config ARCH_MX6
443 bool "Freescale MX6"
444 select CPU_V7
445
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200446config ARCH_MX5
447 bool "Freescale MX5"
448 select CPU_V7
449
Masahiro Yamadadd840582014-07-30 14:08:14 +0900450config TARGET_M53EVK
451 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100452 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900453 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900454
Masahiro Yamadadd840582014-07-30 14:08:14 +0900455config TARGET_MX51EVK
456 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100457 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900458
459config TARGET_MX53ARD
460 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100461 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900462
463config TARGET_MX53EVK
464 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100465 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900466
467config TARGET_MX53LOCO
468 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100469 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900470
471config TARGET_MX53SMD
472 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100473 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900474
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900475config OMAP34XX
476 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100477 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900478
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900479config OMAP44XX
480 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100481 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900482 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900484config OMAP54XX
485 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900487 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900488
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900489config RMOBILE
490 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100491 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900492
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900493config ARCH_SOCFPGA
494 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100495 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900496 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200497 select OF_CONTROL
498 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900499 select DM
500 select DM_SPI_FLASH
501 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900502
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300503config TARGET_CM_T43
504 bool "Support cm_t43"
505 select CPU_V7
506 select SUPPORT_SPL
507
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100508config ARCH_SUNXI
509 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200510 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200511 select DM
512 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400513 select DM_ETH
514 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200515 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200516 select OF_CONTROL
517 select OF_SEPARATE
Tom Rini45368822015-06-30 16:51:15 -0400518 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200519 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200520 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800521
Lucile Quirion9ee16892015-06-30 17:17:47 -0400522config TARGET_TS4800
523 bool "Support TS4800"
524 select CPU_V7
525
Masahiro Yamadadd840582014-07-30 14:08:14 +0900526config TARGET_VF610TWR
527 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100528 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900529
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530530config TARGET_COLIBRI_VF
531 bool "Support Colibri VF50/61"
532 select CPU_V7
533
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200534config TARGET_PCM052
535 bool "Support pcm-052"
536 select CPU_V7
537
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900538config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900539 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100540 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900541 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530542 select OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900543 select DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530544 select DM_SPI
545 select DM_SPI_FLASH
Masahiro Yamadadd840582014-07-30 14:08:14 +0900546
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530547config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100548 bool "Support Xilinx ZynqMP Platform"
549 select ARM64
550
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900551config TEGRA
552 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900553
Linus Walleijf91afc42015-01-23 11:50:53 +0100554config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900555 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900556 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900557
Linus Walleijf91afc42015-01-23 11:50:53 +0100558config TARGET_VEXPRESS64_BASE_FVP
559 bool "Support Versatile Express ARMv8a FVP BASE model"
560 select ARM64
561 select SEMIHOSTING
562
Ryan Harkinfc04b922015-10-09 17:18:02 +0100563config TARGET_VEXPRESS64_BASE_FVP_DRAM
564 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
565 select ARM64
566 help
567 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
568 the default config to allow the user to load the images directly into
569 DRAM using model parameters rather than by using semi-hosting to load
570 the files from the host filesystem.
571
Linus Walleijffc10372015-01-23 14:41:10 +0100572config TARGET_VEXPRESS64_JUNO
573 bool "Support Versatile Express Juno Development Platform"
574 select ARM64
575
Masahiro Yamadadd840582014-07-30 14:08:14 +0900576config TARGET_LS2085A_EMU
577 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900578 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100579 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900580
581config TARGET_LS2085A_SIMU
582 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900583 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100584 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900585
York Sun7288c2c2015-03-20 19:28:23 -0700586config TARGET_LS2085AQDS
587 bool "Support ls2085aqds"
588 select ARM64
589 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700590 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700591 help
592 Support for Freescale LS2085AQDS platform
593 The LS2085A Development System (QDS) is a high-performance
594 development platform that supports the QorIQ LS2085A
595 Layerscape Architecture processor.
596
York Sune2b65ea2015-03-20 19:28:24 -0700597config TARGET_LS2085ARDB
598 bool "Support ls2085ardb"
599 select ARM64
600 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700601 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700602 help
603 Support for Freescale LS2085ARDB platform.
604 The LS2085A Reference design board (RDB) is a high-performance
605 development platform that supports the QorIQ LS2085A
606 Layerscape Architecture processor.
607
Peter Griffin11ac2362015-07-30 18:55:23 +0100608config TARGET_HIKEY
609 bool "Support HiKey 96boards Consumer Edition Platform"
610 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100611 select DM
612 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100613 select DM_SERIAL
Peter Griffin11ac2362015-07-30 18:55:23 +0100614 help
615 Support for HiKey 96boards platform. It features a HI6220
616 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
617
Wang Huan550e3dc2014-09-05 13:52:44 +0800618config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800619 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100620 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800621 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800622config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800623 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100624 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800625 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800626
Masahiro Yamadadd840582014-07-30 14:08:14 +0900627config TARGET_H2200
628 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100629 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900630
Masahiro Yamadadd840582014-07-30 14:08:14 +0900631config TARGET_COLIBRI_PXA270
632 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100633 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900634
Masahiro Yamada66cba042014-10-03 19:21:07 +0900635config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900636 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100637 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900638 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900639 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900640 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900641 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900642 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900643 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900644 select DM_SERIAL
645 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900646 help
647 Support for UniPhier SoC family developed by Socionext Inc.
648 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900649
rev13@wp.pled09a552015-03-01 12:44:42 +0100650config TARGET_STM32F429_DISCOVERY
651 bool "Support STM32F429 Discovery"
652 select CPU_V7M
653
Simon Glass2444dae2015-08-30 16:55:38 -0600654config ARCH_ROCKCHIP
655 bool "Support Rockchip SoCs"
656 select SUPPORT_SPL
657 select SPL
658 select OF_CONTROL
659 select CPU_V7
660 select DM
661
Masahiro Yamadadd840582014-07-30 14:08:14 +0900662endchoice
663
Masahiro Yamada4614b892015-02-20 17:04:01 +0900664source "arch/arm/mach-at91/Kconfig"
665
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900666source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900667
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900668source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700669
Thomas Abraham77b55e82015-08-03 17:58:00 +0530670source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900671
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900672source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900673
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900674source "arch/arm/mach-integrator/Kconfig"
675
Masahiro Yamada39a72342015-02-20 17:04:11 +0900676source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900677
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900678source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900679
Stefan Roesec3d89142015-08-25 13:18:38 +0200680source "arch/arm/mach-mvebu/Kconfig"
681
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500682source "arch/arm/cpu/armv7/mx7/Kconfig"
683
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100684source "arch/arm/cpu/armv7/mx6/Kconfig"
685
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200686source "arch/arm/cpu/armv7/mx5/Kconfig"
687
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900688source "arch/arm/cpu/armv7/omap3/Kconfig"
689
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900690source "arch/arm/cpu/armv7/omap4/Kconfig"
691
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900692source "arch/arm/cpu/armv7/omap5/Kconfig"
693
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900694source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900695
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900696source "arch/arm/cpu/armv7/rmobile/Kconfig"
697
Simon Glass2444dae2015-08-30 16:55:38 -0600698source "arch/arm/mach-rockchip/Kconfig"
699
Simon Glass311757b2014-10-07 22:01:50 -0600700source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
701
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900702source "arch/arm/mach-socfpga/Kconfig"
703
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900704source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900705
Masahiro Yamada4c425572015-02-27 02:26:42 +0900706source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900707
Masahiro Yamada0107f242015-03-16 16:43:22 +0900708source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900709
Hans de Goedeea624e12014-11-14 09:34:30 +0100710source "arch/arm/cpu/armv7/Kconfig"
711
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530712source "arch/arm/cpu/armv8/zynqmp/Kconfig"
713
Linus Walleij23b58772015-03-09 10:53:21 +0100714source "arch/arm/cpu/armv8/Kconfig"
715
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100716source "arch/arm/imx-common/Kconfig"
717
Masahiro Yamadadd840582014-07-30 14:08:14 +0900718source "board/BuR/kwb/Kconfig"
719source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900720source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900721source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200722source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200723source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900724source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900725source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900726source "board/armltd/vexpress/Kconfig"
727source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900728source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900729source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800730source "board/broadcom/bcmcygnus/Kconfig"
731source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900732source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900733source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400734source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900735source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900736source "board/denx/m28evk/Kconfig"
737source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900738source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700739source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700740source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800741source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800742source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900743source "board/freescale/mx23evk/Kconfig"
744source "board/freescale/mx25pdk/Kconfig"
745source "board/freescale/mx28evk/Kconfig"
746source "board/freescale/mx31ads/Kconfig"
747source "board/freescale/mx31pdk/Kconfig"
748source "board/freescale/mx35pdk/Kconfig"
749source "board/freescale/mx51evk/Kconfig"
750source "board/freescale/mx53ard/Kconfig"
751source "board/freescale/mx53evk/Kconfig"
752source "board/freescale/mx53loco/Kconfig"
753source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900754source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900755source "board/gumstix/pepper/Kconfig"
756source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400757source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900758source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900759source "board/isee/igep0033/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200760source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900761source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900762source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900763source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200764source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900765source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900766source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900767source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900768source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900769source "board/siemens/draco/Kconfig"
770source "board/siemens/pxm2/Kconfig"
771source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900772source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900773source "board/spear/spear300/Kconfig"
774source "board/spear/spear310/Kconfig"
775source "board/spear/spear320/Kconfig"
776source "board/spear/spear600/Kconfig"
777source "board/spear/x600/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100778source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800779source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900780source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900781source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200782source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900783source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900784source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800785source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900786source "board/ti/ti814x/Kconfig"
787source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900788source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900789source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530790source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400791source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200792source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900793source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200794source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900795
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900796source "arch/arm/Kconfig.debug"
797
Masahiro Yamadadd840582014-07-30 14:08:14 +0900798endmenu