]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/Kconfig
arm: mvebu: Move Armada XP/38x Kconfig to mach specific Kconfig file
[people/ms/u-boot.git] / arch / arm / Kconfig
CommitLineData
dd84058d
MY
1menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
dd84058d
MY
5 default "arm"
6
016a954e
MY
7config ARM64
8 bool
9
2e07c249
GS
10config 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
12d8a729 36config CPU_V7M
37 bool
38
2e07c249
GS
39config 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
12d8a729 53 default "armv7m" if CPU_V7M
2e07c249
GS
54 default "pxa" if CPU_PXA
55 default "sa1100" if CPU_SA1100
01541eec 56 default "armv8" if ARM64
2e07c249 57
f91afc4d
LW
58config 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
f3e9bec8
PF
65config 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
dd84058d
MY
71choice
72 prompt "Target select"
b928e658 73 default TARGET_HIKEY
dd84058d 74
4614b891
MY
75config ARCH_AT91
76 bool "Atmel AT91"
dd84058d
MY
77
78config TARGET_EDB93XX
79 bool "Support edb93xx"
2e07c249 80 select CPU_ARM920T
dd84058d 81
dd84058d
MY
82config TARGET_VCMA9
83 bool "Support VCMA9"
2e07c249 84 select CPU_ARM920T
dd84058d
MY
85
86config TARGET_SMDK2410
87 bool "Support smdk2410"
2e07c249 88 select CPU_ARM920T
dd84058d 89
dd84058d
MY
90config TARGET_ASPENITE
91 bool "Support aspenite"
2e07c249 92 select CPU_ARM926EJS
dd84058d
MY
93
94config TARGET_GPLUGD
95 bool "Support gplugd"
2e07c249 96 select CPU_ARM926EJS
dd84058d 97
3491ba63
MY
98config ARCH_DAVINCI
99 bool "TI DaVinci"
2e07c249 100 select CPU_ARM926EJS
3491ba63
MY
101 help
102 Support for TI's DaVinci platform.
dd84058d 103
47539e23
MY
104config KIRKWOOD
105 bool "Marvell Kirkwood"
2e07c249 106 select CPU_ARM926EJS
dd84058d 107
c3d89140
SR
108config ARCH_MVEBU
109 bool "Marvell MVEBU family (Armada XP/38x)"
790f70c7 110 select CPU_V7
e7778ec1 111 select SUPPORT_SPL
a4884831 112
dd84058d
MY
113config TARGET_DEVKIT3250
114 bool "Support devkit3250"
2e07c249 115 select CPU_ARM926EJS
e9b3ce3f 116 select SUPPORT_SPL
dd84058d 117
412ae53a
AA
118config TARGET_WORK_92105
119 bool "Support work_92105"
120 select CPU_ARM926EJS
121 select SUPPORT_SPL
122
dd84058d
MY
123config TARGET_MX25PDK
124 bool "Support mx25pdk"
2e07c249 125 select CPU_ARM926EJS
dd84058d 126
dd84058d
MY
127config TARGET_ZMX25
128 bool "Support zmx25"
2e07c249 129 select CPU_ARM926EJS
dd84058d
MY
130
131config TARGET_APF27
132 bool "Support apf27"
2e07c249 133 select CPU_ARM926EJS
02627356 134 select SUPPORT_SPL
dd84058d 135
dd84058d
MY
136config TARGET_APX4DEVKIT
137 bool "Support apx4devkit"
2e07c249 138 select CPU_ARM926EJS
02627356 139 select SUPPORT_SPL
dd84058d
MY
140
141config TARGET_XFI3
142 bool "Support xfi3"
2e07c249 143 select CPU_ARM926EJS
02627356 144 select SUPPORT_SPL
dd84058d
MY
145
146config TARGET_M28EVK
147 bool "Support m28evk"
2e07c249 148 select CPU_ARM926EJS
02627356 149 select SUPPORT_SPL
dd84058d
MY
150
151config TARGET_MX23EVK
152 bool "Support mx23evk"
2e07c249 153 select CPU_ARM926EJS
02627356 154 select SUPPORT_SPL
dd84058d
MY
155
156config TARGET_MX28EVK
157 bool "Support mx28evk"
2e07c249 158 select CPU_ARM926EJS
02627356 159 select SUPPORT_SPL
dd84058d
MY
160
161config TARGET_MX23_OLINUXINO
162 bool "Support mx23_olinuxino"
2e07c249 163 select CPU_ARM926EJS
02627356 164 select SUPPORT_SPL
dd84058d
MY
165
166config TARGET_BG0900
167 bool "Support bg0900"
2e07c249 168 select CPU_ARM926EJS
02627356 169 select SUPPORT_SPL
dd84058d
MY
170
171config TARGET_SANSA_FUZE_PLUS
172 bool "Support sansa_fuze_plus"
2e07c249 173 select CPU_ARM926EJS
02627356 174 select SUPPORT_SPL
dd84058d
MY
175
176config TARGET_SC_SPS_1
177 bool "Support sc_sps_1"
2e07c249 178 select CPU_ARM926EJS
02627356 179 select SUPPORT_SPL
dd84058d 180
22f2be7a
MY
181config ORION5X
182 bool "Marvell Orion"
2e07c249 183 select CPU_ARM926EJS
dd84058d 184
dd84058d
MY
185config TARGET_SPEAR300
186 bool "Support spear300"
2e07c249 187 select CPU_ARM926EJS
dd84058d
MY
188
189config TARGET_SPEAR310
190 bool "Support spear310"
2e07c249 191 select CPU_ARM926EJS
dd84058d
MY
192
193config TARGET_SPEAR320
194 bool "Support spear320"
2e07c249 195 select CPU_ARM926EJS
dd84058d
MY
196
197config TARGET_SPEAR600
198 bool "Support spear600"
2e07c249 199 select CPU_ARM926EJS
dd84058d 200
9fa32b12
VM
201config TARGET_STV0991
202 bool "Support stv0991"
203 select CPU_V7
cac0ca76
MY
204 select DM
205 select DM_SERIAL
e67abcaa
VM
206 select DM_SPI
207 select DM_SPI_FLASH
208 select SPI_FLASH
9fa32b12 209
dd84058d
MY
210config TARGET_X600
211 bool "Support x600"
2e07c249 212 select CPU_ARM926EJS
02627356 213 select SUPPORT_SPL
dd84058d 214
dd84058d
MY
215config TARGET_IMX31_PHYCORE
216 bool "Support imx31_phycore"
2e07c249 217 select CPU_ARM1136
dd84058d 218
dd84058d
MY
219config TARGET_MX31ADS
220 bool "Support mx31ads"
2e07c249 221 select CPU_ARM1136
dd84058d
MY
222
223config TARGET_MX31PDK
224 bool "Support mx31pdk"
2e07c249 225 select CPU_ARM1136
02627356 226 select SUPPORT_SPL
dd84058d 227
dd84058d
MY
228config TARGET_WOODBURN
229 bool "Support woodburn"
2e07c249 230 select CPU_ARM1136
dd84058d
MY
231
232config TARGET_WOODBURN_SD
233 bool "Support woodburn_sd"
2e07c249 234 select CPU_ARM1136
02627356 235 select SUPPORT_SPL
dd84058d
MY
236
237config TARGET_FLEA3
238 bool "Support flea3"
2e07c249 239 select CPU_ARM1136
dd84058d
MY
240
241config TARGET_MX35PDK
242 bool "Support mx35pdk"
2e07c249 243 select CPU_ARM1136
dd84058d 244
ddf6bd48
MY
245config ARCH_BCM283X
246 bool "Broadcom BCM283X family"
58d423b8
MY
247 select DM
248 select DM_SERIAL
249 select DM_GPIO
46414296 250
dd84058d
MY
251config TARGET_VEXPRESS_CA15_TC2
252 bool "Support vexpress_ca15_tc2"
2e07c249 253 select CPU_V7
ea624e19
HG
254 select CPU_V7_HAS_NONSEC
255 select CPU_V7_HAS_VIRT
dd84058d
MY
256
257config TARGET_VEXPRESS_CA5X2
258 bool "Support vexpress_ca5x2"
2e07c249 259 select CPU_V7
dd84058d
MY
260
261config TARGET_VEXPRESS_CA9X4
262 bool "Support vexpress_ca9x4"
2e07c249 263 select CPU_V7
dd84058d
MY
264
265config TARGET_KWB
266 bool "Support kwb"
2e07c249 267 select CPU_V7
02627356 268 select SUPPORT_SPL
dd84058d
MY
269
270config TARGET_TSERIES
271 bool "Support tseries"
2e07c249 272 select CPU_V7
02627356 273 select SUPPORT_SPL
dd84058d
MY
274
275config TARGET_CM_T335
276 bool "Support cm_t335"
2e07c249 277 select CPU_V7
02627356 278 select SUPPORT_SPL
58d423b8
MY
279 select DM
280 select DM_SERIAL
281 select DM_GPIO
dd84058d
MY
282
283config TARGET_PEPPER
284 bool "Support pepper"
2e07c249 285 select CPU_V7
02627356 286 select SUPPORT_SPL
58d423b8
MY
287 select DM
288 select DM_SERIAL
289 select DM_GPIO
dd84058d
MY
290
291config TARGET_AM335X_IGEP0033
292 bool "Support am335x_igep0033"
2e07c249 293 select CPU_V7
02627356 294 select SUPPORT_SPL
58d423b8
MY
295 select DM
296 select DM_SERIAL
297 select DM_GPIO
dd84058d
MY
298
299config TARGET_PCM051
300 bool "Support pcm051"
2e07c249 301 select CPU_V7
02627356 302 select SUPPORT_SPL
58d423b8
MY
303 select DM
304 select DM_SERIAL
305 select DM_GPIO
dd84058d
MY
306
307config TARGET_DRACO
308 bool "Support draco"
2e07c249 309 select CPU_V7
02627356 310 select SUPPORT_SPL
dd84058d 311
8c65a2fa
HS
312config TARGET_THUBAN
313 bool "Support thuban"
2e07c249 314 select CPU_V7
02627356 315 select SUPPORT_SPL
dd84058d 316
578056c3
HS
317config TARGET_RASTABAN
318 bool "Support rastaban"
319 select CPU_V7
320 select SUPPORT_SPL
321
dd84058d
MY
322config TARGET_PXM2
323 bool "Support pxm2"
2e07c249 324 select CPU_V7
02627356 325 select SUPPORT_SPL
dd84058d
MY
326
327config TARGET_RUT
328 bool "Support rut"
2e07c249 329 select CPU_V7
02627356 330 select SUPPORT_SPL
dd84058d
MY
331
332config TARGET_PENGWYN
333 bool "Support pengwyn"
2e07c249 334 select CPU_V7
02627356 335 select SUPPORT_SPL
58d423b8
MY
336 select DM
337 select DM_SERIAL
338 select DM_GPIO
dd84058d 339
6ce89324
YY
340config TARGET_AM335X_BALTOS
341 bool "Support am335x_baltos"
342 select CPU_V7
343 select SUPPORT_SPL
344 select DM
345 select DM_SERIAL
346 select DM_GPIO
347
dd84058d
MY
348config TARGET_AM335X_EVM
349 bool "Support am335x_evm"
2e07c249 350 select CPU_V7
02627356 351 select SUPPORT_SPL
58d423b8
MY
352 select DM
353 select DM_SERIAL
354 select DM_GPIO
dd84058d 355
9d1b2987
EBS
356config TARGET_AM335X_SL50
357 bool "Support am335x_sl50"
358 select CPU_V7
359 select SUPPORT_SPL
360 select DM
361 select DM_SERIAL
362
dd84058d
MY
363config TARGET_AM43XX_EVM
364 bool "Support am43xx_evm"
2e07c249 365 select CPU_V7
02627356 366 select SUPPORT_SPL
dd84058d 367
a2bc4321
GG
368config TARGET_BAV335X
369 bool "Support bav335x"
370 select CPU_V7
371 select SUPPORT_SPL
93a35382
MY
372 select DM
373 select DM_SERIAL
a2bc4321
GG
374 help
375 The BAV335x OEM Network Processor integrates all the functions of an
376 embedded network computer in a small, easy to use SODIMM module which
377 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
378 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
379 ethernet with simple connection to external connectors.
380
381 For more information, visit: http://birdland.com/oem
382
dd84058d
MY
383config TARGET_TI814X_EVM
384 bool "Support ti814x_evm"
2e07c249 385 select CPU_V7
02627356 386 select SUPPORT_SPL
dd84058d
MY
387
388config TARGET_TI816X_EVM
389 bool "Support ti816x_evm"
2e07c249 390 select CPU_V7
02627356 391 select SUPPORT_SPL
dd84058d 392
dd84058d
MY
393config TARGET_BCM28155_AP
394 bool "Support bcm28155_ap"
2e07c249 395 select CPU_V7
dd84058d 396
abb1678c
SR
397config TARGET_BCMCYGNUS
398 bool "Support bcmcygnus"
2e07c249 399 select CPU_V7
9dec5270 400
abb1678c
SR
401config TARGET_BCMNSP
402 bool "Support bcmnsp"
2e07c249 403 select CPU_V7
9dec5270 404
72df68cc
MY
405config ARCH_EXYNOS
406 bool "Samsung EXYNOS"
2e07c249 407 select CPU_V7
58d423b8
MY
408 select DM
409 select DM_SPI_FLASH
410 select DM_SERIAL
411 select DM_SPI
412 select DM_GPIO
dd84058d 413
311757be
SG
414config ARCH_S5PC1XX
415 bool "Samsung S5PC1XX"
2e07c249 416 select CPU_V7
58d423b8
MY
417 select DM
418 select DM_SERIAL
419 select DM_GPIO
311757be 420
ef2b694c
MY
421config ARCH_HIGHBANK
422 bool "Calxeda Highbank"
2e07c249 423 select CPU_V7
dd84058d 424
5cbbd9bd
MY
425config ARCH_INTEGRATOR
426 bool "ARM Ltd. Integrator family"
3f394e70
LW
427 select DM
428 select DM_SERIAL
5cbbd9bd 429
c338f09e
MY
430config ARCH_KEYSTONE
431 bool "TI Keystone"
2e07c249 432 select CPU_V7
02627356 433 select SUPPORT_SPL
dd84058d 434
1a8150d4
AA
435config ARCH_MX7
436 bool "Freescale MX7"
437 select CPU_V7
438
89ebc821
BB
439config ARCH_MX6
440 bool "Freescale MX6"
441 select CPU_V7
442
424ee3d1
AR
443config ARCH_MX5
444 bool "Freescale MX5"
445 select CPU_V7
446
dd84058d
MY
447config TARGET_M53EVK
448 bool "Support m53evk"
2e07c249 449 select CPU_V7
02627356 450 select SUPPORT_SPL
dd84058d 451
dd84058d
MY
452config TARGET_MX51EVK
453 bool "Support mx51evk"
2e07c249 454 select CPU_V7
dd84058d
MY
455
456config TARGET_MX53ARD
457 bool "Support mx53ard"
2e07c249 458 select CPU_V7
dd84058d
MY
459
460config TARGET_MX53EVK
461 bool "Support mx53evk"
2e07c249 462 select CPU_V7
dd84058d
MY
463
464config TARGET_MX53LOCO
465 bool "Support mx53loco"
2e07c249 466 select CPU_V7
dd84058d
MY
467
468config TARGET_MX53SMD
469 bool "Support mx53smd"
2e07c249 470 select CPU_V7
dd84058d 471
3cfbcb58
MY
472config OMAP34XX
473 bool "OMAP34XX SoC"
2e07c249 474 select CPU_V7
dd84058d 475
d08215a5
MY
476config OMAP44XX
477 bool "OMAP44XX SoC"
2e07c249 478 select CPU_V7
02627356 479 select SUPPORT_SPL
dd84058d 480
6c5431ac
MY
481config OMAP54XX
482 bool "OMAP54XX SoC"
2e07c249 483 select CPU_V7
02627356 484 select SUPPORT_SPL
dd84058d 485
f40b9898
MY
486config RMOBILE
487 bool "Renesas ARM SoCs"
2e07c249 488 select CPU_V7
dd84058d 489
7865f4b0
MY
490config ARCH_SOCFPGA
491 bool "Altera SOCFPGA family"
2e07c249 492 select CPU_V7
02627356 493 select SUPPORT_SPL
dfd3dff5
MV
494 select OF_CONTROL
495 select SPL_OF_CONTROL
1d9aa3e5
MY
496 select DM
497 select DM_SPI_FLASH
498 select DM_SPI
dd84058d 499
8883ddaf
NK
500config TARGET_CM_T43
501 bool "Support cm_t43"
502 select CPU_V7
503 select SUPPORT_SPL
504
2c7e3b90
IC
505config ARCH_SUNXI
506 bool "Support sunxi (Allwinner) SoCs"
de1502c9 507 select CMD_USB
b6006baf
HG
508 select DM
509 select DM_GPIO
45368827
TR
510 select DM_ETH
511 select DM_SERIAL
91183bab 512 select DM_USB
b6006baf
HG
513 select OF_CONTROL
514 select OF_SEPARATE
45368827 515 select USB
de1502c9 516 select USB_STORAGE
ab27f30b 517 select USB_KEYBOARD
8ebe4f42 518
9ee16897
LQ
519config TARGET_TS4800
520 bool "Support TS4800"
521 select CPU_V7
522
dd84058d
MY
523config TARGET_VF610TWR
524 bool "Support vf610twr"
2e07c249 525 select CPU_V7
dd84058d 526
e7b860fa
SM
527config TARGET_COLIBRI_VF
528 bool "Support Colibri VF50/61"
529 select CPU_V7
530
931a1d2a
AA
531config TARGET_PCM052
532 bool "Support pcm-052"
533 select CPU_V7
534
5ca269a4 535config ARCH_ZYNQ
44dcb403 536 bool "Xilinx Zynq Platform"
2e07c249 537 select CPU_V7
02627356 538 select SUPPORT_SPL
d065cfd9 539 select OF_CONTROL
8981f05c 540 select DM
9f7a4502
JT
541 select DM_SPI
542 select DM_SPI_FLASH
dd84058d 543
0b54a9dd 544config ARCH_ZYNQMP
84c7204b
MS
545 bool "Support Xilinx ZynqMP Platform"
546 select ARM64
547
ddd960e6
MY
548config TEGRA
549 bool "NVIDIA Tegra"
dd84058d 550
f91afc4d 551config TARGET_VEXPRESS64_AEMV8A
dd84058d 552 bool "Support vexpress_aemv8a"
016a954e 553 select ARM64
dd84058d 554
f91afc4d
LW
555config TARGET_VEXPRESS64_BASE_FVP
556 bool "Support Versatile Express ARMv8a FVP BASE model"
557 select ARM64
558 select SEMIHOSTING
559
fc04b923
RH
560config TARGET_VEXPRESS64_BASE_FVP_DRAM
561 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
562 select ARM64
563 help
564 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
565 the default config to allow the user to load the images directly into
566 DRAM using model parameters rather than by using semi-hosting to load
567 the files from the host filesystem.
568
ffc10373
LW
569config TARGET_VEXPRESS64_JUNO
570 bool "Support Versatile Express Juno Development Platform"
571 select ARM64
572
dd84058d
MY
573config TARGET_LS2085A_EMU
574 bool "Support ls2085a_emu"
016a954e 575 select ARM64
23b5877c 576 select ARMV8_MULTIENTRY
dd84058d
MY
577
578config TARGET_LS2085A_SIMU
579 bool "Support ls2085a_simu"
016a954e 580 select ARM64
23b5877c 581 select ARMV8_MULTIENTRY
dd84058d 582
7288c2c2
YS
583config TARGET_LS2085AQDS
584 bool "Support ls2085aqds"
585 select ARM64
586 select ARMV8_MULTIENTRY
b2d5ac59 587 select SUPPORT_SPL
7288c2c2
YS
588 help
589 Support for Freescale LS2085AQDS platform
590 The LS2085A Development System (QDS) is a high-performance
591 development platform that supports the QorIQ LS2085A
592 Layerscape Architecture processor.
593
e2b65ea9
YS
594config TARGET_LS2085ARDB
595 bool "Support ls2085ardb"
596 select ARM64
597 select ARMV8_MULTIENTRY
32eda7cc 598 select SUPPORT_SPL
e2b65ea9
YS
599 help
600 Support for Freescale LS2085ARDB platform.
601 The LS2085A Reference design board (RDB) is a high-performance
602 development platform that supports the QorIQ LS2085A
603 Layerscape Architecture processor.
604
11ac2363
PG
605config TARGET_HIKEY
606 bool "Support HiKey 96boards Consumer Edition Platform"
607 select ARM64
efd7b60a
PG
608 select DM
609 select DM_GPIO
9c71bcdc 610 select DM_SERIAL
11ac2363
PG
611 help
612 Support for HiKey 96boards platform. It features a HI6220
613 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
614
550e3dc0 615config TARGET_LS1021AQDS
0de15707 616 bool "Support ls1021aqds"
2e07c249 617 select CPU_V7
50f0c663 618 select SUPPORT_SPL
c8a7d9da 619config TARGET_LS1021ATWR
0de15707 620 bool "Support ls1021atwr"
2e07c249 621 select CPU_V7
50f0c663 622 select SUPPORT_SPL
c8a7d9da 623
dd84058d
MY
624config TARGET_H2200
625 bool "Support h2200"
2e07c249 626 select CPU_PXA
dd84058d 627
dd84058d
MY
628config TARGET_COLIBRI_PXA270
629 bool "Support colibri_pxa270"
2e07c249 630 select CPU_PXA
dd84058d 631
66cba041 632config ARCH_UNIPHIER
b6ef3a3f 633 bool "Socionext UniPhier SoCs"
2e07c249 634 select CPU_V7
02627356 635 select SUPPORT_SPL
992e8748 636 select SPL
d648964f 637 select OF_CONTROL
f4e190e3 638 select SPL_OF_CONTROL
4e819950 639 select DM
9271614e 640 select SPL_DM
4e819950
MY
641 select DM_SERIAL
642 select DM_I2C
b6ef3a3f
MY
643 help
644 Support for UniPhier SoC family developed by Socionext Inc.
645 (formerly, System LSI Business Division of Panasonic Corporation)
66cba041 646
ed09a554 647config TARGET_STM32F429_DISCOVERY
648 bool "Support STM32F429 Discovery"
649 select CPU_V7M
650
2444dae5
SG
651config ARCH_ROCKCHIP
652 bool "Support Rockchip SoCs"
653 select SUPPORT_SPL
654 select SPL
655 select OF_CONTROL
656 select CPU_V7
657 select DM
658
dd84058d
MY
659endchoice
660
4614b891
MY
661source "arch/arm/mach-at91/Kconfig"
662
ddf6bd48 663source "arch/arm/mach-bcm283x/Kconfig"
3491ba63 664
ddf6bd48 665source "arch/arm/mach-davinci/Kconfig"
34e609ca 666
77b55e8c 667source "arch/arm/mach-exynos/Kconfig"
72df68cc 668
72a8ff4b 669source "arch/arm/mach-highbank/Kconfig"
ef2b694c 670
5cbbd9bd
MY
671source "arch/arm/mach-integrator/Kconfig"
672
39a72345 673source "arch/arm/mach-keystone/Kconfig"
c338f09e 674
56f86e39 675source "arch/arm/mach-kirkwood/Kconfig"
47539e23 676
c3d89140
SR
677source "arch/arm/mach-mvebu/Kconfig"
678
1a8150d4
AA
679source "arch/arm/cpu/armv7/mx7/Kconfig"
680
89ebc821
BB
681source "arch/arm/cpu/armv7/mx6/Kconfig"
682
424ee3d1
AR
683source "arch/arm/cpu/armv7/mx5/Kconfig"
684
3cfbcb58
MY
685source "arch/arm/cpu/armv7/omap3/Kconfig"
686
d08215a5
MY
687source "arch/arm/cpu/armv7/omap4/Kconfig"
688
6c5431ac
MY
689source "arch/arm/cpu/armv7/omap5/Kconfig"
690
3e93b4e6 691source "arch/arm/mach-orion5x/Kconfig"
22f2be7a 692
f40b9898
MY
693source "arch/arm/cpu/armv7/rmobile/Kconfig"
694
2444dae5
SG
695source "arch/arm/mach-rockchip/Kconfig"
696
311757be
SG
697source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
698
7865f4b0
MY
699source "arch/arm/mach-socfpga/Kconfig"
700
09f455dc 701source "arch/arm/mach-tegra/Kconfig"
ddd960e6 702
4c425570 703source "arch/arm/mach-uniphier/Kconfig"
66cba041 704
0107f240 705source "arch/arm/mach-zynq/Kconfig"
ddd960e6 706
ea624e19
HG
707source "arch/arm/cpu/armv7/Kconfig"
708
75580007
SDPP
709source "arch/arm/cpu/armv8/zynqmp/Kconfig"
710
23b5877c
LW
711source "arch/arm/cpu/armv8/Kconfig"
712
a05a6045
BB
713source "arch/arm/imx-common/Kconfig"
714
dd84058d
MY
715source "board/BuR/kwb/Kconfig"
716source "board/BuR/tseries/Kconfig"
dd84058d 717source "board/CarMediaLab/flea3/Kconfig"
dd84058d 718source "board/Marvell/aspenite/Kconfig"
2bae75a4 719source "board/Marvell/db-88f6820-gp/Kconfig"
dd580801 720source "board/Marvell/db-mv784mp-gp/Kconfig"
dd84058d 721source "board/Marvell/gplugd/Kconfig"
dd84058d 722source "board/armadeus/apf27/Kconfig"
dd84058d
MY
723source "board/armltd/vexpress/Kconfig"
724source "board/armltd/vexpress64/Kconfig"
dd84058d 725source "board/bluegiga/apx4devkit/Kconfig"
dd84058d 726source "board/broadcom/bcm28155_ap/Kconfig"
abb1678c
SR
727source "board/broadcom/bcmcygnus/Kconfig"
728source "board/broadcom/bcmnsp/Kconfig"
dd84058d 729source "board/cirrus/edb93xx/Kconfig"
dd84058d 730source "board/compulab/cm_t335/Kconfig"
345243ed 731source "board/compulab/cm_t43/Kconfig"
dd84058d 732source "board/creative/xfi3/Kconfig"
dd84058d
MY
733source "board/denx/m28evk/Kconfig"
734source "board/denx/m53evk/Kconfig"
dd84058d 735source "board/freescale/ls2085a/Kconfig"
7288c2c2 736source "board/freescale/ls2085aqds/Kconfig"
e2b65ea9 737source "board/freescale/ls2085ardb/Kconfig"
550e3dc0 738source "board/freescale/ls1021aqds/Kconfig"
c8a7d9da 739source "board/freescale/ls1021atwr/Kconfig"
dd84058d
MY
740source "board/freescale/mx23evk/Kconfig"
741source "board/freescale/mx25pdk/Kconfig"
742source "board/freescale/mx28evk/Kconfig"
743source "board/freescale/mx31ads/Kconfig"
744source "board/freescale/mx31pdk/Kconfig"
745source "board/freescale/mx35pdk/Kconfig"
746source "board/freescale/mx51evk/Kconfig"
747source "board/freescale/mx53ard/Kconfig"
748source "board/freescale/mx53evk/Kconfig"
749source "board/freescale/mx53loco/Kconfig"
750source "board/freescale/mx53smd/Kconfig"
dd84058d 751source "board/freescale/vf610twr/Kconfig"
dd84058d
MY
752source "board/gumstix/pepper/Kconfig"
753source "board/h2200/Kconfig"
345243ed 754source "board/hisilicon/hikey/Kconfig"
dd84058d 755source "board/imx31_phycore/Kconfig"
dd84058d 756source "board/isee/igep0033/Kconfig"
a4884831 757source "board/maxbcm/Kconfig"
dd84058d 758source "board/mpl/vcma9/Kconfig"
dd84058d 759source "board/olimex/mx23_olinuxino/Kconfig"
dd84058d 760source "board/phytec/pcm051/Kconfig"
931a1d2a 761source "board/phytec/pcm052/Kconfig"
dd84058d 762source "board/ppcag/bg0900/Kconfig"
dd84058d 763source "board/samsung/smdk2410/Kconfig"
dd84058d 764source "board/sandisk/sansa_fuze_plus/Kconfig"
dd84058d 765source "board/schulercontrol/sc_sps_1/Kconfig"
dd84058d
MY
766source "board/siemens/draco/Kconfig"
767source "board/siemens/pxm2/Kconfig"
768source "board/siemens/rut/Kconfig"
dd84058d 769source "board/silica/pengwyn/Kconfig"
dd84058d
MY
770source "board/spear/spear300/Kconfig"
771source "board/spear/spear310/Kconfig"
772source "board/spear/spear320/Kconfig"
773source "board/spear/spear600/Kconfig"
774source "board/spear/x600/Kconfig"
ed09a554 775source "board/st/stm32f429-discovery/Kconfig"
9fa32b12 776source "board/st/stv0991/Kconfig"
dd84058d 777source "board/sunxi/Kconfig"
dd84058d 778source "board/syteco/zmx25/Kconfig"
9d1b2987 779source "board/tcl/sl50/Kconfig"
dd84058d 780source "board/ti/am335x/Kconfig"
dd84058d 781source "board/ti/am43xx/Kconfig"
a2bc4321 782source "board/birdland/bav335x/Kconfig"
dd84058d
MY
783source "board/ti/ti814x/Kconfig"
784source "board/ti/ti816x/Kconfig"
dd84058d 785source "board/timll/devkit3250/Kconfig"
dd84058d 786source "board/toradex/colibri_pxa270/Kconfig"
e7b860fa 787source "board/toradex/colibri_vf/Kconfig"
9ee16897 788source "board/technologic/ts4800/Kconfig"
6ce89324 789source "board/vscom/baltos/Kconfig"
dd84058d 790source "board/woodburn/Kconfig"
412ae53a 791source "board/work-microwave/work_92105/Kconfig"
dd84058d 792
51b17d49
MY
793source "arch/arm/Kconfig.debug"
794
dd84058d 795endmenu