blob: 8085a24de2ecd97103499814501bbc042b0e7ac7 [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
13config CPU_ARM720T
14 bool
15
16config CPU_ARM920T
17 bool
18
19config CPU_ARM926EJS
20 bool
21
22config CPU_ARM946ES
23 bool
24
25config CPU_ARM1136
26 bool
27
28config CPU_ARM1176
29 bool
30 select HAS_VBAR
31
32config CPU_V7
33 bool
34 select HAS_VBAR
35
rev13@wp.pl12d8a722015-03-01 12:44:39 +010036config CPU_V7M
37 bool
38
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010039config CPU_PXA
40 bool
41
42config CPU_SA1100
43 bool
44
45config SYS_CPU
46 default "arm720t" if CPU_ARM720T
47 default "arm920t" if CPU_ARM920T
48 default "arm926ejs" if CPU_ARM926EJS
49 default "arm946es" if CPU_ARM946ES
50 default "arm1136" if CPU_ARM1136
51 default "arm1176" if CPU_ARM1176
52 default "armv7" if CPU_V7
rev13@wp.pl12d8a722015-03-01 12:44:39 +010053 default "armv7m" if CPU_V7M
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010054 default "pxa" if CPU_PXA
55 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090056 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010057
Linus Walleijf91afc42015-01-23 11:50:53 +010058config SEMIHOSTING
59 bool "support boot from semihosting"
60 help
61 In emulated environments, semihosting is a way for
62 the hosted environment to call out to the emulator to
63 retrieve files from the host machine.
64
Peng Fanf3e9bec2015-08-19 15:48:57 +080065config SYS_L2CACHE_OFF
66 bool "L2cache off"
67 help
68 If SoC does not support L2CACHE or one do not want to enable
69 L2CACHE, choose this option.
70
Masahiro Yamadadd840582014-07-30 14:08:14 +090071choice
72 prompt "Target select"
Masahiro Yamada589907e2015-08-01 16:39:13 +090073 default ARCH_VERSATILE
Masahiro Yamadadd840582014-07-30 14:08:14 +090074
Masahiro Yamada4614b892015-02-20 17:04:01 +090075config ARCH_AT91
76 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +090077
78config TARGET_EDB93XX
79 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010080 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090081
82config TARGET_SCB9328
83 bool "Support scb9328"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010084 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090085
Masahiro Yamadadd840582014-07-30 14:08:14 +090086config TARGET_VCMA9
87 bool "Support VCMA9"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010088 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090089
90config TARGET_SMDK2410
91 bool "Support smdk2410"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010092 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +090093
Masahiro Yamadadd840582014-07-30 14:08:14 +090094config TARGET_ASPENITE
95 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010096 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +090097
98config TARGET_GPLUGD
99 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100100 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900101
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900102config ARCH_DAVINCI
103 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100104 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900105 help
106 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900107
Masahiro Yamada47539e22014-08-31 07:10:59 +0900108config KIRKWOOD
109 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100110 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900111
Stefan Roese2bae75a2015-04-25 06:29:56 +0200112config TARGET_DB_88F6820_GP
113 bool "Support DB-88F6820-GP"
114 select CPU_V7
115 select SUPPORT_SPL
116
Stefan Roesedd580802014-10-22 12:13:18 +0200117config TARGET_DB_MV784MP_GP
118 bool "Support db-mv784mp-gp"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900119 select CPU_V7
Stefan Roese25541672015-01-19 11:33:46 +0100120 select SUPPORT_SPL
Stefan Roesedd580802014-10-22 12:13:18 +0200121
Stefan Roesea4884832014-10-22 12:13:19 +0200122config TARGET_MAXBCM
123 bool "Support maxbcm"
Masahiro Yamada790f70c2014-11-06 11:39:26 +0900124 select CPU_V7
Stefan Roesee7778ec2015-01-19 11:33:47 +0100125 select SUPPORT_SPL
Stefan Roesea4884832014-10-22 12:13:19 +0200126
Masahiro Yamadadd840582014-07-30 14:08:14 +0900127config TARGET_DEVKIT3250
128 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100129 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300130 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900131
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200132config TARGET_WORK_92105
133 bool "Support work_92105"
134 select CPU_ARM926EJS
135 select SUPPORT_SPL
136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900137config TARGET_MX25PDK
138 bool "Support mx25pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100139 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900140
141config TARGET_TX25
142 bool "Support tx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100143 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900144 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900145
146config TARGET_ZMX25
147 bool "Support zmx25"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100148 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900149
150config TARGET_APF27
151 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100152 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900153 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900154
155config TARGET_IMX27LITE
156 bool "Support imx27lite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100157 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900158
159config TARGET_MAGNESIUM
160 bool "Support magnesium"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100161 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900162
163config TARGET_APX4DEVKIT
164 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100165 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900166 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900167
168config TARGET_XFI3
169 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100170 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900171 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900172
173config TARGET_M28EVK
174 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100175 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900176 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900177
178config TARGET_MX23EVK
179 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100180 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900181 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900182
183config TARGET_MX28EVK
184 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100185 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900186 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900187
188config TARGET_MX23_OLINUXINO
189 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100190 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900191 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900192
193config TARGET_BG0900
194 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100195 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900196 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900197
198config TARGET_SANSA_FUZE_PLUS
199 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100200 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900201 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900202
203config TARGET_SC_SPS_1
204 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100205 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900206 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900207
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900208config ARCH_NOMADIK
209 bool "ST-Ericsson Nomadik"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100210 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900211
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900212config ORION5X
213 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100214 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900215
Masahiro Yamadadd840582014-07-30 14:08:14 +0900216config TARGET_SPEAR300
217 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100218 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900219
220config TARGET_SPEAR310
221 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100222 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900223
224config TARGET_SPEAR320
225 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100226 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900227
228config TARGET_SPEAR600
229 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100230 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900231
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800232config TARGET_STV0991
233 bool "Support stv0991"
234 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900235 select DM
236 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700237 select DM_SPI
238 select DM_SPI_FLASH
239 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800240
Masahiro Yamadadd840582014-07-30 14:08:14 +0900241config TARGET_X600
242 bool "Support x600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100243 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900244 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900245
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900246config ARCH_VERSATILE
247 bool "ARM Ltd. Versatile family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100248 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900249
Masahiro Yamadadd840582014-07-30 14:08:14 +0900250config TARGET_IMX31_PHYCORE
251 bool "Support imx31_phycore"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100252 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900253
254config TARGET_QONG
255 bool "Support qong"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100256 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900257
258config TARGET_MX31ADS
259 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100260 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900261
262config TARGET_MX31PDK
263 bool "Support mx31pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100264 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900265 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900266
267config TARGET_TT01
268 bool "Support tt01"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100269 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900270
271config TARGET_IMX31_LITEKIT
272 bool "Support imx31_litekit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100273 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900274
275config TARGET_WOODBURN
276 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100277 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900278
279config TARGET_WOODBURN_SD
280 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100281 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900282 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900283
284config TARGET_FLEA3
285 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100286 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900287
288config TARGET_MX35PDK
289 bool "Support mx35pdk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100290 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900291
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900292config ARCH_BCM283X
293 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900294 select DM
295 select DM_SERIAL
296 select DM_GPIO
Stephen Warren46414292015-02-16 12:16:15 -0700297
Masahiro Yamadadd840582014-07-30 14:08:14 +0900298config TARGET_VEXPRESS_CA15_TC2
299 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100300 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100301 select CPU_V7_HAS_NONSEC
302 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900303
304config TARGET_VEXPRESS_CA5X2
305 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100306 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900307
308config TARGET_VEXPRESS_CA9X4
309 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100310 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900311
312config TARGET_KWB
313 bool "Support kwb"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100314 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900315 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900316
317config TARGET_TSERIES
318 bool "Support tseries"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100319 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900320 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900321
322config TARGET_CM_T335
323 bool "Support cm_t335"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100324 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900325 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900326 select DM
327 select DM_SERIAL
328 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900329
330config TARGET_PEPPER
331 bool "Support pepper"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100332 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900333 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900334 select DM
335 select DM_SERIAL
336 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900337
338config TARGET_AM335X_IGEP0033
339 bool "Support am335x_igep0033"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100340 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900341 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900342 select DM
343 select DM_SERIAL
344 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900345
346config TARGET_PCM051
347 bool "Support pcm051"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100348 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900349 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900350 select DM
351 select DM_SERIAL
352 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900353
354config TARGET_DRACO
355 bool "Support draco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100356 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900357 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900358
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200359config TARGET_THUBAN
360 bool "Support thuban"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100361 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900362 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900363
Heiko Schocher578056c2015-06-15 14:56:41 +0200364config TARGET_RASTABAN
365 bool "Support rastaban"
366 select CPU_V7
367 select SUPPORT_SPL
368
Masahiro Yamadadd840582014-07-30 14:08:14 +0900369config TARGET_PXM2
370 bool "Support pxm2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100371 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900372 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900373
374config TARGET_RUT
375 bool "Support rut"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100376 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900377 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900378
379config TARGET_PENGWYN
380 bool "Support pengwyn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100381 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900382 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900383 select DM
384 select DM_SERIAL
385 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900386
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200387config TARGET_AM335X_BALTOS
388 bool "Support am335x_baltos"
389 select CPU_V7
390 select SUPPORT_SPL
391 select DM
392 select DM_SERIAL
393 select DM_GPIO
394
Masahiro Yamadadd840582014-07-30 14:08:14 +0900395config TARGET_AM335X_EVM
396 bool "Support am335x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100397 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900398 select SUPPORT_SPL
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900399 select DM
400 select DM_SERIAL
401 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900402
403config TARGET_AM43XX_EVM
404 bool "Support am43xx_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100405 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900406 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900407
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800408config TARGET_BAV335X
409 bool "Support bav335x"
410 select CPU_V7
411 select SUPPORT_SPL
Masahiro Yamada93a35382015-03-31 12:48:00 +0900412 select DM
413 select DM_SERIAL
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800414 help
415 The BAV335x OEM Network Processor integrates all the functions of an
416 embedded network computer in a small, easy to use SODIMM module which
417 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
418 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
419 ethernet with simple connection to external connectors.
420
421 For more information, visit: http://birdland.com/oem
422
Masahiro Yamadadd840582014-07-30 14:08:14 +0900423config TARGET_TI814X_EVM
424 bool "Support ti814x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900426 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900427
428config TARGET_TI816X_EVM
429 bool "Support ti816x_evm"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100430 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900431 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900432
Masahiro Yamadadd840582014-07-30 14:08:14 +0900433config TARGET_BCM28155_AP
434 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100435 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900436
Steve Raeabb16782014-11-11 11:32:18 -0800437config TARGET_BCMCYGNUS
438 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100439 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700440
Steve Raeabb16782014-11-11 11:32:18 -0800441config TARGET_BCMNSP
442 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100443 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700444
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900445config ARCH_EXYNOS
446 bool "Samsung EXYNOS"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100447 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900448 select DM
449 select DM_SPI_FLASH
450 select DM_SERIAL
451 select DM_SPI
452 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900453
Simon Glass311757b2014-10-07 22:01:50 -0600454config ARCH_S5PC1XX
455 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100456 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900457 select DM
458 select DM_SERIAL
459 select DM_GPIO
Simon Glass311757b2014-10-07 22:01:50 -0600460
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900461config ARCH_HIGHBANK
462 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100463 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900464
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900465config ARCH_INTEGRATOR
466 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200467 select DM
468 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900469
Masahiro Yamadac338f092014-08-31 07:11:05 +0900470config ARCH_KEYSTONE
471 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100472 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900473 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900474
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100475config ARCH_MX6
476 bool "Freescale MX6"
477 select CPU_V7
478
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200479config ARCH_MX5
480 bool "Freescale MX5"
481 select CPU_V7
482
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483config TARGET_M53EVK
484 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100485 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900486 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900487
488config TARGET_IMA3_MX53
489 bool "Support ima3-mx53"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100490 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900491
492config TARGET_MX51EVK
493 bool "Support mx51evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900495
496config TARGET_MX53ARD
497 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100498 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900499
500config TARGET_MX53EVK
501 bool "Support mx53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100502 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900503
504config TARGET_MX53LOCO
505 bool "Support mx53loco"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100506 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900507
508config TARGET_MX53SMD
509 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100510 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900511
512config TARGET_MX51_EFIKAMX
513 bool "Support mx51_efikamx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100514 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900515
516config TARGET_VISION2
517 bool "Support vision2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100518 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900519
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900520config OMAP34XX
521 bool "OMAP34XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100522 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900523
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900524config OMAP44XX
525 bool "OMAP44XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100526 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900527 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900528
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900529config OMAP54XX
530 bool "OMAP54XX SoC"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100531 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900532 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900533
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900534config RMOBILE
535 bool "Renesas ARM SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100536 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900537
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900538config ARCH_SOCFPGA
539 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100540 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900541 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200542 select OF_CONTROL
543 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900544 select DM
545 select DM_SPI_FLASH
546 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900547
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300548config TARGET_CM_T43
549 bool "Support cm_t43"
550 select CPU_V7
551 select SUPPORT_SPL
552
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100553config ARCH_SUNXI
554 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200555 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200556 select DM
557 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400558 select DM_ETH
559 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200560 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200561 select OF_CONTROL
562 select OF_SEPARATE
Tom Rini45368822015-06-30 16:51:15 -0400563 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200564 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200565 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800566
Masahiro Yamadadd840582014-07-30 14:08:14 +0900567config TARGET_SNOWBALL
568 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100569 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900570
Lucile Quirion9ee16892015-06-30 17:17:47 -0400571config TARGET_TS4800
572 bool "Support TS4800"
573 select CPU_V7
574
Masahiro Yamadadd840582014-07-30 14:08:14 +0900575config TARGET_U8500_HREF
576 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100577 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900578
579config TARGET_VF610TWR
580 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100581 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900582
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530583config TARGET_COLIBRI_VF
584 bool "Support Colibri VF50/61"
585 select CPU_V7
586
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900587config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900588 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100589 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900590 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530591 select OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900592 select DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530593 select DM_SPI
594 select DM_SPI_FLASH
Masahiro Yamadadd840582014-07-30 14:08:14 +0900595
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530596config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100597 bool "Support Xilinx ZynqMP Platform"
598 select ARM64
599
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900600config TEGRA
601 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900602
Linus Walleijf91afc42015-01-23 11:50:53 +0100603config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900604 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900605 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900606
Linus Walleijf91afc42015-01-23 11:50:53 +0100607config TARGET_VEXPRESS64_BASE_FVP
608 bool "Support Versatile Express ARMv8a FVP BASE model"
609 select ARM64
610 select SEMIHOSTING
611
Linus Walleijffc10372015-01-23 14:41:10 +0100612config TARGET_VEXPRESS64_JUNO
613 bool "Support Versatile Express Juno Development Platform"
614 select ARM64
615
Masahiro Yamadadd840582014-07-30 14:08:14 +0900616config TARGET_LS2085A_EMU
617 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900618 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100619 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900620
621config TARGET_LS2085A_SIMU
622 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900623 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100624 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900625
York Sun7288c2c2015-03-20 19:28:23 -0700626config TARGET_LS2085AQDS
627 bool "Support ls2085aqds"
628 select ARM64
629 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700630 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700631 help
632 Support for Freescale LS2085AQDS platform
633 The LS2085A Development System (QDS) is a high-performance
634 development platform that supports the QorIQ LS2085A
635 Layerscape Architecture processor.
636
York Sune2b65ea2015-03-20 19:28:24 -0700637config TARGET_LS2085ARDB
638 bool "Support ls2085ardb"
639 select ARM64
640 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700641 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700642 help
643 Support for Freescale LS2085ARDB platform.
644 The LS2085A Reference design board (RDB) is a high-performance
645 development platform that supports the QorIQ LS2085A
646 Layerscape Architecture processor.
647
Peter Griffin11ac2362015-07-30 18:55:23 +0100648config TARGET_HIKEY
649 bool "Support HiKey 96boards Consumer Edition Platform"
650 select ARM64
651 help
652 Support for HiKey 96boards platform. It features a HI6220
653 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
654
Wang Huan550e3dc2014-09-05 13:52:44 +0800655config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800656 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100657 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800658 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800659
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800660config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800661 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100662 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800663 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800664
Masahiro Yamadadd840582014-07-30 14:08:14 +0900665config TARGET_BALLOON3
666 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100667 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900668
669config TARGET_H2200
670 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100671 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900672
673config TARGET_PALMLD
674 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100675 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900676
677config TARGET_PALMTC
678 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100679 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900680
681config TARGET_PALMTREO680
682 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100683 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900684 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900685
686config TARGET_PXA255_IDP
687 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100688 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900689
690config TARGET_TRIZEPSIV
691 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100692 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900693
694config TARGET_VPAC270
695 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100696 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900697 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900698
699config TARGET_XAENIAX
700 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100701 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900702
703config TARGET_ZIPITZ2
704 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100705 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900706
707config TARGET_LP8X4X
708 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100709 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900710
711config TARGET_COLIBRI_PXA270
712 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100713 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900714
715config TARGET_JORNADA
716 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100717 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900718
Masahiro Yamada66cba042014-10-03 19:21:07 +0900719config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900720 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100721 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900722 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900723 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900724 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900725 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900726 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900727 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900728 select DM_SERIAL
729 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900730 help
731 Support for UniPhier SoC family developed by Socionext Inc.
732 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900733
rev13@wp.pled09a552015-03-01 12:44:42 +0100734config TARGET_STM32F429_DISCOVERY
735 bool "Support STM32F429 Discovery"
736 select CPU_V7M
737
Simon Glass2444dae2015-08-30 16:55:38 -0600738config ARCH_ROCKCHIP
739 bool "Support Rockchip SoCs"
740 select SUPPORT_SPL
741 select SPL
742 select OF_CONTROL
743 select CPU_V7
744 select DM
745
Masahiro Yamadadd840582014-07-30 14:08:14 +0900746endchoice
747
Masahiro Yamada4614b892015-02-20 17:04:01 +0900748source "arch/arm/mach-at91/Kconfig"
749
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900750source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900751
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900752source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700753
Thomas Abraham77b55e82015-08-03 17:58:00 +0530754source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900755
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900756source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900757
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900758source "arch/arm/mach-integrator/Kconfig"
759
Masahiro Yamada39a72342015-02-20 17:04:11 +0900760source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900761
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900762source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900763
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100764source "arch/arm/cpu/armv7/mx6/Kconfig"
765
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200766source "arch/arm/cpu/armv7/mx5/Kconfig"
767
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900768source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900769
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900770source "arch/arm/cpu/armv7/omap3/Kconfig"
771
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900772source "arch/arm/cpu/armv7/omap4/Kconfig"
773
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900774source "arch/arm/cpu/armv7/omap5/Kconfig"
775
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900776source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900777
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900778source "arch/arm/cpu/armv7/rmobile/Kconfig"
779
Simon Glass2444dae2015-08-30 16:55:38 -0600780source "arch/arm/mach-rockchip/Kconfig"
781
Simon Glass311757b2014-10-07 22:01:50 -0600782source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
783
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900784source "arch/arm/mach-socfpga/Kconfig"
785
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900786source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900787
Masahiro Yamada4c425572015-02-27 02:26:42 +0900788source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900789
Masahiro Yamada63637a42015-02-20 17:04:10 +0900790source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900791
Masahiro Yamada0107f242015-03-16 16:43:22 +0900792source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900793
Hans de Goedeea624e12014-11-14 09:34:30 +0100794source "arch/arm/cpu/armv7/Kconfig"
795
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530796source "arch/arm/cpu/armv8/zynqmp/Kconfig"
797
Linus Walleij23b58772015-03-09 10:53:21 +0100798source "arch/arm/cpu/armv8/Kconfig"
799
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100800source "arch/arm/imx-common/Kconfig"
801
Masahiro Yamadadd840582014-07-30 14:08:14 +0900802source "board/BuR/kwb/Kconfig"
803source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900804source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900805source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200806source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200807source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900808source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900809source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900810source "board/armltd/vexpress/Kconfig"
811source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900812source "board/balloon3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900813source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900814source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800815source "board/broadcom/bcmcygnus/Kconfig"
816source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900817source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900818source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400819source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900820source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900821source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900822source "board/denx/m28evk/Kconfig"
823source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900824source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900825source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700826source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700827source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800828source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800829source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/freescale/mx23evk/Kconfig"
831source "board/freescale/mx25pdk/Kconfig"
832source "board/freescale/mx28evk/Kconfig"
833source "board/freescale/mx31ads/Kconfig"
834source "board/freescale/mx31pdk/Kconfig"
835source "board/freescale/mx35pdk/Kconfig"
836source "board/freescale/mx51evk/Kconfig"
837source "board/freescale/mx53ard/Kconfig"
838source "board/freescale/mx53evk/Kconfig"
839source "board/freescale/mx53loco/Kconfig"
840source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900842source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900843source "board/gumstix/pepper/Kconfig"
844source "board/h2200/Kconfig"
845source "board/hale/tt01/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -0400846source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900847source "board/icpdas/lp8x4x/Kconfig"
848source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900849source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900850source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900851source "board/karo/tx25/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900852source "board/logicpd/imx27lite/Kconfig"
853source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200854source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900855source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900856source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857source "board/palmld/Kconfig"
858source "board/palmtc/Kconfig"
859source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900860source "board/phytec/pcm051/Kconfig"
861source "board/ppcag/bg0900/Kconfig"
862source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900863source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900864source "board/sandisk/sansa_fuze_plus/Kconfig"
865source "board/scb9328/Kconfig"
866source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900867source "board/siemens/draco/Kconfig"
868source "board/siemens/pxm2/Kconfig"
869source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900870source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900871source "board/spear/spear300/Kconfig"
872source "board/spear/spear310/Kconfig"
873source "board/spear/spear320/Kconfig"
874source "board/spear/spear600/Kconfig"
875source "board/spear/x600/Kconfig"
876source "board/st-ericsson/snowball/Kconfig"
877source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100878source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800879source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900880source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900881source "board/syteco/zmx25/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900882source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900883source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800884source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900885source "board/ti/ti814x/Kconfig"
886source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900887source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900888source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530889source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900890source "board/trizepsiv/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400891source "board/technologic/ts4800/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900892source "board/ttcontrol/vision2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900893source "board/vpac270/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200894source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900895source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200896source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900897source "board/xaeniax/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900898source "board/zipitz2/Kconfig"
899
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900900source "arch/arm/Kconfig.debug"
901
Masahiro Yamadadd840582014-07-30 14:08:14 +0900902endmenu