exynos: imply SYS_THUMB_BUILD
[oweals/u-boot.git] / 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         select PHYS_64BIT
10         select SYS_CACHE_SHIFT_6
11
12 if ARM64
13 config 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
23 config 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
36 config 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
45 if LINUX_KERNEL_IMAGE_HEADER
46 config 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.
51 endif
52 endif
53
54 config STATIC_RELA
55         bool
56         default y if ARM64 && !POSITION_INDEPENDENT
57
58 config DMA_ADDR_T_64BIT
59         bool
60         default y if ARM64
61
62 config HAS_VBAR
63         bool
64
65 config HAS_THUMB2
66         bool
67
68 # Used for compatibility with asm files copied from the kernel
69 config ARM_ASM_UNIFIED
70         bool
71         default y
72
73 # Used for compatibility with asm files copied from the kernel
74 config THUMB2_KERNEL
75         bool
76
77 config 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
83 config 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
90 config 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
114 config ARM_ERRATA_430973
115         bool
116
117 config ARM_ERRATA_454179
118         bool
119
120 config ARM_ERRATA_621766
121         bool
122
123 config ARM_ERRATA_716044
124         bool
125
126 config ARM_ERRATA_725233
127         bool
128
129 config ARM_ERRATA_742230
130         bool
131
132 config ARM_ERRATA_743622
133         bool
134
135 config ARM_ERRATA_751472
136         bool
137
138 config ARM_ERRATA_761320
139         bool
140
141 config ARM_ERRATA_773022
142         bool
143
144 config ARM_ERRATA_774769
145         bool
146
147 config ARM_ERRATA_794072
148         bool
149
150 config ARM_ERRATA_798870
151         bool
152
153 config ARM_ERRATA_801819
154         bool
155
156 config ARM_ERRATA_826974
157         bool
158
159 config ARM_ERRATA_828024
160         bool
161
162 config ARM_ERRATA_829520
163         bool
164
165 config ARM_ERRATA_833069
166         bool
167
168 config ARM_ERRATA_833471
169         bool
170
171 config ARM_ERRATA_845369
172         bool
173
174 config ARM_ERRATA_852421
175         bool
176
177 config ARM_ERRATA_852423
178         bool
179
180 config ARM_ERRATA_855873
181         bool
182
183 config ARM_CORTEX_A8_CVE_2017_5715
184         bool
185
186 config ARM_CORTEX_A15_CVE_2017_5715
187         bool
188
189 config CPU_ARM720T
190         bool
191         select SYS_CACHE_SHIFT_5
192         imply SYS_ARM_MMU
193
194 config CPU_ARM920T
195         bool
196         select SYS_CACHE_SHIFT_5
197         imply SYS_ARM_MMU
198
199 config CPU_ARM926EJS
200         bool
201         select SYS_CACHE_SHIFT_5
202         imply SYS_ARM_MMU
203
204 config CPU_ARM946ES
205         bool
206         select SYS_CACHE_SHIFT_5
207         imply SYS_ARM_MMU
208
209 config CPU_ARM1136
210         bool
211         select SYS_CACHE_SHIFT_5
212         imply SYS_ARM_MMU
213
214 config CPU_ARM1176
215         bool
216         select HAS_VBAR
217         select SYS_CACHE_SHIFT_5
218         imply SYS_ARM_MMU
219
220 config CPU_V7A
221         bool
222         select HAS_THUMB2
223         select HAS_VBAR
224         select SYS_CACHE_SHIFT_6
225         imply SYS_ARM_MMU
226
227 config 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
235 config 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
242 config CPU_PXA
243         bool
244         select SYS_CACHE_SHIFT_5
245         imply SYS_ARM_MMU
246
247 config CPU_SA1100
248         bool
249         select SYS_CACHE_SHIFT_5
250         imply SYS_ARM_MMU
251
252 config 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
266 config 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
281 config SYS_CACHE_SHIFT_5
282         bool
283
284 config SYS_CACHE_SHIFT_6
285         bool
286
287 config SYS_CACHE_SHIFT_7
288         bool
289
290 config 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
296 config 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
306 config 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
315 config 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
322 config 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
331 config 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
341 config 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
347 config 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
354 config ARM_CORTEX_CPU_IS_UP
355         bool
356         default n
357
358 config 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
367 config 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
376 config 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
385 config 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
394 config 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
400 choice
401         prompt "Target select"
402         default TARGET_HIKEY
403
404 config ARCH_AT91
405         bool "Atmel AT91"
406         select SPL_BOARD_INIT if SPL && !TARGET_SMARTWEB
407
408 config TARGET_EDB93XX
409         bool "Support edb93xx"
410         select CPU_ARM920T
411         select PL010_SERIAL
412
413 config TARGET_ASPENITE
414         bool "Support aspenite"
415         select CPU_ARM926EJS
416
417 config TARGET_GPLUGD
418         bool "Support gplugd"
419         select CPU_ARM926EJS
420
421 config ARCH_DAVINCI
422         bool "TI DaVinci"
423         select CPU_ARM926EJS
424         imply CMD_SAVES
425         help
426           Support for TI's DaVinci platform.
427
428 config KIRKWOOD
429         bool "Marvell Kirkwood"
430         select ARCH_MISC_INIT
431         select BOARD_EARLY_INIT_F
432         select CPU_ARM926EJS
433
434 config 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
446 config TARGET_APF27
447         bool "Support apf27"
448         select CPU_ARM926EJS
449         select SUPPORT_SPL
450
451 config ORION5X
452         bool "Marvell Orion"
453         select CPU_ARM926EJS
454
455 config 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
462 config 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
469 config 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
476 config 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
483 config 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
495 config TARGET_X600
496         bool "Support x600"
497         select BOARD_LATE_INIT
498         select CPU_ARM926EJS
499         select PL011_SERIAL
500         select SUPPORT_SPL
501
502 config TARGET_WOODBURN
503         bool "Support woodburn"
504         select CPU_ARM1136
505
506 config TARGET_WOODBURN_SD
507         bool "Support woodburn_sd"
508         select CPU_ARM1136
509         select SUPPORT_SPL
510
511 config TARGET_FLEA3
512         bool "Support flea3"
513         select CPU_ARM1136
514
515 config TARGET_MX35PDK
516         bool "Support mx35pdk"
517         select BOARD_LATE_INIT
518         select CPU_ARM1136
519
520 config 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
531 config ARCH_BCM6858
532         bool "Broadcom BCM6858 family"
533         select DM
534         select OF_CONTROL
535         imply CMD_DM
536
537 config 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
544 config 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
555 config TARGET_VEXPRESS_CA5X2
556         bool "Support vexpress_ca5x2"
557         select CPU_V7A
558         select PL011_SERIAL
559
560 config TARGET_VEXPRESS_CA9X4
561         bool "Support vexpress_ca9x4"
562         select CPU_V7A
563         select PL011_SERIAL
564
565 config TARGET_BCM23550_W1D
566         bool "Support bcm23550_w1d"
567         select CPU_V7A
568         imply CRC32_VERIFY
569         imply FAT_WRITE
570
571 config TARGET_BCM28155_AP
572         bool "Support bcm28155_ap"
573         select CPU_V7A
574         imply CRC32_VERIFY
575         imply FAT_WRITE
576
577 config 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
588 config TARGET_BCMNSP
589         bool "Support bcmnsp"
590         select CPU_V7A
591
592 config 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
600 config 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 SYS_THUMB_BUILD
611         imply CMD_DM
612         imply FAT_WRITE
613
614 config ARCH_S5PC1XX
615         bool "Samsung S5PC1XX"
616         select CPU_V7A
617         select DM
618         select DM_GPIO
619         select DM_I2C
620         select DM_SERIAL
621         imply CMD_DM
622
623 config ARCH_HIGHBANK
624         bool "Calxeda Highbank"
625         select CPU_V7A
626         select PL011_SERIAL
627
628 config ARCH_INTEGRATOR
629         bool "ARM Ltd. Integrator family"
630         select DM
631         select DM_SERIAL
632         select PL01X_SERIAL
633         imply CMD_DM
634
635 config ARCH_KEYSTONE
636         bool "TI Keystone"
637         select CMD_POWEROFF
638         select CPU_V7A
639         select SUPPORT_SPL
640         select SYS_ARCH_TIMER
641         select SYS_THUMB_BUILD
642         imply CMD_MTDPARTS
643         imply CMD_SAVES
644         imply FIT
645
646 config ARCH_K3
647         bool "Texas Instruments' K3 Architecture"
648         select SPL
649         select SUPPORT_SPL
650         select FIT
651
652 config ARCH_OMAP2PLUS
653         bool "TI OMAP2+"
654         select CPU_V7A
655         select SPL_BOARD_INIT if SPL
656         select SPL_STACK_R if SPL
657         select SUPPORT_SPL
658         imply FIT
659
660 config ARCH_MESON
661         bool "Amlogic Meson"
662         imply DISTRO_DEFAULTS
663         help
664           Support for the Meson SoC family developed by Amlogic Inc.,
665           targeted at media players and tablet computers. We currently
666           support the S905 (GXBaby) 64-bit SoC.
667
668 config ARCH_MEDIATEK
669         bool "MediaTek SoCs"
670         select BINMAN
671         select DM
672         select OF_CONTROL
673         select SPL_DM if SPL
674         select SPL_LIBCOMMON_SUPPORT if SPL
675         select SPL_LIBGENERIC_SUPPORT if SPL
676         select SPL_OF_CONTROL if SPL
677         select SUPPORT_SPL
678         help
679           Support for the MediaTek SoCs family developed by MediaTek Inc.
680           Please refer to doc/README.mediatek for more information.
681
682 config ARCH_LPC32XX
683         bool "NXP LPC32xx platform"
684         select CPU_ARM926EJS
685         select DM
686         select DM_GPIO
687         select DM_SERIAL
688         select SPL_DM if SPL
689         select SUPPORT_SPL
690         imply CMD_DM
691
692 config ARCH_IMX8
693         bool "NXP i.MX8 platform"
694         select ARM64
695         select DM
696         select OF_CONTROL
697
698 config ARCH_MX8M
699         bool "NXP i.MX8M platform"
700         select ARM64
701         select DM
702         select SUPPORT_SPL
703         imply CMD_DM
704
705 config ARCH_MX23
706         bool "NXP i.MX23 family"
707         select CPU_ARM926EJS
708         select PL011_SERIAL
709         select SUPPORT_SPL
710
711 config ARCH_MX25
712         bool "NXP MX25"
713         select CPU_ARM926EJS
714         imply MXC_GPIO
715
716 config ARCH_MX28
717         bool "NXP i.MX28 family"
718         select CPU_ARM926EJS
719         select PL011_SERIAL
720         select SUPPORT_SPL
721
722 config ARCH_MX31
723         bool "NXP i.MX31 family"
724         select CPU_ARM1136
725
726 config ARCH_MX7ULP
727         bool "NXP MX7ULP"
728         select CPU_V7A
729         select ROM_UNIFIED_SECTIONS
730         imply MXC_GPIO
731
732 config ARCH_MX7
733         bool "Freescale MX7"
734         select ARCH_MISC_INIT
735         select BOARD_EARLY_INIT_F
736         select CPU_V7A
737         select SYS_FSL_HAS_SEC if SECURE_BOOT
738         select SYS_FSL_SEC_COMPAT_4
739         select SYS_FSL_SEC_LE
740         imply MXC_GPIO
741
742 config ARCH_MX6
743         bool "Freescale MX6"
744         select CPU_V7A
745         select SYS_FSL_HAS_SEC if SECURE_BOOT
746         select SYS_FSL_SEC_COMPAT_4
747         select SYS_FSL_SEC_LE
748         select SYS_THUMB_BUILD if SPL
749         imply MXC_GPIO
750
751 if ARCH_MX6
752 config SPL_LDSCRIPT
753         default "arch/arm/mach-omap2/u-boot-spl.lds"
754 endif
755
756 config ARCH_MX5
757         bool "Freescale MX5"
758         select BOARD_EARLY_INIT_F
759         select CPU_V7A
760         imply MXC_GPIO
761
762 config ARCH_OWL
763         bool "Actions Semi OWL SoCs"
764         select ARM64
765         select DM
766         select DM_SERIAL
767         select OF_CONTROL
768         imply CMD_DM
769
770 config ARCH_QEMU
771         bool "QEMU Virtual Platform"
772         select DM
773         select DM_SERIAL
774         select OF_CONTROL
775         select PL01X_SERIAL
776         imply CMD_DM
777         imply DM_RTC
778         imply RTC_PL031
779
780 config ARCH_RMOBILE
781         bool "Renesas ARM SoCs"
782         select BOARD_EARLY_INIT_F
783         select DM
784         select DM_SERIAL
785         imply CMD_DM
786         imply FAT_WRITE
787         imply SYS_THUMB_BUILD
788         imply ARCH_MISC_INIT if DISPLAY_CPUINFO
789
790 config TARGET_S32V234EVB
791         bool "Support s32v234evb"
792         select ARM64
793         select SYS_FSL_ERRATUM_ESDHC111
794
795 config ARCH_SNAPDRAGON
796         bool "Qualcomm Snapdragon SoCs"
797         select ARM64
798         select DM
799         select DM_GPIO
800         select DM_SERIAL
801         select MSM_SMEM
802         select OF_CONTROL
803         select OF_SEPARATE
804         select SMEM
805         select SPMI
806         imply CMD_DM
807
808 config ARCH_SOCFPGA
809         bool "Altera SOCFPGA family"
810         select ARCH_EARLY_INIT_R
811         select ARCH_MISC_INIT if !TARGET_SOCFPGA_ARRIA10
812         select ARM64 if TARGET_SOCFPGA_STRATIX10
813         select CPU_V7A if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
814         select DM
815         select DM_SERIAL
816         select ENABLE_ARM_SOC_BOOT0_HOOK if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
817         select OF_CONTROL
818         select SPL_DM_RESET if DM_RESET
819         select SPL_DM_SERIAL
820         select SPL_LIBCOMMON_SUPPORT
821         select SPL_LIBGENERIC_SUPPORT
822         select SPL_NAND_SUPPORT if SPL_NAND_DENALI
823         select SPL_OF_CONTROL
824         select SPL_SEPARATE_BSS if TARGET_SOCFPGA_STRATIX10
825         select SPL_SERIAL_SUPPORT
826         select SPL_WATCHDOG_SUPPORT
827         select SUPPORT_SPL
828         select SYS_NS16550
829         select SYS_THUMB_BUILD if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
830         imply CMD_DM
831         imply CMD_MTDPARTS
832         imply CRC32_VERIFY
833         imply DM_SPI
834         imply DM_SPI_FLASH
835         imply FAT_WRITE
836         imply SPL_LIBDISK_SUPPORT
837         imply SPL_MMC_SUPPORT
838         imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
839         imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
840         imply SPL_SPI_FLASH_SUPPORT
841         imply SPL_SPI_SUPPORT
842
843 config ARCH_SUNXI
844         bool "Support sunxi (Allwinner) SoCs"
845         select BINMAN
846         select CMD_GPIO
847         select CMD_MMC if MMC
848         select CMD_USB if DISTRO_DEFAULTS
849         select DM
850         select DM_ETH
851         select DM_GPIO
852         select DM_KEYBOARD
853         select DM_SERIAL
854         select DM_USB if DISTRO_DEFAULTS
855         select OF_BOARD_SETUP
856         select OF_CONTROL
857         select OF_SEPARATE
858         select SPECIFY_CONSOLE_INDEX
859         select SPL_STACK_R if SPL
860         select SPL_SYS_MALLOC_SIMPLE if SPL
861         select SPL_SYS_THUMB_BUILD if !ARM64
862         select SYS_NS16550
863         select SYS_THUMB_BUILD if !ARM64
864         select USB if DISTRO_DEFAULTS
865         select USB_KEYBOARD if DISTRO_DEFAULTS
866         select USB_STORAGE if DISTRO_DEFAULTS
867         select USE_TINY_PRINTF
868         imply CMD_DM
869         imply CMD_GPT
870         imply CMD_UBI if NAND
871         imply DISTRO_DEFAULTS
872         imply FAT_WRITE
873         imply FIT
874         imply OF_LIBFDT_OVERLAY
875         imply PRE_CONSOLE_BUFFER
876         imply SPL_GPIO_SUPPORT
877         imply SPL_LIBCOMMON_SUPPORT
878         imply SPL_LIBDISK_SUPPORT
879         imply SPL_LIBGENERIC_SUPPORT
880         imply SPL_MMC_SUPPORT if MMC
881         imply SPL_POWER_SUPPORT
882         imply SPL_SERIAL_SUPPORT
883         imply USB_GADGET
884
885 config ARCH_VERSAL
886         bool "Support Xilinx Versal Platform"
887         select ARM64
888         select CLK
889         select DM
890         select DM_SERIAL
891         select OF_CONTROL
892
893 config ARCH_VF610
894         bool "Freescale Vybrid"
895         select CPU_V7A
896         select SYS_FSL_ERRATUM_ESDHC111
897         imply CMD_MTDPARTS
898         imply NAND
899
900 config ARCH_ZYNQ
901         bool "Xilinx Zynq based platform"
902         select BOARD_EARLY_INIT_F if WDT
903         select CLK
904         select CLK_ZYNQ
905         select CPU_V7A
906         select DM
907         select DM_ETH if NET
908         select DM_MMC if MMC
909         select DM_SERIAL
910         select DM_SPI
911         select DM_SPI_FLASH
912         select DM_USB if USB
913         select OF_CONTROL
914         select SPI
915         select SPL_BOARD_INIT if SPL
916         select SPL_CLK if SPL
917         select SPL_DM if SPL
918         select SPL_OF_CONTROL if SPL
919         select SPL_SEPARATE_BSS if SPL
920         select SUPPORT_SPL
921         imply ARCH_EARLY_INIT_R
922         imply BOARD_LATE_INIT
923         imply CMD_CLK
924         imply CMD_DM
925         imply CMD_SPL
926         imply FAT_WRITE
927
928 config ARCH_ZYNQMP_R5
929         bool "Xilinx ZynqMP R5 based platform"
930         select CLK
931         select CPU_V7R
932         select DM
933         select DM_SERIAL
934         select OF_CONTROL
935         imply CMD_DM
936         imply DM_USB_GADGET
937
938 config ARCH_ZYNQMP
939         bool "Xilinx ZynqMP based platform"
940         select ARM64
941         select CLK
942         select DM
943         select DM_SERIAL
944         select DM_USB if USB
945         select OF_CONTROL
946         select SPL_BOARD_INIT if SPL
947         select SPL_CLK if SPL
948         select SPL_SEPARATE_BSS if SPL
949         select SUPPORT_SPL
950         imply BOARD_LATE_INIT
951         imply CMD_DM
952         imply FAT_WRITE
953         imply MP
954         imply DM_USB_GADGET
955
956 config TEGRA
957         bool "NVIDIA Tegra"
958         imply DISTRO_DEFAULTS
959         imply FAT_WRITE
960
961 config TARGET_VEXPRESS64_AEMV8A
962         bool "Support vexpress_aemv8a"
963         select ARM64
964         select PL01X_SERIAL
965
966 config TARGET_VEXPRESS64_BASE_FVP
967         bool "Support Versatile Express ARMv8a FVP BASE model"
968         select ARM64
969         select PL01X_SERIAL
970         select SEMIHOSTING
971
972 config TARGET_VEXPRESS64_BASE_FVP_DRAM
973         bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
974         select ARM64
975         select PL01X_SERIAL
976         help
977           This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
978           the default config to allow the user to load the images directly into
979           DRAM using model parameters rather than by using semi-hosting to load
980           the files from the host filesystem.
981
982 config TARGET_VEXPRESS64_JUNO
983         bool "Support Versatile Express Juno Development Platform"
984         select ARM64
985         select PL01X_SERIAL
986
987 config TARGET_LS2080A_EMU
988         bool "Support ls2080a_emu"
989         select ARCH_LS2080A
990         select ARCH_MISC_INIT
991         select ARM64
992         select ARMV8_MULTIENTRY
993         help
994           Support for Freescale LS2080A_EMU platform
995           The LS2080A Development System (EMULATOR) is a pre silicon
996           development platform that supports the QorIQ LS2080A
997           Layerscape Architecture processor.
998
999 config TARGET_LS2080A_SIMU
1000         bool "Support ls2080a_simu"
1001         select ARCH_LS2080A
1002         select ARCH_MISC_INIT
1003         select ARM64
1004         select ARMV8_MULTIENTRY
1005         help
1006           Support for Freescale LS2080A_SIMU platform
1007           The LS2080A Development System (QDS) is a pre silicon
1008           development platform that supports the QorIQ LS2080A
1009           Layerscape Architecture processor.
1010
1011 config TARGET_LS1088AQDS
1012         bool "Support ls1088aqds"
1013         select ARCH_LS1088A
1014         select ARCH_MISC_INIT
1015         select ARM64
1016         select ARMV8_MULTIENTRY
1017         select BOARD_LATE_INIT
1018         select SUPPORT_SPL
1019         help
1020           Support for NXP LS1088AQDS platform
1021           The LS1088A Development System (QDS) is a high-performance
1022           development platform that supports the QorIQ LS1088A
1023           Layerscape Architecture processor.
1024
1025 config TARGET_LS2080AQDS
1026         bool "Support ls2080aqds"
1027         select ARCH_LS2080A
1028         select ARCH_MISC_INIT
1029         select ARM64
1030         select ARMV8_MULTIENTRY
1031         select BOARD_LATE_INIT
1032         select SUPPORT_SPL
1033         imply SCSI
1034         imply SCSI_AHCI
1035         help
1036           Support for Freescale LS2080AQDS platform
1037           The LS2080A Development System (QDS) is a high-performance
1038           development platform that supports the QorIQ LS2080A
1039           Layerscape Architecture processor.
1040
1041 config TARGET_LS2080ARDB
1042         bool "Support ls2080ardb"
1043         select ARCH_LS2080A
1044         select ARCH_MISC_INIT
1045         select ARM64
1046         select ARMV8_MULTIENTRY
1047         select BOARD_LATE_INIT
1048         select SUPPORT_SPL
1049         imply SCSI
1050         imply SCSI_AHCI
1051         help
1052           Support for Freescale LS2080ARDB platform.
1053           The LS2080A Reference design board (RDB) is a high-performance
1054           development platform that supports the QorIQ LS2080A
1055           Layerscape Architecture processor.
1056
1057 config TARGET_LS2081ARDB
1058         bool "Support ls2081ardb"
1059         select ARCH_LS2080A
1060         select ARCH_MISC_INIT
1061         select ARM64
1062         select ARMV8_MULTIENTRY
1063         select BOARD_LATE_INIT
1064         select SUPPORT_SPL
1065         help
1066           Support for Freescale LS2081ARDB platform.
1067           The LS2081A Reference design board (RDB) is a high-performance
1068           development platform that supports the QorIQ LS2081A/LS2041A
1069           Layerscape Architecture processor.
1070
1071 config TARGET_HIKEY
1072         bool "Support HiKey 96boards Consumer Edition Platform"
1073         select ARM64
1074         select DM
1075         select DM_GPIO
1076         select DM_SERIAL
1077         select OF_CONTROL
1078         select PL01X_SERIAL
1079         select SPECIFY_CONSOLE_INDEX
1080         imply CMD_DM
1081           help
1082           Support for HiKey 96boards platform. It features a HI6220
1083           SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
1084
1085 config TARGET_POPLAR
1086         bool "Support Poplar 96boards Enterprise Edition Platform"
1087         select ARM64
1088         select DM
1089         select DM_SERIAL
1090         select DM_USB
1091         select OF_CONTROL
1092         select PL01X_SERIAL
1093         imply CMD_DM
1094           help
1095           Support for Poplar 96boards EE platform. It features a HI3798cv200
1096           SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
1097           making it capable of running any commercial set-top solution based on
1098           Linux or Android.
1099
1100 config TARGET_LS1012AQDS
1101         bool "Support ls1012aqds"
1102         select ARCH_LS1012A
1103         select ARM64
1104         select BOARD_LATE_INIT
1105         help
1106           Support for Freescale LS1012AQDS platform.
1107           The LS1012A Development System (QDS) is a high-performance
1108           development platform that supports the QorIQ LS1012A
1109           Layerscape Architecture processor.
1110
1111 config TARGET_LS1012ARDB
1112         bool "Support ls1012ardb"
1113         select ARCH_LS1012A
1114         select ARM64
1115         select BOARD_LATE_INIT
1116         imply SCSI
1117         imply SCSI_AHCI
1118         help
1119           Support for Freescale LS1012ARDB platform.
1120           The LS1012A Reference design board (RDB) is a high-performance
1121           development platform that supports the QorIQ LS1012A
1122           Layerscape Architecture processor.
1123
1124 config TARGET_LS1012A2G5RDB
1125         bool "Support ls1012a2g5rdb"
1126         select ARCH_LS1012A
1127         select ARM64
1128         select BOARD_LATE_INIT
1129         imply SCSI
1130         help
1131           Support for Freescale LS1012A2G5RDB platform.
1132           The LS1012A 2G5 Reference design board (RDB) is a high-performance
1133           development platform that supports the QorIQ LS1012A
1134           Layerscape Architecture processor.
1135
1136 config TARGET_LS1012AFRWY
1137         bool "Support ls1012afrwy"
1138         select ARCH_LS1012A
1139         select ARM64
1140         select BOARD_LATE_INIT
1141         imply SCSI
1142         imply SCSI_AHCI
1143         help
1144          Support for Freescale LS1012AFRWY platform.
1145          The LS1012A FRWY board (FRWY) is a high-performance
1146          development platform that supports the QorIQ LS1012A
1147          Layerscape Architecture processor.
1148
1149 config TARGET_LS1012AFRDM
1150         bool "Support ls1012afrdm"
1151         select ARCH_LS1012A
1152         select ARM64
1153         help
1154           Support for Freescale LS1012AFRDM platform.
1155           The LS1012A Freedom  board (FRDM) is a high-performance
1156           development platform that supports the QorIQ LS1012A
1157           Layerscape Architecture processor.
1158
1159 config TARGET_LS1088ARDB
1160         bool "Support ls1088ardb"
1161         select ARCH_LS1088A
1162         select ARCH_MISC_INIT
1163         select ARM64
1164         select ARMV8_MULTIENTRY
1165         select BOARD_LATE_INIT
1166         select SUPPORT_SPL
1167         help
1168           Support for NXP LS1088ARDB platform.
1169           The LS1088A Reference design board (RDB) is a high-performance
1170           development platform that supports the QorIQ LS1088A
1171           Layerscape Architecture processor.
1172
1173 config TARGET_LS1021AQDS
1174         bool "Support ls1021aqds"
1175         select ARCH_LS1021A
1176         select ARCH_SUPPORT_PSCI
1177         select BOARD_EARLY_INIT_F
1178         select BOARD_LATE_INIT
1179         select CPU_V7A
1180         select CPU_V7_HAS_NONSEC
1181         select CPU_V7_HAS_VIRT
1182         select LS1_DEEP_SLEEP
1183         select SUPPORT_SPL
1184         select SYS_FSL_DDR
1185         imply SCSI
1186
1187 config TARGET_LS1021ATWR
1188         bool "Support ls1021atwr"
1189         select ARCH_LS1021A
1190         select ARCH_SUPPORT_PSCI
1191         select BOARD_EARLY_INIT_F
1192         select BOARD_LATE_INIT
1193         select CPU_V7A
1194         select CPU_V7_HAS_NONSEC
1195         select CPU_V7_HAS_VIRT
1196         select LS1_DEEP_SLEEP
1197         select SUPPORT_SPL
1198         imply SCSI
1199
1200 config TARGET_LS1021AIOT
1201         bool "Support ls1021aiot"
1202         select ARCH_LS1021A
1203         select ARCH_SUPPORT_PSCI
1204         select BOARD_LATE_INIT
1205         select CPU_V7A
1206         select CPU_V7_HAS_NONSEC
1207         select CPU_V7_HAS_VIRT
1208         select SUPPORT_SPL
1209         imply SCSI
1210         help
1211           Support for Freescale LS1021AIOT platform.
1212           The LS1021A Freescale board (IOT) is a high-performance
1213           development platform that supports the QorIQ LS1021A
1214           Layerscape Architecture processor.
1215
1216 config TARGET_LS1043AQDS
1217         bool "Support ls1043aqds"
1218         select ARCH_LS1043A
1219         select ARM64
1220         select ARMV8_MULTIENTRY
1221         select BOARD_EARLY_INIT_F
1222         select BOARD_LATE_INIT
1223         select SUPPORT_SPL
1224         imply SCSI
1225         help
1226           Support for Freescale LS1043AQDS platform.
1227
1228 config TARGET_LS1043ARDB
1229         bool "Support ls1043ardb"
1230         select ARCH_LS1043A
1231         select ARM64
1232         select ARMV8_MULTIENTRY
1233         select BOARD_EARLY_INIT_F
1234         select BOARD_LATE_INIT
1235         select SUPPORT_SPL
1236         imply SCSI
1237         help
1238           Support for Freescale LS1043ARDB platform.
1239
1240 config TARGET_LS1046AQDS
1241         bool "Support ls1046aqds"
1242         select ARCH_LS1046A
1243         select ARM64
1244         select ARMV8_MULTIENTRY
1245         select BOARD_EARLY_INIT_F
1246         select BOARD_LATE_INIT
1247         select DM_SPI_FLASH if DM_SPI
1248         select SUPPORT_SPL
1249         imply SCSI
1250         help
1251           Support for Freescale LS1046AQDS platform.
1252           The LS1046A Development System (QDS) is a high-performance
1253           development platform that supports the QorIQ LS1046A
1254           Layerscape Architecture processor.
1255
1256 config TARGET_LS1046ARDB
1257         bool "Support ls1046ardb"
1258         select ARCH_LS1046A
1259         select ARM64
1260         select ARMV8_MULTIENTRY
1261         select BOARD_EARLY_INIT_F
1262         select BOARD_LATE_INIT
1263         select DM_SPI_FLASH if DM_SPI
1264         select POWER_MC34VR500
1265         select SUPPORT_SPL
1266         imply SCSI
1267         help
1268           Support for Freescale LS1046ARDB platform.
1269           The LS1046A Reference Design Board (RDB) is a high-performance
1270           development platform that supports the QorIQ LS1046A
1271           Layerscape Architecture processor.
1272
1273 config TARGET_H2200
1274         bool "Support h2200"
1275         select CPU_PXA
1276
1277 config TARGET_ZIPITZ2
1278         bool "Support zipitz2"
1279         select CPU_PXA
1280
1281 config TARGET_COLIBRI_PXA270
1282         bool "Support colibri_pxa270"
1283         select CPU_PXA
1284
1285 config ARCH_UNIPHIER
1286         bool "Socionext UniPhier SoCs"
1287         select BOARD_LATE_INIT
1288         select DM
1289         select DM_GPIO
1290         select DM_I2C
1291         select DM_MMC
1292         select DM_RESET
1293         select DM_SERIAL
1294         select DM_USB
1295         select OF_BOARD_SETUP
1296         select OF_CONTROL
1297         select OF_LIBFDT
1298         select PINCTRL
1299         select SPL_BOARD_INIT if SPL
1300         select SPL_DM if SPL
1301         select SPL_LIBCOMMON_SUPPORT if SPL
1302         select SPL_LIBGENERIC_SUPPORT if SPL
1303         select SPL_OF_CONTROL if SPL
1304         select SPL_PINCTRL if SPL
1305         select SUPPORT_SPL
1306         imply CMD_DM
1307         imply DISTRO_DEFAULTS
1308         imply FAT_WRITE
1309         help
1310           Support for UniPhier SoC family developed by Socionext Inc.
1311           (formerly, System LSI Business Division of Panasonic Corporation)
1312
1313 config STM32
1314         bool "Support STMicroelectronics STM32 MCU with cortex M"
1315         select CPU_V7M
1316         select DM
1317         select DM_SERIAL
1318         imply CMD_DM
1319
1320 config ARCH_STI
1321         bool "Support STMicrolectronics SoCs"
1322         select BLK
1323         select CPU_V7A
1324         select DM
1325         select DM_MMC
1326         select DM_RESET
1327         select DM_SERIAL
1328         imply CMD_DM
1329         help
1330           Support for STMicroelectronics STiH407/10 SoC family.
1331           This SoC is used on Linaro 96Board STiH410-B2260
1332
1333 config ARCH_STM32MP
1334         bool "Support STMicroelectronics STM32MP Socs with cortex A"
1335         select ARCH_MISC_INIT
1336         select BOARD_LATE_INIT
1337         select CLK
1338         select DM
1339         select DM_GPIO
1340         select DM_RESET
1341         select DM_SERIAL
1342         select MISC
1343         select OF_CONTROL
1344         select OF_LIBFDT
1345         select PINCTRL
1346         select REGMAP
1347         select SUPPORT_SPL
1348         select SYSCON
1349         select SYSRESET
1350         select SYS_THUMB_BUILD
1351         imply CMD_DM
1352         help
1353           Support for STM32MP SoC family developed by STMicroelectronics,
1354           MPUs based on ARM cortex A core
1355           U-BOOT is running in DDR and SPL support is the unsecure First Stage
1356           BootLoader (FSBL)
1357
1358 config ARCH_ROCKCHIP
1359         bool "Support Rockchip SoCs"
1360         select BLK
1361         select DM
1362         select DM_GPIO
1363         select DM_I2C
1364         select DM_MMC
1365         select DM_PWM
1366         select DM_REGULATOR
1367         select DM_SERIAL
1368         select DM_SPI
1369         select DM_SPI_FLASH
1370         select DM_USB if USB
1371         select ENABLE_ARM_SOC_BOOT0_HOOK
1372         select OF_CONTROL
1373         select SPI
1374         select SPL_DM if SPL
1375         select SPL_SYS_MALLOC_SIMPLE if SPL
1376         select SYS_MALLOC_F
1377         select SYS_THUMB_BUILD if !ARM64
1378         imply ADC
1379         imply CMD_DM
1380         imply DISTRO_DEFAULTS
1381         imply FAT_WRITE
1382         imply SARADC_ROCKCHIP
1383         imply SPL_SYSRESET
1384         imply SYS_NS16550
1385         imply TPL_SYSRESET
1386         imply USB_FUNCTION_FASTBOOT
1387
1388 config TARGET_THUNDERX_88XX
1389         bool "Support ThunderX 88xx"
1390         select ARM64
1391         select OF_CONTROL
1392         select PL01X_SERIAL
1393         select SYS_CACHE_SHIFT_7
1394
1395 config ARCH_ASPEED
1396         bool "Support Aspeed SoCs"
1397         select DM
1398         select OF_CONTROL
1399         imply CMD_DM
1400
1401 endchoice
1402
1403 config TI_SECURE_DEVICE
1404         bool "HS Device Type Support"
1405         depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS
1406         help
1407           If a high secure (HS) device type is being used, this config
1408           must be set. This option impacts various aspects of the
1409           build system (to create signed boot images that can be
1410           authenticated) and the code. See the doc/README.ti-secure
1411           file for further details.
1412
1413 source "arch/arm/mach-aspeed/Kconfig"
1414
1415 source "arch/arm/mach-at91/Kconfig"
1416
1417 source "arch/arm/mach-bcm283x/Kconfig"
1418
1419 source "arch/arm/mach-bcmstb/Kconfig"
1420
1421 source "arch/arm/mach-davinci/Kconfig"
1422
1423 source "arch/arm/mach-exynos/Kconfig"
1424
1425 source "arch/arm/mach-highbank/Kconfig"
1426
1427 source "arch/arm/mach-integrator/Kconfig"
1428
1429 source "arch/arm/mach-k3/Kconfig"
1430
1431 source "arch/arm/mach-keystone/Kconfig"
1432
1433 source "arch/arm/mach-kirkwood/Kconfig"
1434
1435 source "arch/arm/cpu/arm926ejs/lpc32xx/Kconfig"
1436
1437 source "arch/arm/mach-mvebu/Kconfig"
1438
1439 source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1440
1441 source "arch/arm/mach-imx/mx2/Kconfig"
1442
1443 source "arch/arm/mach-imx/mx3/Kconfig"
1444
1445 source "arch/arm/mach-imx/mx5/Kconfig"
1446
1447 source "arch/arm/mach-imx/mx6/Kconfig"
1448
1449 source "arch/arm/mach-imx/mx7/Kconfig"
1450
1451 source "arch/arm/mach-imx/mx7ulp/Kconfig"
1452
1453 source "arch/arm/mach-imx/imx8/Kconfig"
1454
1455 source "arch/arm/mach-imx/mx8m/Kconfig"
1456
1457 source "arch/arm/mach-imx/mxs/Kconfig"
1458
1459 source "arch/arm/mach-omap2/Kconfig"
1460
1461 source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1462
1463 source "arch/arm/mach-orion5x/Kconfig"
1464
1465 source "arch/arm/mach-owl/Kconfig"
1466
1467 source "arch/arm/mach-rmobile/Kconfig"
1468
1469 source "arch/arm/mach-meson/Kconfig"
1470
1471 source "arch/arm/mach-mediatek/Kconfig"
1472
1473 source "arch/arm/mach-qemu/Kconfig"
1474
1475 source "arch/arm/mach-rockchip/Kconfig"
1476
1477 source "arch/arm/mach-s5pc1xx/Kconfig"
1478
1479 source "arch/arm/mach-snapdragon/Kconfig"
1480
1481 source "arch/arm/mach-socfpga/Kconfig"
1482
1483 source "arch/arm/mach-sti/Kconfig"
1484
1485 source "arch/arm/mach-stm32/Kconfig"
1486
1487 source "arch/arm/mach-stm32mp/Kconfig"
1488
1489 source "arch/arm/mach-sunxi/Kconfig"
1490
1491 source "arch/arm/mach-tegra/Kconfig"
1492
1493 source "arch/arm/mach-uniphier/Kconfig"
1494
1495 source "arch/arm/cpu/armv7/vf610/Kconfig"
1496
1497 source "arch/arm/mach-zynq/Kconfig"
1498
1499 source "arch/arm/mach-versal/Kconfig"
1500
1501 source "arch/arm/mach-zynqmp-r5/Kconfig"
1502
1503 source "arch/arm/cpu/armv7/Kconfig"
1504
1505 source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1506
1507 source "arch/arm/cpu/armv8/Kconfig"
1508
1509 source "arch/arm/mach-imx/Kconfig"
1510
1511 source "board/bosch/shc/Kconfig"
1512 source "board/CarMediaLab/flea3/Kconfig"
1513 source "board/Marvell/aspenite/Kconfig"
1514 source "board/Marvell/gplugd/Kconfig"
1515 source "board/armadeus/apf27/Kconfig"
1516 source "board/armltd/vexpress/Kconfig"
1517 source "board/armltd/vexpress64/Kconfig"
1518 source "board/broadcom/bcm23550_w1d/Kconfig"
1519 source "board/broadcom/bcm28155_ap/Kconfig"
1520 source "board/broadcom/bcm968580xref/Kconfig"
1521 source "board/broadcom/bcmcygnus/Kconfig"
1522 source "board/broadcom/bcmnsp/Kconfig"
1523 source "board/broadcom/bcmns2/Kconfig"
1524 source "board/cavium/thunderx/Kconfig"
1525 source "board/cirrus/edb93xx/Kconfig"
1526 source "board/eets/pdu001/Kconfig"
1527 source "board/emulation/qemu-arm/Kconfig"
1528 source "board/freescale/ls2080a/Kconfig"
1529 source "board/freescale/ls2080aqds/Kconfig"
1530 source "board/freescale/ls2080ardb/Kconfig"
1531 source "board/freescale/ls1088a/Kconfig"
1532 source "board/freescale/ls1021aqds/Kconfig"
1533 source "board/freescale/ls1043aqds/Kconfig"
1534 source "board/freescale/ls1021atwr/Kconfig"
1535 source "board/freescale/ls1021aiot/Kconfig"
1536 source "board/freescale/ls1046aqds/Kconfig"
1537 source "board/freescale/ls1043ardb/Kconfig"
1538 source "board/freescale/ls1046ardb/Kconfig"
1539 source "board/freescale/ls1012aqds/Kconfig"
1540 source "board/freescale/ls1012ardb/Kconfig"
1541 source "board/freescale/ls1012afrdm/Kconfig"
1542 source "board/freescale/mx35pdk/Kconfig"
1543 source "board/freescale/s32v234evb/Kconfig"
1544 source "board/grinn/chiliboard/Kconfig"
1545 source "board/gumstix/pepper/Kconfig"
1546 source "board/h2200/Kconfig"
1547 source "board/hisilicon/hikey/Kconfig"
1548 source "board/hisilicon/poplar/Kconfig"
1549 source "board/isee/igep003x/Kconfig"
1550 source "board/phytec/pcm051/Kconfig"
1551 source "board/silica/pengwyn/Kconfig"
1552 source "board/spear/spear300/Kconfig"
1553 source "board/spear/spear310/Kconfig"
1554 source "board/spear/spear320/Kconfig"
1555 source "board/spear/spear600/Kconfig"
1556 source "board/spear/x600/Kconfig"
1557 source "board/st/stv0991/Kconfig"
1558 source "board/tcl/sl50/Kconfig"
1559 source "board/ucRobotics/bubblegum_96/Kconfig"
1560 source "board/birdland/bav335x/Kconfig"
1561 source "board/toradex/colibri_pxa270/Kconfig"
1562 source "board/vscom/baltos/Kconfig"
1563 source "board/woodburn/Kconfig"
1564 source "board/xilinx/Kconfig"
1565 source "board/xilinx/zynq/Kconfig"
1566 source "board/xilinx/zynqmp/Kconfig"
1567 source "board/zipitz2/Kconfig"
1568
1569 source "arch/arm/Kconfig.debug"
1570
1571 endmenu
1572
1573 config SPL_LDSCRIPT
1574         default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if (ARCH_MX23 || ARCH_MX28) && !SPL_FRAMEWORK
1575         default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
1576         default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1577
1578