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