blob: de0d6fb18d1937d00853e6985dc66c75bca17e1e [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
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900542 select DM
543 select DM_SPI_FLASH
544 select DM_SPI
Masahiro Yamadadd840582014-07-30 14:08:14 +0900545
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300546config TARGET_CM_T43
547 bool "Support cm_t43"
548 select CPU_V7
549 select SUPPORT_SPL
550
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100551config ARCH_SUNXI
552 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedede1502c2015-06-17 20:54:07 +0200553 select CMD_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200554 select DM
555 select DM_GPIO
Tom Rini45368822015-06-30 16:51:15 -0400556 select DM_ETH
557 select DM_SERIAL
Hans de Goede91183ba2015-06-17 17:44:58 +0200558 select DM_USB
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200559 select OF_CONTROL
560 select OF_SEPARATE
Tom Rini45368822015-06-30 16:51:15 -0400561 select USB
Hans de Goedede1502c2015-06-17 20:54:07 +0200562 select USB_STORAGE
Hans de Goedeab27f302015-08-04 17:04:13 +0200563 select USB_KEYBOARD
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800564
Masahiro Yamadadd840582014-07-30 14:08:14 +0900565config TARGET_SNOWBALL
566 bool "Support snowball"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100567 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900568
Lucile Quirion9ee16892015-06-30 17:17:47 -0400569config TARGET_TS4800
570 bool "Support TS4800"
571 select CPU_V7
572
Masahiro Yamadadd840582014-07-30 14:08:14 +0900573config TARGET_U8500_HREF
574 bool "Support u8500_href"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100575 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900576
577config TARGET_VF610TWR
578 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100579 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900580
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530581config TARGET_COLIBRI_VF
582 bool "Support Colibri VF50/61"
583 select CPU_V7
584
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900585config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900586 bool "Xilinx Zynq Platform"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100587 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900588 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530589 select OF_CONTROL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900590 select DM
Jagan Teki9f7a4502015-06-27 00:51:32 +0530591 select DM_SPI
592 select DM_SPI_FLASH
Masahiro Yamadadd840582014-07-30 14:08:14 +0900593
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530594config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100595 bool "Support Xilinx ZynqMP Platform"
596 select ARM64
597
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900598config TEGRA
599 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900600
Linus Walleijf91afc42015-01-23 11:50:53 +0100601config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900602 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900603 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900604
Linus Walleijf91afc42015-01-23 11:50:53 +0100605config TARGET_VEXPRESS64_BASE_FVP
606 bool "Support Versatile Express ARMv8a FVP BASE model"
607 select ARM64
608 select SEMIHOSTING
609
Linus Walleijffc10372015-01-23 14:41:10 +0100610config TARGET_VEXPRESS64_JUNO
611 bool "Support Versatile Express Juno Development Platform"
612 select ARM64
613
Masahiro Yamadadd840582014-07-30 14:08:14 +0900614config TARGET_LS2085A_EMU
615 bool "Support ls2085a_emu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900616 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100617 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900618
619config TARGET_LS2085A_SIMU
620 bool "Support ls2085a_simu"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900621 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100622 select ARMV8_MULTIENTRY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900623
York Sun7288c2c2015-03-20 19:28:23 -0700624config TARGET_LS2085AQDS
625 bool "Support ls2085aqds"
626 select ARM64
627 select ARMV8_MULTIENTRY
Scott Woodb2d5ac52015-03-24 13:25:02 -0700628 select SUPPORT_SPL
York Sun7288c2c2015-03-20 19:28:23 -0700629 help
630 Support for Freescale LS2085AQDS platform
631 The LS2085A Development System (QDS) is a high-performance
632 development platform that supports the QorIQ LS2085A
633 Layerscape Architecture processor.
634
York Sune2b65ea2015-03-20 19:28:24 -0700635config TARGET_LS2085ARDB
636 bool "Support ls2085ardb"
637 select ARM64
638 select ARMV8_MULTIENTRY
Scott Wood32eda7c2015-03-24 13:25:03 -0700639 select SUPPORT_SPL
York Sune2b65ea2015-03-20 19:28:24 -0700640 help
641 Support for Freescale LS2085ARDB platform.
642 The LS2085A Reference design board (RDB) is a high-performance
643 development platform that supports the QorIQ LS2085A
644 Layerscape Architecture processor.
645
Peter Griffin11ac2362015-07-30 18:55:23 +0100646config TARGET_HIKEY
647 bool "Support HiKey 96boards Consumer Edition Platform"
648 select ARM64
649 help
650 Support for HiKey 96boards platform. It features a HI6220
651 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
652
Wang Huan550e3dc2014-09-05 13:52:44 +0800653config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800654 bool "Support ls1021aqds"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100655 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800656 select SUPPORT_SPL
Wang Huan550e3dc2014-09-05 13:52:44 +0800657
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800658config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800659 bool "Support ls1021atwr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100660 select CPU_V7
Alison Wang50f0c662014-12-03 15:00:45 +0800661 select SUPPORT_SPL
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800662
Masahiro Yamadadd840582014-07-30 14:08:14 +0900663config TARGET_BALLOON3
664 bool "Support balloon3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100665 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900666
667config TARGET_H2200
668 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100669 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900670
671config TARGET_PALMLD
672 bool "Support palmld"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100673 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900674
675config TARGET_PALMTC
676 bool "Support palmtc"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100677 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900678
679config TARGET_PALMTREO680
680 bool "Support palmtreo680"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100681 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900682 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900683
684config TARGET_PXA255_IDP
685 bool "Support pxa255_idp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100686 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900687
688config TARGET_TRIZEPSIV
689 bool "Support trizepsiv"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100690 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900691
692config TARGET_VPAC270
693 bool "Support vpac270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100694 select CPU_PXA
Masahiro Yamada02627352014-10-20 17:45:56 +0900695 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900696
697config TARGET_XAENIAX
698 bool "Support xaeniax"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100699 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900700
701config TARGET_ZIPITZ2
702 bool "Support zipitz2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100703 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900704
705config TARGET_LP8X4X
706 bool "Support lp8x4x"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100707 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900708
709config TARGET_COLIBRI_PXA270
710 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100711 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900712
713config TARGET_JORNADA
714 bool "Support jornada"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100715 select CPU_SA1100
Masahiro Yamadadd840582014-07-30 14:08:14 +0900716
Masahiro Yamada66cba042014-10-03 19:21:07 +0900717config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900718 bool "Socionext UniPhier SoCs"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100719 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900720 select SUPPORT_SPL
Masahiro Yamada992e8742014-12-18 19:11:03 +0900721 select SPL
Masahiro Yamadad6489642015-02-24 22:26:21 +0900722 select OF_CONTROL
Masahiro Yamadaf4e190e2015-08-28 20:13:18 +0900723 select SPL_OF_CONTROL
Masahiro Yamada4e819952015-03-31 12:47:54 +0900724 select DM
Masahiro Yamada92716142015-08-28 20:13:17 +0900725 select SPL_DM
Masahiro Yamada4e819952015-03-31 12:47:54 +0900726 select DM_SERIAL
727 select DM_I2C
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900728 help
729 Support for UniPhier SoC family developed by Socionext Inc.
730 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +0900731
rev13@wp.pled09a552015-03-01 12:44:42 +0100732config TARGET_STM32F429_DISCOVERY
733 bool "Support STM32F429 Discovery"
734 select CPU_V7M
735
Masahiro Yamadadd840582014-07-30 14:08:14 +0900736endchoice
737
Masahiro Yamada4614b892015-02-20 17:04:01 +0900738source "arch/arm/mach-at91/Kconfig"
739
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900740source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900741
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900742source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -0700743
Thomas Abraham77b55e82015-08-03 17:58:00 +0530744source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900745
Masahiro Yamada72a8ff42015-02-20 17:04:08 +0900746source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900747
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900748source "arch/arm/mach-integrator/Kconfig"
749
Masahiro Yamada39a72342015-02-20 17:04:11 +0900750source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +0900751
Masahiro Yamada56f86e32015-02-20 17:04:06 +0900752source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +0900753
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100754source "arch/arm/cpu/armv7/mx6/Kconfig"
755
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200756source "arch/arm/cpu/armv7/mx5/Kconfig"
757
Masahiro Yamadaef917dd2015-02-20 17:04:07 +0900758source "arch/arm/mach-nomadik/Kconfig"
Masahiro Yamada16e16fd2014-08-31 07:11:08 +0900759
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900760source "arch/arm/cpu/armv7/omap3/Kconfig"
761
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900762source "arch/arm/cpu/armv7/omap4/Kconfig"
763
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900764source "arch/arm/cpu/armv7/omap5/Kconfig"
765
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +0900766source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900767
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900768source "arch/arm/cpu/armv7/rmobile/Kconfig"
769
Simon Glass311757b2014-10-07 22:01:50 -0600770source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
771
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900772source "arch/arm/mach-socfpga/Kconfig"
773
Masahiro Yamada09f455d2015-02-20 17:04:04 +0900774source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900775
Masahiro Yamada4c425572015-02-27 02:26:42 +0900776source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +0900777
Masahiro Yamada63637a42015-02-20 17:04:10 +0900778source "arch/arm/mach-versatile/Kconfig"
Masahiro Yamadaad17a812014-08-31 07:10:58 +0900779
Masahiro Yamada0107f242015-03-16 16:43:22 +0900780source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900781
Hans de Goedeea624e12014-11-14 09:34:30 +0100782source "arch/arm/cpu/armv7/Kconfig"
783
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +0530784source "arch/arm/cpu/armv8/zynqmp/Kconfig"
785
Linus Walleij23b58772015-03-09 10:53:21 +0100786source "arch/arm/cpu/armv8/Kconfig"
787
Boris BREZILLONa05a6042015-03-04 13:13:04 +0100788source "arch/arm/imx-common/Kconfig"
789
Masahiro Yamadadd840582014-07-30 14:08:14 +0900790source "board/BuR/kwb/Kconfig"
791source "board/BuR/tseries/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900792source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900793source "board/Marvell/aspenite/Kconfig"
Stefan Roese2bae75a2015-04-25 06:29:56 +0200794source "board/Marvell/db-88f6820-gp/Kconfig"
Stefan Roesedd580802014-10-22 12:13:18 +0200795source "board/Marvell/db-mv784mp-gp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900796source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900797source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900798source "board/armltd/vexpress/Kconfig"
799source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900800source "board/balloon3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900801source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900802source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -0800803source "board/broadcom/bcmcygnus/Kconfig"
804source "board/broadcom/bcmnsp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900805source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900806source "board/compulab/cm_t335/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900807source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900808source "board/davedenx/qong/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900809source "board/denx/m28evk/Kconfig"
810source "board/denx/m53evk/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900811source "board/esg/ima3-mx53/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900812source "board/freescale/ls2085a/Kconfig"
York Sun7288c2c2015-03-20 19:28:23 -0700813source "board/freescale/ls2085aqds/Kconfig"
York Sune2b65ea2015-03-20 19:28:24 -0700814source "board/freescale/ls2085ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +0800815source "board/freescale/ls1021aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800816source "board/freescale/ls1021atwr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900817source "board/freescale/mx23evk/Kconfig"
818source "board/freescale/mx25pdk/Kconfig"
819source "board/freescale/mx28evk/Kconfig"
820source "board/freescale/mx31ads/Kconfig"
821source "board/freescale/mx31pdk/Kconfig"
822source "board/freescale/mx35pdk/Kconfig"
823source "board/freescale/mx51evk/Kconfig"
824source "board/freescale/mx53ard/Kconfig"
825source "board/freescale/mx53evk/Kconfig"
826source "board/freescale/mx53loco/Kconfig"
827source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900828source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900829source "board/genesi/mx51_efikamx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900830source "board/gumstix/pepper/Kconfig"
831source "board/h2200/Kconfig"
832source "board/hale/tt01/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900833source "board/icpdas/lp8x4x/Kconfig"
834source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900835source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900836source "board/jornada/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900837source "board/karo/tx25/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900838source "board/logicpd/imx27lite/Kconfig"
839source "board/logicpd/imx31_litekit/Kconfig"
Stefan Roesea4884832014-10-22 12:13:19 +0200840source "board/maxbcm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900841source "board/mpl/vcma9/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900842source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900843source "board/palmld/Kconfig"
844source "board/palmtc/Kconfig"
845source "board/palmtreo680/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900846source "board/phytec/pcm051/Kconfig"
847source "board/ppcag/bg0900/Kconfig"
848source "board/pxa255_idp/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900849source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900850source "board/sandisk/sansa_fuze_plus/Kconfig"
851source "board/scb9328/Kconfig"
852source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900853source "board/siemens/draco/Kconfig"
854source "board/siemens/pxm2/Kconfig"
855source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900856source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900857source "board/spear/spear300/Kconfig"
858source "board/spear/spear310/Kconfig"
859source "board/spear/spear320/Kconfig"
860source "board/spear/spear600/Kconfig"
861source "board/spear/x600/Kconfig"
862source "board/st-ericsson/snowball/Kconfig"
863source "board/st-ericsson/u8500/Kconfig"
rev13@wp.pled09a552015-03-01 12:44:42 +0100864source "board/st/stm32f429-discovery/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800865source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900866source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900867source "board/syteco/zmx25/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900868source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900869source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -0800870source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900871source "board/ti/ti814x/Kconfig"
872source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900873source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900874source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530875source "board/toradex/colibri_vf/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900876source "board/trizepsiv/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -0400877source "board/technologic/ts4800/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900878source "board/ttcontrol/vision2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900879source "board/vpac270/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200880source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900881source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200882source "board/work-microwave/work_92105/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900883source "board/xaeniax/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900884source "board/zipitz2/Kconfig"
885
Masahiro Yamada51b17d42014-09-01 11:06:34 +0900886source "arch/arm/Kconfig.debug"
887
Masahiro Yamadadd840582014-07-30 14:08:14 +0900888endmenu