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