blob: 50322c4158370d6252c659c71a0e29a4d22c11ea [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada0d46c342014-09-14 03:01:51 +09007config ARM64
8 bool
9
Georges Savoundararadj3bae15f2014-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.plb3b57e82015-03-01 12:44:39 +010036config CPU_V7M
37 bool
38
Georges Savoundararadj3bae15f2014-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.plb3b57e82015-03-01 12:44:39 +010053 default "armv7m" if CPU_V7M
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010054 default "pxa" if CPU_PXA
55 default "sa1100" if CPU_SA1100
Masahiro Yamadadade3b02014-11-06 11:39:27 +090056 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010057
Linus Walleij800d6fd2015-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 Fan10ddab42015-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 Yamadad3ae6782014-07-30 14:08:14 +090071choice
72 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -060073 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090074
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +090075config ARCH_AT91
76 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090077
78config TARGET_EDB93XX
79 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010080 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090081
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090082config TARGET_VCMA9
83 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010084 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090085
86config TARGET_SMDK2410
87 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010088 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090089
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090090config TARGET_ASPENITE
91 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010092 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090093
94config TARGET_GPLUGD
95 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010096 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090097
Masahiro Yamadae604ef92014-08-31 07:11:01 +090098config ARCH_DAVINCI
99 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100100 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900101 help
102 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900103
Masahiro Yamadad7570852014-08-31 07:10:59 +0900104config KIRKWOOD
105 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100106 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900107
Stefan Roese383e0c12015-08-25 13:18:38 +0200108config ARCH_MVEBU
109 bool "Marvell MVEBU family (Armada XP/38x)"
Stefan Roese073efd72015-04-25 06:29:56 +0200110 select CPU_V7
111 select SUPPORT_SPL
Stefan Roese096de4f2015-09-01 11:27:52 +0200112 select OF_CONTROL
113 select OF_SEPARATE
114 select DM
Stefan Roese073efd72015-04-25 06:29:56 +0200115
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900116config TARGET_DEVKIT3250
117 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100118 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300119 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900120
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200121config TARGET_WORK_92105
122 bool "Support work_92105"
123 select CPU_ARM926EJS
124 select SUPPORT_SPL
125
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900126config TARGET_MX25PDK
127 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100128 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900129
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900130config TARGET_ZMX25
131 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100132 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900133
134config TARGET_APF27
135 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100136 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900137 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900138
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900139config TARGET_APX4DEVKIT
140 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100141 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900142 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900143
144config TARGET_XFI3
145 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100146 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900147 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900148
149config TARGET_M28EVK
150 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100151 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900152 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900153
154config TARGET_MX23EVK
155 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100156 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900157 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900158
159config TARGET_MX28EVK
160 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100161 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900162 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900163
164config TARGET_MX23_OLINUXINO
165 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100166 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900167 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900168
169config TARGET_BG0900
170 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100171 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900172 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900173
174config TARGET_SANSA_FUZE_PLUS
175 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100176 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900177 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900178
179config TARGET_SC_SPS_1
180 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100181 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900182 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900183
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900184config ORION5X
185 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100186 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900187
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900188config TARGET_SPEAR300
189 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100190 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900191
192config TARGET_SPEAR310
193 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900195
196config TARGET_SPEAR320
197 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900199
200config TARGET_SPEAR600
201 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100202 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900203
Vikas Manocha33913c52014-11-18 10:42:22 -0800204config TARGET_STV0991
205 bool "Support stv0991"
206 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900207 select DM
208 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700209 select DM_SPI
210 select DM_SPI_FLASH
211 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800212
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900213config TARGET_X600
214 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900216 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900217
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900218config TARGET_IMX31_PHYCORE
219 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100220 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900221
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900222config TARGET_MX31ADS
223 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100224 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900225
226config TARGET_MX31PDK
227 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100228 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900229 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900230
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900231config TARGET_WOODBURN
232 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100233 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900234
235config TARGET_WOODBURN_SD
236 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100237 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900238 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900239
240config TARGET_FLEA3
241 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100242 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900243
244config TARGET_MX35PDK
245 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100246 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900247
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900248config ARCH_BCM283X
249 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900250 select DM
251 select DM_SERIAL
252 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700253
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900254config TARGET_VEXPRESS_CA15_TC2
255 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100256 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100257 select CPU_V7_HAS_NONSEC
258 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900259
260config TARGET_VEXPRESS_CA5X2
261 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100262 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900263
264config TARGET_VEXPRESS_CA9X4
265 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100266 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900267
268config TARGET_KWB
269 bool "Support kwb"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100270 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900271 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900272
273config TARGET_TSERIES
274 bool "Support tseries"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100275 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900276 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900277
278config TARGET_CM_T335
279 bool "Support cm_t335"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100280 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900281 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900282 select DM
283 select DM_SERIAL
284 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900285
286config TARGET_PEPPER
287 bool "Support pepper"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100288 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900289 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900290 select DM
291 select DM_SERIAL
292 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900293
294config TARGET_AM335X_IGEP0033
295 bool "Support am335x_igep0033"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100296 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900297 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900298 select DM
299 select DM_SERIAL
300 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900301
302config TARGET_PCM051
303 bool "Support pcm051"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100304 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900305 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900306 select DM
307 select DM_SERIAL
308 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900309
310config TARGET_DRACO
311 bool "Support draco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100312 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900313 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900314
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200315config TARGET_THUBAN
316 bool "Support thuban"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100317 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900318 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900319
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200320config TARGET_RASTABAN
321 bool "Support rastaban"
322 select CPU_V7
323 select SUPPORT_SPL
324
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900325config TARGET_PXM2
326 bool "Support pxm2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100327 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900328 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900329
330config TARGET_RUT
331 bool "Support rut"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100332 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900333 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900334
335config TARGET_PENGWYN
336 bool "Support pengwyn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100337 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900338 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900339 select DM
340 select DM_SERIAL
341 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900342
Yegor Yefremovfa8b71b2015-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 Yamadad3ae6782014-07-30 14:08:14 +0900351config TARGET_AM335X_EVM
352 bool "Support am335x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100353 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900354 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900355 select DM
356 select DM_SERIAL
357 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900358
Enric Balletbò i Serra9d89b082015-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 Yamadad3ae6782014-07-30 14:08:14 +0900366config TARGET_AM43XX_EVM
367 bool "Support am43xx_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100368 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900369 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900370
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800371config TARGET_BAV335X
372 bool "Support bav335x"
373 select CPU_V7
374 select SUPPORT_SPL
Masahiro Yamada20c57812015-03-31 12:48:00 +0900375 select DM
376 select DM_SERIAL
Gilles Gameiroebd46d12015-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 Yamadad3ae6782014-07-30 14:08:14 +0900386config TARGET_TI814X_EVM
387 bool "Support ti814x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100388 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900389 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900390
391config TARGET_TI816X_EVM
392 bool "Support ti816x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100393 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900394 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900395
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900396config TARGET_BCM28155_AP
397 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100398 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900399
Steve Rae1c5f31c2014-11-11 11:32:18 -0800400config TARGET_BCMCYGNUS
401 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100402 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700403
Steve Rae1c5f31c2014-11-11 11:32:18 -0800404config TARGET_BCMNSP
405 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100406 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700407
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900408config ARCH_EXYNOS
409 bool "Samsung EXYNOS"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100410 select CPU_V7
Masahiro Yamada5ef5ccc2015-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 Yamadad3ae6782014-07-30 14:08:14 +0900416
Simon Glass96aa0722014-10-07 22:01:50 -0600417config ARCH_S5PC1XX
418 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100419 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900420 select DM
421 select DM_SERIAL
422 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600423
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900424config ARCH_HIGHBANK
425 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100426 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900427
Masahiro Yamadacad44162015-04-21 21:59:36 +0900428config ARCH_INTEGRATOR
429 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200430 select DM
431 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900432
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900433config ARCH_KEYSTONE
434 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100435 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900436 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900437
Adrian Alonso98810772015-09-03 11:49:28 -0500438config ARCH_MX7
439 bool "Freescale MX7"
440 select CPU_V7
441
Boris BREZILLON51e82662015-03-04 13:13:03 +0100442config ARCH_MX6
443 bool "Freescale MX6"
444 select CPU_V7
445
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200446config ARCH_MX5
447 bool "Freescale MX5"
448 select CPU_V7
449
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900450config TARGET_M53EVK
451 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100452 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900453 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900454
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900455config TARGET_MX51EVK
456 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100457 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900458
459config TARGET_MX53ARD
460 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100461 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900462
463config TARGET_MX53EVK
464 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100465 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900466
467config TARGET_MX53LOCO
468 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100469 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900470
471config TARGET_MX53SMD
472 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100473 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900474
Masahiro Yamadadd678432014-08-31 07:11:02 +0900475config OMAP34XX
476 bool "OMAP34XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100477 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900478
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900479config OMAP44XX
480 bool "OMAP44XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100481 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900482 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900483
Masahiro Yamada420b8162014-08-31 07:11:04 +0900484config OMAP54XX
485 bool "OMAP54XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900487 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900488
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900489config RMOBILE
490 bool "Renesas ARM SoCs"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100491 select CPU_V7
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300492
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900493config ARCH_SOCFPGA
494 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100495 select CPU_V7
496 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200497 select OF_CONTROL
498 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900499 select DM
500 select DM_SPI_FLASH
501 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100502
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300503config TARGET_CM_T43
504 bool "Support cm_t43"
505 select CPU_V7
506 select SUPPORT_SPL
507
Ian Campbelld8e69e02014-10-24 21:20:44 +0100508config ARCH_SUNXI
509 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede16eac6562015-06-17 20:54:07 +0200510 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200511 select DM
512 select DM_GPIO
Tom Rini10e87172015-06-30 16:51:15 -0400513 select DM_ETH
514 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200515 select DM_USB
Hans de Goede03914882015-04-15 20:46:48 +0200516 select OF_CONTROL
517 select OF_SEPARATE
Tom Rini10e87172015-06-30 16:51:15 -0400518 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200519 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200520 select USB_KEYBOARD
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800521
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400522config TARGET_TS4800
523 bool "Support TS4800"
524 select CPU_V7
525
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900526config TARGET_VF610TWR
527 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100528 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900529
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530530config TARGET_COLIBRI_VF
531 bool "Support Colibri VF50/61"
532 select CPU_V7
533
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200534config TARGET_PCM052
535 bool "Support pcm-052"
536 select CPU_V7
537
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900538config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900539 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100540 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900541 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530542 select OF_CONTROL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900543 select DM
Jagan Teki0bd03a52015-06-27 00:51:32 +0530544 select DM_SPI
545 select DM_SPI_FLASH
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900546
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530547config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100548 bool "Support Xilinx ZynqMP Platform"
549 select ARM64
550
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900551config TEGRA
552 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900553
Linus Walleij800d6fd2015-01-23 11:50:53 +0100554config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900555 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900556 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900557
Linus Walleij800d6fd2015-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 Harkinb6b96652015-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 Walleijc5822502015-01-23 14:41:10 +0100572config TARGET_VEXPRESS64_JUNO
573 bool "Support Versatile Express Juno Development Platform"
574 select ARM64
575
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900576config TARGET_LS2085A_EMU
577 bool "Support ls2085a_emu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900578 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100579 select ARMV8_MULTIENTRY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900580
581config TARGET_LS2085A_SIMU
582 bool "Support ls2085a_simu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900583 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100584 select ARMV8_MULTIENTRY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900585
York Sun03017032015-03-20 19:28:23 -0700586config TARGET_LS2085AQDS
587 bool "Support ls2085aqds"
588 select ARM64
589 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700590 select SUPPORT_SPL
York Sun03017032015-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 Sune12abcb2015-03-20 19:28:24 -0700597config TARGET_LS2085ARDB
598 bool "Support ls2085ardb"
599 select ARM64
600 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700601 select SUPPORT_SPL
York Sune12abcb2015-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 Griffin31f327e2015-07-30 18:55:23 +0100608config TARGET_HIKEY
609 bool "Support HiKey 96boards Consumer Edition Platform"
610 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100611 select DM
612 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100613 select DM_SERIAL
Peter Griffin31f327e2015-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 Huanf0ce7d62014-09-05 13:52:44 +0800618config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800619 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100620 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800621 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800622config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800623 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100624 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800625 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800626
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900627config TARGET_H2200
628 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100629 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900630
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900631config TARGET_COLIBRI_PXA270
632 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100633 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900634
Masahiro Yamada82069432014-10-03 19:21:07 +0900635config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900636 bool "Socionext UniPhier SoCs"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100637 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900638 select SUPPORT_SPL
Masahiro Yamada9c9a3e12014-12-18 19:11:03 +0900639 select SPL
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900640 select OF_CONTROL
Masahiro Yamada47eb9a82015-08-28 20:13:18 +0900641 select SPL_OF_CONTROL
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900642 select DM
Masahiro Yamadad1066ba2015-08-28 20:13:17 +0900643 select SPL_DM
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900644 select DM_SERIAL
645 select DM_I2C
Masahiro Yamada563ee4c2015-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 Yamada82069432014-10-03 19:21:07 +0900649
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100650config TARGET_STM32F429_DISCOVERY
651 bool "Support STM32F429 Discovery"
652 select CPU_V7M
653
Simon Glass2cffe662015-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 Yamadad3ae6782014-07-30 14:08:14 +0900662endchoice
663
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900664source "arch/arm/mach-at91/Kconfig"
665
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900666source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900667
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900668source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700669
Thomas Abraham74f84862015-08-03 17:58:00 +0530670source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900671
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900672source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900673
Masahiro Yamadacad44162015-04-21 21:59:36 +0900674source "arch/arm/mach-integrator/Kconfig"
675
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900676source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900677
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900678source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900679
Stefan Roese383e0c12015-08-25 13:18:38 +0200680source "arch/arm/mach-mvebu/Kconfig"
681
Adrian Alonso98810772015-09-03 11:49:28 -0500682source "arch/arm/cpu/armv7/mx7/Kconfig"
683
Boris BREZILLON51e82662015-03-04 13:13:03 +0100684source "arch/arm/cpu/armv7/mx6/Kconfig"
685
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200686source "arch/arm/cpu/armv7/mx5/Kconfig"
687
Masahiro Yamadadd678432014-08-31 07:11:02 +0900688source "arch/arm/cpu/armv7/omap3/Kconfig"
689
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900690source "arch/arm/cpu/armv7/omap4/Kconfig"
691
Masahiro Yamada420b8162014-08-31 07:11:04 +0900692source "arch/arm/cpu/armv7/omap5/Kconfig"
693
Masahiro Yamada22537642015-02-20 17:04:09 +0900694source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900695
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900696source "arch/arm/cpu/armv7/rmobile/Kconfig"
697
Simon Glass2cffe662015-08-30 16:55:38 -0600698source "arch/arm/mach-rockchip/Kconfig"
699
Simon Glass96aa0722014-10-07 22:01:50 -0600700source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
701
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900702source "arch/arm/mach-socfpga/Kconfig"
703
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900704source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900705
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900706source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900707
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900708source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900709
Hans de Goede85437352014-11-14 09:34:30 +0100710source "arch/arm/cpu/armv7/Kconfig"
711
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530712source "arch/arm/cpu/armv8/zynqmp/Kconfig"
713
Linus Walleij74771392015-03-09 10:53:21 +0100714source "arch/arm/cpu/armv8/Kconfig"
715
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100716source "arch/arm/imx-common/Kconfig"
717
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900718source "board/BuR/kwb/Kconfig"
719source "board/BuR/tseries/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900720source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900721source "board/Marvell/aspenite/Kconfig"
Stefan Roese073efd72015-04-25 06:29:56 +0200722source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roese03915772014-10-22 12:13:18 +0200723source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900724source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900725source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900726source "board/armltd/vexpress/Kconfig"
727source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900728source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900729source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800730source "board/broadcom/bcmcygnus/Kconfig"
731source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900732source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900733source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400734source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900735source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900736source "board/denx/m28evk/Kconfig"
737source "board/denx/m53evk/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900738source "board/freescale/ls2085a/Kconfig"
York Sun03017032015-03-20 19:28:23 -0700739source "board/freescale/ls2085aqds/Kconfig"
York Sune12abcb2015-03-20 19:28:24 -0700740source "board/freescale/ls2085ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800741source "board/freescale/ls1021aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800742source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadad3ae6782014-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 Yamadad3ae6782014-07-30 14:08:14 +0900754source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900755source "board/gumstix/pepper/Kconfig"
756source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400757source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900758source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900759source "board/isee/igep0033/Kconfig"
Stefan Roese9b1e2312014-10-22 12:13:19 +0200760source "board/maxbcm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900761source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900762source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900763source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200764source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900765source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900766source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900767source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900768source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900769source "board/siemens/draco/Kconfig"
770source "board/siemens/pxm2/Kconfig"
771source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900772source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-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.pl6b5e5a92015-03-01 12:44:42 +0100778source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -0800779source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900780source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900781source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200782source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900783source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900784source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800785source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900786source "board/ti/ti814x/Kconfig"
787source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900788source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900789source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530790source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400791source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200792source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900793source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200794source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900795
Masahiro Yamadadf00e522014-09-01 11:06:34 +0900796source "arch/arm/Kconfig.debug"
797
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900798endmenu