blob: ab621cca7dfde27da17870e7c195c15f8cd71d12 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada016a9542014-09-14 03:01:51 +09007config ARM64
8 bool
9
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010010config HAS_VBAR
11 bool
12
Albert ARIBAUD62e92072015-10-23 18:06:40 +020013config HAS_THUMB2
14 bool
15
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010016config CPU_ARM720T
17 bool
18
19config CPU_ARM920T
20 bool
21
22config CPU_ARM926EJS
23 bool
24
25config CPU_ARM946ES
26 bool
27
28config CPU_ARM1136
29 bool
30
31config CPU_ARM1176
32 bool
33 select HAS_VBAR
34
35config CPU_V7
36 bool
37 select HAS_VBAR
Albert ARIBAUD62e92072015-10-23 18:06:40 +020038 select HAS_THUMB2
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010039
rev13@wp.pl12d8a722015-03-01 12:44:39 +010040config CPU_V7M
41 bool
Albert ARIBAUD62e92072015-10-23 18:06:40 +020042 select HAS_THUMB2
rev13@wp.pl12d8a722015-03-01 12:44:39 +010043
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010044config CPU_PXA
45 bool
46
47config CPU_SA1100
48 bool
49
50config SYS_CPU
51 default "arm720t" if CPU_ARM720T
52 default "arm920t" if CPU_ARM920T
53 default "arm926ejs" if CPU_ARM926EJS
54 default "arm946es" if CPU_ARM946ES
55 default "arm1136" if CPU_ARM1136
56 default "arm1176" if CPU_ARM1176
57 default "armv7" if CPU_V7
rev13@wp.pl12d8a722015-03-01 12:44:39 +010058 default "armv7m" if CPU_V7M
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010059 default "pxa" if CPU_PXA
60 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090061 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010062
Linus Walleijf91afc42015-01-23 11:50:53 +010063config SEMIHOSTING
64 bool "support boot from semihosting"
65 help
66 In emulated environments, semihosting is a way for
67 the hosted environment to call out to the emulator to
68 retrieve files from the host machine.
69
Peng Fanf3e9bec2015-08-19 15:48:57 +080070config SYS_L2CACHE_OFF
71 bool "L2cache off"
72 help
73 If SoC does not support L2CACHE or one do not want to enable
74 L2CACHE, choose this option.
75
Masahiro Yamadadd840582014-07-30 14:08:14 +090076choice
77 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -060078 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +090079
Masahiro Yamada4614b892015-02-20 17:04:01 +090080config ARCH_AT91
81 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090082
83config TARGET_EDB93XX
84 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010085 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090086
Masahiro Yamadadd840582014-07-30 14:08:14 +090087config TARGET_VCMA9
88 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010089 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090090
91config TARGET_SMDK2410
92 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010093 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090094
Masahiro Yamadadd840582014-07-30 14:08:14 +090095config TARGET_ASPENITE
96 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010097 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090098
99config TARGET_GPLUGD
100 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100101 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900102
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900103config ARCH_DAVINCI
104 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100105 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900106 help
107 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900108
Masahiro Yamada47539e22014-08-31 07:10:59 +0900109config KIRKWOOD
110 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100111 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900112
Stefan Roesec3d89142015-08-25 13:18:38 +0200113config ARCH_MVEBU
114 bool "Marvell MVEBU family (Armada XP/38x)"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200115 select CPU_V7
116 select SUPPORT_SPL
Stefan Roese9cffb232015-09-01 11:27:52 +0200117 select OF_CONTROL
118 select OF_SEPARATE
119 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100120 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200121 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100122 select DM_SPI
123 select DM_SPI_FLASH
Stefan Roese64512232015-11-25 07:37:00 +0100124 select SPL_DM
125 select SPL_OF_CONTROL
Stefan Roese09a54c02015-11-20 13:51:57 +0100126 select SPL_SIMPLE_BUS
Stefan Roesea4884832014-10-22 12:13:19 +0200127
Masahiro Yamadadd840582014-07-30 14:08:14 +0900128config TARGET_DEVKIT3250
129 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100130 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300131 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900132
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200133config TARGET_WORK_92105
134 bool "Support work_92105"
135 select CPU_ARM926EJS
136 select SUPPORT_SPL
137
Masahiro Yamadadd840582014-07-30 14:08:14 +0900138config TARGET_MX25PDK
139 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100140 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900141
Masahiro Yamadadd840582014-07-30 14:08:14 +0900142config TARGET_ZMX25
143 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100144 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900145
146config TARGET_APF27
147 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100148 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900149 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900150
Masahiro Yamadadd840582014-07-30 14:08:14 +0900151config TARGET_APX4DEVKIT
152 bool "Support apx4devkit"
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
156config TARGET_XFI3
157 bool "Support xfi3"
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_M28EVK
162 bool "Support m28evk"
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_MX23EVK
167 bool "Support mx23evk"
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_MX28EVK
172 bool "Support mx28evk"
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_MX23_OLINUXINO
177 bool "Support mx23_olinuxino"
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_BG0900
182 bool "Support bg0900"
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_SANSA_FUZE_PLUS
187 bool "Support sansa_fuze_plus"
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_SC_SPS_1
192 bool "Support sc_sps_1"
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
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900196config ORION5X
197 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900199
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200config TARGET_SPEAR300
201 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100202 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900203
204config TARGET_SPEAR310
205 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100206 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900207
208config TARGET_SPEAR320
209 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100210 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900211
212config TARGET_SPEAR600
213 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100214 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900215
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800216config TARGET_STV0991
217 bool "Support stv0991"
218 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900219 select DM
220 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700221 select DM_SPI
222 select DM_SPI_FLASH
223 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800224
Masahiro Yamadadd840582014-07-30 14:08:14 +0900225config TARGET_X600
226 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100227 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900228 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900229
Masahiro Yamadadd840582014-07-30 14:08:14 +0900230config TARGET_IMX31_PHYCORE
231 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100232 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900233
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234config TARGET_MX31ADS
235 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100236 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900237
238config TARGET_MX31PDK
239 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100240 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900241 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900242
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243config TARGET_WOODBURN
244 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100245 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900246
247config TARGET_WOODBURN_SD
248 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100249 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900250 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900251
252config TARGET_FLEA3
253 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100254 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900255
256config TARGET_MX35PDK
257 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100258 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900259
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900260config ARCH_BCM283X
261 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900262 select DM
263 select DM_SERIAL
264 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700265
Masahiro Yamadadd840582014-07-30 14:08:14 +0900266config TARGET_VEXPRESS_CA15_TC2
267 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100268 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100269 select CPU_V7_HAS_NONSEC
270 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900271
272config TARGET_VEXPRESS_CA5X2
273 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100274 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900275
276config TARGET_VEXPRESS_CA9X4
277 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100278 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900279
280config TARGET_KWB
281 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100282 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900283 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900284
285config TARGET_TSERIES
286 bool "Support tseries"
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_CM_T335
291 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100292 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900293 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900294 select DM
295 select DM_SERIAL
296 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900297
298config TARGET_PEPPER
299 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100300 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900301 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900302 select DM
303 select DM_SERIAL
304 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900305
306config TARGET_AM335X_IGEP0033
307 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100308 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900309 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900310 select DM
311 select DM_SERIAL
312 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900313
314config TARGET_PCM051
315 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100316 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900317 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900318 select DM
319 select DM_SERIAL
320 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900321
322config TARGET_DRACO
323 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100324 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900325 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900326
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200327config TARGET_THUBAN
328 bool "Support thuban"
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 Schocher578056c2015-06-15 14:56:41 +0200332config TARGET_RASTABAN
333 bool "Support rastaban"
334 select CPU_V7
335 select SUPPORT_SPL
336
Masahiro Yamadadd840582014-07-30 14:08:14 +0900337config TARGET_PXM2
338 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100339 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900340 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900341
342config TARGET_RUT
343 bool "Support rut"
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_PENGWYN
348 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100349 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900350 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900351 select DM
352 select DM_SERIAL
353 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900354
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200355config TARGET_AM335X_BALTOS
356 bool "Support am335x_baltos"
357 select CPU_V7
358 select SUPPORT_SPL
359 select DM
360 select DM_SERIAL
361 select DM_GPIO
362
Masahiro Yamadadd840582014-07-30 14:08:14 +0900363config TARGET_AM335X_EVM
364 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100365 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900366 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900367 select DM
368 select DM_SERIAL
369 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900370
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200371config TARGET_AM335X_SL50
372 bool "Support am335x_sl50"
373 select CPU_V7
374 select SUPPORT_SPL
375 select DM
376 select DM_SERIAL
377
Masahiro Yamadadd840582014-07-30 14:08:14 +0900378config TARGET_AM43XX_EVM
379 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100380 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900381 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900382
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800383config TARGET_BAV335X
384 bool "Support bav335x"
385 select CPU_V7
386 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900387 select DM
388 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800389 help
390 The BAV335x OEM Network Processor integrates all the functions of an
391 embedded network computer in a small, easy to use SODIMM module which
392 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
393 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
394 ethernet with simple connection to external connectors.
395
396 For more information, visit: http://birdland.com/oem
397
Masahiro Yamadadd840582014-07-30 14:08:14 +0900398config TARGET_TI814X_EVM
399 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100400 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900401 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900402
403config TARGET_TI816X_EVM
404 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100405 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900406 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900407
Masahiro Yamadadd840582014-07-30 14:08:14 +0900408config TARGET_BCM28155_AP
409 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100410 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900411
Steve Raeabb16782014-11-11 11:32:18 -0800412config TARGET_BCMCYGNUS
413 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100414 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700415
Steve Raeabb16782014-11-11 11:32:18 -0800416config TARGET_BCMNSP
417 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100418 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700419
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900420config ARCH_EXYNOS
421 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100422 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900423 select DM
424 select DM_SPI_FLASH
425 select DM_SERIAL
426 select DM_SPI
427 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600428 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900429
Simon Glass311757b2014-10-07 22:01:50 -0600430config ARCH_S5PC1XX
431 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100432 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900433 select DM
434 select DM_SERIAL
435 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600436
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900437config ARCH_HIGHBANK
438 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100439 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900440
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900441config ARCH_INTEGRATOR
442 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200443 select DM
444 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900445
Masahiro Yamadac338f092014-08-31 07:11:05 +0900446config ARCH_KEYSTONE
447 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100448 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900449 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900450
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500451config ARCH_MX7
452 bool "Freescale MX7"
453 select CPU_V7
454
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100455config ARCH_MX6
456 bool "Freescale MX6"
457 select CPU_V7
458
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200459config ARCH_MX5
460 bool "Freescale MX5"
461 select CPU_V7
462
Masahiro Yamadadd840582014-07-30 14:08:14 +0900463config TARGET_M53EVK
464 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100465 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900466 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900467
Masahiro Yamadadd840582014-07-30 14:08:14 +0900468config TARGET_MX51EVK
469 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100470 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900471
472config TARGET_MX53ARD
473 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100474 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900475
476config TARGET_MX53EVK
477 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100478 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900479
480config TARGET_MX53LOCO
481 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483
484config TARGET_MX53SMD
485 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900487
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900488config OMAP34XX
489 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900491
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900492config OMAP44XX
493 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900495 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900496
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900497config OMAP54XX
498 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100499 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900500 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900501
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900502config RMOBILE
503 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100504 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900505
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900506config ARCH_SOCFPGA
507 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100508 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900509 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200510 select OF_CONTROL
511 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900512 select DM
513 select DM_SPI_FLASH
514 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900515
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300516config TARGET_CM_T43
517 bool "Support cm_t43"
518 select CPU_V7
519 select SUPPORT_SPL
520
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100521config ARCH_SUNXI
522 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200523 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200524 select DM
Tom Rini45368822015-06-30 16:51:15 -0400525 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100526 select DM_GPIO
527 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400528 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200529 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200530 select OF_CONTROL
531 select OF_SEPARATE
Hans de Goedeff42d102015-09-13 13:02:48 +0200532 select SPL_STACK_R if !MACH_SUN9I
Hans de Goede6d0bdfd2015-09-13 12:31:24 +0200533 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
Hans de Goede6edf6a22015-12-10 11:10:17 +0100534 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400535 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200536 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200537 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800538
Lucile Quirion9ee16892015-06-30 17:17:47 -0400539config TARGET_TS4800
540 bool "Support TS4800"
541 select CPU_V7
542
Masahiro Yamadadd840582014-07-30 14:08:14 +0900543config TARGET_VF610TWR
544 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100545 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900546
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530547config TARGET_COLIBRI_VF
548 bool "Support Colibri VF50/61"
549 select CPU_V7
550
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200551config TARGET_PCM052
552 bool "Support pcm-052"
553 select CPU_V7
554
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900555config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900556 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100557 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900558 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530559 select OF_CONTROL
Simon Glass71556fb2015-10-17 19:41:23 -0600560 select SPL_OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900561 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100562 select DM_ETH
Simon Glass71556fb2015-10-17 19:41:23 -0600563 select SPL_DM
Michal Simekd9ae52c2015-11-30 16:13:03 +0100564 select DM_MMC
Jagan Teki9f7a4502015-06-27 00:51:32 +0530565 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600566 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530567 select DM_SPI_FLASH
Simon Glass71556fb2015-10-17 19:41:23 -0600568 select SPL_SEPARATE_BSS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900569
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530570config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100571 bool "Support Xilinx ZynqMP Platform"
572 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600573 select DM
574 select OF_CONTROL
Michal Simek6889ca72015-11-30 14:14:56 +0100575 select DM_ETH
Michal Simekd9ae52c2015-11-30 16:13:03 +0100576 select DM_MMC
Michal Simekc2490bf2015-10-17 19:41:25 -0600577 select DM_SERIAL
Michal Simek84c72042015-01-15 10:01:51 +0100578
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900579config TEGRA
580 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900581
Linus Walleijf91afc42015-01-23 11:50:53 +0100582config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900583 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900584 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900585
Linus Walleijf91afc42015-01-23 11:50:53 +0100586config TARGET_VEXPRESS64_BASE_FVP
587 bool "Support Versatile Express ARMv8a FVP BASE model"
588 select ARM64
589 select SEMIHOSTING
590
Ryan Harkinfc04b922015-10-09 17:18:02 +0100591config TARGET_VEXPRESS64_BASE_FVP_DRAM
592 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
593 select ARM64
594 help
595 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
596 the default config to allow the user to load the images directly into
597 DRAM using model parameters rather than by using semi-hosting to load
598 the files from the host filesystem.
599
Linus Walleijffc10372015-01-23 14:41:10 +0100600config TARGET_VEXPRESS64_JUNO
601 bool "Support Versatile Express Juno Development Platform"
602 select ARM64
603
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530604config TARGET_LS2080A_EMU
605 bool "Support ls2080a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900606 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100607 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700608 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530609 Support for Freescale LS2080A_EMU platform
610 The LS2080A Development System (EMULATOR) is a pre silicon
611 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700612 Layerscape Architecture processor.
613
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530614config TARGET_LS2080A_SIMU
615 bool "Support ls2080a_simu"
616 select ARM64
617 select ARMV8_MULTIENTRY
618 help
619 Support for Freescale LS2080A_SIMU platform
620 The LS2080A Development System (QDS) is a pre silicon
621 development platform that supports the QorIQ LS2080A
622 Layerscape Architecture processor.
623
624config TARGET_LS2080AQDS
625 bool "Support ls2080aqds"
York Sune2b65ea2015-03-20 19:28:24 -0700626 select ARM64
627 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700628 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700629 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530630 Support for Freescale LS2080AQDS platform
631 The LS2080A Development System (QDS) is a high-performance
632 development platform that supports the QorIQ LS2080A
633 Layerscape Architecture processor.
634
635config TARGET_LS2080ARDB
636 bool "Support ls2080ardb"
637 select ARM64
638 select ARMV8_MULTIENTRY
639 select SUPPORT_SPL
640 help
641 Support for Freescale LS2080ARDB platform.
642 The LS2080A Reference design board (RDB) is a high-performance
643 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700644 Layerscape Architecture processor.
645
Peter Griffin11ac2362015-07-30 18:55:23 +0100646config TARGET_HIKEY
647 bool "Support HiKey 96boards Consumer Edition Platform"
648 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100649 select DM
650 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100651 select DM_SERIAL
Peter Griffin11ac2362015-07-30 18:55:23 +0100652 help
653 Support for HiKey 96boards platform. It features a HI6220
654 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
655
Wang Huan550e3dc2014-09-05 13:52:44 +0800656config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800657 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100658 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800659 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800660config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800661 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100662 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800663 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800664
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800665config TARGET_LS1043AQDS
666 bool "Support ls1043aqds"
667 select ARM64
668 select ARMV8_MULTIENTRY
669 select SUPPORT_SPL
670 help
671 Support for Freescale LS1043AQDS platform.
672
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800673config TARGET_LS1043ARDB
674 bool "Support ls1043ardb"
675 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800676 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800677 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800678 help
679 Support for Freescale LS1043ARDB platform.
680
Masahiro Yamadadd840582014-07-30 14:08:14 +0900681config TARGET_H2200
682 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100683 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900684
Masahiro Yamadadd840582014-07-30 14:08:14 +0900685config TARGET_COLIBRI_PXA270
686 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100687 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900688
Masahiro Yamada66cba042014-10-03 19:21:07 +0900689config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900690 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100691 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900692 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900693 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900694 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900695 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900696 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900697 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900698 select DM_SERIAL
699 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900700 help
701 Support for UniPhier SoC family developed by Socionext Inc.
702 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900703
rev13@wp.pled09a552015-03-01 12:44:42 +0100704config TARGET_STM32F429_DISCOVERY
705 bool "Support STM32F429 Discovery"
706 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100707 select DM
708 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100709
Simon Glass2444dae2015-08-30 16:55:38 -0600710config ARCH_ROCKCHIP
711 bool "Support Rockchip SoCs"
712 select SUPPORT_SPL
713 select SPL
714 select OF_CONTROL
715 select CPU_V7
716 select DM
717
Masahiro Yamadadd840582014-07-30 14:08:14 +0900718endchoice
719
Masahiro Yamada4614b892015-02-20 17:04:01 +0900720source "arch/arm/mach-at91/Kconfig"
721
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900722source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900723
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900724source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700725
Thomas Abraham77b55e82015-08-03 17:58:00 +0530726source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900727
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900728source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900729
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900730source "arch/arm/mach-integrator/Kconfig"
731
Masahiro Yamada39a72342015-02-20 17:04:11 +0900732source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900733
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900734source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900735
Stefan Roesec3d89142015-08-25 13:18:38 +0200736source "arch/arm/mach-mvebu/Kconfig"
737
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500738source "arch/arm/cpu/armv7/mx7/Kconfig"
739
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100740source "arch/arm/cpu/armv7/mx6/Kconfig"
741
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200742source "arch/arm/cpu/armv7/mx5/Kconfig"
743
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900744source "arch/arm/cpu/armv7/omap3/Kconfig"
745
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900746source "arch/arm/cpu/armv7/omap4/Kconfig"
747
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900748source "arch/arm/cpu/armv7/omap5/Kconfig"
749
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900750source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900751
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900752source "arch/arm/cpu/armv7/rmobile/Kconfig"
753
Simon Glass2444dae2015-08-30 16:55:38 -0600754source "arch/arm/mach-rockchip/Kconfig"
755
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900756source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600757
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900758source "arch/arm/mach-socfpga/Kconfig"
759
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900760source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900761
Masahiro Yamada4c425572015-02-27 02:26:42 +0900762source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900763
Masahiro Yamada0107f242015-03-16 16:43:22 +0900764source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900765
Hans de Goedeea624e12014-11-14 09:34:30 +0100766source "arch/arm/cpu/armv7/Kconfig"
767
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530768source "arch/arm/cpu/armv8/zynqmp/Kconfig"
769
Linus Walleij23b58772015-03-09 10:53:21 +0100770source "arch/arm/cpu/armv8/Kconfig"
771
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100772source "arch/arm/imx-common/Kconfig"
773
Masahiro Yamadadd840582014-07-30 14:08:14 +0900774source "board/BuR/kwb/Kconfig"
775source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900776source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900777source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200778source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200779source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900780source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900781source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900782source "board/armltd/vexpress/Kconfig"
783source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900784source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900785source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800786source "board/broadcom/bcmcygnus/Kconfig"
787source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900788source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900789source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400790source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900791source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900792source "board/denx/m28evk/Kconfig"
793source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530794source "board/freescale/ls2080a/Kconfig"
795source "board/freescale/ls2080aqds/Kconfig"
796source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800797source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800798source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800799source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800800source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900801source "board/freescale/mx23evk/Kconfig"
802source "board/freescale/mx25pdk/Kconfig"
803source "board/freescale/mx28evk/Kconfig"
804source "board/freescale/mx31ads/Kconfig"
805source "board/freescale/mx31pdk/Kconfig"
806source "board/freescale/mx35pdk/Kconfig"
807source "board/freescale/mx51evk/Kconfig"
808source "board/freescale/mx53ard/Kconfig"
809source "board/freescale/mx53evk/Kconfig"
810source "board/freescale/mx53loco/Kconfig"
811source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900812source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900813source "board/gumstix/pepper/Kconfig"
814source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400815source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900816source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900817source "board/isee/igep0033/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200818source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900819source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900820source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900821source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200822source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900823source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900824source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900825source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900826source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900827source "board/siemens/draco/Kconfig"
828source "board/siemens/pxm2/Kconfig"
829source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900831source "board/spear/spear300/Kconfig"
832source "board/spear/spear310/Kconfig"
833source "board/spear/spear320/Kconfig"
834source "board/spear/spear600/Kconfig"
835source "board/spear/x600/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100836source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800837source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900838source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900839source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200840source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900842source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800843source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900844source "board/ti/ti814x/Kconfig"
845source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900846source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900847source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530848source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400849source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200850source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900851source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200852source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900853
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900854source "arch/arm/Kconfig.debug"
855
Masahiro Yamadadd840582014-07-30 14:08:14 +0900856endmenu