]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/Kconfig
kconfig: arm: remove duplicate definitions of SOC_MX*
[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 HAS_VBAR
11         bool
12
13 config CPU_ARM720T
14         bool
15
16 config CPU_ARM920T
17         bool
18
19 config CPU_ARM926EJS
20         bool
21
22 config CPU_ARM946ES
23         bool
24
25 config CPU_ARM1136
26         bool
27
28 config CPU_ARM1176
29         bool
30         select HAS_VBAR
31
32 config CPU_V7
33         bool
34         select HAS_VBAR
35
36 config CPU_V7M
37         bool
38
39 config CPU_PXA
40         bool
41
42 config CPU_SA1100
43         bool
44
45 config OMAP_COMMON
46         bool
47
48 config SYS_CPU
49         default "arm720t" if CPU_ARM720T
50         default "arm920t" if CPU_ARM920T
51         default "arm926ejs" if CPU_ARM926EJS
52         default "arm946es" if CPU_ARM946ES
53         default "arm1136" if CPU_ARM1136
54         default "arm1176" if CPU_ARM1176
55         default "armv7" if CPU_V7
56         default "armv7m" if CPU_V7M
57         default "pxa" if CPU_PXA
58         default "sa1100" if CPU_SA1100
59         default "armv8" if ARM64
60
61 config SEMIHOSTING
62         bool "support boot from semihosting"
63         help
64           In emulated environments, semihosting is a way for
65           the hosted environment to call out to the emulator to
66           retrieve files from the host machine.
67
68 config SYS_ICACHE_OFF
69         bool "Do not use Instruction Cache"
70
71 config SYS_DCACHE_OFF
72         bool "Do not use Data Cache"
73
74 config SYS_L2CACHE_OFF
75         bool "Do not use L2 cache"
76
77 config ARCH_MXS
78         bool "Freescale i.MX23 & i.MX28"
79         select CPU_ARM926EJS
80
81 config ARCH_MX6
82         bool "Freescale MX6"
83         select CPU_V7
84
85 config ARCH_MX5
86         bool "Freescale MX5"
87         select CPU_V7
88
89 config SOC_AM335X
90         bool
91         select CPU_V7
92         select OMAP_COMMON
93
94 config SOC_SAMA5D4
95         bool
96         select CPU_V7
97
98 choice
99         prompt "Target select"
100         default ARCH_VERSATILE
101
102 config ARCH_AT91
103         bool "Atmel AT91"
104
105 config TARGET_EDB93XX
106         bool "Support edb93xx"
107         select CPU_ARM920T
108
109 config TARGET_SCB9328
110         bool "Support scb9328"
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 TARGET_DB_88F6820_GP
140         bool "Support DB-88F6820-GP"
141         select CPU_V7
142         select SUPPORT_SPL
143
144 config TARGET_DB_MV784MP_GP
145         bool "Support db-mv784mp-gp"
146         select CPU_V7
147         select SUPPORT_SPL
148
149 config TARGET_MAXBCM
150         bool "Support maxbcm"
151         select CPU_V7
152         select SUPPORT_SPL
153
154 config TARGET_DEVKIT3250
155         bool "Support devkit3250"
156         select CPU_ARM926EJS
157         select SUPPORT_SPL
158
159 config TARGET_WORK_92105
160         bool "Support work_92105"
161         select CPU_ARM926EJS
162         select SUPPORT_SPL
163
164 config TARGET_MX25PDK
165         bool "Support mx25pdk"
166         select CPU_ARM926EJS
167
168 config TARGET_TX25
169         bool "Support tx25"
170         select SOC_MX25
171         select SUPPORT_SPL
172
173 config TARGET_TX28
174         bool "Support tx28"
175         select SOC_MX28
176         select SUPPORT_SPL
177
178 config TARGET_TX48
179         bool "Support tx48"
180         select SOC_AM335X
181         select SUPPORT_SPL
182
183 config TARGET_TX51
184         bool "Support tx51"
185         select SOC_MX51
186
187 config TARGET_TX53
188         bool "Support tx53"
189         select SOC_MX53
190
191 config TARGET_TX6
192         bool "Support tx6"
193
194 config TARGET_ZMX25
195         bool "Support zmx25"
196         select CPU_ARM926EJS
197
198 config TARGET_APF27
199         bool "Support apf27"
200         select CPU_ARM926EJS
201         select SUPPORT_SPL
202
203 config TARGET_IMX27LITE
204         bool "Support imx27lite"
205         select CPU_ARM926EJS
206
207 config TARGET_MAGNESIUM
208         bool "Support magnesium"
209         select CPU_ARM926EJS
210
211 config TARGET_APX4DEVKIT
212         bool "Support apx4devkit"
213         select CPU_ARM926EJS
214         select SUPPORT_SPL
215
216 config TARGET_XFI3
217         bool "Support xfi3"
218         select CPU_ARM926EJS
219         select SUPPORT_SPL
220
221 config TARGET_M28EVK
222         bool "Support m28evk"
223         select CPU_ARM926EJS
224         select SUPPORT_SPL
225
226 config TARGET_MX23EVK
227         bool "Support mx23evk"
228         select CPU_ARM926EJS
229         select SUPPORT_SPL
230
231 config TARGET_MX28EVK
232         bool "Support mx28evk"
233         select CPU_ARM926EJS
234         select SUPPORT_SPL
235
236 config TARGET_MX23_OLINUXINO
237         bool "Support mx23_olinuxino"
238         select CPU_ARM926EJS
239         select SUPPORT_SPL
240
241 config TARGET_BG0900
242         bool "Support bg0900"
243         select CPU_ARM926EJS
244         select SUPPORT_SPL
245
246 config TARGET_SANSA_FUZE_PLUS
247         bool "Support sansa_fuze_plus"
248         select CPU_ARM926EJS
249         select SUPPORT_SPL
250
251 config TARGET_SC_SPS_1
252         bool "Support sc_sps_1"
253         select CPU_ARM926EJS
254         select SUPPORT_SPL
255
256 config ARCH_NOMADIK
257         bool "ST-Ericsson Nomadik"
258         select CPU_ARM926EJS
259
260 config ORION5X
261         bool "Marvell Orion"
262         select CPU_ARM926EJS
263
264 config TARGET_SPEAR300
265         bool "Support spear300"
266         select CPU_ARM926EJS
267
268 config TARGET_SPEAR310
269         bool "Support spear310"
270         select CPU_ARM926EJS
271
272 config TARGET_SPEAR320
273         bool "Support spear320"
274         select CPU_ARM926EJS
275
276 config TARGET_SPEAR600
277         bool "Support spear600"
278         select CPU_ARM926EJS
279
280 config TARGET_STV0991
281         bool "Support stv0991"
282         select CPU_V7
283         select DM
284         select DM_SERIAL
285         select DM_SPI
286         select DM_SPI_FLASH
287         select SPI_FLASH
288
289 config TARGET_X600
290         bool "Support x600"
291         select CPU_ARM926EJS
292         select SUPPORT_SPL
293
294 config ARCH_VERSATILE
295         bool "ARM Ltd. Versatile family"
296         select CPU_ARM926EJS
297
298 config TARGET_IMX31_PHYCORE
299         bool "Support imx31_phycore"
300         select CPU_ARM1136
301
302 config TARGET_QONG
303         bool "Support qong"
304         select CPU_ARM1136
305
306 config TARGET_MX31ADS
307         bool "Support mx31ads"
308         select CPU_ARM1136
309
310 config TARGET_MX31PDK
311         bool "Support mx31pdk"
312         select CPU_ARM1136
313         select SUPPORT_SPL
314
315 config TARGET_TT01
316         bool "Support tt01"
317         select CPU_ARM1136
318
319 config TARGET_IMX31_LITEKIT
320         bool "Support imx31_litekit"
321         select CPU_ARM1136
322
323 config TARGET_WOODBURN
324         bool "Support woodburn"
325         select CPU_ARM1136
326
327 config TARGET_WOODBURN_SD
328         bool "Support woodburn_sd"
329         select CPU_ARM1136
330         select SUPPORT_SPL
331
332 config TARGET_FLEA3
333         bool "Support flea3"
334         select CPU_ARM1136
335
336 config TARGET_MX35PDK
337         bool "Support mx35pdk"
338         select CPU_ARM1136
339
340 config ARCH_BCM283X
341         bool "Broadcom BCM283X family"
342         select DM
343         select DM_SERIAL
344         select DM_GPIO
345
346 config TARGET_VEXPRESS_CA15_TC2
347         bool "Support vexpress_ca15_tc2"
348         select CPU_V7
349         select CPU_V7_HAS_NONSEC
350         select CPU_V7_HAS_VIRT
351
352 config TARGET_VEXPRESS_CA5X2
353         bool "Support vexpress_ca5x2"
354         select CPU_V7
355
356 config TARGET_VEXPRESS_CA9X4
357         bool "Support vexpress_ca9x4"
358         select CPU_V7
359
360 config TARGET_KWB
361         bool "Support kwb"
362         select CPU_V7
363         select SUPPORT_SPL
364
365 config TARGET_TSERIES
366         bool "Support tseries"
367         select CPU_V7
368         select SUPPORT_SPL
369
370 config TARGET_CM_T335
371         bool "Support cm_t335"
372         select CPU_V7
373         select SUPPORT_SPL
374         select DM
375         select DM_SERIAL
376         select DM_GPIO
377
378 config TARGET_PEPPER
379         bool "Support pepper"
380         select CPU_V7
381         select SUPPORT_SPL
382         select DM
383         select DM_SERIAL
384         select DM_GPIO
385
386 config TARGET_AM335X_IGEP0033
387         bool "Support am335x_igep0033"
388         select CPU_V7
389         select SUPPORT_SPL
390         select DM
391         select DM_SERIAL
392         select DM_GPIO
393
394 config TARGET_PCM051
395         bool "Support pcm051"
396         select CPU_V7
397         select SUPPORT_SPL
398         select DM
399         select DM_SERIAL
400         select DM_GPIO
401
402 config TARGET_DRACO
403         bool "Support draco"
404         select CPU_V7
405         select SUPPORT_SPL
406
407 config TARGET_THUBAN
408         bool "Support thuban"
409         select CPU_V7
410         select SUPPORT_SPL
411
412 config TARGET_RASTABAN
413         bool "Support rastaban"
414         select CPU_V7
415         select SUPPORT_SPL
416
417 config TARGET_PXM2
418         bool "Support pxm2"
419         select CPU_V7
420         select SUPPORT_SPL
421
422 config TARGET_RUT
423         bool "Support rut"
424         select CPU_V7
425         select SUPPORT_SPL
426
427 config TARGET_PENGWYN
428         bool "Support pengwyn"
429         select CPU_V7
430         select SUPPORT_SPL
431         select DM
432         select DM_SERIAL
433         select DM_GPIO
434
435 config TARGET_AM335X_BALTOS
436         bool "Support am335x_baltos"
437         select CPU_V7
438         select SUPPORT_SPL
439         select DM
440         select DM_SERIAL
441         select DM_GPIO
442
443 config TARGET_AM335X_EVM
444         bool "Support am335x_evm"
445         select CPU_V7
446         select SUPPORT_SPL
447         select DM
448         select DM_SERIAL
449         select DM_GPIO
450
451 config TARGET_AM43XX_EVM
452         bool "Support am43xx_evm"
453         select CPU_V7
454         select SUPPORT_SPL
455
456 config TARGET_BAV335X
457         bool "Support bav335x"
458         select CPU_V7
459         select SUPPORT_SPL
460         select DM
461         select DM_SERIAL
462         help
463           The BAV335x OEM Network Processor integrates all the functions of an
464           embedded network computer in a small, easy to use SODIMM module which
465           incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
466           processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
467           ethernet with simple connection to external connectors.
468
469           For more information, visit: http://birdland.com/oem
470
471 config TARGET_TI814X_EVM
472         bool "Support ti814x_evm"
473         select CPU_V7
474         select SUPPORT_SPL
475
476 config TARGET_TI816X_EVM
477         bool "Support ti816x_evm"
478         select CPU_V7
479         select SUPPORT_SPL
480
481 config TARGET_BCM28155_AP
482         bool "Support bcm28155_ap"
483         select CPU_V7
484
485 config TARGET_BCMCYGNUS
486         bool "Support bcmcygnus"
487         select CPU_V7
488
489 config TARGET_BCMNSP
490         bool "Support bcmnsp"
491         select CPU_V7
492
493 config ARCH_EXYNOS
494         bool "Samsung EXYNOS"
495         select CPU_V7
496         select DM
497         select DM_SPI_FLASH
498         select DM_SERIAL
499         select DM_SPI
500         select DM_GPIO
501
502 config ARCH_S5PC1XX
503         bool "Samsung S5PC1XX"
504         select CPU_V7
505         select DM
506         select DM_SERIAL
507         select DM_GPIO
508
509 config ARCH_HIGHBANK
510         bool "Calxeda Highbank"
511         select CPU_V7
512
513 config ARCH_INTEGRATOR
514         bool "ARM Ltd. Integrator family"
515         select DM
516         select DM_SERIAL
517
518 config ARCH_KEYSTONE
519         bool "TI Keystone"
520         select CPU_V7
521         select SUPPORT_SPL
522
523 config TARGET_M53EVK
524         bool "Support m53evk"
525         select CPU_V7
526         select SUPPORT_SPL
527
528 config TARGET_IMA3_MX53
529         bool "Support ima3-mx53"
530         select CPU_V7
531
532 config TARGET_MX51EVK
533         bool "Support mx51evk"
534         select CPU_V7
535
536 config TARGET_MX53ARD
537         bool "Support mx53ard"
538         select CPU_V7
539
540 config TARGET_MX53EVK
541         bool "Support mx53evk"
542         select CPU_V7
543
544 config TARGET_MX53LOCO
545         bool "Support mx53loco"
546         select CPU_V7
547
548 config TARGET_MX53SMD
549         bool "Support mx53smd"
550         select CPU_V7
551
552 config TARGET_MX51_EFIKAMX
553         bool "Support mx51_efikamx"
554         select CPU_V7
555
556 config TARGET_VISION2
557         bool "Support vision2"
558         select CPU_V7
559
560 config TARGET_UDOO
561         bool "Support udoo"
562         select CPU_V7
563
564 config TARGET_WANDBOARD
565         bool "Support wandboard"
566         select CPU_V7
567         select SUPPORT_SPL
568
569 config TARGET_WARP
570         bool "Support WaRP"
571         select CPU_V7
572
573 config TARGET_TITANIUM
574         bool "Support titanium"
575         select CPU_V7
576
577 config TARGET_NITROGEN6X
578         bool "Support nitrogen6x"
579         select CPU_V7
580
581 config TARGET_CGTQMX6EVAL
582         bool "Support cgtqmx6eval"
583         select CPU_V7
584
585 config TARGET_EMBESTMX6BOARDS
586         bool "Support embestmx6boards"
587         select CPU_V7
588
589 config TARGET_ARISTAINETOS
590         bool "Support aristainetos"
591         select CPU_V7
592
593 config TARGET_ARISTAINETOS2
594         bool "Support aristainetos2"
595         select CPU_V7
596
597 config TARGET_MX6QARM2
598         bool "Support mx6qarm2"
599         select CPU_V7
600
601 config TARGET_MX6QSABREAUTO
602         bool "Support mx6qsabreauto"
603         select CPU_V7
604         select DM
605         select DM_THERMAL
606
607 config TARGET_MX6SABRESD
608         bool "Support mx6sabresd"
609         select CPU_V7
610         select SUPPORT_SPL
611         select DM
612         select DM_THERMAL
613
614 config TARGET_MX6CUBOXI
615         bool "Support Solid-run mx6 boards"
616         select CPU_V7
617         select SUPPORT_SPL
618
619 config TARGET_MX6SLEVK
620         bool "Support mx6slevk"
621         select CPU_V7
622
623 config TARGET_MX6SXSABRESD
624         bool "Support mx6sxsabresd"
625         select CPU_V7
626         select SUPPORT_SPL
627         select DM
628         select DM_THERMAL
629
630 config TARGET_MX6UL_14X14_EVK
631         bool "Support mx6ul_14x14_evk"
632         select SOC_MX6UL
633         select DM
634         select DM_THERMAL
635         select SUPPORT_SPL
636
637 config TARGET_GW_VENTANA
638         bool "Support gw_ventana"
639         select CPU_V7
640         select SUPPORT_SPL
641
642 config TARGET_KOSAGI_NOVENA
643         bool "Support Kosagi Novena"
644         select CPU_V7
645         select SUPPORT_SPL
646
647 config TARGET_TBS2910
648         bool "Support tbs2910"
649         select CPU_V7
650
651 config TARGET_OT1200
652         bool "Bachmann OT1200"
653         select CPU_V7
654         select SUPPORT_SPL
655
656 config TARGET_PLATINUM_PICON
657         bool "Support platinum-picon"
658         select CPU_V7
659         select SUPPORT_SPL
660
661 config TARGET_PLATINUM_TITANIUM
662         bool "Support platinum-titanium"
663         select CPU_V7
664         select SUPPORT_SPL
665
666 config OMAP34XX
667         bool "OMAP34XX SoC"
668         select CPU_V7
669
670 config OMAP44XX
671         bool "OMAP44XX SoC"
672         select CPU_V7
673         select SUPPORT_SPL
674
675 config OMAP54XX
676         bool "OMAP54XX SoC"
677         select CPU_V7
678         select SUPPORT_SPL
679
680 config RMOBILE
681         bool "Renesas ARM SoCs"
682         select CPU_V7
683
684 config ARCH_SOCFPGA
685         bool "Altera SOCFPGA family"
686         select CPU_V7
687         select SUPPORT_SPL
688         select DM
689         select DM_SPI_FLASH
690         select DM_SPI
691
692 config TARGET_CM_T43
693         bool "Support cm_t43"
694         select CPU_V7
695         select SUPPORT_SPL
696
697 config ARCH_SUNXI
698         bool "Support sunxi (Allwinner) SoCs"
699         select CMD_USB
700         select DM
701         select DM_GPIO
702         select DM_ETH
703         select DM_SERIAL
704         select DM_USB
705         select OF_CONTROL
706         select OF_SEPARATE
707         select USB
708         select USB_STORAGE
709         select USB_KEYBOARD
710
711 config TARGET_SNOWBALL
712         bool "Support snowball"
713         select CPU_V7
714
715 config TARGET_U8500_HREF
716         bool "Support u8500_href"
717         select CPU_V7
718
719 config TARGET_VF610TWR
720         bool "Support vf610twr"
721         select CPU_V7
722
723 config TARGET_COLIBRI_VF
724         bool "Support Colibri VF50/61"
725         select CPU_V7
726
727 config ARCH_ZYNQ
728         bool "Xilinx Zynq Platform"
729         select CPU_V7
730         select SUPPORT_SPL
731         select OF_CONTROL
732         select DM
733         select DM_SPI
734         select DM_SPI_FLASH
735
736 config ARCH_ZYNQMP
737         bool "Support Xilinx ZynqMP Platform"
738         select ARM64
739
740 config TEGRA
741         bool "NVIDIA Tegra"
742
743 config TARGET_VEXPRESS64_AEMV8A
744         bool "Support vexpress_aemv8a"
745         select ARM64
746
747 config TARGET_VEXPRESS64_BASE_FVP
748         bool "Support Versatile Express ARMv8a FVP BASE model"
749         select ARM64
750         select SEMIHOSTING
751
752 config TARGET_VEXPRESS64_JUNO
753         bool "Support Versatile Express Juno Development Platform"
754         select ARM64
755
756 config TARGET_LS2085A_EMU
757         bool "Support ls2085a_emu"
758         select ARM64
759         select ARMV8_MULTIENTRY
760
761 config TARGET_LS2085A_SIMU
762         bool "Support ls2085a_simu"
763         select ARM64
764         select ARMV8_MULTIENTRY
765
766 config TARGET_LS2085AQDS
767         bool "Support ls2085aqds"
768         select ARM64
769         select ARMV8_MULTIENTRY
770         select SUPPORT_SPL
771         help
772           Support for Freescale LS2085AQDS platform
773           The LS2085A Development System (QDS) is a high-performance
774           development platform that supports the QorIQ LS2085A
775           Layerscape Architecture processor.
776
777 config TARGET_LS2085ARDB
778         bool "Support ls2085ardb"
779         select ARM64
780         select ARMV8_MULTIENTRY
781         select SUPPORT_SPL
782         help
783           Support for Freescale LS2085ARDB platform.
784           The LS2085A Reference design board (RDB) is a high-performance
785           development platform that supports the QorIQ LS2085A
786           Layerscape Architecture processor.
787
788 config TARGET_HIKEY
789         bool "Support HiKey 96boards Consumer Edition Platform"
790         select ARM64
791           help
792           Support for HiKey 96boards platform. It features a HI6220
793           SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
794
795 config TARGET_LS1021AQDS
796         bool "Support ls1021aqds"
797         select CPU_V7
798         select SUPPORT_SPL
799
800 config TARGET_LS1021ATWR
801         bool "Support ls1021atwr"
802         select CPU_V7
803         select SUPPORT_SPL
804
805 config TARGET_BALLOON3
806         bool "Support balloon3"
807         select CPU_PXA
808
809 config TARGET_H2200
810         bool "Support h2200"
811         select CPU_PXA
812
813 config TARGET_PALMLD
814         bool "Support palmld"
815         select CPU_PXA
816
817 config TARGET_PALMTC
818         bool "Support palmtc"
819         select CPU_PXA
820
821 config TARGET_PALMTREO680
822         bool "Support palmtreo680"
823         select CPU_PXA
824         select SUPPORT_SPL
825
826 config TARGET_PXA255_IDP
827         bool "Support pxa255_idp"
828         select CPU_PXA
829
830 config TARGET_TRIZEPSIV
831         bool "Support trizepsiv"
832         select CPU_PXA
833
834 config TARGET_VPAC270
835         bool "Support vpac270"
836         select CPU_PXA
837         select SUPPORT_SPL
838
839 config TARGET_XAENIAX
840         bool "Support xaeniax"
841         select CPU_PXA
842
843 config TARGET_ZIPITZ2
844         bool "Support zipitz2"
845         select CPU_PXA
846
847 config TARGET_LP8X4X
848         bool "Support lp8x4x"
849         select CPU_PXA
850
851 config TARGET_COLIBRI_PXA270
852         bool "Support colibri_pxa270"
853         select CPU_PXA
854
855 config TARGET_JORNADA
856         bool "Support jornada"
857         select CPU_SA1100
858
859 config ARCH_UNIPHIER
860         bool "Socionext UniPhier SoCs"
861         select CPU_V7
862         select SUPPORT_SPL
863         select SPL
864         select OF_CONTROL
865         select SPL_OF_CONTROL
866         select DM
867         select SPL_DM
868         select DM_SERIAL
869         select DM_I2C
870         help
871           Support for UniPhier SoC family developed by Socionext Inc.
872           (formerly, System LSI Business Division of Panasonic Corporation)
873
874 config TARGET_STM32F429_DISCOVERY
875         bool "Support STM32F429 Discovery"
876         select CPU_V7M
877
878 endchoice
879
880 source "arch/arm/mach-at91/Kconfig"
881
882 source "arch/arm/mach-bcm283x/Kconfig"
883
884 source "arch/arm/mach-davinci/Kconfig"
885
886 source "arch/arm/mach-exynos/Kconfig"
887
888 source "arch/arm/mach-highbank/Kconfig"
889
890 source "arch/arm/mach-integrator/Kconfig"
891
892 source "arch/arm/mach-keystone/Kconfig"
893
894 source "arch/arm/mach-kirkwood/Kconfig"
895
896 source "arch/arm/cpu/arm926ejs/mxs/Kconfig"
897
898 source "arch/arm/cpu/armv7/mx6/Kconfig"
899
900 source "arch/arm/cpu/armv7/mx5/Kconfig"
901
902 source "arch/arm/mach-nomadik/Kconfig"
903
904 source "arch/arm/cpu/armv7/omap3/Kconfig"
905
906 source "arch/arm/cpu/armv7/omap4/Kconfig"
907
908 source "arch/arm/cpu/armv7/omap5/Kconfig"
909
910 source "arch/arm/mach-orion5x/Kconfig"
911
912 source "arch/arm/cpu/armv7/rmobile/Kconfig"
913
914 source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"
915
916 source "arch/arm/mach-socfpga/Kconfig"
917
918 source "arch/arm/mach-tegra/Kconfig"
919
920 source "arch/arm/mach-uniphier/Kconfig"
921
922 source "arch/arm/mach-versatile/Kconfig"
923
924 source "arch/arm/mach-zynq/Kconfig"
925
926 source "arch/arm/cpu/armv7/Kconfig"
927
928 source "arch/arm/cpu/armv8/zynqmp/Kconfig"
929
930 source "arch/arm/cpu/armv8/Kconfig"
931
932 source "arch/arm/imx-common/Kconfig"
933
934 source "board/aristainetos/Kconfig"
935 source "board/BuR/kwb/Kconfig"
936 source "board/BuR/tseries/Kconfig"
937 source "board/CarMediaLab/flea3/Kconfig"
938 source "board/Marvell/aspenite/Kconfig"
939 source "board/Marvell/db-88f6820-gp/Kconfig"
940 source "board/Marvell/db-mv784mp-gp/Kconfig"
941 source "board/Marvell/gplugd/Kconfig"
942 source "board/armadeus/apf27/Kconfig"
943 source "board/armltd/vexpress/Kconfig"
944 source "board/armltd/vexpress64/Kconfig"
945 source "board/hisilicon/hikey/Kconfig"
946 source "board/bachmann/ot1200/Kconfig"
947 source "board/balloon3/Kconfig"
948 source "board/barco/platinum/Kconfig"
949 source "board/barco/titanium/Kconfig"
950 source "board/bluegiga/apx4devkit/Kconfig"
951 source "board/boundary/nitrogen6x/Kconfig"
952 source "board/broadcom/bcm28155_ap/Kconfig"
953 source "board/broadcom/bcmcygnus/Kconfig"
954 source "board/broadcom/bcmnsp/Kconfig"
955 source "board/cirrus/edb93xx/Kconfig"
956 source "board/compulab/cm_t335/Kconfig"
957 source "board/compulab/cm_t43/Kconfig"
958 source "board/compulab/cm_fx6/Kconfig"
959 source "board/congatec/cgtqmx6eval/Kconfig"
960 source "board/creative/xfi3/Kconfig"
961 source "board/davedenx/qong/Kconfig"
962 source "board/denx/m28evk/Kconfig"
963 source "board/denx/m53evk/Kconfig"
964 source "board/embest/mx6boards/Kconfig"
965 source "board/esg/ima3-mx53/Kconfig"
966 source "board/freescale/ls2085a/Kconfig"
967 source "board/freescale/ls2085aqds/Kconfig"
968 source "board/freescale/ls2085ardb/Kconfig"
969 source "board/freescale/ls1021aqds/Kconfig"
970 source "board/freescale/ls1021atwr/Kconfig"
971 source "board/freescale/mx23evk/Kconfig"
972 source "board/freescale/mx25pdk/Kconfig"
973 source "board/freescale/mx28evk/Kconfig"
974 source "board/freescale/mx31ads/Kconfig"
975 source "board/freescale/mx31pdk/Kconfig"
976 source "board/freescale/mx35pdk/Kconfig"
977 source "board/freescale/mx51evk/Kconfig"
978 source "board/freescale/mx53ard/Kconfig"
979 source "board/freescale/mx53evk/Kconfig"
980 source "board/freescale/mx53loco/Kconfig"
981 source "board/freescale/mx53smd/Kconfig"
982 source "board/freescale/mx6qarm2/Kconfig"
983 source "board/freescale/mx6qsabreauto/Kconfig"
984 source "board/freescale/mx6sabresd/Kconfig"
985 source "board/freescale/mx6slevk/Kconfig"
986 source "board/freescale/mx6sxsabresd/Kconfig"
987 source "board/freescale/mx6ul_14x14_evk/Kconfig"
988 source "board/freescale/vf610twr/Kconfig"
989 source "board/gateworks/gw_ventana/Kconfig"
990 source "board/genesi/mx51_efikamx/Kconfig"
991 source "board/gumstix/pepper/Kconfig"
992 source "board/h2200/Kconfig"
993 source "board/hale/tt01/Kconfig"
994 source "board/icpdas/lp8x4x/Kconfig"
995 source "board/imx31_phycore/Kconfig"
996 source "board/isee/igep0033/Kconfig"
997 source "board/jornada/Kconfig"
998 source "board/karo/tx25/Kconfig"
999 source "board/karo/tx28/Kconfig"
1000 source "board/karo/tx48/Kconfig"
1001 source "board/karo/tx51/Kconfig"
1002 source "board/karo/tx53/Kconfig"
1003 source "board/karo/tx6/Kconfig"
1004 source "board/karo/txa5/Kconfig"
1005 source "board/kosagi/novena/Kconfig"
1006 source "board/logicpd/imx27lite/Kconfig"
1007 source "board/logicpd/imx31_litekit/Kconfig"
1008 source "board/maxbcm/Kconfig"
1009 source "board/mpl/vcma9/Kconfig"
1010 source "board/olimex/mx23_olinuxino/Kconfig"
1011 source "board/palmld/Kconfig"
1012 source "board/palmtc/Kconfig"
1013 source "board/palmtreo680/Kconfig"
1014 source "board/phytec/pcm051/Kconfig"
1015 source "board/ppcag/bg0900/Kconfig"
1016 source "board/pxa255_idp/Kconfig"
1017 source "board/samsung/smdk2410/Kconfig"
1018 source "board/sandisk/sansa_fuze_plus/Kconfig"
1019 source "board/scb9328/Kconfig"
1020 source "board/schulercontrol/sc_sps_1/Kconfig"
1021 source "board/siemens/draco/Kconfig"
1022 source "board/siemens/pxm2/Kconfig"
1023 source "board/siemens/rut/Kconfig"
1024 source "board/silica/pengwyn/Kconfig"
1025 source "board/solidrun/mx6cuboxi/Kconfig"
1026 source "board/spear/spear300/Kconfig"
1027 source "board/spear/spear310/Kconfig"
1028 source "board/spear/spear320/Kconfig"
1029 source "board/spear/spear600/Kconfig"
1030 source "board/spear/x600/Kconfig"
1031 source "board/st-ericsson/snowball/Kconfig"
1032 source "board/st-ericsson/u8500/Kconfig"
1033 source "board/st/stm32f429-discovery/Kconfig"
1034 source "board/st/stv0991/Kconfig"
1035 source "board/sunxi/Kconfig"
1036 source "board/syteco/zmx25/Kconfig"
1037 source "board/tbs/tbs2910/Kconfig"
1038 source "board/ti/am335x/Kconfig"
1039 source "board/ti/am43xx/Kconfig"
1040 source "board/birdland/bav335x/Kconfig"
1041 source "board/ti/ti814x/Kconfig"
1042 source "board/ti/ti816x/Kconfig"
1043 source "board/timll/devkit3250/Kconfig"
1044 source "board/toradex/colibri_pxa270/Kconfig"
1045 source "board/toradex/colibri_vf/Kconfig"
1046 source "board/trizepsiv/Kconfig"
1047 source "board/ttcontrol/vision2/Kconfig"
1048 source "board/udoo/Kconfig"
1049 source "board/vpac270/Kconfig"
1050 source "board/vscom/baltos/Kconfig"
1051 source "board/wandboard/Kconfig"
1052 source "board/warp/Kconfig"
1053 source "board/woodburn/Kconfig"
1054 source "board/work-microwave/work_92105/Kconfig"
1055 source "board/xaeniax/Kconfig"
1056 source "board/zipitz2/Kconfig"
1057
1058 source "arch/arm/Kconfig.debug"
1059
1060 endmenu