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