]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/Kconfig
am335x, shc: add support for the am335x based bosch shc board
[karo-tx-uboot.git] / arch / arm / Kconfig
1 menu "ARM architecture"
2         depends on ARM
3
4 config SYS_ARCH
5         default "arm"
6
7 config ARM64
8         bool
9
10 config DMA_ADDR_T_64BIT
11         bool
12         default y if ARM64
13
14 config HAS_VBAR
15         bool
16
17 config HAS_THUMB2
18         bool
19
20 config CPU_ARM720T
21         bool
22
23 config CPU_ARM920T
24         bool
25
26 config CPU_ARM926EJS
27         bool
28
29 config CPU_ARM946ES
30         bool
31
32 config CPU_ARM1136
33         bool
34
35 config CPU_ARM1176
36         bool
37         select HAS_VBAR
38
39 config CPU_V7
40         bool
41         select HAS_VBAR
42         select HAS_THUMB2
43
44 config CPU_V7M
45         bool
46         select HAS_THUMB2
47
48 config CPU_PXA
49         bool
50
51 config CPU_SA1100
52         bool
53
54 config SYS_CPU
55         default "arm720t" if CPU_ARM720T
56         default "arm920t" if CPU_ARM920T
57         default "arm926ejs" if CPU_ARM926EJS
58         default "arm946es" if CPU_ARM946ES
59         default "arm1136" if CPU_ARM1136
60         default "arm1176" if CPU_ARM1176
61         default "armv7" if CPU_V7
62         default "armv7m" if CPU_V7M
63         default "pxa" if CPU_PXA
64         default "sa1100" if CPU_SA1100
65         default "armv8" if ARM64
66
67 config SYS_ARM_ARCH
68         int
69         default 4 if CPU_ARM720T
70         default 4 if CPU_ARM920T
71         default 5 if CPU_ARM926EJS
72         default 5 if CPU_ARM946ES
73         default 6 if CPU_ARM1136
74         default 6 if CPU_ARM1176
75         default 7 if CPU_V7
76         default 7 if CPU_V7M
77         default 5 if CPU_PXA
78         default 4 if CPU_SA1100
79         default 8 if ARM64
80
81 config SEMIHOSTING
82         bool "support boot from semihosting"
83         help
84           In emulated environments, semihosting is a way for
85           the hosted environment to call out to the emulator to
86           retrieve files from the host machine.
87
88 config SYS_L2CACHE_OFF
89         bool "L2cache off"
90         help
91           If SoC does not support L2CACHE or one do not want to enable
92           L2CACHE, choose this option.
93
94 config ENABLE_ARM_SOC_BOOT0_HOOK
95         bool "prepare BOOT0 header"
96         help
97           If the SoC's BOOT0 requires a header area filled with (magic)
98           values, then choose this option, and create a define called
99           ARM_SOC_BOOT0_HOOK which contains the required assembler
100           preprocessor code.
101
102 choice
103         prompt "Target select"
104         default TARGET_HIKEY
105
106 config ARCH_AT91
107         bool "Atmel AT91"
108
109 config TARGET_EDB93XX
110         bool "Support edb93xx"
111         select CPU_ARM920T
112
113 config TARGET_VCMA9
114         bool "Support VCMA9"
115         select CPU_ARM920T
116
117 config TARGET_SMDK2410
118         bool "Support smdk2410"
119         select CPU_ARM920T
120
121 config TARGET_ASPENITE
122         bool "Support aspenite"
123         select CPU_ARM926EJS
124
125 config TARGET_GPLUGD
126         bool "Support gplugd"
127         select CPU_ARM926EJS
128
129 config ARCH_DAVINCI
130         bool "TI DaVinci"
131         select CPU_ARM926EJS
132         help
133           Support for TI's DaVinci platform.
134
135 config KIRKWOOD
136         bool "Marvell Kirkwood"
137         select CPU_ARM926EJS
138
139 config ARCH_MVEBU
140         bool "Marvell MVEBU family (Armada XP/375/38x)"
141         select CPU_V7
142         select SUPPORT_SPL
143         select OF_CONTROL
144         select OF_SEPARATE
145         select DM
146         select DM_ETH
147         select DM_SERIAL
148         select DM_SPI
149         select DM_SPI_FLASH
150         select SPL_DM
151         select SPL_DM_SEQ_ALIAS
152         select SPL_OF_CONTROL
153         select SPL_SIMPLE_BUS
154
155 config TARGET_DEVKIT3250
156         bool "Support devkit3250"
157         select CPU_ARM926EJS
158         select SUPPORT_SPL
159
160 config TARGET_WORK_92105
161         bool "Support work_92105"
162         select CPU_ARM926EJS
163         select SUPPORT_SPL
164
165 config TARGET_MX25PDK
166         bool "Support mx25pdk"
167         select CPU_ARM926EJS
168
169 config TARGET_ZMX25
170         bool "Support zmx25"
171         select CPU_ARM926EJS
172
173 config TARGET_APF27
174         bool "Support apf27"
175         select CPU_ARM926EJS
176         select SUPPORT_SPL
177
178 config TARGET_APX4DEVKIT
179         bool "Support apx4devkit"
180         select CPU_ARM926EJS
181         select SUPPORT_SPL
182
183 config TARGET_XFI3
184         bool "Support xfi3"
185         select CPU_ARM926EJS
186         select SUPPORT_SPL
187
188 config TARGET_M28EVK
189         bool "Support m28evk"
190         select CPU_ARM926EJS
191         select SUPPORT_SPL
192
193 config TARGET_MX23EVK
194         bool "Support mx23evk"
195         select CPU_ARM926EJS
196         select SUPPORT_SPL
197
198 config TARGET_MX28EVK
199         bool "Support mx28evk"
200         select CPU_ARM926EJS
201         select SUPPORT_SPL
202
203 config TARGET_MX23_OLINUXINO
204         bool "Support mx23_olinuxino"
205         select CPU_ARM926EJS
206         select SUPPORT_SPL
207
208 config TARGET_BG0900
209         bool "Support bg0900"
210         select CPU_ARM926EJS
211         select SUPPORT_SPL
212
213 config TARGET_SANSA_FUZE_PLUS
214         bool "Support sansa_fuze_plus"
215         select CPU_ARM926EJS
216         select SUPPORT_SPL
217
218 config TARGET_SC_SPS_1
219         bool "Support sc_sps_1"
220         select CPU_ARM926EJS
221         select SUPPORT_SPL
222
223 config ORION5X
224         bool "Marvell Orion"
225         select CPU_ARM926EJS
226
227 config TARGET_SPEAR300
228         bool "Support spear300"
229         select CPU_ARM926EJS
230
231 config TARGET_SPEAR310
232         bool "Support spear310"
233         select CPU_ARM926EJS
234
235 config TARGET_SPEAR320
236         bool "Support spear320"
237         select CPU_ARM926EJS
238
239 config TARGET_SPEAR600
240         bool "Support spear600"
241         select CPU_ARM926EJS
242
243 config TARGET_STV0991
244         bool "Support stv0991"
245         select CPU_V7
246         select DM
247         select DM_SERIAL
248         select DM_SPI
249         select DM_SPI_FLASH
250         select SPI_FLASH
251
252 config TARGET_X600
253         bool "Support x600"
254         select CPU_ARM926EJS
255         select SUPPORT_SPL
256
257 config TARGET_IMX31_PHYCORE
258         bool "Support imx31_phycore"
259         select CPU_ARM1136
260
261 config TARGET_MX31ADS
262         bool "Support mx31ads"
263         select CPU_ARM1136
264
265 config TARGET_MX31PDK
266         bool "Support mx31pdk"
267         select CPU_ARM1136
268         select SUPPORT_SPL
269
270 config TARGET_WOODBURN
271         bool "Support woodburn"
272         select CPU_ARM1136
273
274 config TARGET_WOODBURN_SD
275         bool "Support woodburn_sd"
276         select CPU_ARM1136
277         select SUPPORT_SPL
278
279 config TARGET_FLEA3
280         bool "Support flea3"
281         select CPU_ARM1136
282
283 config TARGET_MX35PDK
284         bool "Support mx35pdk"
285         select CPU_ARM1136
286
287 config ARCH_BCM283X
288         bool "Broadcom BCM283X family"
289         select DM
290         select DM_SERIAL
291         select DM_GPIO
292
293 config TARGET_VEXPRESS_CA15_TC2
294         bool "Support vexpress_ca15_tc2"
295         select CPU_V7
296         select CPU_V7_HAS_NONSEC
297         select CPU_V7_HAS_VIRT
298
299 config TARGET_VEXPRESS_CA5X2
300         bool "Support vexpress_ca5x2"
301         select CPU_V7
302
303 config TARGET_VEXPRESS_CA9X4
304         bool "Support vexpress_ca9x4"
305         select CPU_V7
306
307 config TARGET_KWB
308         bool "Support kwb"
309         select CPU_V7
310         select SUPPORT_SPL
311
312 config TARGET_TSERIES
313         bool "Support tseries"
314         select CPU_V7
315         select SUPPORT_SPL
316
317 config TARGET_CM_T335
318         bool "Support cm_t335"
319         select CPU_V7
320         select SUPPORT_SPL
321         select DM
322         select DM_SERIAL
323         select DM_GPIO
324
325 config TARGET_PEPPER
326         bool "Support pepper"
327         select CPU_V7
328         select SUPPORT_SPL
329         select DM
330         select DM_SERIAL
331         select DM_GPIO
332
333 config TARGET_AM335X_IGEP0033
334         bool "Support am335x_igep0033"
335         select CPU_V7
336         select SUPPORT_SPL
337         select DM
338         select DM_SERIAL
339         select DM_GPIO
340
341 config TARGET_PCM051
342         bool "Support pcm051"
343         select CPU_V7
344         select SUPPORT_SPL
345         select DM
346         select DM_SERIAL
347         select DM_GPIO
348
349 config TARGET_DRACO
350         bool "Support draco"
351         select CPU_V7
352         select SUPPORT_SPL
353
354 config TARGET_THUBAN
355         bool "Support thuban"
356         select CPU_V7
357         select SUPPORT_SPL
358
359 config TARGET_RASTABAN
360         bool "Support rastaban"
361         select CPU_V7
362         select SUPPORT_SPL
363
364 config TARGET_PXM2
365         bool "Support pxm2"
366         select CPU_V7
367         select SUPPORT_SPL
368
369 config TARGET_RUT
370         bool "Support rut"
371         select CPU_V7
372         select SUPPORT_SPL
373
374 config TARGET_PENGWYN
375         bool "Support pengwyn"
376         select CPU_V7
377         select SUPPORT_SPL
378         select DM
379         select DM_SERIAL
380         select DM_GPIO
381
382 config TARGET_AM335X_BALTOS
383         bool "Support am335x_baltos"
384         select CPU_V7
385         select SUPPORT_SPL
386         select DM
387         select DM_SERIAL
388         select DM_GPIO
389
390 config TARGET_AM335X_EVM
391         bool "Support am335x_evm"
392         select CPU_V7
393         select SUPPORT_SPL
394         select DM
395         select DM_SERIAL
396         select DM_GPIO
397         select TI_I2C_BOARD_DETECT
398
399 config TARGET_AM335X_SHC
400         bool "Support am335x based shc board from bosch"
401         select CPU_V7
402         select SUPPORT_SPL
403         select DM
404         select DM_SERIAL
405         select DM_GPIO
406
407 config TARGET_AM335X_SL50
408         bool "Support am335x_sl50"
409         select CPU_V7
410         select SUPPORT_SPL
411         select DM
412         select DM_SERIAL
413
414 config TARGET_BAV335X
415         bool "Support bav335x"
416         select CPU_V7
417         select SUPPORT_SPL
418         select DM
419         select DM_SERIAL
420         help
421           The BAV335x OEM Network Processor integrates all the functions of an
422           embedded network computer in a small, easy to use SODIMM module which
423           incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
424           processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
425           ethernet with simple connection to external connectors.
426
427           For more information, visit: http://birdland.com/oem
428
429 config TARGET_TI814X_EVM
430         bool "Support ti814x_evm"
431         select CPU_V7
432         select SUPPORT_SPL
433
434 config TARGET_TI816X_EVM
435         bool "Support ti816x_evm"
436         select CPU_V7
437         select SUPPORT_SPL
438
439 config TARGET_BCM28155_AP
440         bool "Support bcm28155_ap"
441         select CPU_V7
442
443 config TARGET_BCMCYGNUS
444         bool "Support bcmcygnus"
445         select CPU_V7
446
447 config TARGET_BCMNSP
448         bool "Support bcmnsp"
449         select CPU_V7
450
451 config ARCH_EXYNOS
452         bool "Samsung EXYNOS"
453         select DM
454         select DM_SPI_FLASH
455         select DM_SERIAL
456         select DM_SPI
457         select DM_GPIO
458         select DM_KEYBOARD
459
460 config ARCH_S5PC1XX
461         bool "Samsung S5PC1XX"
462         select CPU_V7
463         select DM
464         select DM_SERIAL
465         select DM_GPIO
466
467 config ARCH_HIGHBANK
468         bool "Calxeda Highbank"
469         select CPU_V7
470
471 config ARCH_INTEGRATOR
472         bool "ARM Ltd. Integrator family"
473         select DM
474         select DM_SERIAL
475
476 config ARCH_KEYSTONE
477         bool "TI Keystone"
478         select CPU_V7
479         select SUPPORT_SPL
480         select CMD_POWEROFF
481
482 config ARCH_MESON
483         bool "Amlogic Meson"
484         help
485           Support for the Meson SoC family developed by Amlogic Inc.,
486           targeted at media players and tablet computers. We currently
487           support the S905 (GXBaby) 64-bit SoC.
488
489 config ARCH_MX7
490         bool "Freescale MX7"
491         select CPU_V7
492
493 config ARCH_MX6
494         bool "Freescale MX6"
495         select CPU_V7
496
497 config ARCH_MX5
498         bool "Freescale MX5"
499         select CPU_V7
500
501 config TARGET_M53EVK
502         bool "Support m53evk"
503         select CPU_V7
504         select SUPPORT_SPL
505
506 config TARGET_MX51EVK
507         bool "Support mx51evk"
508         select CPU_V7
509
510 config TARGET_MX53ARD
511         bool "Support mx53ard"
512         select CPU_V7
513
514 config TARGET_MX53EVK
515         bool "Support mx53evk"
516         select CPU_V7
517
518 config TARGET_MX53LOCO
519         bool "Support mx53loco"
520         select CPU_V7
521
522 config TARGET_MX53SMD
523         bool "Support mx53smd"
524         select CPU_V7
525
526 config OMAP34XX
527         bool "OMAP34XX SoC"
528         select CPU_V7
529
530 config OMAP44XX
531         bool "OMAP44XX SoC"
532         select CPU_V7
533         select SUPPORT_SPL
534
535 config OMAP54XX
536         bool "OMAP54XX SoC"
537         select CPU_V7
538         select SUPPORT_SPL
539
540 config AM43XX
541         bool "AM43XX SoC"
542         select CPU_V7
543         select SUPPORT_SPL
544         help
545           Support for AM43xx SOC from Texas Instruments.
546           The AM43xx high performance SOC features a Cortex-A9
547           ARM core, a quad core PRU-ICSS for industrial Ethernet
548           protocols, dual camera support, optional 3D graphics
549           and an optional customer programmable secure boot.
550
551 config RMOBILE
552         bool "Renesas ARM SoCs"
553         select CPU_V7
554
555 config ARCH_SNAPDRAGON
556         bool "Qualcomm Snapdragon SoCs"
557         select ARM64
558         select DM
559         select DM_GPIO
560         select DM_SERIAL
561         select SPMI
562         select OF_CONTROL
563         select OF_SEPARATE
564
565 config ARCH_SOCFPGA
566         bool "Altera SOCFPGA family"
567         select CPU_V7
568         select SUPPORT_SPL
569         select OF_CONTROL
570         select SPL_OF_CONTROL
571         select DM
572         select DM_SPI_FLASH
573         select DM_SPI
574
575 config TARGET_CM_T43
576         bool "Support cm_t43"
577         select CPU_V7
578         select SUPPORT_SPL
579
580 config ARCH_SUNXI
581         bool "Support sunxi (Allwinner) SoCs"
582         select CMD_BOOTZ
583         select CMD_DHCP
584         select CMD_EXT2
585         select CMD_EXT4
586         select CMD_FAT
587         select CMD_FS_GENERIC
588         select CMD_GPIO
589         select CMD_MII
590         select CMD_MMC if MMC
591         select CMD_PING
592         select CMD_USB
593         select DM
594         select DM_ETH
595         select DM_GPIO
596         select DM_KEYBOARD
597         select DM_SERIAL
598         select DM_USB
599         select HUSH_PARSER
600         select OF_BOARD_SETUP
601         select OF_CONTROL
602         select OF_SEPARATE
603         select SPL_STACK_R if SUPPORT_SPL
604         select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
605         select SYS_NS16550
606         select USB
607         select USB_STORAGE
608         select USB_KEYBOARD
609
610 config TARGET_TS4800
611         bool "Support TS4800"
612         select CPU_V7
613
614 config TARGET_VF610TWR
615         bool "Support vf610twr"
616         select CPU_V7
617
618 config TARGET_COLIBRI_VF
619         bool "Support Colibri VF50/61"
620         select CPU_V7
621
622 config TARGET_PCM052
623         bool "Support pcm-052"
624         select CPU_V7
625
626 config ARCH_ZYNQ
627         bool "Xilinx Zynq Platform"
628         select CPU_V7
629         select SUPPORT_SPL
630         select OF_CONTROL
631         select SPL_OF_CONTROL if SPL
632         select DM
633         select DM_ETH
634         select DM_GPIO
635         select SPL_DM if SPL
636         select DM_MMC
637         select DM_SPI
638         select DM_SERIAL
639         select DM_SPI_FLASH
640         select SPL_SEPARATE_BSS if SPL
641
642 config ARCH_ZYNQMP
643         bool "Support Xilinx ZynqMP Platform"
644         select ARM64
645         select DM
646         select OF_CONTROL
647         select DM_SERIAL
648         select SUPPORT_SPL
649
650 config TEGRA
651         bool "NVIDIA Tegra"
652
653 config TARGET_VEXPRESS64_AEMV8A
654         bool "Support vexpress_aemv8a"
655         select ARM64
656
657 config TARGET_VEXPRESS64_BASE_FVP
658         bool "Support Versatile Express ARMv8a FVP BASE model"
659         select ARM64
660         select SEMIHOSTING
661
662 config TARGET_VEXPRESS64_BASE_FVP_DRAM
663         bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
664         select ARM64
665         help
666           This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
667           the default config to allow the user to load the images directly into
668           DRAM using model parameters rather than by using semi-hosting to load
669           the files from the host filesystem.
670
671 config TARGET_VEXPRESS64_JUNO
672         bool "Support Versatile Express Juno Development Platform"
673         select ARM64
674
675 config TARGET_LS2080A_EMU
676         bool "Support ls2080a_emu"
677         select ARM64
678         select ARMV8_MULTIENTRY
679         help
680           Support for Freescale LS2080A_EMU platform
681           The LS2080A Development System (EMULATOR) is a pre silicon
682           development platform that supports the QorIQ LS2080A
683           Layerscape Architecture processor.
684
685 config TARGET_LS2080A_SIMU
686         bool "Support ls2080a_simu"
687         select ARM64
688         select ARMV8_MULTIENTRY
689         help
690           Support for Freescale LS2080A_SIMU platform
691           The LS2080A Development System (QDS) is a pre silicon
692           development platform that supports the QorIQ LS2080A
693           Layerscape Architecture processor.
694
695 config TARGET_LS2080AQDS
696         bool "Support ls2080aqds"
697         select ARM64
698         select ARMV8_MULTIENTRY
699         select SUPPORT_SPL
700         help
701           Support for Freescale LS2080AQDS platform
702           The LS2080A Development System (QDS) is a high-performance
703           development platform that supports the QorIQ LS2080A
704           Layerscape Architecture processor.
705
706 config TARGET_LS2080ARDB
707         bool "Support ls2080ardb"
708         select ARM64
709         select ARMV8_MULTIENTRY
710         select SUPPORT_SPL
711         help
712           Support for Freescale LS2080ARDB platform.
713           The LS2080A Reference design board (RDB) is a high-performance
714           development platform that supports the QorIQ LS2080A
715           Layerscape Architecture processor.
716
717 config TARGET_HIKEY
718         bool "Support HiKey 96boards Consumer Edition Platform"
719         select ARM64
720         select DM
721         select DM_GPIO
722         select DM_SERIAL
723         select OF_CONTROL
724           help
725           Support for HiKey 96boards platform. It features a HI6220
726           SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
727
728 config TARGET_LS1012AQDS
729         bool "Support ls1012aqds"
730         select ARM64
731         help
732           Support for Freescale LS1012AQDS platform.
733           The LS1012A Development System (QDS) is a high-performance
734           development platform that supports the QorIQ LS1012A
735           Layerscape Architecture processor.
736
737 config TARGET_LS1012ARDB
738         bool "Support ls1012ardb"
739         select ARM64
740         help
741           Support for Freescale LS1012ARDB platform.
742           The LS1012A Reference design board (RDB) is a high-performance
743           development platform that supports the QorIQ LS1012A
744           Layerscape Architecture processor.
745
746 config TARGET_LS1012AFRDM
747         bool "Support ls1012afrdm"
748         select ARM64
749         help
750           Support for Freescale LS1012AFRDM platform.
751           The LS1012A Freedom  board (FRDM) is a high-performance
752           development platform that supports the QorIQ LS1012A
753           Layerscape Architecture processor.
754
755 config TARGET_LS1021AQDS
756         bool "Support ls1021aqds"
757         select CPU_V7
758         select SUPPORT_SPL
759 config TARGET_LS1021ATWR
760         bool "Support ls1021atwr"
761         select CPU_V7
762         select SUPPORT_SPL
763
764 config TARGET_LS1043AQDS
765         bool "Support ls1043aqds"
766         select ARM64
767         select ARMV8_MULTIENTRY
768         select SUPPORT_SPL
769         help
770           Support for Freescale LS1043AQDS platform.
771
772 config TARGET_LS1043ARDB
773         bool "Support ls1043ardb"
774         select ARM64
775         select ARMV8_MULTIENTRY
776         select SUPPORT_SPL
777         help
778           Support for Freescale LS1043ARDB platform.
779
780 config TARGET_H2200
781         bool "Support h2200"
782         select CPU_PXA
783
784 config TARGET_ZIPITZ2
785         bool "Support zipitz2"
786         select CPU_PXA
787
788 config TARGET_COLIBRI_PXA270
789         bool "Support colibri_pxa270"
790         select CPU_PXA
791
792 config ARCH_UNIPHIER
793         bool "Socionext UniPhier SoCs"
794         select CLK_UNIPHIER
795         select SUPPORT_SPL
796         select SPL
797         select OF_CONTROL
798         select SPL_OF_CONTROL
799         select DM
800         select SPL_DM
801         select DM_GPIO
802         select DM_SERIAL
803         select DM_I2C
804         select DM_MMC
805         help
806           Support for UniPhier SoC family developed by Socionext Inc.
807           (formerly, System LSI Business Division of Panasonic Corporation)
808
809 config STM32
810         bool "Support STM32"
811         select CPU_V7M
812         select DM
813         select DM_SERIAL
814
815 config ARCH_ROCKCHIP
816         bool "Support Rockchip SoCs"
817         select SUPPORT_SPL
818         select SPL
819         select OF_CONTROL
820         select CPU_V7
821         select DM
822
823 config TARGET_THUNDERX_88XX
824         bool "Support ThunderX 88xx"
825         select ARM64
826         select OF_CONTROL
827
828 endchoice
829
830 source "arch/arm/mach-at91/Kconfig"
831
832 source "arch/arm/mach-bcm283x/Kconfig"
833
834 source "arch/arm/mach-davinci/Kconfig"
835
836 source "arch/arm/mach-exynos/Kconfig"
837
838 source "arch/arm/mach-highbank/Kconfig"
839
840 source "arch/arm/mach-integrator/Kconfig"
841
842 source "arch/arm/mach-keystone/Kconfig"
843
844 source "arch/arm/mach-kirkwood/Kconfig"
845
846 source "arch/arm/mach-mvebu/Kconfig"
847
848 source "arch/arm/cpu/armv7/mx7/Kconfig"
849
850 source "arch/arm/cpu/armv7/mx6/Kconfig"
851
852 source "arch/arm/cpu/armv7/mx5/Kconfig"
853
854 source "arch/arm/cpu/armv7/omap-common/Kconfig"
855
856 source "arch/arm/mach-orion5x/Kconfig"
857
858 source "arch/arm/cpu/armv7/rmobile/Kconfig"
859
860 source "arch/arm/mach-meson/Kconfig"
861
862 source "arch/arm/mach-rockchip/Kconfig"
863
864 source "arch/arm/mach-s5pc1xx/Kconfig"
865
866 source "arch/arm/mach-snapdragon/Kconfig"
867
868 source "arch/arm/mach-socfpga/Kconfig"
869
870 source "arch/arm/mach-stm32/Kconfig"
871
872 source "arch/arm/mach-tegra/Kconfig"
873
874 source "arch/arm/mach-uniphier/Kconfig"
875
876 source "arch/arm/mach-zynq/Kconfig"
877
878 source "arch/arm/cpu/armv7/Kconfig"
879
880 source "arch/arm/cpu/armv8/zynqmp/Kconfig"
881
882 source "arch/arm/cpu/armv8/Kconfig"
883
884 source "arch/arm/imx-common/Kconfig"
885
886 source "board/bosch/shc/Kconfig"
887 source "board/BuR/kwb/Kconfig"
888 source "board/BuR/tseries/Kconfig"
889 source "board/CarMediaLab/flea3/Kconfig"
890 source "board/Marvell/aspenite/Kconfig"
891 source "board/Marvell/gplugd/Kconfig"
892 source "board/armadeus/apf27/Kconfig"
893 source "board/armltd/vexpress/Kconfig"
894 source "board/armltd/vexpress64/Kconfig"
895 source "board/bluegiga/apx4devkit/Kconfig"
896 source "board/broadcom/bcm28155_ap/Kconfig"
897 source "board/broadcom/bcmcygnus/Kconfig"
898 source "board/broadcom/bcmnsp/Kconfig"
899 source "board/cavium/thunderx/Kconfig"
900 source "board/cirrus/edb93xx/Kconfig"
901 source "board/compulab/cm_t335/Kconfig"
902 source "board/compulab/cm_t43/Kconfig"
903 source "board/creative/xfi3/Kconfig"
904 source "board/denx/m28evk/Kconfig"
905 source "board/denx/m53evk/Kconfig"
906 source "board/freescale/ls2080a/Kconfig"
907 source "board/freescale/ls2080aqds/Kconfig"
908 source "board/freescale/ls2080ardb/Kconfig"
909 source "board/freescale/ls1021aqds/Kconfig"
910 source "board/freescale/ls1043aqds/Kconfig"
911 source "board/freescale/ls1021atwr/Kconfig"
912 source "board/freescale/ls1043ardb/Kconfig"
913 source "board/freescale/ls1012aqds/Kconfig"
914 source "board/freescale/ls1012ardb/Kconfig"
915 source "board/freescale/ls1012afrdm/Kconfig"
916 source "board/freescale/mx23evk/Kconfig"
917 source "board/freescale/mx25pdk/Kconfig"
918 source "board/freescale/mx28evk/Kconfig"
919 source "board/freescale/mx31ads/Kconfig"
920 source "board/freescale/mx31pdk/Kconfig"
921 source "board/freescale/mx35pdk/Kconfig"
922 source "board/freescale/mx51evk/Kconfig"
923 source "board/freescale/mx53ard/Kconfig"
924 source "board/freescale/mx53evk/Kconfig"
925 source "board/freescale/mx53loco/Kconfig"
926 source "board/freescale/mx53smd/Kconfig"
927 source "board/freescale/vf610twr/Kconfig"
928 source "board/gumstix/pepper/Kconfig"
929 source "board/h2200/Kconfig"
930 source "board/hisilicon/hikey/Kconfig"
931 source "board/imx31_phycore/Kconfig"
932 source "board/isee/igep0033/Kconfig"
933 source "board/mpl/vcma9/Kconfig"
934 source "board/olimex/mx23_olinuxino/Kconfig"
935 source "board/phytec/pcm051/Kconfig"
936 source "board/phytec/pcm052/Kconfig"
937 source "board/ppcag/bg0900/Kconfig"
938 source "board/samsung/smdk2410/Kconfig"
939 source "board/sandisk/sansa_fuze_plus/Kconfig"
940 source "board/schulercontrol/sc_sps_1/Kconfig"
941 source "board/siemens/draco/Kconfig"
942 source "board/siemens/pxm2/Kconfig"
943 source "board/siemens/rut/Kconfig"
944 source "board/silica/pengwyn/Kconfig"
945 source "board/spear/spear300/Kconfig"
946 source "board/spear/spear310/Kconfig"
947 source "board/spear/spear320/Kconfig"
948 source "board/spear/spear600/Kconfig"
949 source "board/spear/x600/Kconfig"
950 source "board/st/stv0991/Kconfig"
951 source "board/sunxi/Kconfig"
952 source "board/syteco/zmx25/Kconfig"
953 source "board/tcl/sl50/Kconfig"
954 source "board/ti/am335x/Kconfig"
955 source "board/ti/am43xx/Kconfig"
956 source "board/birdland/bav335x/Kconfig"
957 source "board/ti/ti814x/Kconfig"
958 source "board/ti/ti816x/Kconfig"
959 source "board/timll/devkit3250/Kconfig"
960 source "board/toradex/colibri_pxa270/Kconfig"
961 source "board/toradex/colibri_vf/Kconfig"
962 source "board/technologic/ts4800/Kconfig"
963 source "board/vscom/baltos/Kconfig"
964 source "board/woodburn/Kconfig"
965 source "board/work-microwave/work_92105/Kconfig"
966 source "board/zipitz2/Kconfig"
967
968 source "arch/arm/Kconfig.debug"
969
970 endmenu