blob: 7e45642f917834f0a3e02a306aa60e7cdfb9295c [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
Lokesh Vutla37217f02016-03-24 16:02:00 +053010config DMA_ADDR_T_64BIT
11 bool
12 default y if ARM64
13
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010014config HAS_VBAR
15 bool
16
Albert ARIBAUD62e92072015-10-23 18:06:40 +020017config HAS_THUMB2
18 bool
19
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010020config CPU_ARM720T
21 bool
22
23config CPU_ARM920T
24 bool
25
26config CPU_ARM926EJS
27 bool
28
29config CPU_ARM946ES
30 bool
31
32config CPU_ARM1136
33 bool
34
35config CPU_ARM1176
36 bool
37 select HAS_VBAR
38
39config CPU_V7
40 bool
41 select HAS_VBAR
Albert ARIBAUD62e92072015-10-23 18:06:40 +020042 select HAS_THUMB2
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010043
rev13@wp.pl12d8a722015-03-01 12:44:39 +010044config CPU_V7M
45 bool
Albert ARIBAUD62e92072015-10-23 18:06:40 +020046 select HAS_THUMB2
rev13@wp.pl12d8a722015-03-01 12:44:39 +010047
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010048config CPU_PXA
49 bool
50
51config CPU_SA1100
52 bool
53
54config SYS_CPU
55 default "arm720t" if CPU_ARM720T
56 default "arm920t" if CPU_ARM920T
57 default "arm926ejs" if CPU_ARM926EJS
58 default "arm946es" if CPU_ARM946ES
59 default "arm1136" if CPU_ARM1136
60 default "arm1176" if CPU_ARM1176
61 default "armv7" if CPU_V7
rev13@wp.pl12d8a722015-03-01 12:44:39 +010062 default "armv7m" if CPU_V7M
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010063 default "pxa" if CPU_PXA
64 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090065 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010066
Linus Walleijf91afc42015-01-23 11:50:53 +010067config SEMIHOSTING
68 bool "support boot from semihosting"
69 help
70 In emulated environments, semihosting is a way for
71 the hosted environment to call out to the emulator to
72 retrieve files from the host machine.
73
Peng Fanf3e9bec2015-08-19 15:48:57 +080074config SYS_L2CACHE_OFF
75 bool "L2cache off"
76 help
77 If SoC does not support L2CACHE or one do not want to enable
78 L2CACHE, choose this option.
79
Masahiro Yamadadd840582014-07-30 14:08:14 +090080choice
81 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -060082 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +090083
Masahiro Yamada4614b892015-02-20 17:04:01 +090084config ARCH_AT91
85 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090086
87config TARGET_EDB93XX
88 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010089 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090090
Masahiro Yamadadd840582014-07-30 14:08:14 +090091config TARGET_VCMA9
92 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010093 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090094
95config TARGET_SMDK2410
96 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010097 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090098
Masahiro Yamadadd840582014-07-30 14:08:14 +090099config TARGET_ASPENITE
100 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100101 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900102
103config TARGET_GPLUGD
104 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100105 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900106
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900107config ARCH_DAVINCI
108 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100109 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900110 help
111 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900112
Masahiro Yamada47539e22014-08-31 07:10:59 +0900113config KIRKWOOD
114 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100115 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900116
Stefan Roesec3d89142015-08-25 13:18:38 +0200117config ARCH_MVEBU
Stefan Roese606576d2016-01-29 09:14:54 +0100118 bool "Marvell MVEBU family (Armada XP/375/38x)"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200119 select CPU_V7
120 select SUPPORT_SPL
Stefan Roese9cffb232015-09-01 11:27:52 +0200121 select OF_CONTROL
122 select OF_SEPARATE
123 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100124 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200125 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100126 select DM_SPI
127 select DM_SPI_FLASH
Stefan Roese64512232015-11-25 07:37:00 +0100128 select SPL_DM
Nathan Rossi47c0d792016-01-08 03:00:47 +1000129 select SPL_DM_SEQ_ALIAS
Stefan Roese64512232015-11-25 07:37:00 +0100130 select SPL_OF_CONTROL
Stefan Roese09a54c02015-11-20 13:51:57 +0100131 select SPL_SIMPLE_BUS
Stefan Roesea4884832014-10-22 12:13:19 +0200132
Masahiro Yamadadd840582014-07-30 14:08:14 +0900133config TARGET_DEVKIT3250
134 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100135 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300136 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900137
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200138config TARGET_WORK_92105
139 bool "Support work_92105"
140 select CPU_ARM926EJS
141 select SUPPORT_SPL
142
Masahiro Yamadadd840582014-07-30 14:08:14 +0900143config TARGET_MX25PDK
144 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100145 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900146
Masahiro Yamadadd840582014-07-30 14:08:14 +0900147config TARGET_ZMX25
148 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100149 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900150
151config TARGET_APF27
152 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100153 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900154 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900155
Masahiro Yamadadd840582014-07-30 14:08:14 +0900156config TARGET_APX4DEVKIT
157 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100158 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900159 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900160
161config TARGET_XFI3
162 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100163 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900164 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900165
166config TARGET_M28EVK
167 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100168 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900169 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900170
171config TARGET_MX23EVK
172 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100173 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900174 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900175
176config TARGET_MX28EVK
177 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100178 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900179 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900180
181config TARGET_MX23_OLINUXINO
182 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100183 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900184 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900185
186config TARGET_BG0900
187 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100188 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900189 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900190
191config TARGET_SANSA_FUZE_PLUS
192 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900194 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900195
196config TARGET_SC_SPS_1
197 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900199 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900201config ORION5X
202 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
Masahiro Yamadadd840582014-07-30 14:08:14 +0900205config TARGET_SPEAR300
206 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900208
209config TARGET_SPEAR310
210 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900212
213config TARGET_SPEAR320
214 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900216
217config TARGET_SPEAR600
218 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100219 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900220
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800221config TARGET_STV0991
222 bool "Support stv0991"
223 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900224 select DM
225 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700226 select DM_SPI
227 select DM_SPI_FLASH
228 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800229
Masahiro Yamadadd840582014-07-30 14:08:14 +0900230config TARGET_X600
231 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100232 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900233 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234
Masahiro Yamadadd840582014-07-30 14:08:14 +0900235config TARGET_IMX31_PHYCORE
236 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238
Masahiro Yamadadd840582014-07-30 14:08:14 +0900239config TARGET_MX31ADS
240 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100241 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900242
243config TARGET_MX31PDK
244 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100245 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900246 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
Masahiro Yamadadd840582014-07-30 14:08:14 +0900248config TARGET_WOODBURN
249 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100250 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900251
252config TARGET_WOODBURN_SD
253 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100254 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900255 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900256
257config TARGET_FLEA3
258 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100259 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
261config TARGET_MX35PDK
262 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100263 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900264
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900265config ARCH_BCM283X
266 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900267 select DM
268 select DM_SERIAL
269 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700270
Masahiro Yamadadd840582014-07-30 14:08:14 +0900271config TARGET_VEXPRESS_CA15_TC2
272 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100273 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100274 select CPU_V7_HAS_NONSEC
275 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900276
277config TARGET_VEXPRESS_CA5X2
278 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100279 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900280
281config TARGET_VEXPRESS_CA9X4
282 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100283 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900284
285config TARGET_KWB
286 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100287 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900288 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900289
290config TARGET_TSERIES
291 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100292 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900293 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900294
295config TARGET_CM_T335
296 bool "Support cm_t335"
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_PEPPER
304 bool "Support pepper"
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_AM335X_IGEP0033
312 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100313 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900314 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900315 select DM
316 select DM_SERIAL
317 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900318
319config TARGET_PCM051
320 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100321 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900322 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900323 select DM
324 select DM_SERIAL
325 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900326
327config TARGET_DRACO
328 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100329 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900330 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900331
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200332config TARGET_THUBAN
333 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100334 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900335 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900336
Heiko Schocher578056c2015-06-15 14:56:41 +0200337config TARGET_RASTABAN
338 bool "Support rastaban"
339 select CPU_V7
340 select SUPPORT_SPL
341
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342config TARGET_PXM2
343 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100344 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900345 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900346
347config TARGET_RUT
348 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100349 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900350 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900351
352config TARGET_PENGWYN
353 bool "Support pengwyn"
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
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200360config TARGET_AM335X_BALTOS
361 bool "Support am335x_baltos"
362 select CPU_V7
363 select SUPPORT_SPL
364 select DM
365 select DM_SERIAL
366 select DM_GPIO
367
Masahiro Yamadadd840582014-07-30 14:08:14 +0900368config TARGET_AM335X_EVM
369 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100370 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900371 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900372 select DM
373 select DM_SERIAL
374 select DM_GPIO
Nishanth Menon770e68c2016-02-24 12:30:55 -0600375 select TI_I2C_BOARD_DETECT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900376
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200377config TARGET_AM335X_SL50
378 bool "Support am335x_sl50"
379 select CPU_V7
380 select SUPPORT_SPL
381 select DM
382 select DM_SERIAL
383
Masahiro Yamadadd840582014-07-30 14:08:14 +0900384config TARGET_AM43XX_EVM
385 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100386 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900387 select SUPPORT_SPL
Nishanth Menon5f8bb932016-02-24 12:30:56 -0600388 select TI_I2C_BOARD_DETECT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900389
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800390config TARGET_BAV335X
391 bool "Support bav335x"
392 select CPU_V7
393 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900394 select DM
395 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800396 help
397 The BAV335x OEM Network Processor integrates all the functions of an
398 embedded network computer in a small, easy to use SODIMM module which
399 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
400 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
401 ethernet with simple connection to external connectors.
402
403 For more information, visit: http://birdland.com/oem
404
Masahiro Yamadadd840582014-07-30 14:08:14 +0900405config TARGET_TI814X_EVM
406 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100407 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900408 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900409
410config TARGET_TI816X_EVM
411 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100412 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900413 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900414
Masahiro Yamadadd840582014-07-30 14:08:14 +0900415config TARGET_BCM28155_AP
416 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100417 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900418
Steve Raeabb16782014-11-11 11:32:18 -0800419config TARGET_BCMCYGNUS
420 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100421 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700422
Steve Raeabb16782014-11-11 11:32:18 -0800423config TARGET_BCMNSP
424 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100425 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700426
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900427config ARCH_EXYNOS
428 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100429 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900430 select DM
431 select DM_SPI_FLASH
432 select DM_SERIAL
433 select DM_SPI
434 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600435 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900436
Simon Glass311757b2014-10-07 22:01:50 -0600437config ARCH_S5PC1XX
438 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100439 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900440 select DM
441 select DM_SERIAL
442 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600443
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900444config ARCH_HIGHBANK
445 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100446 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900447
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900448config ARCH_INTEGRATOR
449 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200450 select DM
451 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900452
Masahiro Yamadac338f092014-08-31 07:11:05 +0900453config ARCH_KEYSTONE
454 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100455 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900456 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400457 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900458
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200459config ARCH_MESON
460 bool "Amlogic Meson"
461 help
462 Support for the Meson SoC family developed by Amlogic Inc.,
463 targeted at media players and tablet computers. We currently
464 support the S905 (GXBaby) 64-bit SoC.
465
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500466config ARCH_MX7
467 bool "Freescale MX7"
468 select CPU_V7
469
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100470config ARCH_MX6
471 bool "Freescale MX6"
472 select CPU_V7
473
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200474config ARCH_MX5
475 bool "Freescale MX5"
476 select CPU_V7
477
Masahiro Yamadadd840582014-07-30 14:08:14 +0900478config TARGET_M53EVK
479 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100480 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900481 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900482
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483config TARGET_MX51EVK
484 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100485 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900486
487config TARGET_MX53ARD
488 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100489 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900490
491config TARGET_MX53EVK
492 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100493 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900494
495config TARGET_MX53LOCO
496 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100497 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900498
499config TARGET_MX53SMD
500 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100501 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900502
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900503config OMAP34XX
504 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100505 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900506
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900507config OMAP44XX
508 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100509 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900510 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900511
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900512config OMAP54XX
513 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100514 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900515 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900516
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900517config RMOBILE
518 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100519 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900520
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200521config ARCH_SNAPDRAGON
522 bool "Qualcomm Snapdragon SoCs"
523 select ARM64
524 select DM
525 select DM_GPIO
526 select DM_SERIAL
527 select SPMI
528 select OF_CONTROL
529 select OF_SEPARATE
530
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900531config ARCH_SOCFPGA
532 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100533 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900534 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200535 select OF_CONTROL
536 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900537 select DM
538 select DM_SPI_FLASH
539 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900540
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300541config TARGET_CM_T43
542 bool "Support cm_t43"
543 select CPU_V7
544 select SUPPORT_SPL
545
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100546config ARCH_SUNXI
547 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede0878a8a2016-05-15 13:51:58 +0200548 select CMD_BOOTZ
549 select CMD_DHCP
550 select CMD_EXT2
551 select CMD_EXT4
552 select CMD_FAT
553 select CMD_FS_GENERIC
Hans de Goede88bb8002016-04-03 09:41:44 +0200554 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200555 select CMD_MII
556 select CMD_MMC if MMC
557 select CMD_PING
Hans de Goedede1502c2015-06-17 20:54:07 +0200558 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200559 select DM
Tom Rini45368822015-06-30 16:51:15 -0400560 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100561 select DM_GPIO
562 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400563 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200564 select DM_USB
Hans de Goede0878a8a2016-05-15 13:51:58 +0200565 select HUSH_PARSER
Hans de Goeded75111a2016-03-22 22:51:52 +0100566 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200567 select OF_CONTROL
568 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200569 select SPL_STACK_R if SUPPORT_SPL
570 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100571 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400572 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200573 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200574 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800575
Lucile Quirion9ee16892015-06-30 17:17:47 -0400576config TARGET_TS4800
577 bool "Support TS4800"
578 select CPU_V7
579
Masahiro Yamadadd840582014-07-30 14:08:14 +0900580config TARGET_VF610TWR
581 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100582 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900583
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530584config TARGET_COLIBRI_VF
585 bool "Support Colibri VF50/61"
586 select CPU_V7
587
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200588config TARGET_PCM052
589 bool "Support pcm-052"
590 select CPU_V7
591
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900592config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900593 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100594 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900595 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530596 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100597 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900598 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100599 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530600 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100601 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100602 select DM_MMC
Jagan Teki9f7a4502015-06-27 00:51:32 +0530603 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600604 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530605 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100606 select SPL_SEPARATE_BSS if SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900607
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530608config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100609 bool "Support Xilinx ZynqMP Platform"
610 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600611 select DM
612 select OF_CONTROL
613 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100614 select SUPPORT_SPL
Michal Simek84c72042015-01-15 10:01:51 +0100615
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900616config TEGRA
617 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900618
Linus Walleijf91afc42015-01-23 11:50:53 +0100619config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900620 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900621 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900622
Linus Walleijf91afc42015-01-23 11:50:53 +0100623config TARGET_VEXPRESS64_BASE_FVP
624 bool "Support Versatile Express ARMv8a FVP BASE model"
625 select ARM64
626 select SEMIHOSTING
627
Ryan Harkinfc04b922015-10-09 17:18:02 +0100628config TARGET_VEXPRESS64_BASE_FVP_DRAM
629 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
630 select ARM64
631 help
632 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
633 the default config to allow the user to load the images directly into
634 DRAM using model parameters rather than by using semi-hosting to load
635 the files from the host filesystem.
636
Linus Walleijffc10372015-01-23 14:41:10 +0100637config TARGET_VEXPRESS64_JUNO
638 bool "Support Versatile Express Juno Development Platform"
639 select ARM64
640
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530641config TARGET_LS2080A_EMU
642 bool "Support ls2080a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900643 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100644 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700645 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530646 Support for Freescale LS2080A_EMU platform
647 The LS2080A Development System (EMULATOR) is a pre silicon
648 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700649 Layerscape Architecture processor.
650
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530651config TARGET_LS2080A_SIMU
652 bool "Support ls2080a_simu"
653 select ARM64
654 select ARMV8_MULTIENTRY
655 help
656 Support for Freescale LS2080A_SIMU platform
657 The LS2080A Development System (QDS) is a pre silicon
658 development platform that supports the QorIQ LS2080A
659 Layerscape Architecture processor.
660
661config TARGET_LS2080AQDS
662 bool "Support ls2080aqds"
York Sune2b65ea2015-03-20 19:28:24 -0700663 select ARM64
664 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700665 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700666 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530667 Support for Freescale LS2080AQDS platform
668 The LS2080A Development System (QDS) is a high-performance
669 development platform that supports the QorIQ LS2080A
670 Layerscape Architecture processor.
671
672config TARGET_LS2080ARDB
673 bool "Support ls2080ardb"
674 select ARM64
675 select ARMV8_MULTIENTRY
676 select SUPPORT_SPL
677 help
678 Support for Freescale LS2080ARDB platform.
679 The LS2080A Reference design board (RDB) is a high-performance
680 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700681 Layerscape Architecture processor.
682
Peter Griffin11ac2362015-07-30 18:55:23 +0100683config TARGET_HIKEY
684 bool "Support HiKey 96boards Consumer Edition Platform"
685 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100686 select DM
687 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100688 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100689 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100690 help
691 Support for HiKey 96boards platform. It features a HI6220
692 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
693
Wang Huan550e3dc2014-09-05 13:52:44 +0800694config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800695 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100696 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800697 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800698config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800699 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100700 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800701 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800702
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800703config TARGET_LS1043AQDS
704 bool "Support ls1043aqds"
705 select ARM64
706 select ARMV8_MULTIENTRY
707 select SUPPORT_SPL
708 help
709 Support for Freescale LS1043AQDS platform.
710
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800711config TARGET_LS1043ARDB
712 bool "Support ls1043ardb"
713 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800714 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800715 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800716 help
717 Support for Freescale LS1043ARDB platform.
718
Masahiro Yamadadd840582014-07-30 14:08:14 +0900719config TARGET_H2200
720 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100721 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900722
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700723config TARGET_ZIPITZ2
724 bool "Support zipitz2"
725 select CPU_PXA
726
Masahiro Yamadadd840582014-07-30 14:08:14 +0900727config TARGET_COLIBRI_PXA270
728 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100729 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900730
Masahiro Yamada66cba042014-10-03 19:21:07 +0900731config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900732 bool "Socionext UniPhier SoCs"
Masahiro Yamada48264d92016-02-02 21:11:32 +0900733 select CLK_UNIPHIER
Masahiro Yamada02627352014-10-20 17:45:56 +0900734 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900735 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900736 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900737 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900738 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900739 select SPL_DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900740 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900741 select DM_SERIAL
742 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900743 select DM_MMC
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900744 help
745 Support for UniPhier SoC family developed by Socionext Inc.
746 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900747
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800748config STM32
749 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100750 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100751 select DM
752 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100753
Simon Glass2444dae2015-08-30 16:55:38 -0600754config ARCH_ROCKCHIP
755 bool "Support Rockchip SoCs"
756 select SUPPORT_SPL
757 select SPL
758 select OF_CONTROL
759 select CPU_V7
760 select DM
761
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700762config TARGET_THUNDERX_88XX
763 bool "Support ThunderX 88xx"
764 select OF_CONTROL
765
Masahiro Yamadadd840582014-07-30 14:08:14 +0900766endchoice
767
Masahiro Yamada4614b892015-02-20 17:04:01 +0900768source "arch/arm/mach-at91/Kconfig"
769
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900770source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900771
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900772source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700773
Thomas Abraham77b55e82015-08-03 17:58:00 +0530774source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900775
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900776source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900777
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900778source "arch/arm/mach-integrator/Kconfig"
779
Masahiro Yamada39a72342015-02-20 17:04:11 +0900780source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900781
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900782source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900783
Stefan Roesec3d89142015-08-25 13:18:38 +0200784source "arch/arm/mach-mvebu/Kconfig"
785
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500786source "arch/arm/cpu/armv7/mx7/Kconfig"
787
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100788source "arch/arm/cpu/armv7/mx6/Kconfig"
789
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200790source "arch/arm/cpu/armv7/mx5/Kconfig"
791
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900792source "arch/arm/cpu/armv7/omap3/Kconfig"
793
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900794source "arch/arm/cpu/armv7/omap4/Kconfig"
795
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900796source "arch/arm/cpu/armv7/omap5/Kconfig"
797
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900798source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900799
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900800source "arch/arm/cpu/armv7/rmobile/Kconfig"
801
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200802source "arch/arm/mach-meson/Kconfig"
803
Simon Glass2444dae2015-08-30 16:55:38 -0600804source "arch/arm/mach-rockchip/Kconfig"
805
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900806source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600807
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200808source "arch/arm/mach-snapdragon/Kconfig"
809
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900810source "arch/arm/mach-socfpga/Kconfig"
811
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800812source "arch/arm/mach-stm32/Kconfig"
813
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900814source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900815
Masahiro Yamada4c425572015-02-27 02:26:42 +0900816source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900817
Masahiro Yamada0107f242015-03-16 16:43:22 +0900818source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900819
Hans de Goedeea624e12014-11-14 09:34:30 +0100820source "arch/arm/cpu/armv7/Kconfig"
821
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530822source "arch/arm/cpu/armv8/zynqmp/Kconfig"
823
Linus Walleij23b58772015-03-09 10:53:21 +0100824source "arch/arm/cpu/armv8/Kconfig"
825
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100826source "arch/arm/imx-common/Kconfig"
827
Masahiro Yamadadd840582014-07-30 14:08:14 +0900828source "board/BuR/kwb/Kconfig"
829source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900831source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900832source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900833source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900834source "board/armltd/vexpress/Kconfig"
835source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900836source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900837source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800838source "board/broadcom/bcmcygnus/Kconfig"
839source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700840source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900842source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400843source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900844source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900845source "board/denx/m28evk/Kconfig"
846source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530847source "board/freescale/ls2080a/Kconfig"
848source "board/freescale/ls2080aqds/Kconfig"
849source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800850source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800851source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800852source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800853source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900854source "board/freescale/mx23evk/Kconfig"
855source "board/freescale/mx25pdk/Kconfig"
856source "board/freescale/mx28evk/Kconfig"
857source "board/freescale/mx31ads/Kconfig"
858source "board/freescale/mx31pdk/Kconfig"
859source "board/freescale/mx35pdk/Kconfig"
860source "board/freescale/mx51evk/Kconfig"
861source "board/freescale/mx53ard/Kconfig"
862source "board/freescale/mx53evk/Kconfig"
863source "board/freescale/mx53loco/Kconfig"
864source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900865source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866source "board/gumstix/pepper/Kconfig"
867source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400868source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900869source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900870source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900871source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900872source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900873source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200874source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900875source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900876source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900877source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900878source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/siemens/draco/Kconfig"
880source "board/siemens/pxm2/Kconfig"
881source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900882source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900883source "board/spear/spear300/Kconfig"
884source "board/spear/spear310/Kconfig"
885source "board/spear/spear320/Kconfig"
886source "board/spear/spear600/Kconfig"
887source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800888source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900889source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900890source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200891source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900892source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900893source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800894source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900895source "board/ti/ti814x/Kconfig"
896source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900897source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900898source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530899source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400900source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200901source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900902source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200903source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700904source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900905
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900906source "arch/arm/Kconfig.debug"
907
Masahiro Yamadadd840582014-07-30 14:08:14 +0900908endmenu