xref: /openbmc/u-boot/arch/arm/Kconfig (revision f3275aa4)
1menu "ARM architecture"
2	depends on ARM
3
4config SYS_ARCH
5	default "arm"
6
7config ARM64
8	bool
9	select PHYS_64BIT
10	select SYS_CACHE_SHIFT_6
11
12if ARM64
13config POSITION_INDEPENDENT
14	bool "Generate position-independent pre-relocation code"
15	help
16	  U-Boot expects to be linked to a specific hard-coded address, and to
17	  be loaded to and run from that address. This option lifts that
18	  restriction, thus allowing the code to be loaded to and executed
19	  from almost any address. This logic relies on the relocation
20	  information that is embedded into the binary to support U-Boot
21	  relocating itself to the top-of-RAM later during execution.
22
23config SYS_INIT_SP_BSS_OFFSET
24	int
25	help
26	  U-Boot typically uses a hard-coded value for the stack pointer
27	  before relocation. Define this option to instead calculate the
28	  initial SP at run-time. This is useful to avoid hard-coding addresses
29	  into U-Boot, so that can be loaded and executed at arbitrary
30	  addresses and thus avoid using arbitrary addresses at runtime. This
31	  option's value is the offset added to &_bss_start in order to
32	  calculate the stack pointer. This offset should be large enough so
33	  that the early malloc region, global data (gd), and early stack usage
34	  do not overlap any appended DTB.
35
36config LINUX_KERNEL_IMAGE_HEADER
37	bool
38	help
39	  Place a Linux kernel image header at the start of the U-Boot binary.
40	  The format of the header is described in the Linux kernel source at
41	  Documentation/arm64/booting.txt. This feature is useful since the
42	  image header reports the amount of memory (BSS and similar) that
43	  U-Boot needs to use, but which isn't part of the binary.
44
45if LINUX_KERNEL_IMAGE_HEADER
46config LNX_KRNL_IMG_TEXT_OFFSET_BASE
47	hex
48	help
49	  The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the
50	  TEXT_OFFSET value written in to the Linux kernel image header.
51endif
52endif
53
54config STATIC_RELA
55	bool
56	default y if ARM64 && !POSITION_INDEPENDENT
57
58config DMA_ADDR_T_64BIT
59	bool
60	default y if ARM64
61
62config HAS_VBAR
63	bool
64
65config HAS_THUMB2
66	bool
67
68# Used for compatibility with asm files copied from the kernel
69config ARM_ASM_UNIFIED
70	bool
71	default y
72
73# Used for compatibility with asm files copied from the kernel
74config THUMB2_KERNEL
75	bool
76
77config SYS_ARM_CACHE_CP15
78	bool "CP15 based cache enabling support"
79	help
80	  Select this if your processor suports enabling caches by using
81	  CP15 registers.
82
83config SYS_ARM_MMU
84	bool "MMU-based Paged Memory Management Support"
85	select SYS_ARM_CACHE_CP15
86	help
87	  Select if you want MMU-based virtualised addressing space
88	  support by paged memory management.
89
90config SYS_ARM_MPU
91	bool 'Use the ARM v7 PMSA Compliant MPU'
92	help
93	  Some ARM systems without an MMU have instead a Memory Protection
94	  Unit (MPU) that defines the type and permissions for regions of
95	  memory.
96	  If your CPU has an MPU then you should choose 'y' here unless you
97	  know that you do not want to use the MPU.
98
99# If set, the workarounds for these ARM errata are applied early during U-Boot
100# startup. Note that in general these options force the workarounds to be
101# applied; no CPU-type/version detection exists, unlike the similar options in
102# the Linux kernel. Do not set these options unless they apply!  Also note that
103# the following can be machine specific errata. These do have ability to
104# provide rudimentary version and machine specific checks, but expect no
105# product checks:
106# CONFIG_ARM_ERRATA_430973
107# CONFIG_ARM_ERRATA_454179
108# CONFIG_ARM_ERRATA_621766
109# CONFIG_ARM_ERRATA_798870
110# CONFIG_ARM_ERRATA_801819
111# CONFIG_ARM_CORTEX_A8_CVE_2017_5715
112# CONFIG_ARM_CORTEX_A15_CVE_2017_5715
113
114config ARM_ERRATA_430973
115	bool
116
117config ARM_ERRATA_454179
118	bool
119
120config ARM_ERRATA_621766
121	bool
122
123config ARM_ERRATA_716044
124	bool
125
126config ARM_ERRATA_725233
127	bool
128
129config ARM_ERRATA_742230
130	bool
131
132config ARM_ERRATA_743622
133	bool
134
135config ARM_ERRATA_751472
136	bool
137
138config ARM_ERRATA_761320
139	bool
140
141config ARM_ERRATA_773022
142	bool
143
144config ARM_ERRATA_774769
145	bool
146
147config ARM_ERRATA_794072
148	bool
149
150config ARM_ERRATA_798870
151	bool
152
153config ARM_ERRATA_801819
154	bool
155
156config ARM_ERRATA_826974
157	bool
158
159config ARM_ERRATA_828024
160	bool
161
162config ARM_ERRATA_829520
163	bool
164
165config ARM_ERRATA_833069
166	bool
167
168config ARM_ERRATA_833471
169	bool
170
171config ARM_ERRATA_845369
172	bool
173
174config ARM_ERRATA_852421
175	bool
176
177config ARM_ERRATA_852423
178	bool
179
180config ARM_ERRATA_855873
181	bool
182
183config ARM_CORTEX_A8_CVE_2017_5715
184	bool
185
186config ARM_CORTEX_A15_CVE_2017_5715
187	bool
188
189config CPU_ARM720T
190	bool
191	select SYS_CACHE_SHIFT_5
192	imply SYS_ARM_MMU
193
194config CPU_ARM920T
195	bool
196	select SYS_CACHE_SHIFT_5
197	imply SYS_ARM_MMU
198
199config CPU_ARM926EJS
200	bool
201	select SYS_CACHE_SHIFT_5
202	imply SYS_ARM_MMU
203
204config CPU_ARM946ES
205	bool
206	select SYS_CACHE_SHIFT_5
207	imply SYS_ARM_MMU
208
209config CPU_ARM1136
210	bool
211	select SYS_CACHE_SHIFT_5
212	imply SYS_ARM_MMU
213
214config CPU_ARM1176
215	bool
216	select HAS_VBAR
217	select SYS_CACHE_SHIFT_5
218	imply SYS_ARM_MMU
219
220config CPU_V7A
221	bool
222	select HAS_THUMB2
223	select HAS_VBAR
224	select SYS_CACHE_SHIFT_6
225	imply SYS_ARM_MMU
226
227config CPU_V7M
228	bool
229	select HAS_THUMB2
230	select SYS_ARM_MPU
231	select SYS_CACHE_SHIFT_5
232	select SYS_THUMB_BUILD
233	select THUMB2_KERNEL
234
235config CPU_V7R
236	bool
237	select HAS_THUMB2
238	select SYS_ARM_CACHE_CP15
239	select SYS_ARM_MPU
240	select SYS_CACHE_SHIFT_6
241
242config CPU_PXA
243	bool
244	select SYS_CACHE_SHIFT_5
245	imply SYS_ARM_MMU
246
247config CPU_SA1100
248	bool
249	select SYS_CACHE_SHIFT_5
250	imply SYS_ARM_MMU
251
252config SYS_CPU
253	default "arm720t" if CPU_ARM720T
254	default "arm920t" if CPU_ARM920T
255	default "arm926ejs" if CPU_ARM926EJS
256	default "arm946es" if CPU_ARM946ES
257	default "arm1136" if CPU_ARM1136
258	default "arm1176" if CPU_ARM1176
259	default "armv7" if CPU_V7A
260	default "armv7" if CPU_V7R
261	default "armv7m" if CPU_V7M
262	default "pxa" if CPU_PXA
263	default "sa1100" if CPU_SA1100
264	default "armv8" if ARM64
265
266config SYS_ARM_ARCH
267	int
268	default 4 if CPU_ARM720T
269	default 4 if CPU_ARM920T
270	default 5 if CPU_ARM926EJS
271	default 5 if CPU_ARM946ES
272	default 6 if CPU_ARM1136
273	default 6 if CPU_ARM1176
274	default 7 if CPU_V7A
275	default 7 if CPU_V7M
276	default 7 if CPU_V7R
277	default 5 if CPU_PXA
278	default 4 if CPU_SA1100
279	default 8 if ARM64
280
281config SYS_CACHE_SHIFT_5
282	bool
283
284config SYS_CACHE_SHIFT_6
285	bool
286
287config SYS_CACHE_SHIFT_7
288	bool
289
290config SYS_CACHELINE_SIZE
291	int
292	default 128 if SYS_CACHE_SHIFT_7
293	default 64 if SYS_CACHE_SHIFT_6
294	default 32 if SYS_CACHE_SHIFT_5
295
296config SYS_ARCH_TIMER
297	bool "ARM Generic Timer support"
298	depends on CPU_V7A || ARM64
299	default y if ARM64
300	help
301	  The ARM Generic Timer (aka arch-timer) provides an architected
302	  interface to a timer source on an SoC.
303	  It is mandantory for ARMv8 implementation and widely available
304	  on ARMv7 systems.
305
306config ARM_SMCCC
307	bool "Support for ARM SMC Calling Convention (SMCCC)"
308	depends on CPU_V7A || ARM64
309	select ARM_PSCI_FW
310	help
311	  Say Y here if you want to enable ARM SMC Calling Convention.
312	  This should be enabled if U-Boot needs to communicate with system
313	  firmware (for example, PSCI) according to SMCCC.
314
315config SEMIHOSTING
316	bool "support boot from semihosting"
317	help
318	  In emulated environments, semihosting is a way for
319	  the hosted environment to call out to the emulator to
320	  retrieve files from the host machine.
321
322config SYS_THUMB_BUILD
323	bool "Build U-Boot using the Thumb instruction set"
324	depends on !ARM64
325	help
326	   Use this flag to build U-Boot using the Thumb instruction set for
327	   ARM architectures. Thumb instruction set provides better code
328	   density. For ARM architectures that support Thumb2 this flag will
329	   result in Thumb2 code generated by GCC.
330
331config SPL_SYS_THUMB_BUILD
332	bool "Build SPL using the Thumb instruction set"
333	default y if SYS_THUMB_BUILD
334	depends on !ARM64
335	help
336	   Use this flag to build SPL using the Thumb instruction set for
337	   ARM architectures. Thumb instruction set provides better code
338	   density. For ARM architectures that support Thumb2 this flag will
339	   result in Thumb2 code generated by GCC.
340
341config SYS_L2CACHE_OFF
342	bool "L2cache off"
343	help
344	  If SoC does not support L2CACHE or one do not want to enable
345	  L2CACHE, choose this option.
346
347config ENABLE_ARM_SOC_BOOT0_HOOK
348	bool "prepare BOOT0 header"
349	help
350	  If the SoC's BOOT0 requires a header area filled with (magic)
351	  values, then choose this option, and create a file included as
352	  <asm/arch/boot0.h> which contains the required assembler code.
353
354config ARM_CORTEX_CPU_IS_UP
355	bool
356	default n
357
358config USE_ARCH_MEMCPY
359	bool "Use an assembly optimized implementation of memcpy"
360	default y
361	depends on !ARM64
362	help
363	  Enable the generation of an optimized version of memcpy.
364	  Such implementation may be faster under some conditions
365	  but may increase the binary size.
366
367config SPL_USE_ARCH_MEMCPY
368	bool "Use an assembly optimized implementation of memcpy for SPL"
369	default y if USE_ARCH_MEMCPY
370	depends on !ARM64
371	help
372	  Enable the generation of an optimized version of memcpy.
373	  Such implementation may be faster under some conditions
374	  but may increase the binary size.
375
376config USE_ARCH_MEMSET
377	bool "Use an assembly optimized implementation of memset"
378	default y
379	depends on !ARM64
380	help
381	  Enable the generation of an optimized version of memset.
382	  Such implementation may be faster under some conditions
383	  but may increase the binary size.
384
385config SPL_USE_ARCH_MEMSET
386	bool "Use an assembly optimized implementation of memset for SPL"
387	default y if USE_ARCH_MEMSET
388	depends on !ARM64
389	help
390	  Enable the generation of an optimized version of memset.
391	  Such implementation may be faster under some conditions
392	  but may increase the binary size.
393
394config ARM64_SUPPORT_AARCH32
395	bool "ARM64 system support AArch32 execution state"
396	default y if ARM64 && !TARGET_THUNDERX_88XX
397	help
398	  This ARM64 system supports AArch32 execution state.
399
400choice
401	prompt "Target select"
402	default TARGET_HIKEY
403
404config ARCH_AT91
405	bool "Atmel AT91"
406	select SPL_BOARD_INIT if SPL && !TARGET_SMARTWEB
407
408config TARGET_EDB93XX
409	bool "Support edb93xx"
410	select CPU_ARM920T
411	select PL010_SERIAL
412
413config TARGET_ASPENITE
414	bool "Support aspenite"
415	select CPU_ARM926EJS
416
417config TARGET_GPLUGD
418	bool "Support gplugd"
419	select CPU_ARM926EJS
420
421config ARCH_DAVINCI
422	bool "TI DaVinci"
423	select CPU_ARM926EJS
424	imply CMD_SAVES
425	help
426	  Support for TI's DaVinci platform.
427
428config KIRKWOOD
429	bool "Marvell Kirkwood"
430	select ARCH_MISC_INIT
431	select BOARD_EARLY_INIT_F
432	select CPU_ARM926EJS
433
434config ARCH_MVEBU
435	bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
436	select DM
437	select DM_ETH
438	select DM_SERIAL
439	select DM_SPI
440	select DM_SPI_FLASH
441	select OF_CONTROL
442	select OF_SEPARATE
443	select SPI
444	imply CMD_DM
445
446config TARGET_APF27
447	bool "Support apf27"
448	select CPU_ARM926EJS
449	select SUPPORT_SPL
450
451config ORION5X
452	bool "Marvell Orion"
453	select CPU_ARM926EJS
454
455config TARGET_SPEAR300
456	bool "Support spear300"
457	select BOARD_EARLY_INIT_F
458	select CPU_ARM926EJS
459	select PL011_SERIAL
460	imply CMD_SAVES
461
462config TARGET_SPEAR310
463	bool "Support spear310"
464	select BOARD_EARLY_INIT_F
465	select CPU_ARM926EJS
466	select PL011_SERIAL
467	imply CMD_SAVES
468
469config TARGET_SPEAR320
470	bool "Support spear320"
471	select BOARD_EARLY_INIT_F
472	select CPU_ARM926EJS
473	select PL011_SERIAL
474	imply CMD_SAVES
475
476config TARGET_SPEAR600
477	bool "Support spear600"
478	select BOARD_EARLY_INIT_F
479	select CPU_ARM926EJS
480	select PL011_SERIAL
481	imply CMD_SAVES
482
483config TARGET_STV0991
484	bool "Support stv0991"
485	select CPU_V7A
486	select DM
487	select DM_SERIAL
488	select DM_SPI
489	select DM_SPI_FLASH
490	select PL01X_SERIAL
491	select SPI
492	select SPI_FLASH
493	imply CMD_DM
494
495config TARGET_X600
496	bool "Support x600"
497	select BOARD_LATE_INIT
498	select CPU_ARM926EJS
499	select PL011_SERIAL
500	select SUPPORT_SPL
501
502config TARGET_WOODBURN
503	bool "Support woodburn"
504	select CPU_ARM1136
505
506config TARGET_WOODBURN_SD
507	bool "Support woodburn_sd"
508	select CPU_ARM1136
509	select SUPPORT_SPL
510
511config TARGET_FLEA3
512	bool "Support flea3"
513	select CPU_ARM1136
514
515config TARGET_MX35PDK
516	bool "Support mx35pdk"
517	select BOARD_LATE_INIT
518	select CPU_ARM1136
519
520config ARCH_BCM283X
521	bool "Broadcom BCM283X family"
522	select DM
523	select DM_GPIO
524	select DM_SERIAL
525	select OF_CONTROL
526	select PL01X_SERIAL
527	select SERIAL_SEARCH_ALL
528	imply CMD_DM
529	imply FAT_WRITE
530
531config ARCH_BCM6858
532	bool "Broadcom BCM6858 family"
533	select DM
534	select OF_CONTROL
535	imply CMD_DM
536
537config TARGET_VEXPRESS_CA15_TC2
538	bool "Support vexpress_ca15_tc2"
539	select CPU_V7A
540	select CPU_V7_HAS_NONSEC
541	select CPU_V7_HAS_VIRT
542	select PL011_SERIAL
543
544config ARCH_BCMSTB
545	bool "Broadcom BCM7XXX family"
546	select CPU_V7A
547	select DM
548	select OF_CONTROL
549	select OF_PRIOR_STAGE
550	imply CMD_DM
551	help
552	  This enables support for Broadcom ARM-based set-top box
553	  chipsets, including the 7445 family of chips.
554
555config TARGET_VEXPRESS_CA5X2
556	bool "Support vexpress_ca5x2"
557	select CPU_V7A
558	select PL011_SERIAL
559
560config TARGET_VEXPRESS_CA9X4
561	bool "Support vexpress_ca9x4"
562	select CPU_V7A
563	select PL011_SERIAL
564
565config TARGET_BCM23550_W1D
566	bool "Support bcm23550_w1d"
567	select CPU_V7A
568	imply CRC32_VERIFY
569	imply FAT_WRITE
570
571config TARGET_BCM28155_AP
572	bool "Support bcm28155_ap"
573	select CPU_V7A
574	imply CRC32_VERIFY
575	imply FAT_WRITE
576
577config TARGET_BCMCYGNUS
578	bool "Support bcmcygnus"
579	select CPU_V7A
580	imply BCM_SF2_ETH
581	imply BCM_SF2_ETH_GMAC
582	imply CMD_HASH
583	imply CRC32_VERIFY
584	imply FAT_WRITE
585	imply HASH_VERIFY
586	imply NETDEVICES
587
588config TARGET_BCMNSP
589	bool "Support bcmnsp"
590	select CPU_V7A
591
592config TARGET_BCMNS2
593	bool "Support Broadcom Northstar2"
594	select ARM64
595	help
596	  Support for Broadcom Northstar 2 SoCs.  NS2 is a quad-core 64-bit
597	  ARMv8 Cortex-A57 processors targeting a broad range of networking
598	  applications
599
600config ARCH_EXYNOS
601	bool "Samsung EXYNOS"
602	select DM
603	select DM_GPIO
604	select DM_I2C
605	select DM_KEYBOARD
606	select DM_SERIAL
607	select DM_SPI
608	select DM_SPI_FLASH
609	select SPI
610	imply CMD_DM
611	imply FAT_WRITE
612
613config ARCH_S5PC1XX
614	bool "Samsung S5PC1XX"
615	select CPU_V7A
616	select DM
617	select DM_GPIO
618	select DM_I2C
619	select DM_SERIAL
620	imply CMD_DM
621
622config ARCH_HIGHBANK
623	bool "Calxeda Highbank"
624	select CPU_V7A
625	select PL011_SERIAL
626
627config ARCH_INTEGRATOR
628	bool "ARM Ltd. Integrator family"
629	select DM
630	select DM_SERIAL
631	select PL01X_SERIAL
632	imply CMD_DM
633
634config ARCH_KEYSTONE
635	bool "TI Keystone"
636	select CMD_POWEROFF
637	select CPU_V7A
638	select SUPPORT_SPL
639	select SYS_ARCH_TIMER
640	select SYS_THUMB_BUILD
641	imply CMD_MTDPARTS
642	imply CMD_SAVES
643	imply FIT
644
645config ARCH_K3
646	bool "Texas Instruments' K3 Architecture"
647	select SPL
648	select SUPPORT_SPL
649	select FIT
650
651config ARCH_OMAP2PLUS
652	bool "TI OMAP2+"
653	select CPU_V7A
654	select SPL_BOARD_INIT if SPL
655	select SPL_STACK_R if SPL
656	select SUPPORT_SPL
657	imply FIT
658
659config ARCH_MESON
660	bool "Amlogic Meson"
661	imply DISTRO_DEFAULTS
662	help
663	  Support for the Meson SoC family developed by Amlogic Inc.,
664	  targeted at media players and tablet computers. We currently
665	  support the S905 (GXBaby) 64-bit SoC.
666
667config ARCH_MEDIATEK
668	bool "MediaTek SoCs"
669	select BINMAN
670	select DM
671	select OF_CONTROL
672	select SPL_DM if SPL
673	select SPL_LIBCOMMON_SUPPORT if SPL
674	select SPL_LIBGENERIC_SUPPORT if SPL
675	select SPL_OF_CONTROL if SPL
676	select SUPPORT_SPL
677	help
678	  Support for the MediaTek SoCs family developed by MediaTek Inc.
679	  Please refer to doc/README.mediatek for more information.
680
681config ARCH_LPC32XX
682	bool "NXP LPC32xx platform"
683	select CPU_ARM926EJS
684	select DM
685	select DM_GPIO
686	select DM_SERIAL
687	select SPL_DM if SPL
688	select SUPPORT_SPL
689	imply CMD_DM
690
691config ARCH_IMX8
692	bool "NXP i.MX8 platform"
693	select ARM64
694	select DM
695	select OF_CONTROL
696
697config ARCH_MX8M
698	bool "NXP i.MX8M platform"
699	select ARM64
700	select DM
701	select SUPPORT_SPL
702	imply CMD_DM
703
704config ARCH_MX23
705	bool "NXP i.MX23 family"
706	select CPU_ARM926EJS
707	select PL011_SERIAL
708	select SUPPORT_SPL
709
710config ARCH_MX25
711	bool "NXP MX25"
712	select CPU_ARM926EJS
713	imply MXC_GPIO
714
715config ARCH_MX28
716	bool "NXP i.MX28 family"
717	select CPU_ARM926EJS
718	select PL011_SERIAL
719	select SUPPORT_SPL
720
721config ARCH_MX31
722	bool "NXP i.MX31 family"
723	select CPU_ARM1136
724
725config ARCH_MX7ULP
726	bool "NXP MX7ULP"
727	select CPU_V7A
728	select ROM_UNIFIED_SECTIONS
729	imply MXC_GPIO
730
731config ARCH_MX7
732	bool "Freescale MX7"
733	select ARCH_MISC_INIT
734	select BOARD_EARLY_INIT_F
735	select CPU_V7A
736	select SYS_FSL_HAS_SEC if SECURE_BOOT
737	select SYS_FSL_SEC_COMPAT_4
738	select SYS_FSL_SEC_LE
739	imply MXC_GPIO
740
741config ARCH_MX6
742	bool "Freescale MX6"
743	select CPU_V7A
744	select SYS_FSL_HAS_SEC if SECURE_BOOT
745	select SYS_FSL_SEC_COMPAT_4
746	select SYS_FSL_SEC_LE
747	select SYS_THUMB_BUILD if SPL
748	imply MXC_GPIO
749
750if ARCH_MX6
751config SPL_LDSCRIPT
752	default "arch/arm/mach-omap2/u-boot-spl.lds"
753endif
754
755config ARCH_MX5
756	bool "Freescale MX5"
757	select BOARD_EARLY_INIT_F
758	select CPU_V7A
759	imply MXC_GPIO
760
761config ARCH_OWL
762	bool "Actions Semi OWL SoCs"
763	select ARM64
764	select DM
765	select DM_SERIAL
766	select OF_CONTROL
767	imply CMD_DM
768
769config ARCH_QEMU
770	bool "QEMU Virtual Platform"
771	select DM
772	select DM_SERIAL
773	select OF_CONTROL
774	select PL01X_SERIAL
775	imply CMD_DM
776	imply DM_RTC
777	imply RTC_PL031
778
779config ARCH_RMOBILE
780	bool "Renesas ARM SoCs"
781	select BOARD_EARLY_INIT_F
782	select DM
783	select DM_SERIAL
784	imply CMD_DM
785	imply FAT_WRITE
786	imply SYS_THUMB_BUILD
787	imply ARCH_MISC_INIT if DISPLAY_CPUINFO
788
789config TARGET_S32V234EVB
790	bool "Support s32v234evb"
791	select ARM64
792	select SYS_FSL_ERRATUM_ESDHC111
793
794config ARCH_SNAPDRAGON
795	bool "Qualcomm Snapdragon SoCs"
796	select ARM64
797	select DM
798	select DM_GPIO
799	select DM_SERIAL
800	select MSM_SMEM
801	select OF_CONTROL
802	select OF_SEPARATE
803	select SMEM
804	select SPMI
805	imply CMD_DM
806
807config ARCH_SOCFPGA
808	bool "Altera SOCFPGA family"
809	select ARCH_EARLY_INIT_R
810	select ARCH_MISC_INIT if !TARGET_SOCFPGA_ARRIA10
811	select ARM64 if TARGET_SOCFPGA_STRATIX10
812	select CPU_V7A if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
813	select DM
814	select DM_SERIAL
815	select ENABLE_ARM_SOC_BOOT0_HOOK if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
816	select OF_CONTROL
817	select SPL_DM_RESET if DM_RESET
818	select SPL_DM_SERIAL
819	select SPL_LIBCOMMON_SUPPORT
820	select SPL_LIBDISK_SUPPORT
821	select SPL_LIBGENERIC_SUPPORT
822	select SPL_MMC_SUPPORT if DM_MMC
823	select SPL_NAND_SUPPORT if SPL_NAND_DENALI
824	select SPL_OF_CONTROL
825	select SPL_SEPARATE_BSS if TARGET_SOCFPGA_STRATIX10
826	select SPL_SERIAL_SUPPORT
827	select SPL_SPI_FLASH_SUPPORT if SPL_SPI_SUPPORT
828	select SPL_SPI_SUPPORT if DM_SPI
829	select SPL_WATCHDOG_SUPPORT
830	select SUPPORT_SPL
831	select SYS_NS16550
832	select SYS_THUMB_BUILD if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
833	imply CMD_DM
834	imply CMD_MTDPARTS
835	imply CRC32_VERIFY
836	imply DM_SPI
837	imply DM_SPI_FLASH
838	imply FAT_WRITE
839	imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
840	imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
841
842config ARCH_SUNXI
843	bool "Support sunxi (Allwinner) SoCs"
844	select BINMAN
845	select CMD_GPIO
846	select CMD_MMC if MMC
847	select CMD_USB if DISTRO_DEFAULTS
848	select DM
849	select DM_ETH
850	select DM_GPIO
851	select DM_KEYBOARD
852	select DM_SERIAL
853	select DM_USB if DISTRO_DEFAULTS
854	select OF_BOARD_SETUP
855	select OF_CONTROL
856	select OF_SEPARATE
857	select SPECIFY_CONSOLE_INDEX
858	select SPL_STACK_R if SPL
859	select SPL_SYS_MALLOC_SIMPLE if SPL
860	select SPL_SYS_THUMB_BUILD if !ARM64
861	select SYS_NS16550
862	select SYS_THUMB_BUILD if !ARM64
863	select USB if DISTRO_DEFAULTS
864	select USB_KEYBOARD if DISTRO_DEFAULTS
865	select USB_STORAGE if DISTRO_DEFAULTS
866	select USE_TINY_PRINTF
867	imply CMD_DM
868	imply CMD_GPT
869	imply CMD_UBI if NAND
870	imply DISTRO_DEFAULTS
871	imply FAT_WRITE
872	imply FIT
873	imply OF_LIBFDT_OVERLAY
874	imply PRE_CONSOLE_BUFFER
875	imply SPL_GPIO_SUPPORT
876	imply SPL_LIBCOMMON_SUPPORT
877	imply SPL_LIBDISK_SUPPORT
878	imply SPL_LIBGENERIC_SUPPORT
879	imply SPL_MMC_SUPPORT if MMC
880	imply SPL_POWER_SUPPORT
881	imply SPL_SERIAL_SUPPORT
882	imply USB_GADGET
883
884config ARCH_VERSAL
885	bool "Support Xilinx Versal Platform"
886	select ARM64
887	select CLK
888	select DM
889	select DM_SERIAL
890	select OF_CONTROL
891
892config ARCH_VF610
893	bool "Freescale Vybrid"
894	select CPU_V7A
895	select SYS_FSL_ERRATUM_ESDHC111
896	imply CMD_MTDPARTS
897	imply NAND
898
899config ARCH_ZYNQ
900	bool "Xilinx Zynq based platform"
901	select BOARD_EARLY_INIT_F if WDT
902	select CLK
903	select CLK_ZYNQ
904	select CPU_V7A
905	select DM
906	select DM_ETH if NET
907	select DM_MMC if MMC
908	select DM_SERIAL
909	select DM_SPI
910	select DM_SPI_FLASH
911	select DM_USB if USB
912	select OF_CONTROL
913	select SPI
914	select SPL_BOARD_INIT if SPL
915	select SPL_CLK if SPL
916	select SPL_DM if SPL
917	select SPL_OF_CONTROL if SPL
918	select SPL_SEPARATE_BSS if SPL
919	select SUPPORT_SPL
920	imply ARCH_EARLY_INIT_R
921	imply BOARD_LATE_INIT
922	imply CMD_CLK
923	imply CMD_DM
924	imply CMD_SPL
925	imply FAT_WRITE
926
927config ARCH_ZYNQMP_R5
928	bool "Xilinx ZynqMP R5 based platform"
929	select CLK
930	select CPU_V7R
931	select DM
932	select DM_SERIAL
933	select OF_CONTROL
934	imply CMD_DM
935
936config ARCH_ZYNQMP
937	bool "Xilinx ZynqMP based platform"
938	select ARM64
939	select CLK
940	select DM
941	select DM_SERIAL
942	select DM_USB if USB
943	select OF_CONTROL
944	select SPL_BOARD_INIT if SPL
945	select SPL_CLK if SPL
946	select SPL_SEPARATE_BSS if SPL
947	select SUPPORT_SPL
948	imply BOARD_LATE_INIT
949	imply CMD_DM
950	imply FAT_WRITE
951	imply MP
952
953config TEGRA
954	bool "NVIDIA Tegra"
955	imply DISTRO_DEFAULTS
956	imply FAT_WRITE
957
958config TARGET_VEXPRESS64_AEMV8A
959	bool "Support vexpress_aemv8a"
960	select ARM64
961	select PL01X_SERIAL
962
963config TARGET_VEXPRESS64_BASE_FVP
964	bool "Support Versatile Express ARMv8a FVP BASE model"
965	select ARM64
966	select PL01X_SERIAL
967	select SEMIHOSTING
968
969config TARGET_VEXPRESS64_BASE_FVP_DRAM
970	bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
971	select ARM64
972	select PL01X_SERIAL
973	help
974	  This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
975	  the default config to allow the user to load the images directly into
976	  DRAM using model parameters rather than by using semi-hosting to load
977	  the files from the host filesystem.
978
979config TARGET_VEXPRESS64_JUNO
980	bool "Support Versatile Express Juno Development Platform"
981	select ARM64
982	select PL01X_SERIAL
983
984config TARGET_LS2080A_EMU
985	bool "Support ls2080a_emu"
986	select ARCH_LS2080A
987	select ARCH_MISC_INIT
988	select ARM64
989	select ARMV8_MULTIENTRY
990	help
991	  Support for Freescale LS2080A_EMU platform
992	  The LS2080A Development System (EMULATOR) is a pre silicon
993	  development platform that supports the QorIQ LS2080A
994	  Layerscape Architecture processor.
995
996config TARGET_LS2080A_SIMU
997	bool "Support ls2080a_simu"
998	select ARCH_LS2080A
999	select ARCH_MISC_INIT
1000	select ARM64
1001	select ARMV8_MULTIENTRY
1002	help
1003	  Support for Freescale LS2080A_SIMU platform
1004	  The LS2080A Development System (QDS) is a pre silicon
1005	  development platform that supports the QorIQ LS2080A
1006	  Layerscape Architecture processor.
1007
1008config TARGET_LS1088AQDS
1009	bool "Support ls1088aqds"
1010	select ARCH_LS1088A
1011	select ARCH_MISC_INIT
1012	select ARM64
1013	select ARMV8_MULTIENTRY
1014	select BOARD_LATE_INIT
1015	select SUPPORT_SPL
1016	help
1017	  Support for NXP LS1088AQDS platform
1018	  The LS1088A Development System (QDS) is a high-performance
1019	  development platform that supports the QorIQ LS1088A
1020	  Layerscape Architecture processor.
1021
1022config TARGET_LS2080AQDS
1023	bool "Support ls2080aqds"
1024	select ARCH_LS2080A
1025	select ARCH_MISC_INIT
1026	select ARM64
1027	select ARMV8_MULTIENTRY
1028	select BOARD_LATE_INIT
1029	select SUPPORT_SPL
1030	imply SCSI
1031	imply SCSI_AHCI
1032	help
1033	  Support for Freescale LS2080AQDS platform
1034	  The LS2080A Development System (QDS) is a high-performance
1035	  development platform that supports the QorIQ LS2080A
1036	  Layerscape Architecture processor.
1037
1038config TARGET_LS2080ARDB
1039	bool "Support ls2080ardb"
1040	select ARCH_LS2080A
1041	select ARCH_MISC_INIT
1042	select ARM64
1043	select ARMV8_MULTIENTRY
1044	select BOARD_LATE_INIT
1045	select SUPPORT_SPL
1046	imply SCSI
1047	imply SCSI_AHCI
1048	help
1049	  Support for Freescale LS2080ARDB platform.
1050	  The LS2080A Reference design board (RDB) is a high-performance
1051	  development platform that supports the QorIQ LS2080A
1052	  Layerscape Architecture processor.
1053
1054config TARGET_LS2081ARDB
1055	bool "Support ls2081ardb"
1056	select ARCH_LS2080A
1057	select ARCH_MISC_INIT
1058	select ARM64
1059	select ARMV8_MULTIENTRY
1060	select BOARD_LATE_INIT
1061	select SUPPORT_SPL
1062	help
1063	  Support for Freescale LS2081ARDB platform.
1064	  The LS2081A Reference design board (RDB) is a high-performance
1065	  development platform that supports the QorIQ LS2081A/LS2041A
1066	  Layerscape Architecture processor.
1067
1068config TARGET_HIKEY
1069	bool "Support HiKey 96boards Consumer Edition Platform"
1070	select ARM64
1071	select DM
1072	select DM_GPIO
1073	select DM_SERIAL
1074	select OF_CONTROL
1075	select PL01X_SERIAL
1076	select SPECIFY_CONSOLE_INDEX
1077	imply CMD_DM
1078	  help
1079	  Support for HiKey 96boards platform. It features a HI6220
1080	  SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
1081
1082config TARGET_POPLAR
1083	bool "Support Poplar 96boards Enterprise Edition Platform"
1084	select ARM64
1085	select DM
1086	select DM_SERIAL
1087	select DM_USB
1088	select OF_CONTROL
1089	select PL01X_SERIAL
1090	imply CMD_DM
1091	  help
1092	  Support for Poplar 96boards EE platform. It features a HI3798cv200
1093	  SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
1094	  making it capable of running any commercial set-top solution based on
1095	  Linux or Android.
1096
1097config TARGET_LS1012AQDS
1098	bool "Support ls1012aqds"
1099	select ARCH_LS1012A
1100	select ARM64
1101	select BOARD_LATE_INIT
1102	help
1103	  Support for Freescale LS1012AQDS platform.
1104	  The LS1012A Development System (QDS) is a high-performance
1105	  development platform that supports the QorIQ LS1012A
1106	  Layerscape Architecture processor.
1107
1108config TARGET_LS1012ARDB
1109	bool "Support ls1012ardb"
1110	select ARCH_LS1012A
1111	select ARM64
1112	select BOARD_LATE_INIT
1113	imply SCSI
1114	imply SCSI_AHCI
1115	help
1116	  Support for Freescale LS1012ARDB platform.
1117	  The LS1012A Reference design board (RDB) is a high-performance
1118	  development platform that supports the QorIQ LS1012A
1119	  Layerscape Architecture processor.
1120
1121config TARGET_LS1012A2G5RDB
1122	bool "Support ls1012a2g5rdb"
1123	select ARCH_LS1012A
1124	select ARM64
1125	select BOARD_LATE_INIT
1126	imply SCSI
1127	help
1128	  Support for Freescale LS1012A2G5RDB platform.
1129	  The LS1012A 2G5 Reference design board (RDB) is a high-performance
1130	  development platform that supports the QorIQ LS1012A
1131	  Layerscape Architecture processor.
1132
1133config TARGET_LS1012AFRWY
1134	bool "Support ls1012afrwy"
1135	select ARCH_LS1012A
1136	select ARM64
1137	select BOARD_LATE_INIT
1138	imply SCSI
1139	imply SCSI_AHCI
1140	help
1141	 Support for Freescale LS1012AFRWY platform.
1142	 The LS1012A FRWY board (FRWY) is a high-performance
1143	 development platform that supports the QorIQ LS1012A
1144	 Layerscape Architecture processor.
1145
1146config TARGET_LS1012AFRDM
1147	bool "Support ls1012afrdm"
1148	select ARCH_LS1012A
1149	select ARM64
1150	help
1151	  Support for Freescale LS1012AFRDM platform.
1152	  The LS1012A Freedom  board (FRDM) is a high-performance
1153	  development platform that supports the QorIQ LS1012A
1154	  Layerscape Architecture processor.
1155
1156config TARGET_LS1088ARDB
1157	bool "Support ls1088ardb"
1158	select ARCH_LS1088A
1159	select ARCH_MISC_INIT
1160	select ARM64
1161	select ARMV8_MULTIENTRY
1162	select BOARD_LATE_INIT
1163	select SUPPORT_SPL
1164	help
1165	  Support for NXP LS1088ARDB platform.
1166	  The LS1088A Reference design board (RDB) is a high-performance
1167	  development platform that supports the QorIQ LS1088A
1168	  Layerscape Architecture processor.
1169
1170config TARGET_LS1021AQDS
1171	bool "Support ls1021aqds"
1172	select ARCH_LS1021A
1173	select ARCH_SUPPORT_PSCI
1174	select BOARD_EARLY_INIT_F
1175	select BOARD_LATE_INIT
1176	select CPU_V7A
1177	select CPU_V7_HAS_NONSEC
1178	select CPU_V7_HAS_VIRT
1179	select LS1_DEEP_SLEEP
1180	select SUPPORT_SPL
1181	select SYS_FSL_DDR
1182	imply SCSI
1183
1184config TARGET_LS1021ATWR
1185	bool "Support ls1021atwr"
1186	select ARCH_LS1021A
1187	select ARCH_SUPPORT_PSCI
1188	select BOARD_EARLY_INIT_F
1189	select BOARD_LATE_INIT
1190	select CPU_V7A
1191	select CPU_V7_HAS_NONSEC
1192	select CPU_V7_HAS_VIRT
1193	select LS1_DEEP_SLEEP
1194	select SUPPORT_SPL
1195	imply SCSI
1196
1197config TARGET_LS1021AIOT
1198	bool "Support ls1021aiot"
1199	select ARCH_LS1021A
1200	select ARCH_SUPPORT_PSCI
1201	select BOARD_LATE_INIT
1202	select CPU_V7A
1203	select CPU_V7_HAS_NONSEC
1204	select CPU_V7_HAS_VIRT
1205	select SUPPORT_SPL
1206	imply SCSI
1207	help
1208	  Support for Freescale LS1021AIOT platform.
1209	  The LS1021A Freescale board (IOT) is a high-performance
1210	  development platform that supports the QorIQ LS1021A
1211	  Layerscape Architecture processor.
1212
1213config TARGET_LS1043AQDS
1214	bool "Support ls1043aqds"
1215	select ARCH_LS1043A
1216	select ARM64
1217	select ARMV8_MULTIENTRY
1218	select BOARD_EARLY_INIT_F
1219	select BOARD_LATE_INIT
1220	select SUPPORT_SPL
1221	imply SCSI
1222	help
1223	  Support for Freescale LS1043AQDS platform.
1224
1225config TARGET_LS1043ARDB
1226	bool "Support ls1043ardb"
1227	select ARCH_LS1043A
1228	select ARM64
1229	select ARMV8_MULTIENTRY
1230	select BOARD_EARLY_INIT_F
1231	select BOARD_LATE_INIT
1232	select SUPPORT_SPL
1233	imply SCSI
1234	help
1235	  Support for Freescale LS1043ARDB platform.
1236
1237config TARGET_LS1046AQDS
1238	bool "Support ls1046aqds"
1239	select ARCH_LS1046A
1240	select ARM64
1241	select ARMV8_MULTIENTRY
1242	select BOARD_EARLY_INIT_F
1243	select BOARD_LATE_INIT
1244	select DM_SPI_FLASH if DM_SPI
1245	select SUPPORT_SPL
1246	imply SCSI
1247	help
1248	  Support for Freescale LS1046AQDS platform.
1249	  The LS1046A Development System (QDS) is a high-performance
1250	  development platform that supports the QorIQ LS1046A
1251	  Layerscape Architecture processor.
1252
1253config TARGET_LS1046ARDB
1254	bool "Support ls1046ardb"
1255	select ARCH_LS1046A
1256	select ARM64
1257	select ARMV8_MULTIENTRY
1258	select BOARD_EARLY_INIT_F
1259	select BOARD_LATE_INIT
1260	select DM_SPI_FLASH if DM_SPI
1261	select POWER_MC34VR500
1262	select SUPPORT_SPL
1263	imply SCSI
1264	help
1265	  Support for Freescale LS1046ARDB platform.
1266	  The LS1046A Reference Design Board (RDB) is a high-performance
1267	  development platform that supports the QorIQ LS1046A
1268	  Layerscape Architecture processor.
1269
1270config TARGET_H2200
1271	bool "Support h2200"
1272	select CPU_PXA
1273
1274config TARGET_ZIPITZ2
1275	bool "Support zipitz2"
1276	select CPU_PXA
1277
1278config TARGET_COLIBRI_PXA270
1279	bool "Support colibri_pxa270"
1280	select CPU_PXA
1281
1282config ARCH_UNIPHIER
1283	bool "Socionext UniPhier SoCs"
1284	select BOARD_LATE_INIT
1285	select DM
1286	select DM_GPIO
1287	select DM_I2C
1288	select DM_MMC
1289	select DM_RESET
1290	select DM_SERIAL
1291	select DM_USB
1292	select OF_BOARD_SETUP
1293	select OF_CONTROL
1294	select OF_LIBFDT
1295	select PINCTRL
1296	select SPL_BOARD_INIT if SPL
1297	select SPL_DM if SPL
1298	select SPL_LIBCOMMON_SUPPORT if SPL
1299	select SPL_LIBGENERIC_SUPPORT if SPL
1300	select SPL_OF_CONTROL if SPL
1301	select SPL_PINCTRL if SPL
1302	select SUPPORT_SPL
1303	imply CMD_DM
1304	imply DISTRO_DEFAULTS
1305	imply FAT_WRITE
1306	help
1307	  Support for UniPhier SoC family developed by Socionext Inc.
1308	  (formerly, System LSI Business Division of Panasonic Corporation)
1309
1310config STM32
1311	bool "Support STMicroelectronics STM32 MCU with cortex M"
1312	select CPU_V7M
1313	select DM
1314	select DM_SERIAL
1315	imply CMD_DM
1316
1317config ARCH_STI
1318	bool "Support STMicrolectronics SoCs"
1319	select BLK
1320	select CPU_V7A
1321	select DM
1322	select DM_MMC
1323	select DM_RESET
1324	select DM_SERIAL
1325	imply CMD_DM
1326	help
1327	  Support for STMicroelectronics STiH407/10 SoC family.
1328	  This SoC is used on Linaro 96Board STiH410-B2260
1329
1330config ARCH_STM32MP
1331	bool "Support STMicroelectronics STM32MP Socs with cortex A"
1332	select ARCH_MISC_INIT
1333	select BOARD_LATE_INIT
1334	select CLK
1335	select DM
1336	select DM_GPIO
1337	select DM_RESET
1338	select DM_SERIAL
1339	select MISC
1340	select OF_CONTROL
1341	select OF_LIBFDT
1342	select PINCTRL
1343	select REGMAP
1344	select SUPPORT_SPL
1345	select SYSCON
1346	select SYSRESET
1347	select SYS_THUMB_BUILD
1348	imply CMD_DM
1349	help
1350	  Support for STM32MP SoC family developed by STMicroelectronics,
1351	  MPUs based on ARM cortex A core
1352	  U-BOOT is running in DDR and SPL support is the unsecure First Stage
1353	  BootLoader (FSBL)
1354
1355config ARCH_ROCKCHIP
1356	bool "Support Rockchip SoCs"
1357	select BLK
1358	select DM
1359	select DM_GPIO
1360	select DM_I2C
1361	select DM_MMC
1362	select DM_PWM
1363	select DM_REGULATOR
1364	select DM_SERIAL
1365	select DM_SPI
1366	select DM_SPI_FLASH
1367	select DM_USB if USB
1368	select ENABLE_ARM_SOC_BOOT0_HOOK
1369	select OF_CONTROL
1370	select SPI
1371	select SPL_DM if SPL
1372	select SPL_SYS_MALLOC_SIMPLE if SPL
1373	select SYS_MALLOC_F
1374	select SYS_THUMB_BUILD if !ARM64
1375	imply ADC
1376	imply CMD_DM
1377	imply DISTRO_DEFAULTS
1378	imply FAT_WRITE
1379	imply SARADC_ROCKCHIP
1380	imply SPL_SYSRESET
1381	imply SYS_NS16550
1382	imply TPL_SYSRESET
1383	imply USB_FUNCTION_FASTBOOT
1384
1385config TARGET_THUNDERX_88XX
1386	bool "Support ThunderX 88xx"
1387	select ARM64
1388	select OF_CONTROL
1389	select PL01X_SERIAL
1390	select SYS_CACHE_SHIFT_7
1391
1392config ARCH_ASPEED
1393	bool "Support Aspeed SoCs"
1394	select DM
1395	select OF_CONTROL
1396	imply CMD_DM
1397
1398endchoice
1399
1400config TI_SECURE_DEVICE
1401	bool "HS Device Type Support"
1402	depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS
1403	help
1404	  If a high secure (HS) device type is being used, this config
1405	  must be set. This option impacts various aspects of the
1406	  build system (to create signed boot images that can be
1407	  authenticated) and the code. See the doc/README.ti-secure
1408	  file for further details.
1409
1410source "arch/arm/mach-aspeed/Kconfig"
1411
1412source "arch/arm/mach-at91/Kconfig"
1413
1414source "arch/arm/mach-bcm283x/Kconfig"
1415
1416source "arch/arm/mach-bcmstb/Kconfig"
1417
1418source "arch/arm/mach-davinci/Kconfig"
1419
1420source "arch/arm/mach-exynos/Kconfig"
1421
1422source "arch/arm/mach-highbank/Kconfig"
1423
1424source "arch/arm/mach-integrator/Kconfig"
1425
1426source "arch/arm/mach-k3/Kconfig"
1427
1428source "arch/arm/mach-keystone/Kconfig"
1429
1430source "arch/arm/mach-kirkwood/Kconfig"
1431
1432source "arch/arm/cpu/arm926ejs/lpc32xx/Kconfig"
1433
1434source "arch/arm/mach-mvebu/Kconfig"
1435
1436source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1437
1438source "arch/arm/mach-imx/mx2/Kconfig"
1439
1440source "arch/arm/mach-imx/mx3/Kconfig"
1441
1442source "arch/arm/mach-imx/mx5/Kconfig"
1443
1444source "arch/arm/mach-imx/mx6/Kconfig"
1445
1446source "arch/arm/mach-imx/mx7/Kconfig"
1447
1448source "arch/arm/mach-imx/mx7ulp/Kconfig"
1449
1450source "arch/arm/mach-imx/imx8/Kconfig"
1451
1452source "arch/arm/mach-imx/mx8m/Kconfig"
1453
1454source "arch/arm/mach-imx/mxs/Kconfig"
1455
1456source "arch/arm/mach-omap2/Kconfig"
1457
1458source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1459
1460source "arch/arm/mach-orion5x/Kconfig"
1461
1462source "arch/arm/mach-owl/Kconfig"
1463
1464source "arch/arm/mach-rmobile/Kconfig"
1465
1466source "arch/arm/mach-meson/Kconfig"
1467
1468source "arch/arm/mach-mediatek/Kconfig"
1469
1470source "arch/arm/mach-qemu/Kconfig"
1471
1472source "arch/arm/mach-rockchip/Kconfig"
1473
1474source "arch/arm/mach-s5pc1xx/Kconfig"
1475
1476source "arch/arm/mach-snapdragon/Kconfig"
1477
1478source "arch/arm/mach-socfpga/Kconfig"
1479
1480source "arch/arm/mach-sti/Kconfig"
1481
1482source "arch/arm/mach-stm32/Kconfig"
1483
1484source "arch/arm/mach-stm32mp/Kconfig"
1485
1486source "arch/arm/mach-sunxi/Kconfig"
1487
1488source "arch/arm/mach-tegra/Kconfig"
1489
1490source "arch/arm/mach-uniphier/Kconfig"
1491
1492source "arch/arm/cpu/armv7/vf610/Kconfig"
1493
1494source "arch/arm/mach-zynq/Kconfig"
1495
1496source "arch/arm/mach-versal/Kconfig"
1497
1498source "arch/arm/mach-zynqmp-r5/Kconfig"
1499
1500source "arch/arm/cpu/armv7/Kconfig"
1501
1502source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1503
1504source "arch/arm/cpu/armv8/Kconfig"
1505
1506source "arch/arm/mach-imx/Kconfig"
1507
1508source "board/bosch/shc/Kconfig"
1509source "board/CarMediaLab/flea3/Kconfig"
1510source "board/Marvell/aspenite/Kconfig"
1511source "board/Marvell/gplugd/Kconfig"
1512source "board/armadeus/apf27/Kconfig"
1513source "board/armltd/vexpress/Kconfig"
1514source "board/armltd/vexpress64/Kconfig"
1515source "board/broadcom/bcm23550_w1d/Kconfig"
1516source "board/broadcom/bcm28155_ap/Kconfig"
1517source "board/broadcom/bcm968580xref/Kconfig"
1518source "board/broadcom/bcmcygnus/Kconfig"
1519source "board/broadcom/bcmnsp/Kconfig"
1520source "board/broadcom/bcmns2/Kconfig"
1521source "board/cavium/thunderx/Kconfig"
1522source "board/cirrus/edb93xx/Kconfig"
1523source "board/eets/pdu001/Kconfig"
1524source "board/emulation/qemu-arm/Kconfig"
1525source "board/freescale/ls2080a/Kconfig"
1526source "board/freescale/ls2080aqds/Kconfig"
1527source "board/freescale/ls2080ardb/Kconfig"
1528source "board/freescale/ls1088a/Kconfig"
1529source "board/freescale/ls1021aqds/Kconfig"
1530source "board/freescale/ls1043aqds/Kconfig"
1531source "board/freescale/ls1021atwr/Kconfig"
1532source "board/freescale/ls1021aiot/Kconfig"
1533source "board/freescale/ls1046aqds/Kconfig"
1534source "board/freescale/ls1043ardb/Kconfig"
1535source "board/freescale/ls1046ardb/Kconfig"
1536source "board/freescale/ls1012aqds/Kconfig"
1537source "board/freescale/ls1012ardb/Kconfig"
1538source "board/freescale/ls1012afrdm/Kconfig"
1539source "board/freescale/mx35pdk/Kconfig"
1540source "board/freescale/s32v234evb/Kconfig"
1541source "board/grinn/chiliboard/Kconfig"
1542source "board/gumstix/pepper/Kconfig"
1543source "board/h2200/Kconfig"
1544source "board/hisilicon/hikey/Kconfig"
1545source "board/hisilicon/poplar/Kconfig"
1546source "board/isee/igep003x/Kconfig"
1547source "board/phytec/pcm051/Kconfig"
1548source "board/silica/pengwyn/Kconfig"
1549source "board/spear/spear300/Kconfig"
1550source "board/spear/spear310/Kconfig"
1551source "board/spear/spear320/Kconfig"
1552source "board/spear/spear600/Kconfig"
1553source "board/spear/x600/Kconfig"
1554source "board/st/stv0991/Kconfig"
1555source "board/tcl/sl50/Kconfig"
1556source "board/ucRobotics/bubblegum_96/Kconfig"
1557source "board/birdland/bav335x/Kconfig"
1558source "board/toradex/colibri_pxa270/Kconfig"
1559source "board/vscom/baltos/Kconfig"
1560source "board/woodburn/Kconfig"
1561source "board/xilinx/Kconfig"
1562source "board/xilinx/zynq/Kconfig"
1563source "board/xilinx/zynqmp/Kconfig"
1564source "board/zipitz2/Kconfig"
1565
1566source "arch/arm/Kconfig.debug"
1567
1568endmenu
1569
1570config SPL_LDSCRIPT
1571	default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if (ARCH_MX23 || ARCH_MX28) && !SPL_FRAMEWORK
1572	default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
1573	default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1574
1575
1576