blob: e5f57efa492c07a26fe01bcfee693a7f1a87aa36 [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada0d46c342014-09-14 03:01:51 +09007config ARM64
8 bool
9
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010010config HAS_VBAR
11 bool
12
Albert ARIBAUDa3823222015-10-23 18:06:40 +020013config HAS_THUMB2
14 bool
15
Georges Savoundararadj3bae15f2014-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 ARIBAUDa3823222015-10-23 18:06:40 +020038 select HAS_THUMB2
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010039
rev13@wp.plb3b57e82015-03-01 12:44:39 +010040config CPU_V7M
41 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020042 select HAS_THUMB2
rev13@wp.plb3b57e82015-03-01 12:44:39 +010043
Georges Savoundararadj3bae15f2014-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.plb3b57e82015-03-01 12:44:39 +010058 default "armv7m" if CPU_V7M
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010059 default "pxa" if CPU_PXA
60 default "sa1100" if CPU_SA1100
Masahiro Yamadadade3b02014-11-06 11:39:27 +090061 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010062
Linus Walleij800d6fd2015-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 Fan10ddab42015-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 Yamadad3ae6782014-07-30 14:08:14 +090076choice
77 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -060078 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090079
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +090080config ARCH_AT91
81 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090082
83config TARGET_EDB93XX
84 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010085 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090086
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090087config TARGET_VCMA9
88 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010089 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090090
91config TARGET_SMDK2410
92 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010093 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090094
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090095config TARGET_ASPENITE
96 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010097 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090098
99config TARGET_GPLUGD
100 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100101 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900102
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900103config ARCH_DAVINCI
104 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100105 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900106 help
107 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900108
Masahiro Yamadad7570852014-08-31 07:10:59 +0900109config KIRKWOOD
110 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100111 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900112
Stefan Roese383e0c12015-08-25 13:18:38 +0200113config ARCH_MVEBU
114 bool "Marvell MVEBU family (Armada XP/38x)"
Stefan Roese073efd72015-04-25 06:29:56 +0200115 select CPU_V7
116 select SUPPORT_SPL
Stefan Roese096de4f2015-09-01 11:27:52 +0200117 select OF_CONTROL
118 select OF_SEPARATE
119 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100120 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200121 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100122 select DM_SPI
123 select DM_SPI_FLASH
Stefan Roese83097cf2015-11-25 07:37:00 +0100124 select SPL_DM
Nathan Rossi66f05702016-01-08 03:00:47 +1000125 select SPL_DM_SEQ_ALIAS
Stefan Roese83097cf2015-11-25 07:37:00 +0100126 select SPL_OF_CONTROL
Stefan Roese49e7d772015-11-20 13:51:57 +0100127 select SPL_SIMPLE_BUS
Stefan Roese9b1e2312014-10-22 12:13:19 +0200128
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900129config TARGET_DEVKIT3250
130 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100131 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300132 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900133
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200134config TARGET_WORK_92105
135 bool "Support work_92105"
136 select CPU_ARM926EJS
137 select SUPPORT_SPL
138
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900139config TARGET_MX25PDK
140 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100141 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900142
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900143config TARGET_ZMX25
144 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100145 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900146
147config TARGET_APF27
148 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100149 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900150 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900151
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900152config TARGET_APX4DEVKIT
153 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100154 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900155 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900156
157config TARGET_XFI3
158 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100159 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900160 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900161
162config TARGET_M28EVK
163 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100164 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900165 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900166
167config TARGET_MX23EVK
168 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100169 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900170 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900171
172config TARGET_MX28EVK
173 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100174 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900175 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900176
177config TARGET_MX23_OLINUXINO
178 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100179 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900180 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900181
182config TARGET_BG0900
183 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100184 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900185 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900186
187config TARGET_SANSA_FUZE_PLUS
188 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900190 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900191
192config TARGET_SC_SPS_1
193 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900195 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900196
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900197config ORION5X
198 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100199 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900200
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900201config TARGET_SPEAR300
202 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900204
205config TARGET_SPEAR310
206 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900208
209config TARGET_SPEAR320
210 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900212
213config TARGET_SPEAR600
214 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900216
Vikas Manocha33913c52014-11-18 10:42:22 -0800217config TARGET_STV0991
218 bool "Support stv0991"
219 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900220 select DM
221 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700222 select DM_SPI
223 select DM_SPI_FLASH
224 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800225
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900226config TARGET_X600
227 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100228 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900229 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900230
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900231config TARGET_IMX31_PHYCORE
232 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100233 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900234
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900235config TARGET_MX31ADS
236 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100237 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900238
239config TARGET_MX31PDK
240 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100241 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900242 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900243
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900244config TARGET_WOODBURN
245 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100246 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900247
248config TARGET_WOODBURN_SD
249 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100250 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900251 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900252
253config TARGET_FLEA3
254 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100255 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900256
257config TARGET_MX35PDK
258 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100259 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900260
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900261config ARCH_BCM283X
262 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900263 select DM
264 select DM_SERIAL
265 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700266
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900267config TARGET_VEXPRESS_CA15_TC2
268 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100269 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100270 select CPU_V7_HAS_NONSEC
271 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900272
273config TARGET_VEXPRESS_CA5X2
274 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100275 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900276
277config TARGET_VEXPRESS_CA9X4
278 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100279 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900280
281config TARGET_KWB
282 bool "Support kwb"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100283 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900284 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900285
286config TARGET_TSERIES
287 bool "Support tseries"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100288 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900289 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900290
291config TARGET_CM_T335
292 bool "Support cm_t335"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100293 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900294 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900295 select DM
296 select DM_SERIAL
297 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900298
299config TARGET_PEPPER
300 bool "Support pepper"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100301 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900302 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900303 select DM
304 select DM_SERIAL
305 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900306
307config TARGET_AM335X_IGEP0033
308 bool "Support am335x_igep0033"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100309 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900310 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900311 select DM
312 select DM_SERIAL
313 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900314
315config TARGET_PCM051
316 bool "Support pcm051"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100317 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900318 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900319 select DM
320 select DM_SERIAL
321 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900322
323config TARGET_DRACO
324 bool "Support draco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100325 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900326 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900327
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200328config TARGET_THUBAN
329 bool "Support thuban"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100330 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900331 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900332
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200333config TARGET_RASTABAN
334 bool "Support rastaban"
335 select CPU_V7
336 select SUPPORT_SPL
337
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900338config TARGET_PXM2
339 bool "Support pxm2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100340 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900341 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900342
343config TARGET_RUT
344 bool "Support rut"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100345 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900346 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900347
348config TARGET_PENGWYN
349 bool "Support pengwyn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100350 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900351 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900352 select DM
353 select DM_SERIAL
354 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900355
Yegor Yefremovfa8b71b2015-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 Yamadad3ae6782014-07-30 14:08:14 +0900364config TARGET_AM335X_EVM
365 bool "Support am335x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900367 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900368 select DM
369 select DM_SERIAL
370 select DM_GPIO
Nishanth Menon2afa70d2016-02-24 12:30:55 -0600371 select TI_I2C_BOARD_DETECT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900372
Enric Balletbò i Serra9d89b082015-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 Yamadad3ae6782014-07-30 14:08:14 +0900380config TARGET_AM43XX_EVM
381 bool "Support am43xx_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100382 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900383 select SUPPORT_SPL
Nishanth Menon757a9a02016-02-24 12:30:56 -0600384 select TI_I2C_BOARD_DETECT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900385
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800386config TARGET_BAV335X
387 bool "Support bav335x"
388 select CPU_V7
389 select SUPPORT_SPL
Masahiro Yamada20c57812015-03-31 12:48:00 +0900390 select DM
391 select DM_SERIAL
Gilles Gameiroebd46d12015-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 Yamadad3ae6782014-07-30 14:08:14 +0900401config TARGET_TI814X_EVM
402 bool "Support ti814x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100403 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900404 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900405
406config TARGET_TI816X_EVM
407 bool "Support ti816x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100408 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900409 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900410
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900411config TARGET_BCM28155_AP
412 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100413 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900414
Steve Rae1c5f31c2014-11-11 11:32:18 -0800415config TARGET_BCMCYGNUS
416 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100417 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700418
Steve Rae1c5f31c2014-11-11 11:32:18 -0800419config TARGET_BCMNSP
420 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100421 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700422
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900423config ARCH_EXYNOS
424 bool "Samsung EXYNOS"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamada5ef5ccc2015-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 Glassaa8484f2015-10-18 21:17:17 -0600431 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900432
Simon Glass96aa0722014-10-07 22:01:50 -0600433config ARCH_S5PC1XX
434 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100435 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900436 select DM
437 select DM_SERIAL
438 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600439
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900440config ARCH_HIGHBANK
441 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100442 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900443
Masahiro Yamadacad44162015-04-21 21:59:36 +0900444config ARCH_INTEGRATOR
445 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200446 select DM
447 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900448
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900449config ARCH_KEYSTONE
450 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100451 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900452 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400453 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900454
Adrian Alonso98810772015-09-03 11:49:28 -0500455config ARCH_MX7
456 bool "Freescale MX7"
457 select CPU_V7
458
Boris BREZILLON51e82662015-03-04 13:13:03 +0100459config ARCH_MX6
460 bool "Freescale MX6"
461 select CPU_V7
462
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200463config ARCH_MX5
464 bool "Freescale MX5"
465 select CPU_V7
466
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900467config TARGET_M53EVK
468 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100469 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900470 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900471
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900472config TARGET_MX51EVK
473 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100474 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900475
476config TARGET_MX53ARD
477 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100478 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900479
480config TARGET_MX53EVK
481 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100482 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900483
484config TARGET_MX53LOCO
485 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900487
488config TARGET_MX53SMD
489 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900491
Masahiro Yamadadd678432014-08-31 07:11:02 +0900492config OMAP34XX
493 bool "OMAP34XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900495
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900496config OMAP44XX
497 bool "OMAP44XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100498 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900499 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900500
Masahiro Yamada420b8162014-08-31 07:11:04 +0900501config OMAP54XX
502 bool "OMAP54XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100503 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900504 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900505
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900506config RMOBILE
507 bool "Renesas ARM SoCs"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100508 select CPU_V7
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300509
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900510config ARCH_SOCFPGA
511 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100512 select CPU_V7
513 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200514 select OF_CONTROL
515 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900516 select DM
517 select DM_SPI_FLASH
518 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100519
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300520config TARGET_CM_T43
521 bool "Support cm_t43"
522 select CPU_V7
523 select SUPPORT_SPL
524
Ian Campbelld8e69e02014-10-24 21:20:44 +0100525config ARCH_SUNXI
526 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede16eac6562015-06-17 20:54:07 +0200527 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200528 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400529 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100530 select DM_GPIO
531 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400532 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200533 select DM_USB
Hans de Goede03914882015-04-15 20:46:48 +0200534 select OF_CONTROL
535 select OF_SEPARATE
Hans de Goede66ab79d2015-09-13 13:02:48 +0200536 select SPL_STACK_R if !MACH_SUN9I
Hans de Goede76fa0b22015-09-13 12:31:24 +0200537 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
Hans de Goede9cce88a2015-12-10 11:10:17 +0100538 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400539 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200540 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200541 select USB_KEYBOARD
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800542
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400543config TARGET_TS4800
544 bool "Support TS4800"
545 select CPU_V7
546
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900547config TARGET_VF610TWR
548 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100549 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900550
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530551config TARGET_COLIBRI_VF
552 bool "Support Colibri VF50/61"
553 select CPU_V7
554
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200555config TARGET_PCM052
556 bool "Support pcm-052"
557 select CPU_V7
558
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900559config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900560 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100561 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900562 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530563 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100564 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900565 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100566 select DM_ETH
Michal Simek6dae8492016-01-13 14:32:43 +0100567 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100568 select DM_MMC
Jagan Teki0bd03a52015-06-27 00:51:32 +0530569 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600570 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530571 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100572 select SPL_SEPARATE_BSS if SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900573
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530574config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100575 bool "Support Xilinx ZynqMP Platform"
576 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600577 select DM
578 select OF_CONTROL
Michal Simek250e05e2015-11-30 14:14:56 +0100579 select DM_ETH
Michal Simek9ecd2682015-11-30 16:13:03 +0100580 select DM_MMC
Michal Simek25b83712015-10-17 19:41:25 -0600581 select DM_SERIAL
Michal Simek04b7e622015-01-15 10:01:51 +0100582
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900583config TEGRA
584 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900585
Linus Walleij800d6fd2015-01-23 11:50:53 +0100586config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900587 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900588 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900589
Linus Walleij800d6fd2015-01-23 11:50:53 +0100590config TARGET_VEXPRESS64_BASE_FVP
591 bool "Support Versatile Express ARMv8a FVP BASE model"
592 select ARM64
593 select SEMIHOSTING
594
Ryan Harkinb6b96652015-10-09 17:18:02 +0100595config TARGET_VEXPRESS64_BASE_FVP_DRAM
596 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
597 select ARM64
598 help
599 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
600 the default config to allow the user to load the images directly into
601 DRAM using model parameters rather than by using semi-hosting to load
602 the files from the host filesystem.
603
Linus Walleijc5822502015-01-23 14:41:10 +0100604config TARGET_VEXPRESS64_JUNO
605 bool "Support Versatile Express Juno Development Platform"
606 select ARM64
607
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530608config TARGET_LS2080A_EMU
609 bool "Support ls2080a_emu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900610 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100611 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530612 help
613 Support for Freescale LS2080A_EMU platform
614 The LS2080A Development System (EMULATOR) is a pre silicon
615 development platform that supports the QorIQ LS2080A
616 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900617
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530618config TARGET_LS2080A_SIMU
619 bool "Support ls2080a_simu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900620 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100621 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530622 help
623 Support for Freescale LS2080A_SIMU platform
624 The LS2080A Development System (QDS) is a pre silicon
625 development platform that supports the QorIQ LS2080A
626 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900627
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530628config TARGET_LS2080AQDS
629 bool "Support ls2080aqds"
York Sun03017032015-03-20 19:28:23 -0700630 select ARM64
631 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700632 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700633 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530634 Support for Freescale LS2080AQDS platform
635 The LS2080A Development System (QDS) is a high-performance
636 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700637 Layerscape Architecture processor.
638
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530639config TARGET_LS2080ARDB
640 bool "Support ls2080ardb"
York Sune12abcb2015-03-20 19:28:24 -0700641 select ARM64
642 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700643 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700644 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530645 Support for Freescale LS2080ARDB platform.
646 The LS2080A Reference design board (RDB) is a high-performance
647 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700648 Layerscape Architecture processor.
649
Peter Griffin31f327e2015-07-30 18:55:23 +0100650config TARGET_HIKEY
651 bool "Support HiKey 96boards Consumer Edition Platform"
652 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100653 select DM
654 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100655 select DM_SERIAL
Peter Griffin31f327e2015-07-30 18:55:23 +0100656 help
657 Support for HiKey 96boards platform. It features a HI6220
658 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
659
Wang Huanf0ce7d62014-09-05 13:52:44 +0800660config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800661 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100662 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800663 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800664config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800665 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100666 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800667 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800668
Shaohui Xiedd335672015-11-11 17:58:37 +0800669config TARGET_LS1043AQDS
670 bool "Support ls1043aqds"
671 select ARM64
672 select ARMV8_MULTIENTRY
673 select SUPPORT_SPL
674 help
675 Support for Freescale LS1043AQDS platform.
676
Mingkai Hueee86ff2015-10-26 19:47:52 +0800677config TARGET_LS1043ARDB
678 bool "Support ls1043ardb"
679 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800680 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800681 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800682 help
683 Support for Freescale LS1043ARDB platform.
684
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900685config TARGET_H2200
686 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100687 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900688
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900689config TARGET_COLIBRI_PXA270
690 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100691 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900692
Masahiro Yamada82069432014-10-03 19:21:07 +0900693config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900694 bool "Socionext UniPhier SoCs"
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900695 select CLK_UNIPHIER
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900696 select SUPPORT_SPL
Masahiro Yamada9c9a3e12014-12-18 19:11:03 +0900697 select SPL
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900698 select OF_CONTROL
Masahiro Yamada47eb9a82015-08-28 20:13:18 +0900699 select SPL_OF_CONTROL
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900700 select DM
Masahiro Yamadad1066ba2015-08-28 20:13:17 +0900701 select SPL_DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900702 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900703 select DM_SERIAL
704 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900705 select DM_MMC
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900706 help
707 Support for UniPhier SoC family developed by Socionext Inc.
708 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900709
Vikas Manocha95c89192016-01-15 17:49:06 -0800710config STM32
711 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100712 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100713 select DM
714 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100715
Simon Glass2cffe662015-08-30 16:55:38 -0600716config ARCH_ROCKCHIP
717 bool "Support Rockchip SoCs"
718 select SUPPORT_SPL
719 select SPL
720 select OF_CONTROL
721 select CPU_V7
722 select DM
723
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700724config TARGET_THUNDERX_88XX
725 bool "Support ThunderX 88xx"
726 select OF_CONTROL
727
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900728endchoice
729
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900730source "arch/arm/mach-at91/Kconfig"
731
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900732source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900733
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900734source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700735
Thomas Abraham74f84862015-08-03 17:58:00 +0530736source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900737
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900738source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900739
Masahiro Yamadacad44162015-04-21 21:59:36 +0900740source "arch/arm/mach-integrator/Kconfig"
741
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900742source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900743
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900744source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900745
Stefan Roese383e0c12015-08-25 13:18:38 +0200746source "arch/arm/mach-mvebu/Kconfig"
747
Adrian Alonso98810772015-09-03 11:49:28 -0500748source "arch/arm/cpu/armv7/mx7/Kconfig"
749
Boris BREZILLON51e82662015-03-04 13:13:03 +0100750source "arch/arm/cpu/armv7/mx6/Kconfig"
751
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200752source "arch/arm/cpu/armv7/mx5/Kconfig"
753
Masahiro Yamadadd678432014-08-31 07:11:02 +0900754source "arch/arm/cpu/armv7/omap3/Kconfig"
755
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900756source "arch/arm/cpu/armv7/omap4/Kconfig"
757
Masahiro Yamada420b8162014-08-31 07:11:04 +0900758source "arch/arm/cpu/armv7/omap5/Kconfig"
759
Masahiro Yamada22537642015-02-20 17:04:09 +0900760source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900761
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900762source "arch/arm/cpu/armv7/rmobile/Kconfig"
763
Simon Glass2cffe662015-08-30 16:55:38 -0600764source "arch/arm/mach-rockchip/Kconfig"
765
Minkyu Kang56b820a2015-11-20 15:24:57 +0900766source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600767
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900768source "arch/arm/mach-socfpga/Kconfig"
769
Vikas Manocha95c89192016-01-15 17:49:06 -0800770source "arch/arm/mach-stm32/Kconfig"
771
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900772source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900773
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900774source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900775
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900776source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900777
Hans de Goede85437352014-11-14 09:34:30 +0100778source "arch/arm/cpu/armv7/Kconfig"
779
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530780source "arch/arm/cpu/armv8/zynqmp/Kconfig"
781
Linus Walleij74771392015-03-09 10:53:21 +0100782source "arch/arm/cpu/armv8/Kconfig"
783
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100784source "arch/arm/imx-common/Kconfig"
785
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900786source "board/BuR/kwb/Kconfig"
787source "board/BuR/tseries/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900788source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900789source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900790source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900791source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900792source "board/armltd/vexpress/Kconfig"
793source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900794source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900795source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800796source "board/broadcom/bcmcygnus/Kconfig"
797source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700798source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900799source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900800source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400801source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900802source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900803source "board/denx/m28evk/Kconfig"
804source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530805source "board/freescale/ls2080a/Kconfig"
806source "board/freescale/ls2080aqds/Kconfig"
807source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800808source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800809source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800810source "board/freescale/ls1021atwr/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800811source "board/freescale/ls1043ardb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900812source "board/freescale/mx23evk/Kconfig"
813source "board/freescale/mx25pdk/Kconfig"
814source "board/freescale/mx28evk/Kconfig"
815source "board/freescale/mx31ads/Kconfig"
816source "board/freescale/mx31pdk/Kconfig"
817source "board/freescale/mx35pdk/Kconfig"
818source "board/freescale/mx51evk/Kconfig"
819source "board/freescale/mx53ard/Kconfig"
820source "board/freescale/mx53evk/Kconfig"
821source "board/freescale/mx53loco/Kconfig"
822source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900823source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900824source "board/gumstix/pepper/Kconfig"
825source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400826source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900827source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900828source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900829source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900830source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900831source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200832source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900833source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900834source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900835source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900836source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900837source "board/siemens/draco/Kconfig"
838source "board/siemens/pxm2/Kconfig"
839source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900840source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900841source "board/spear/spear300/Kconfig"
842source "board/spear/spear310/Kconfig"
843source "board/spear/spear320/Kconfig"
844source "board/spear/spear600/Kconfig"
845source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -0800846source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900847source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900848source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200849source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900850source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900851source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800852source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900853source "board/ti/ti814x/Kconfig"
854source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900855source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900856source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530857source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400858source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200859source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900860source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200861source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900862
Masahiro Yamadadf00e522014-09-01 11:06:34 +0900863source "arch/arm/Kconfig.debug"
864
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900865endmenu