blob: 876a620cf197b343ad2fdc27a9864a0bc6ee71ab [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
Nathan Rossi47c0d792016-01-08 03:00:47 +1000125 select SPL_DM_SEQ_ALIAS
Stefan Roese64512232015-11-25 07:37:00 +0100126 select SPL_OF_CONTROL
Stefan Roese09a54c02015-11-20 13:51:57 +0100127 select SPL_SIMPLE_BUS
Stefan Roesea4884832014-10-22 12:13:19 +0200128
Masahiro Yamadadd840582014-07-30 14:08:14 +0900129config TARGET_DEVKIT3250
130 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100131 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300132 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900133
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200134config TARGET_WORK_92105
135 bool "Support work_92105"
136 select CPU_ARM926EJS
137 select SUPPORT_SPL
138
Masahiro Yamadadd840582014-07-30 14:08:14 +0900139config TARGET_MX25PDK
140 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100141 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900142
Masahiro Yamadadd840582014-07-30 14:08:14 +0900143config TARGET_ZMX25
144 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100145 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900146
147config TARGET_APF27
148 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100149 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900150 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900151
Masahiro Yamadadd840582014-07-30 14:08:14 +0900152config TARGET_APX4DEVKIT
153 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100154 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900155 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900156
157config TARGET_XFI3
158 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100159 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900160 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900161
162config TARGET_M28EVK
163 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100164 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900165 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900166
167config TARGET_MX23EVK
168 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100169 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900170 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900171
172config TARGET_MX28EVK
173 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100174 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900175 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900176
177config TARGET_MX23_OLINUXINO
178 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100179 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900180 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900181
182config TARGET_BG0900
183 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100184 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900185 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900186
187config TARGET_SANSA_FUZE_PLUS
188 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900190 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900191
192config TARGET_SC_SPS_1
193 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900195 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900196
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900197config ORION5X
198 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
Masahiro Yamadadd840582014-07-30 14:08:14 +0900201config TARGET_SPEAR300
202 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900204
205config TARGET_SPEAR310
206 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900208
209config TARGET_SPEAR320
210 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900212
213config TARGET_SPEAR600
214 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900216
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800217config TARGET_STV0991
218 bool "Support stv0991"
219 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900220 select DM
221 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700222 select DM_SPI
223 select DM_SPI_FLASH
224 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800225
Masahiro Yamadadd840582014-07-30 14:08:14 +0900226config TARGET_X600
227 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100228 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900229 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900230
Masahiro Yamadadd840582014-07-30 14:08:14 +0900231config TARGET_IMX31_PHYCORE
232 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100233 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900234
Masahiro Yamadadd840582014-07-30 14:08:14 +0900235config TARGET_MX31ADS
236 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100237 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900238
239config TARGET_MX31PDK
240 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100241 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900242 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243
Masahiro Yamadadd840582014-07-30 14:08:14 +0900244config TARGET_WOODBURN
245 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100246 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
248config TARGET_WOODBURN_SD
249 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100250 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900251 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900252
253config TARGET_FLEA3
254 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100255 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900256
257config TARGET_MX35PDK
258 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100259 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900260
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900261config ARCH_BCM283X
262 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900263 select DM
264 select DM_SERIAL
265 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700266
Masahiro Yamadadd840582014-07-30 14:08:14 +0900267config TARGET_VEXPRESS_CA15_TC2
268 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100269 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100270 select CPU_V7_HAS_NONSEC
271 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900272
273config TARGET_VEXPRESS_CA5X2
274 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100275 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900276
277config TARGET_VEXPRESS_CA9X4
278 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100279 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900280
281config TARGET_KWB
282 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100283 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900284 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900285
286config TARGET_TSERIES
287 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100288 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900289 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900290
291config TARGET_CM_T335
292 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100293 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900294 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900295 select DM
296 select DM_SERIAL
297 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900298
299config TARGET_PEPPER
300 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100301 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900302 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900303 select DM
304 select DM_SERIAL
305 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900306
307config TARGET_AM335X_IGEP0033
308 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100309 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900310 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900311 select DM
312 select DM_SERIAL
313 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900314
315config TARGET_PCM051
316 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100317 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900318 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900319 select DM
320 select DM_SERIAL
321 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900322
323config TARGET_DRACO
324 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100325 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900326 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900327
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200328config TARGET_THUBAN
329 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100330 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900331 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900332
Heiko Schocher578056c2015-06-15 14:56:41 +0200333config TARGET_RASTABAN
334 bool "Support rastaban"
335 select CPU_V7
336 select SUPPORT_SPL
337
Masahiro Yamadadd840582014-07-30 14:08:14 +0900338config TARGET_PXM2
339 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100340 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900341 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900342
343config TARGET_RUT
344 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100345 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900346 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900347
348config TARGET_PENGWYN
349 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100350 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900351 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900352 select DM
353 select DM_SERIAL
354 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900355
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200356config TARGET_AM335X_BALTOS
357 bool "Support am335x_baltos"
358 select CPU_V7
359 select SUPPORT_SPL
360 select DM
361 select DM_SERIAL
362 select DM_GPIO
363
Masahiro Yamadadd840582014-07-30 14:08:14 +0900364config TARGET_AM335X_EVM
365 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900367 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900368 select DM
369 select DM_SERIAL
370 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900371
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200372config TARGET_AM335X_SL50
373 bool "Support am335x_sl50"
374 select CPU_V7
375 select SUPPORT_SPL
376 select DM
377 select DM_SERIAL
378
Masahiro Yamadadd840582014-07-30 14:08:14 +0900379config TARGET_AM43XX_EVM
380 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100381 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900382 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900383
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800384config TARGET_BAV335X
385 bool "Support bav335x"
386 select CPU_V7
387 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900388 select DM
389 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800390 help
391 The BAV335x OEM Network Processor integrates all the functions of an
392 embedded network computer in a small, easy to use SODIMM module which
393 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
394 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
395 ethernet with simple connection to external connectors.
396
397 For more information, visit: http://birdland.com/oem
398
Masahiro Yamadadd840582014-07-30 14:08:14 +0900399config TARGET_TI814X_EVM
400 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100401 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900402 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900403
404config TARGET_TI816X_EVM
405 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100406 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900407 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900408
Masahiro Yamadadd840582014-07-30 14:08:14 +0900409config TARGET_BCM28155_AP
410 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100411 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900412
Steve Raeabb16782014-11-11 11:32:18 -0800413config TARGET_BCMCYGNUS
414 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100415 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700416
Steve Raeabb16782014-11-11 11:32:18 -0800417config TARGET_BCMNSP
418 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100419 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700420
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900421config ARCH_EXYNOS
422 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100423 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900424 select DM
425 select DM_SPI_FLASH
426 select DM_SERIAL
427 select DM_SPI
428 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600429 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900430
Simon Glass311757b2014-10-07 22:01:50 -0600431config ARCH_S5PC1XX
432 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100433 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900434 select DM
435 select DM_SERIAL
436 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600437
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900438config ARCH_HIGHBANK
439 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100440 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900441
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900442config ARCH_INTEGRATOR
443 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200444 select DM
445 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900446
Masahiro Yamadac338f092014-08-31 07:11:05 +0900447config ARCH_KEYSTONE
448 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100449 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900450 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900451
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500452config ARCH_MX7
453 bool "Freescale MX7"
454 select CPU_V7
455
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100456config ARCH_MX6
457 bool "Freescale MX6"
458 select CPU_V7
459
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200460config ARCH_MX5
461 bool "Freescale MX5"
462 select CPU_V7
463
Masahiro Yamadadd840582014-07-30 14:08:14 +0900464config TARGET_M53EVK
465 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100466 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900467 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900468
Masahiro Yamadadd840582014-07-30 14:08:14 +0900469config TARGET_MX51EVK
470 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100471 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900472
473config TARGET_MX53ARD
474 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100475 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900476
477config TARGET_MX53EVK
478 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100479 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900480
481config TARGET_MX53LOCO
482 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100483 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900484
485config TARGET_MX53SMD
486 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100487 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900488
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900489config OMAP34XX
490 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100491 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900492
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900493config OMAP44XX
494 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100495 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900496 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900497
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900498config OMAP54XX
499 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100500 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900501 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900502
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900503config RMOBILE
504 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100505 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900506
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900507config ARCH_SOCFPGA
508 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100509 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900510 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200511 select OF_CONTROL
512 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900513 select DM
514 select DM_SPI_FLASH
515 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900516
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300517config TARGET_CM_T43
518 bool "Support cm_t43"
519 select CPU_V7
520 select SUPPORT_SPL
521
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100522config ARCH_SUNXI
523 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200524 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200525 select DM
Tom Rini45368822015-06-30 16:51:15 -0400526 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100527 select DM_GPIO
528 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400529 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200530 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200531 select OF_CONTROL
532 select OF_SEPARATE
Hans de Goedeff42d102015-09-13 13:02:48 +0200533 select SPL_STACK_R if !MACH_SUN9I
Hans de Goede6d0bdfd2015-09-13 12:31:24 +0200534 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
Hans de Goede6edf6a22015-12-10 11:10:17 +0100535 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400536 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200537 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200538 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800539
Lucile Quirion9ee16892015-06-30 17:17:47 -0400540config TARGET_TS4800
541 bool "Support TS4800"
542 select CPU_V7
543
Masahiro Yamadadd840582014-07-30 14:08:14 +0900544config TARGET_VF610TWR
545 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100546 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900547
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530548config TARGET_COLIBRI_VF
549 bool "Support Colibri VF50/61"
550 select CPU_V7
551
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200552config TARGET_PCM052
553 bool "Support pcm-052"
554 select CPU_V7
555
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900556config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900557 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100558 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900559 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530560 select OF_CONTROL
Simon Glass71556fb2015-10-17 19:41:23 -0600561 select SPL_OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900562 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100563 select DM_ETH
Simon Glass71556fb2015-10-17 19:41:23 -0600564 select SPL_DM
Michal Simekd9ae52c2015-11-30 16:13:03 +0100565 select DM_MMC
Jagan Teki9f7a4502015-06-27 00:51:32 +0530566 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600567 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530568 select DM_SPI_FLASH
Simon Glass71556fb2015-10-17 19:41:23 -0600569 select SPL_SEPARATE_BSS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900570
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530571config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100572 bool "Support Xilinx ZynqMP Platform"
573 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600574 select DM
575 select OF_CONTROL
Michal Simek6889ca72015-11-30 14:14:56 +0100576 select DM_ETH
Michal Simekd9ae52c2015-11-30 16:13:03 +0100577 select DM_MMC
Michal Simekc2490bf2015-10-17 19:41:25 -0600578 select DM_SERIAL
Michal Simek84c72042015-01-15 10:01:51 +0100579
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900580config TEGRA
581 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900582
Linus Walleijf91afc42015-01-23 11:50:53 +0100583config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900584 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900585 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900586
Linus Walleijf91afc42015-01-23 11:50:53 +0100587config TARGET_VEXPRESS64_BASE_FVP
588 bool "Support Versatile Express ARMv8a FVP BASE model"
589 select ARM64
590 select SEMIHOSTING
591
Ryan Harkinfc04b922015-10-09 17:18:02 +0100592config TARGET_VEXPRESS64_BASE_FVP_DRAM
593 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
594 select ARM64
595 help
596 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
597 the default config to allow the user to load the images directly into
598 DRAM using model parameters rather than by using semi-hosting to load
599 the files from the host filesystem.
600
Linus Walleijffc10372015-01-23 14:41:10 +0100601config TARGET_VEXPRESS64_JUNO
602 bool "Support Versatile Express Juno Development Platform"
603 select ARM64
604
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530605config TARGET_LS2080A_EMU
606 bool "Support ls2080a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900607 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100608 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700609 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530610 Support for Freescale LS2080A_EMU platform
611 The LS2080A Development System (EMULATOR) is a pre silicon
612 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700613 Layerscape Architecture processor.
614
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530615config TARGET_LS2080A_SIMU
616 bool "Support ls2080a_simu"
617 select ARM64
618 select ARMV8_MULTIENTRY
619 help
620 Support for Freescale LS2080A_SIMU platform
621 The LS2080A Development System (QDS) is a pre silicon
622 development platform that supports the QorIQ LS2080A
623 Layerscape Architecture processor.
624
625config TARGET_LS2080AQDS
626 bool "Support ls2080aqds"
York Sune2b65ea2015-03-20 19:28:24 -0700627 select ARM64
628 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700629 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700630 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530631 Support for Freescale LS2080AQDS platform
632 The LS2080A Development System (QDS) is a high-performance
633 development platform that supports the QorIQ LS2080A
634 Layerscape Architecture processor.
635
636config TARGET_LS2080ARDB
637 bool "Support ls2080ardb"
638 select ARM64
639 select ARMV8_MULTIENTRY
640 select SUPPORT_SPL
641 help
642 Support for Freescale LS2080ARDB platform.
643 The LS2080A Reference design board (RDB) is a high-performance
644 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700645 Layerscape Architecture processor.
646
Peter Griffin11ac2362015-07-30 18:55:23 +0100647config TARGET_HIKEY
648 bool "Support HiKey 96boards Consumer Edition Platform"
649 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100650 select DM
651 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100652 select DM_SERIAL
Peter Griffin11ac2362015-07-30 18:55:23 +0100653 help
654 Support for HiKey 96boards platform. It features a HI6220
655 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
656
Wang Huan550e3dc2014-09-05 13:52:44 +0800657config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800658 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100659 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800660 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800661config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800662 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100663 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800664 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800665
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800666config TARGET_LS1043AQDS
667 bool "Support ls1043aqds"
668 select ARM64
669 select ARMV8_MULTIENTRY
670 select SUPPORT_SPL
671 help
672 Support for Freescale LS1043AQDS platform.
673
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800674config TARGET_LS1043ARDB
675 bool "Support ls1043ardb"
676 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800677 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800678 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800679 help
680 Support for Freescale LS1043ARDB platform.
681
Masahiro Yamadadd840582014-07-30 14:08:14 +0900682config TARGET_H2200
683 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100684 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900685
Masahiro Yamadadd840582014-07-30 14:08:14 +0900686config TARGET_COLIBRI_PXA270
687 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100688 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900689
Masahiro Yamada66cba042014-10-03 19:21:07 +0900690config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900691 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100692 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900693 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900694 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900695 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900696 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900697 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900698 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900699 select DM_SERIAL
700 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900701 help
702 Support for UniPhier SoC family developed by Socionext Inc.
703 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900704
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800705config STM32
706 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100707 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100708 select DM
709 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100710
Simon Glass2444dae2015-08-30 16:55:38 -0600711config ARCH_ROCKCHIP
712 bool "Support Rockchip SoCs"
713 select SUPPORT_SPL
714 select SPL
715 select OF_CONTROL
716 select CPU_V7
717 select DM
718
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700719config TARGET_THUNDERX_88XX
720 bool "Support ThunderX 88xx"
721 select OF_CONTROL
722
Masahiro Yamadadd840582014-07-30 14:08:14 +0900723endchoice
724
Masahiro Yamada4614b892015-02-20 17:04:01 +0900725source "arch/arm/mach-at91/Kconfig"
726
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900727source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900728
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900729source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700730
Thomas Abraham77b55e82015-08-03 17:58:00 +0530731source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900732
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900733source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900734
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900735source "arch/arm/mach-integrator/Kconfig"
736
Masahiro Yamada39a72342015-02-20 17:04:11 +0900737source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900738
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900739source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900740
Stefan Roesec3d89142015-08-25 13:18:38 +0200741source "arch/arm/mach-mvebu/Kconfig"
742
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500743source "arch/arm/cpu/armv7/mx7/Kconfig"
744
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100745source "arch/arm/cpu/armv7/mx6/Kconfig"
746
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200747source "arch/arm/cpu/armv7/mx5/Kconfig"
748
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900749source "arch/arm/cpu/armv7/omap3/Kconfig"
750
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900751source "arch/arm/cpu/armv7/omap4/Kconfig"
752
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900753source "arch/arm/cpu/armv7/omap5/Kconfig"
754
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900755source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900756
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900757source "arch/arm/cpu/armv7/rmobile/Kconfig"
758
Simon Glass2444dae2015-08-30 16:55:38 -0600759source "arch/arm/mach-rockchip/Kconfig"
760
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900761source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600762
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900763source "arch/arm/mach-socfpga/Kconfig"
764
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800765source "arch/arm/mach-stm32/Kconfig"
766
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900767source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900768
Masahiro Yamada4c425572015-02-27 02:26:42 +0900769source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900770
Masahiro Yamada0107f242015-03-16 16:43:22 +0900771source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900772
Hans de Goedeea624e12014-11-14 09:34:30 +0100773source "arch/arm/cpu/armv7/Kconfig"
774
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530775source "arch/arm/cpu/armv8/zynqmp/Kconfig"
776
Linus Walleij23b58772015-03-09 10:53:21 +0100777source "arch/arm/cpu/armv8/Kconfig"
778
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100779source "arch/arm/imx-common/Kconfig"
780
Masahiro Yamadadd840582014-07-30 14:08:14 +0900781source "board/BuR/kwb/Kconfig"
782source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900783source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900784source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900785source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900786source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900787source "board/armltd/vexpress/Kconfig"
788source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900789source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900790source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800791source "board/broadcom/bcmcygnus/Kconfig"
792source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700793source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900794source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900795source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400796source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900797source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900798source "board/denx/m28evk/Kconfig"
799source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530800source "board/freescale/ls2080a/Kconfig"
801source "board/freescale/ls2080aqds/Kconfig"
802source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800803source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800804source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800805source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800806source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900807source "board/freescale/mx23evk/Kconfig"
808source "board/freescale/mx25pdk/Kconfig"
809source "board/freescale/mx28evk/Kconfig"
810source "board/freescale/mx31ads/Kconfig"
811source "board/freescale/mx31pdk/Kconfig"
812source "board/freescale/mx35pdk/Kconfig"
813source "board/freescale/mx51evk/Kconfig"
814source "board/freescale/mx53ard/Kconfig"
815source "board/freescale/mx53evk/Kconfig"
816source "board/freescale/mx53loco/Kconfig"
817source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900818source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900819source "board/gumstix/pepper/Kconfig"
820source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400821source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900822source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900823source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900824source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900825source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900826source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200827source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900828source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900829source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900831source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900832source "board/siemens/draco/Kconfig"
833source "board/siemens/pxm2/Kconfig"
834source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900835source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900836source "board/spear/spear300/Kconfig"
837source "board/spear/spear310/Kconfig"
838source "board/spear/spear320/Kconfig"
839source "board/spear/spear600/Kconfig"
840source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800841source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900842source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900843source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200844source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900845source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900846source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800847source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900848source "board/ti/ti814x/Kconfig"
849source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900850source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900851source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530852source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400853source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200854source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900855source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200856source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900858source "arch/arm/Kconfig.debug"
859
Masahiro Yamadadd840582014-07-30 14:08:14 +0900860endmenu