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