blob: ab986d3371f41470f5186c81014ff148d5feea97 [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
Nishanth Menon770e68c2016-02-24 12:30:55 -0600371 select TI_I2C_BOARD_DETECT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900372
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200373config TARGET_AM335X_SL50
374 bool "Support am335x_sl50"
375 select CPU_V7
376 select SUPPORT_SPL
377 select DM
378 select DM_SERIAL
379
Masahiro Yamadadd840582014-07-30 14:08:14 +0900380config TARGET_AM43XX_EVM
381 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100382 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900383 select SUPPORT_SPL
Nishanth Menon5f8bb932016-02-24 12:30:56 -0600384 select TI_I2C_BOARD_DETECT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900385
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800386config TARGET_BAV335X
387 bool "Support bav335x"
388 select CPU_V7
389 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900390 select DM
391 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800392 help
393 The BAV335x OEM Network Processor integrates all the functions of an
394 embedded network computer in a small, easy to use SODIMM module which
395 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
396 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
397 ethernet with simple connection to external connectors.
398
399 For more information, visit: http://birdland.com/oem
400
Masahiro Yamadadd840582014-07-30 14:08:14 +0900401config TARGET_TI814X_EVM
402 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100403 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900404 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900405
406config TARGET_TI816X_EVM
407 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100408 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900409 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900410
Masahiro Yamadadd840582014-07-30 14:08:14 +0900411config TARGET_BCM28155_AP
412 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100413 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900414
Steve Raeabb16782014-11-11 11:32:18 -0800415config TARGET_BCMCYGNUS
416 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100417 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700418
Steve Raeabb16782014-11-11 11:32:18 -0800419config TARGET_BCMNSP
420 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100421 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700422
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900423config ARCH_EXYNOS
424 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900426 select DM
427 select DM_SPI_FLASH
428 select DM_SERIAL
429 select DM_SPI
430 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600431 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900432
Simon Glass311757b2014-10-07 22:01:50 -0600433config ARCH_S5PC1XX
434 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100435 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900436 select DM
437 select DM_SERIAL
438 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600439
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900440config ARCH_HIGHBANK
441 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100442 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900443
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900444config ARCH_INTEGRATOR
445 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200446 select DM
447 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900448
Masahiro Yamadac338f092014-08-31 07:11:05 +0900449config ARCH_KEYSTONE
450 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100451 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900452 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400453 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900454
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500455config ARCH_MX7
456 bool "Freescale MX7"
457 select CPU_V7
458
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100459config ARCH_MX6
460 bool "Freescale MX6"
461 select CPU_V7
462
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200463config ARCH_MX5
464 bool "Freescale MX5"
465 select CPU_V7
466
Masahiro Yamadadd840582014-07-30 14:08:14 +0900467config TARGET_M53EVK
468 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100469 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900470 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900471
Masahiro Yamadadd840582014-07-30 14:08:14 +0900472config TARGET_MX51EVK
473 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100474 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900475
476config TARGET_MX53ARD
477 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100478 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900479
480config TARGET_MX53EVK
481 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483
484config TARGET_MX53LOCO
485 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900487
488config TARGET_MX53SMD
489 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900491
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900492config OMAP34XX
493 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900495
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900496config OMAP44XX
497 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100498 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900499 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900500
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900501config OMAP54XX
502 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100503 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900504 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900505
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900506config RMOBILE
507 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100508 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900509
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900510config ARCH_SOCFPGA
511 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100512 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900513 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200514 select OF_CONTROL
515 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900516 select DM
517 select DM_SPI_FLASH
518 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900519
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300520config TARGET_CM_T43
521 bool "Support cm_t43"
522 select CPU_V7
523 select SUPPORT_SPL
524
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100525config ARCH_SUNXI
526 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200527 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200528 select DM
Tom Rini45368822015-06-30 16:51:15 -0400529 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100530 select DM_GPIO
531 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400532 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200533 select DM_USB
Hans de Goeded75111a2016-03-22 22:51:52 +0100534 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200535 select OF_CONTROL
536 select OF_SEPARATE
Hans de Goedeff42d102015-09-13 13:02:48 +0200537 select SPL_STACK_R if !MACH_SUN9I
Hans de Goede6d0bdfd2015-09-13 12:31:24 +0200538 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
Hans de Goede6edf6a22015-12-10 11:10:17 +0100539 select SYS_NS16550
Tom Rini45368822015-06-30 16:51:15 -0400540 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200541 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200542 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800543
Lucile Quirion9ee16892015-06-30 17:17:47 -0400544config TARGET_TS4800
545 bool "Support TS4800"
546 select CPU_V7
547
Masahiro Yamadadd840582014-07-30 14:08:14 +0900548config TARGET_VF610TWR
549 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100550 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900551
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530552config TARGET_COLIBRI_VF
553 bool "Support Colibri VF50/61"
554 select CPU_V7
555
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200556config TARGET_PCM052
557 bool "Support pcm-052"
558 select CPU_V7
559
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900560config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900561 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100562 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900563 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530564 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100565 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900566 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100567 select DM_ETH
Michal Simekeb04ab32016-01-13 14:32:43 +0100568 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100569 select DM_MMC
Jagan Teki9f7a4502015-06-27 00:51:32 +0530570 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600571 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530572 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100573 select SPL_SEPARATE_BSS if SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900574
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530575config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100576 bool "Support Xilinx ZynqMP Platform"
577 select ARM64
Michal Simekc2490bf2015-10-17 19:41:25 -0600578 select DM
579 select OF_CONTROL
Michal Simek6889ca72015-11-30 14:14:56 +0100580 select DM_ETH
Michal Simekd9ae52c2015-11-30 16:13:03 +0100581 select DM_MMC
Michal Simekc2490bf2015-10-17 19:41:25 -0600582 select DM_SERIAL
Michal Simek84c72042015-01-15 10:01:51 +0100583
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900584config TEGRA
585 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900586
Linus Walleijf91afc42015-01-23 11:50:53 +0100587config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900588 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900589 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900590
Linus Walleijf91afc42015-01-23 11:50:53 +0100591config TARGET_VEXPRESS64_BASE_FVP
592 bool "Support Versatile Express ARMv8a FVP BASE model"
593 select ARM64
594 select SEMIHOSTING
595
Ryan Harkinfc04b922015-10-09 17:18:02 +0100596config TARGET_VEXPRESS64_BASE_FVP_DRAM
597 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
598 select ARM64
599 help
600 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
601 the default config to allow the user to load the images directly into
602 DRAM using model parameters rather than by using semi-hosting to load
603 the files from the host filesystem.
604
Linus Walleijffc10372015-01-23 14:41:10 +0100605config TARGET_VEXPRESS64_JUNO
606 bool "Support Versatile Express Juno Development Platform"
607 select ARM64
608
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530609config TARGET_LS2080A_EMU
610 bool "Support ls2080a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900611 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100612 select ARMV8_MULTIENTRY
York Sun7288c2c2015-03-20 19:28:23 -0700613 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530614 Support for Freescale LS2080A_EMU platform
615 The LS2080A Development System (EMULATOR) is a pre silicon
616 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700617 Layerscape Architecture processor.
618
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530619config TARGET_LS2080A_SIMU
620 bool "Support ls2080a_simu"
621 select ARM64
622 select ARMV8_MULTIENTRY
623 help
624 Support for Freescale LS2080A_SIMU platform
625 The LS2080A Development System (QDS) is a pre silicon
626 development platform that supports the QorIQ LS2080A
627 Layerscape Architecture processor.
628
629config TARGET_LS2080AQDS
630 bool "Support ls2080aqds"
York Sune2b65ea2015-03-20 19:28:24 -0700631 select ARM64
632 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700633 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700634 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530635 Support for Freescale LS2080AQDS platform
636 The LS2080A Development System (QDS) is a high-performance
637 development platform that supports the QorIQ LS2080A
638 Layerscape Architecture processor.
639
640config TARGET_LS2080ARDB
641 bool "Support ls2080ardb"
642 select ARM64
643 select ARMV8_MULTIENTRY
644 select SUPPORT_SPL
645 help
646 Support for Freescale LS2080ARDB platform.
647 The LS2080A Reference design board (RDB) is a high-performance
648 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700649 Layerscape Architecture processor.
650
Peter Griffin11ac2362015-07-30 18:55:23 +0100651config TARGET_HIKEY
652 bool "Support HiKey 96boards Consumer Edition Platform"
653 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100654 select DM
655 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100656 select DM_SERIAL
Peter Griffin11ac2362015-07-30 18:55:23 +0100657 help
658 Support for HiKey 96boards platform. It features a HI6220
659 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
660
Wang Huan550e3dc2014-09-05 13:52:44 +0800661config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800662 bool "Support ls1021aqds"
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 +0800665config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800666 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100667 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800668 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800669
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800670config TARGET_LS1043AQDS
671 bool "Support ls1043aqds"
672 select ARM64
673 select ARMV8_MULTIENTRY
674 select SUPPORT_SPL
675 help
676 Support for Freescale LS1043AQDS platform.
677
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800678config TARGET_LS1043ARDB
679 bool "Support ls1043ardb"
680 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800681 select ARMV8_MULTIENTRY
Gong Qianyu3ad44722015-10-26 19:47:53 +0800682 select SUPPORT_SPL
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800683 help
684 Support for Freescale LS1043ARDB platform.
685
Masahiro Yamadadd840582014-07-30 14:08:14 +0900686config TARGET_H2200
687 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100688 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900689
Masahiro Yamadadd840582014-07-30 14:08:14 +0900690config TARGET_COLIBRI_PXA270
691 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100692 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900693
Masahiro Yamada66cba042014-10-03 19:21:07 +0900694config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900695 bool "Socionext UniPhier SoCs"
Masahiro Yamada48264d92016-02-02 21:11:32 +0900696 select CLK_UNIPHIER
Masahiro Yamada02627352014-10-20 17:45:56 +0900697 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900698 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900699 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900700 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900701 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900702 select SPL_DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900703 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900704 select DM_SERIAL
705 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900706 select DM_MMC
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900707 help
708 Support for UniPhier SoC family developed by Socionext Inc.
709 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900710
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800711config STM32
712 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +0100713 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +0100714 select DM
715 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +0100716
Simon Glass2444dae2015-08-30 16:55:38 -0600717config ARCH_ROCKCHIP
718 bool "Support Rockchip SoCs"
719 select SUPPORT_SPL
720 select SPL
721 select OF_CONTROL
722 select CPU_V7
723 select DM
724
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700725config TARGET_THUNDERX_88XX
726 bool "Support ThunderX 88xx"
727 select OF_CONTROL
728
Masahiro Yamadadd840582014-07-30 14:08:14 +0900729endchoice
730
Masahiro Yamada4614b892015-02-20 17:04:01 +0900731source "arch/arm/mach-at91/Kconfig"
732
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900733source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900734
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900735source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700736
Thomas Abraham77b55e82015-08-03 17:58:00 +0530737source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900738
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900739source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900740
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900741source "arch/arm/mach-integrator/Kconfig"
742
Masahiro Yamada39a72342015-02-20 17:04:11 +0900743source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900744
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900745source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900746
Stefan Roesec3d89142015-08-25 13:18:38 +0200747source "arch/arm/mach-mvebu/Kconfig"
748
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500749source "arch/arm/cpu/armv7/mx7/Kconfig"
750
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100751source "arch/arm/cpu/armv7/mx6/Kconfig"
752
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200753source "arch/arm/cpu/armv7/mx5/Kconfig"
754
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900755source "arch/arm/cpu/armv7/omap3/Kconfig"
756
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900757source "arch/arm/cpu/armv7/omap4/Kconfig"
758
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900759source "arch/arm/cpu/armv7/omap5/Kconfig"
760
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900761source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900762
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900763source "arch/arm/cpu/armv7/rmobile/Kconfig"
764
Simon Glass2444dae2015-08-30 16:55:38 -0600765source "arch/arm/mach-rockchip/Kconfig"
766
Minkyu Kang225f5ee2015-11-20 15:24:57 +0900767source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -0600768
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900769source "arch/arm/mach-socfpga/Kconfig"
770
Vikas Manocha0a61ee82016-01-15 17:49:06 -0800771source "arch/arm/mach-stm32/Kconfig"
772
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900773source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900774
Masahiro Yamada4c425572015-02-27 02:26:42 +0900775source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900776
Masahiro Yamada0107f242015-03-16 16:43:22 +0900777source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900778
Hans de Goedeea624e12014-11-14 09:34:30 +0100779source "arch/arm/cpu/armv7/Kconfig"
780
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530781source "arch/arm/cpu/armv8/zynqmp/Kconfig"
782
Linus Walleij23b58772015-03-09 10:53:21 +0100783source "arch/arm/cpu/armv8/Kconfig"
784
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100785source "arch/arm/imx-common/Kconfig"
786
Masahiro Yamadadd840582014-07-30 14:08:14 +0900787source "board/BuR/kwb/Kconfig"
788source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900789source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900790source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900791source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900792source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900793source "board/armltd/vexpress/Kconfig"
794source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900795source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900796source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800797source "board/broadcom/bcmcygnus/Kconfig"
798source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -0700799source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900800source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900801source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400802source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900803source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900804source "board/denx/m28evk/Kconfig"
805source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530806source "board/freescale/ls2080a/Kconfig"
807source "board/freescale/ls2080aqds/Kconfig"
808source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800809source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800810source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800811source "board/freescale/ls1021atwr/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800812source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900813source "board/freescale/mx23evk/Kconfig"
814source "board/freescale/mx25pdk/Kconfig"
815source "board/freescale/mx28evk/Kconfig"
816source "board/freescale/mx31ads/Kconfig"
817source "board/freescale/mx31pdk/Kconfig"
818source "board/freescale/mx35pdk/Kconfig"
819source "board/freescale/mx51evk/Kconfig"
820source "board/freescale/mx53ard/Kconfig"
821source "board/freescale/mx53evk/Kconfig"
822source "board/freescale/mx53loco/Kconfig"
823source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900824source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900825source "board/gumstix/pepper/Kconfig"
826source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400827source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900828source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900829source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900831source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900832source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200833source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900834source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900835source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900836source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900837source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900838source "board/siemens/draco/Kconfig"
839source "board/siemens/pxm2/Kconfig"
840source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900842source "board/spear/spear300/Kconfig"
843source "board/spear/spear310/Kconfig"
844source "board/spear/spear320/Kconfig"
845source "board/spear/spear600/Kconfig"
846source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800847source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900848source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900849source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +0200850source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900851source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900852source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800853source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900854source "board/ti/ti814x/Kconfig"
855source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900856source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530858source "board/toradex/colibri_vf/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400859source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200860source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900861source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200862source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900863
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900864source "arch/arm/Kconfig.debug"
865
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866endmenu