Merge https://gitlab.denx.de/u-boot/custodians/u-boot-sh
[platform/kernel/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 from
19           almost any 4K aligned address. This logic relies on the relocation
20           information that is embedded in the binary to support U-Boot
21           relocating itself to the top-of-RAM later during execution.
22
23 config INIT_SP_RELATIVE
24         bool "Specify the early stack pointer relative to the .bss section"
25         default n if ARCH_QEMU
26         default y if POSITION_INDEPENDENT
27         help
28           U-Boot typically uses a hard-coded value for the stack pointer
29           before relocation. Enable this option to instead calculate the
30           initial SP at run-time. This is useful to avoid hard-coding addresses
31           into U-Boot, so that it can be loaded and executed at arbitrary
32           addresses and thus avoid using arbitrary addresses at runtime.
33
34           If this option is enabled, the early stack pointer is set to
35           &_bss_start with a offset value added. The offset is specified by
36           SYS_INIT_SP_BSS_OFFSET.
37
38 config SYS_INIT_SP_BSS_OFFSET
39         int "Early stack offset from the .bss base address"
40         depends on INIT_SP_RELATIVE
41         default 524288
42         help
43           This option's value is the offset added to &_bss_start in order to
44           calculate the stack pointer. This offset should be large enough so
45           that the early malloc region, global data (gd), and early stack usage
46           do not overlap any appended DTB.
47
48 config LINUX_KERNEL_IMAGE_HEADER
49         bool
50         help
51           Place a Linux kernel image header at the start of the U-Boot binary.
52           The format of the header is described in the Linux kernel source at
53           Documentation/arm64/booting.txt. This feature is useful since the
54           image header reports the amount of memory (BSS and similar) that
55           U-Boot needs to use, but which isn't part of the binary.
56
57 if LINUX_KERNEL_IMAGE_HEADER
58 config LNX_KRNL_IMG_TEXT_OFFSET_BASE
59         hex
60         help
61           The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the
62           TEXT_OFFSET value written to the Linux kernel image header.
63 endif
64 endif
65
66 config GIC_V3_ITS
67         bool "ARM GICV3 ITS"
68         select REGMAP
69         select SYSCON
70         select IRQ
71         help
72           ARM GICV3 Interrupt translation service (ITS).
73           Basic support for programming locality specific peripheral
74           interrupts (LPI) configuration tables and enable LPI tables.
75           LPI configuration table can be used by u-boot or Linux.
76           ARM GICV3 has limitation, once the LPI table is enabled, LPI
77           configuration table can not be re-programmed, unless GICV3 reset.
78
79 config STATIC_RELA
80         bool
81         default y if ARM64
82
83 config DMA_ADDR_T_64BIT
84         bool
85         default y if ARM64
86
87 config HAS_VBAR
88         bool
89
90 config HAS_THUMB2
91         bool
92
93 config GPIO_EXTRA_HEADER
94         bool
95
96 # Used for compatibility with asm files copied from the kernel
97 config ARM_ASM_UNIFIED
98         bool
99         default y
100
101 # Used for compatibility with asm files copied from the kernel
102 config THUMB2_KERNEL
103         bool
104
105 config SYS_ICACHE_OFF
106         bool "Do not enable icache"
107         default n
108         help
109           Do not enable instruction cache in U-Boot.
110
111 config SPL_SYS_ICACHE_OFF
112         bool "Do not enable icache in SPL"
113         depends on SPL
114         default SYS_ICACHE_OFF
115         help
116           Do not enable instruction cache in SPL.
117
118 config SYS_DCACHE_OFF
119         bool "Do not enable dcache"
120         default n
121         help
122           Do not enable data cache in U-Boot.
123
124 config SPL_SYS_DCACHE_OFF
125         bool "Do not enable dcache in SPL"
126         depends on SPL
127         default SYS_DCACHE_OFF
128         help
129           Do not enable data cache in SPL.
130
131 config SYS_ARM_CACHE_CP15
132         bool "CP15 based cache enabling support"
133         help
134           Select this if your processor suports enabling caches by using
135           CP15 registers.
136
137 config SYS_ARM_MMU
138         bool "MMU-based Paged Memory Management Support"
139         select SYS_ARM_CACHE_CP15
140         help
141           Select if you want MMU-based virtualised addressing space
142           support via paged memory management.
143
144 config SYS_ARM_MPU
145         bool 'Use the ARM v7 PMSA Compliant MPU'
146         help
147           Some ARM systems without an MMU have instead a Memory Protection
148           Unit (MPU) that defines the type and permissions for regions of
149           memory.
150           If your CPU has an MPU then you should choose 'y' here unless you
151           know that you do not want to use the MPU.
152
153 # If set, the workarounds for these ARM errata are applied early during U-Boot
154 # startup. Note that in general these options force the workarounds to be
155 # applied; no CPU-type/version detection exists, unlike the similar options in
156 # the Linux kernel. Do not set these options unless they apply!  Also note that
157 # the following can be machine-specific errata. These do have ability to
158 # provide rudimentary version and machine-specific checks, but expect no
159 # product checks:
160 # CONFIG_ARM_ERRATA_430973
161 # CONFIG_ARM_ERRATA_454179
162 # CONFIG_ARM_ERRATA_621766
163 # CONFIG_ARM_ERRATA_798870
164 # CONFIG_ARM_ERRATA_801819
165 # CONFIG_ARM_CORTEX_A8_CVE_2017_5715
166 # CONFIG_ARM_CORTEX_A15_CVE_2017_5715
167
168 config ARM_ERRATA_430973
169         bool
170
171 config ARM_ERRATA_454179
172         bool
173
174 config ARM_ERRATA_621766
175         bool
176
177 config ARM_ERRATA_716044
178         bool
179
180 config ARM_ERRATA_725233
181         bool
182
183 config ARM_ERRATA_742230
184         bool
185
186 config ARM_ERRATA_743622
187         bool
188
189 config ARM_ERRATA_751472
190         bool
191
192 config ARM_ERRATA_761320
193         bool
194
195 config ARM_ERRATA_773022
196         bool
197
198 config ARM_ERRATA_774769
199         bool
200
201 config ARM_ERRATA_794072
202         bool
203
204 config ARM_ERRATA_798870
205         bool
206
207 config ARM_ERRATA_801819
208         bool
209
210 config ARM_ERRATA_826974
211         bool
212
213 config ARM_ERRATA_828024
214         bool
215
216 config ARM_ERRATA_829520
217         bool
218
219 config ARM_ERRATA_833069
220         bool
221
222 config ARM_ERRATA_833471
223         bool
224
225 config ARM_ERRATA_845369
226         bool
227
228 config ARM_ERRATA_852421
229         bool
230
231 config ARM_ERRATA_852423
232         bool
233
234 config ARM_ERRATA_855873
235         bool
236
237 config ARM_CORTEX_A8_CVE_2017_5715
238         bool
239
240 config ARM_CORTEX_A15_CVE_2017_5715
241         bool
242
243 config CPU_ARM720T
244         bool
245         select SYS_CACHE_SHIFT_5
246         imply SYS_ARM_MMU
247
248 config CPU_ARM920T
249         bool
250         select SYS_CACHE_SHIFT_5
251         imply SYS_ARM_MMU
252
253 config CPU_ARM926EJS
254         bool
255         select SYS_CACHE_SHIFT_5
256         imply SYS_ARM_MMU
257
258 config CPU_ARM946ES
259         bool
260         select SYS_CACHE_SHIFT_5
261         imply SYS_ARM_MMU
262
263 config CPU_ARM1136
264         bool
265         select SYS_CACHE_SHIFT_5
266         imply SYS_ARM_MMU
267
268 config CPU_ARM1176
269         bool
270         select HAS_VBAR
271         select SYS_CACHE_SHIFT_5
272         imply SYS_ARM_MMU
273
274 config CPU_V7A
275         bool
276         select HAS_THUMB2
277         select HAS_VBAR
278         select SYS_CACHE_SHIFT_6
279         imply SYS_ARM_MMU
280
281 config CPU_V7M
282         bool
283         select HAS_THUMB2
284         select SYS_ARM_MPU
285         select SYS_CACHE_SHIFT_5
286         select SYS_THUMB_BUILD
287         select THUMB2_KERNEL
288
289 config CPU_V7R
290         bool
291         select HAS_THUMB2
292         select SYS_ARM_CACHE_CP15
293         select SYS_ARM_MPU
294         select SYS_CACHE_SHIFT_6
295
296 config CPU_PXA
297         bool
298         select SYS_CACHE_SHIFT_5
299         imply SYS_ARM_MMU
300
301 config CPU_SA1100
302         bool
303         select SYS_CACHE_SHIFT_5
304         imply SYS_ARM_MMU
305
306 config SYS_CPU
307         default "arm720t" if CPU_ARM720T
308         default "arm920t" if CPU_ARM920T
309         default "arm926ejs" if CPU_ARM926EJS
310         default "arm946es" if CPU_ARM946ES
311         default "arm1136" if CPU_ARM1136
312         default "arm1176" if CPU_ARM1176
313         default "armv7" if CPU_V7A
314         default "armv7" if CPU_V7R
315         default "armv7m" if CPU_V7M
316         default "pxa" if CPU_PXA
317         default "sa1100" if CPU_SA1100
318         default "armv8" if ARM64
319
320 config SYS_ARM_ARCH
321         int
322         default 4 if CPU_ARM720T
323         default 4 if CPU_ARM920T
324         default 5 if CPU_ARM926EJS
325         default 5 if CPU_ARM946ES
326         default 6 if CPU_ARM1136
327         default 6 if CPU_ARM1176
328         default 7 if CPU_V7A
329         default 7 if CPU_V7M
330         default 7 if CPU_V7R
331         default 5 if CPU_PXA
332         default 4 if CPU_SA1100
333         default 8 if ARM64
334
335 config SYS_CACHE_SHIFT_5
336         bool
337
338 config SYS_CACHE_SHIFT_6
339         bool
340
341 config SYS_CACHE_SHIFT_7
342         bool
343
344 config SYS_CACHELINE_SIZE
345         int
346         default 128 if SYS_CACHE_SHIFT_7
347         default 64 if SYS_CACHE_SHIFT_6
348         default 32 if SYS_CACHE_SHIFT_5
349
350 choice
351         prompt "Select the ARM data write cache policy"
352         default SYS_ARM_CACHE_WRITETHROUGH if TARGET_BCMCYGNUS || \
353                                               CPU_PXA || RZA1
354         default SYS_ARM_CACHE_WRITEBACK
355
356 config SYS_ARM_CACHE_WRITEBACK
357         bool "Write-back (WB)"
358         help
359           A write updates the cache only and marks the cache line as dirty.
360           External memory is updated only when the line is evicted or explicitly
361           cleaned.
362
363 config SYS_ARM_CACHE_WRITETHROUGH
364         bool "Write-through (WT)"
365         help
366           A write updates both the cache and the external memory system.
367           This does not mark the cache line as dirty.
368
369 config SYS_ARM_CACHE_WRITEALLOC
370         bool "Write allocation (WA)"
371         help
372           A cache line is allocated on a write miss. This means that executing a
373           store instruction on the processor might cause a burst read to occur.
374           There is a linefill to obtain the data for the cache line, before the
375           write is performed.
376 endchoice
377
378 config ARCH_CPU_INIT
379         bool "Enable ARCH_CPU_INIT"
380         help
381           Some architectures require a call to arch_cpu_init().
382           Say Y here to enable it
383
384 config SYS_ARCH_TIMER
385         bool "ARM Generic Timer support"
386         depends on CPU_V7A || ARM64
387         default y if ARM64
388         help
389           The ARM Generic Timer (aka arch-timer) provides an architected
390           interface to a timer source on an SoC.
391           It is mandatory for ARMv8 implementation and widely available
392           on ARMv7 systems.
393
394 config ARM_SMCCC
395         bool "Support for ARM SMC Calling Convention (SMCCC)"
396         depends on CPU_V7A || ARM64
397         select ARM_PSCI_FW
398         help
399           Say Y here if you want to enable ARM SMC Calling Convention.
400           This should be enabled if U-Boot needs to communicate with system
401           firmware (for example, PSCI) according to SMCCC.
402
403 config SEMIHOSTING
404         bool "support boot from semihosting"
405         help
406           In emulated environments, semihosting is a way for
407           the hosted environment to call out to the emulator to
408           retrieve files from the host machine.
409
410 config SYS_THUMB_BUILD
411         bool "Build U-Boot using the Thumb instruction set"
412         depends on !ARM64
413         help
414            Use this flag to build U-Boot using the Thumb instruction set for
415            ARM architectures. Thumb instruction set provides better code
416            density. For ARM architectures that support Thumb2 this flag will
417            result in Thumb2 code generated by GCC.
418
419 config SPL_SYS_THUMB_BUILD
420         bool "Build SPL using the Thumb instruction set"
421         default y if SYS_THUMB_BUILD
422         depends on !ARM64 && SPL
423         help
424            Use this flag to build SPL using the Thumb instruction set for
425            ARM architectures. Thumb instruction set provides better code
426            density. For ARM architectures that support Thumb2 this flag will
427            result in Thumb2 code generated by GCC.
428
429 config TPL_SYS_THUMB_BUILD
430         bool "Build TPL using the Thumb instruction set"
431         default y if SYS_THUMB_BUILD
432         depends on TPL && !ARM64
433         help
434            Use this flag to build TPL using the Thumb instruction set for
435            ARM architectures. Thumb instruction set provides better code
436            density. For ARM architectures that support Thumb2 this flag will
437            result in Thumb2 code generated by GCC.
438
439
440 config SYS_L2CACHE_OFF
441         bool "L2cache off"
442         help
443           If SoC does not support L2CACHE or one does not want to enable
444           L2CACHE, choose this option.
445
446 config ENABLE_ARM_SOC_BOOT0_HOOK
447         bool "prepare BOOT0 header"
448         help
449           If the SoC's BOOT0 requires a header area filled with (magic)
450           values, then choose this option, and create a file included as
451           <asm/arch/boot0.h> which contains the required assembler code.
452
453 config ARM_CORTEX_CPU_IS_UP
454         bool
455         default n
456
457 config USE_ARCH_MEMCPY
458         bool "Use an assembly optimized implementation of memcpy"
459         default y
460         depends on !ARM64
461         help
462           Enable the generation of an optimized version of memcpy.
463           Such an implementation may be faster under some conditions
464           but may increase the binary size.
465
466 config SPL_USE_ARCH_MEMCPY
467         bool "Use an assembly optimized implementation of memcpy for SPL"
468         default y if USE_ARCH_MEMCPY
469         depends on !ARM64 && SPL
470         help
471           Enable the generation of an optimized version of memcpy.
472           Such an implementation may be faster under some conditions
473           but may increase the binary size.
474
475 config TPL_USE_ARCH_MEMCPY
476         bool "Use an assembly optimized implementation of memcpy for TPL"
477         default y if USE_ARCH_MEMCPY
478         depends on !ARM64 && TPL
479         help
480           Enable the generation of an optimized version of memcpy.
481           Such an implementation may be faster under some conditions
482           but may increase the binary size.
483
484 config USE_ARCH_MEMSET
485         bool "Use an assembly optimized implementation of memset"
486         default y
487         depends on !ARM64
488         help
489           Enable the generation of an optimized version of memset.
490           Such an implementation may be faster under some conditions
491           but may increase the binary size.
492
493 config SPL_USE_ARCH_MEMSET
494         bool "Use an assembly optimized implementation of memset for SPL"
495         default y if USE_ARCH_MEMSET
496         depends on !ARM64 && SPL
497         help
498           Enable the generation of an optimized version of memset.
499           Such an implementation may be faster under some conditions
500           but may increase the binary size.
501
502 config TPL_USE_ARCH_MEMSET
503         bool "Use an assembly optimized implementation of memset for TPL"
504         default y if USE_ARCH_MEMSET
505         depends on !ARM64 && TPL
506         help
507           Enable the generation of an optimized version of memset.
508           Such an implementation may be faster under some conditions
509           but may increase the binary size.
510
511 config ARM64_SUPPORT_AARCH32
512         bool "ARM64 system support AArch32 execution state"
513         depends on ARM64
514         default y if !TARGET_THUNDERX_88XX
515         help
516           This ARM64 system supports AArch32 execution state.
517
518 choice
519         prompt "Target select"
520         default TARGET_HIKEY
521
522 config ARCH_AT91
523         bool "Atmel AT91"
524         select GPIO_EXTRA_HEADER
525         select SPL_BOARD_INIT if SPL && !TARGET_SMARTWEB
526         select SPL_SEPARATE_BSS if SPL
527
528 config TARGET_ASPENITE
529         bool "Support aspenite"
530         select CPU_ARM926EJS
531         select GPIO_EXTRA_HEADER
532
533 config ARCH_DAVINCI
534         bool "TI DaVinci"
535         select CPU_ARM926EJS
536         select GPIO_EXTRA_HEADER
537         select SPL_DM_SPI if SPL
538         imply CMD_SAVES
539         help
540           Support for TI's DaVinci platform.
541
542 config ARCH_KIRKWOOD
543         bool "Marvell Kirkwood"
544         select ARCH_MISC_INIT
545         select BOARD_EARLY_INIT_F
546         select CPU_ARM926EJS
547         select GPIO_EXTRA_HEADER
548
549 config ARCH_MVEBU
550         bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
551         select DM
552         select DM_ETH
553         select DM_SERIAL
554         select DM_SPI
555         select DM_SPI_FLASH
556         select GPIO_EXTRA_HEADER
557         select SPL_DM_SPI if SPL
558         select SPL_DM_SPI_FLASH if SPL
559         select OF_CONTROL
560         select OF_SEPARATE
561         select SPI
562         imply CMD_DM
563
564 config ARCH_ORION5X
565         bool "Marvell Orion"
566         select CPU_ARM926EJS
567         select GPIO_EXTRA_HEADER
568
569 config TARGET_STV0991
570         bool "Support stv0991"
571         select CPU_V7A
572         select DM
573         select DM_SERIAL
574         select DM_SPI
575         select DM_SPI_FLASH
576         select GPIO_EXTRA_HEADER
577         select PL01X_SERIAL
578         select SPI
579         select SPI_FLASH
580         imply CMD_DM
581
582 config TARGET_FLEA3
583         bool "Support flea3"
584         select CPU_ARM1136
585         select GPIO_EXTRA_HEADER
586
587 config ARCH_BCM283X
588         bool "Broadcom BCM283X family"
589         select DM
590         select DM_GPIO
591         select DM_SERIAL
592         select GPIO_EXTRA_HEADER
593         select OF_CONTROL
594         select PL01X_SERIAL
595         select SERIAL_SEARCH_ALL
596         imply CMD_DM
597         imply FAT_WRITE
598
599 config ARCH_BCM63158
600         bool "Broadcom BCM63158 family"
601         select DM
602         select OF_CONTROL
603         imply CMD_DM
604
605 config ARCH_BCM68360
606         bool "Broadcom BCM68360 family"
607         select DM
608         select OF_CONTROL
609         imply CMD_DM
610
611 config ARCH_BCM6858
612         bool "Broadcom BCM6858 family"
613         select DM
614         select OF_CONTROL
615         imply CMD_DM
616
617 config ARCH_BCMSTB
618         bool "Broadcom BCM7XXX family"
619         select CPU_V7A
620         select DM
621         select GPIO_EXTRA_HEADER
622         select OF_CONTROL
623         select OF_PRIOR_STAGE
624         imply CMD_DM
625         help
626           This enables support for Broadcom ARM-based set-top box
627           chipsets, including the 7445 family of chips.
628
629 config TARGET_BCMCYGNUS
630         bool "Support bcmcygnus"
631         select CPU_V7A
632         select GPIO_EXTRA_HEADER
633         imply BCM_SF2_ETH
634         imply BCM_SF2_ETH_GMAC
635         imply CMD_HASH
636         imply CRC32_VERIFY
637         imply FAT_WRITE
638         imply HASH_VERIFY
639         imply NETDEVICES
640
641 config TARGET_BCMNS2
642         bool "Support Broadcom Northstar2"
643         select ARM64
644         select GPIO_EXTRA_HEADER
645         help
646           Support for Broadcom Northstar 2 SoCs.  NS2 is a quad-core 64-bit
647           ARMv8 Cortex-A57 processors targeting a broad range of networking
648           applications.
649
650 config TARGET_BCMNS3
651         bool "Support Broadcom NS3"
652         select ARM64
653         select BOARD_LATE_INIT
654         help
655           Support for Broadcom Northstar 3 SoCs. NS3 is a octo-core 64-bit
656           ARMv8 Cortex-A72 processors targeting a broad range of networking
657           applications.
658
659 config ARCH_EXYNOS
660         bool "Samsung EXYNOS"
661         select DM
662         select DM_GPIO
663         select DM_I2C
664         select DM_ETH
665         select DM_KEYBOARD
666         select DM_SERIAL
667         select DM_SPI
668         select DM_SPI_FLASH
669         select SPI
670         select GPIO_EXTRA_HEADER
671         imply SYS_THUMB_BUILD
672         imply CMD_DM
673         imply FAT_WRITE
674
675 config ARCH_S5PC1XX
676         bool "Samsung S5PC1XX"
677         select CPU_V7A
678         select DM
679         select DM_GPIO
680         select DM_I2C
681         select DM_SERIAL
682         select GPIO_EXTRA_HEADER
683         imply CMD_DM
684
685 config ARCH_HIGHBANK
686         bool "Calxeda Highbank"
687         select CPU_V7A
688         select PL01X_SERIAL
689         select DM
690         select DM_SERIAL
691         select OF_CONTROL
692         select OF_BOARD
693         select CLK
694         select CLK_CCF
695         select AHCI
696         select DM_ETH
697         select PHYS_64BIT
698
699 config ARCH_INTEGRATOR
700         bool "ARM Ltd. Integrator family"
701         select DM
702         select DM_SERIAL
703         select GPIO_EXTRA_HEADER
704         select PL01X_SERIAL
705         imply CMD_DM
706
707 config ARCH_IPQ40XX
708         bool "Qualcomm IPQ40xx SoCs"
709         select CPU_V7A
710         select DM
711         select DM_GPIO
712         select DM_SERIAL
713         select DM_RESET
714         select GPIO_EXTRA_HEADER
715         select MSM_SMEM
716         select PINCTRL
717         select CLK
718         select SMEM
719         select OF_CONTROL
720         imply CMD_DM
721
722 config ARCH_KEYSTONE
723         bool "TI Keystone"
724         select CMD_POWEROFF
725         select CPU_V7A
726         select GPIO_EXTRA_HEADER
727         select SUPPORT_SPL
728         select SYS_ARCH_TIMER
729         select SYS_THUMB_BUILD
730         imply CMD_MTDPARTS
731         imply CMD_SAVES
732         imply FIT
733
734 config ARCH_K3
735         bool "Texas Instruments' K3 Architecture"
736         select SPL
737         select SUPPORT_SPL
738         select FIT
739
740 config ARCH_OMAP2PLUS
741         bool "TI OMAP2+"
742         select CPU_V7A
743         select GPIO_EXTRA_HEADER
744         select SPL_BOARD_INIT if SPL
745         select SPL_STACK_R if SPL
746         select SUPPORT_SPL
747         imply TI_SYSC if DM && OF_CONTROL
748         imply FIT
749
750 config ARCH_MESON
751         bool "Amlogic Meson"
752         select GPIO_EXTRA_HEADER
753         imply DISTRO_DEFAULTS
754         imply DM_RNG
755         help
756           Support for the Meson SoC family developed by Amlogic Inc.,
757           targeted at media players and tablet computers. We currently
758           support the S905 (GXBaby) 64-bit SoC.
759
760 config ARCH_MEDIATEK
761         bool "MediaTek SoCs"
762         select DM
763         select GPIO_EXTRA_HEADER
764         select OF_CONTROL
765         select SPL_DM if SPL
766         select SPL_LIBCOMMON_SUPPORT if SPL
767         select SPL_LIBGENERIC_SUPPORT if SPL
768         select SPL_OF_CONTROL if SPL
769         select SUPPORT_SPL
770         help
771           Support for the MediaTek SoCs family developed by MediaTek Inc.
772           Please refer to doc/README.mediatek for more information.
773
774 config ARCH_LPC32XX
775         bool "NXP LPC32xx platform"
776         select CPU_ARM926EJS
777         select DM
778         select DM_GPIO
779         select DM_SERIAL
780         select GPIO_EXTRA_HEADER
781         select SPL_DM if SPL
782         select SUPPORT_SPL
783         imply CMD_DM
784
785 config ARCH_IMX8
786         bool "NXP i.MX8 platform"
787         select ARM64
788         select DM
789         select GPIO_EXTRA_HEADER
790         select OF_CONTROL
791         select ENABLE_ARM_SOC_BOOT0_HOOK
792
793 config ARCH_IMX8M
794         bool "NXP i.MX8M platform"
795         select ARM64
796         select GPIO_EXTRA_HEADER
797         select SYS_FSL_HAS_SEC if IMX_HAB
798         select SYS_FSL_SEC_COMPAT_4
799         select SYS_FSL_SEC_LE
800         select DM
801         select SUPPORT_SPL
802         imply CMD_DM
803
804 config ARCH_IMX8ULP
805         bool "NXP i.MX8ULP platform"
806         select ARM64
807         select DM
808         select OF_CONTROL
809         select SUPPORT_SPL
810         select GPIO_EXTRA_HEADER
811         imply CMD_DM
812
813 config ARCH_IMXRT
814         bool "NXP i.MXRT platform"
815         select CPU_V7M
816         select DM
817         select DM_SERIAL
818         select GPIO_EXTRA_HEADER
819         select SUPPORT_SPL
820         imply CMD_DM
821
822 config ARCH_MX23
823         bool "NXP i.MX23 family"
824         select CPU_ARM926EJS
825         select GPIO_EXTRA_HEADER
826         select PL011_SERIAL
827         select SUPPORT_SPL
828
829 config ARCH_MX25
830         bool "NXP MX25"
831         select CPU_ARM926EJS
832         select GPIO_EXTRA_HEADER
833         imply MXC_GPIO
834
835 config ARCH_MX28
836         bool "NXP i.MX28 family"
837         select CPU_ARM926EJS
838         select GPIO_EXTRA_HEADER
839         select PL011_SERIAL
840         select SUPPORT_SPL
841
842 config ARCH_MX31
843         bool "NXP i.MX31 family"
844         select CPU_ARM1136
845         select GPIO_EXTRA_HEADER
846
847 config ARCH_MX7ULP
848         bool "NXP MX7ULP"
849         select CPU_V7A
850         select GPIO_EXTRA_HEADER
851         select SYS_FSL_HAS_SEC if IMX_HAB
852         select SYS_FSL_SEC_COMPAT_4
853         select SYS_FSL_SEC_LE
854         select ROM_UNIFIED_SECTIONS
855         imply MXC_GPIO
856         imply SYS_THUMB_BUILD
857
858 config ARCH_MX7
859         bool "Freescale MX7"
860         select ARCH_MISC_INIT
861         select CPU_V7A
862         select GPIO_EXTRA_HEADER
863         select SYS_FSL_HAS_SEC if IMX_HAB
864         select SYS_FSL_SEC_COMPAT_4
865         select SYS_FSL_SEC_LE
866         imply BOARD_EARLY_INIT_F
867         imply MXC_GPIO
868         imply SYS_THUMB_BUILD
869
870 config ARCH_MX6
871         bool "Freescale MX6"
872         select CPU_V7A
873         select GPIO_EXTRA_HEADER
874         select SYS_FSL_HAS_SEC
875         select SYS_FSL_SEC_COMPAT_4
876         select SYS_FSL_SEC_LE
877         imply MXC_GPIO
878         imply SYS_THUMB_BUILD
879
880 if ARCH_MX6
881 config SPL_LDSCRIPT
882         default "arch/arm/mach-omap2/u-boot-spl.lds"
883 endif
884
885 config ARCH_MX5
886         bool "Freescale MX5"
887         select BOARD_EARLY_INIT_F
888         select CPU_V7A
889         select GPIO_EXTRA_HEADER
890         imply MXC_GPIO
891
892 config ARCH_NEXELL
893         bool "Nexell S5P4418/S5P6818 SoC"
894         select ENABLE_ARM_SOC_BOOT0_HOOK
895         select DM
896         select GPIO_EXTRA_HEADER
897
898 config ARCH_OWL
899         bool "Actions Semi OWL SoCs"
900         select DM
901         select DM_ETH
902         select DM_SERIAL
903         select GPIO_EXTRA_HEADER
904         select OWL_SERIAL
905         select CLK
906         select CLK_OWL
907         select OF_CONTROL
908         select SYS_RELOC_GD_ENV_ADDR
909         imply CMD_DM
910
911 config ARCH_QEMU
912         bool "QEMU Virtual Platform"
913         select DM
914         select DM_SERIAL
915         select OF_CONTROL
916         select PL01X_SERIAL
917         imply CMD_DM
918         imply DM_RNG
919         imply DM_RTC
920         imply RTC_PL031
921
922 config ARCH_RMOBILE
923         bool "Renesas ARM SoCs"
924         select DM
925         select DM_SERIAL
926         select GPIO_EXTRA_HEADER
927         imply BOARD_EARLY_INIT_F
928         imply CMD_DM
929         imply FAT_WRITE
930         imply SYS_THUMB_BUILD
931         imply ARCH_MISC_INIT if DISPLAY_CPUINFO
932
933 config ARCH_SNAPDRAGON
934         bool "Qualcomm Snapdragon SoCs"
935         select ARM64
936         select DM
937         select DM_GPIO
938         select DM_SERIAL
939         select GPIO_EXTRA_HEADER
940         select MSM_SMEM
941         select OF_CONTROL
942         select OF_SEPARATE
943         select SMEM
944         select SPMI
945         imply CMD_DM
946
947 config ARCH_SOCFPGA
948         bool "Altera SOCFPGA family"
949         select ARCH_EARLY_INIT_R
950         select ARCH_MISC_INIT if !TARGET_SOCFPGA_ARRIA10
951         select ARM64 if TARGET_SOCFPGA_SOC64
952         select CPU_V7A if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
953         select DM
954         select DM_SERIAL
955         select GPIO_EXTRA_HEADER
956         select ENABLE_ARM_SOC_BOOT0_HOOK if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
957         select OF_CONTROL
958         select SPL_DM_RESET if DM_RESET
959         select SPL_DM_SERIAL
960         select SPL_LIBCOMMON_SUPPORT
961         select SPL_LIBGENERIC_SUPPORT
962         select SPL_NAND_SUPPORT if SPL_NAND_DENALI
963         select SPL_OF_CONTROL
964         select SPL_SEPARATE_BSS if TARGET_SOCFPGA_SOC64
965         select SPL_SERIAL_SUPPORT
966         select SPL_SYSRESET
967         select SPL_WATCHDOG
968         select SUPPORT_SPL
969         select SYS_NS16550
970         select SYS_THUMB_BUILD if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
971         select SYSRESET
972         select SYSRESET_SOCFPGA if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
973         select SYSRESET_SOCFPGA_SOC64 if TARGET_SOCFPGA_SOC64
974         imply CMD_DM
975         imply CMD_MTDPARTS
976         imply CRC32_VERIFY
977         imply DM_SPI
978         imply DM_SPI_FLASH
979         imply FAT_WRITE
980         imply SPL
981         imply SPL_DM
982         imply SPL_DM_SPI
983         imply SPL_DM_SPI_FLASH
984         imply SPL_LIBDISK_SUPPORT
985         imply SPL_MMC_SUPPORT
986         imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
987         imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
988         imply SPL_SPI_FLASH_SUPPORT
989         imply SPL_SPI_SUPPORT
990         imply L2X0_CACHE
991
992 config ARCH_SUNXI
993         bool "Support sunxi (Allwinner) SoCs"
994         select BINMAN
995         select CMD_GPIO
996         select CMD_MMC if MMC
997         select CMD_USB if DISTRO_DEFAULTS && USB_HOST
998         select CLK
999         select DM
1000         select DM_ETH
1001         select DM_GPIO
1002         select DM_KEYBOARD
1003         select DM_MMC if MMC
1004         select DM_SCSI if SCSI
1005         select DM_SERIAL
1006         select GPIO_EXTRA_HEADER
1007         select OF_BOARD_SETUP
1008         select OF_CONTROL
1009         select OF_SEPARATE
1010         select SPECIFY_CONSOLE_INDEX
1011         select SPL_STACK_R if SPL
1012         select SPL_SYS_MALLOC_SIMPLE if SPL
1013         select SPL_SYS_THUMB_BUILD if !ARM64
1014         select SUNXI_GPIO
1015         select SYS_NS16550
1016         select SYS_THUMB_BUILD if !ARM64
1017         select USB if DISTRO_DEFAULTS
1018         select USB_KEYBOARD if DISTRO_DEFAULTS && USB_HOST
1019         select USB_STORAGE if DISTRO_DEFAULTS && USB_HOST
1020         select SPL_USE_TINY_PRINTF
1021         select USE_PREBOOT
1022         select SYS_RELOC_GD_ENV_ADDR
1023         imply BOARD_LATE_INIT
1024         imply CMD_DM
1025         imply CMD_GPT
1026         imply CMD_UBI if MTD_RAW_NAND
1027         imply DISTRO_DEFAULTS
1028         imply FAT_WRITE
1029         imply FIT
1030         imply OF_LIBFDT_OVERLAY
1031         imply PRE_CONSOLE_BUFFER
1032         imply SPL_GPIO
1033         imply SPL_LIBCOMMON_SUPPORT
1034         imply SPL_LIBGENERIC_SUPPORT
1035         imply SPL_MMC_SUPPORT if MMC
1036         imply SPL_POWER
1037         imply SPL_SERIAL_SUPPORT
1038         imply USB_GADGET
1039
1040 config ARCH_U8500
1041         bool "ST-Ericsson U8500 Series"
1042         select CPU_V7A
1043         select DM
1044         select DM_GPIO
1045         select DM_MMC if MMC
1046         select DM_SERIAL
1047         select OF_CONTROL
1048         select SYSRESET
1049         select TIMER
1050         imply ARM_PL180_MMCI
1051         imply DM_RTC
1052         imply NOMADIK_MTU_TIMER
1053         imply PL01X_SERIAL
1054         imply RTC_PL031
1055         imply SYSRESET_SYSCON
1056
1057 config ARCH_VERSAL
1058         bool "Support Xilinx Versal Platform"
1059         select ARM64
1060         select CLK
1061         select DM
1062         select DM_ETH if NET
1063         select DM_MMC if MMC
1064         select DM_SERIAL
1065         select GPIO_EXTRA_HEADER
1066         select OF_CONTROL
1067         select SOC_DEVICE
1068         imply BOARD_LATE_INIT
1069         imply ENV_VARS_UBOOT_RUNTIME_CONFIG
1070
1071 config ARCH_VF610
1072         bool "Freescale Vybrid"
1073         select CPU_V7A
1074         select GPIO_EXTRA_HEADER
1075         select SYS_FSL_ERRATUM_ESDHC111
1076         imply CMD_MTDPARTS
1077         imply MTD_RAW_NAND
1078
1079 config ARCH_ZYNQ
1080         bool "Xilinx Zynq based platform"
1081         select CLK
1082         select CLK_ZYNQ
1083         select CPU_V7A
1084         select DM
1085         select DM_ETH if NET
1086         select DM_MMC if MMC
1087         select DM_SERIAL
1088         select DM_SPI
1089         select DM_SPI_FLASH
1090         select GPIO_EXTRA_HEADER
1091         select OF_CONTROL
1092         select SPI
1093         select SPL_BOARD_INIT if SPL
1094         select SPL_CLK if SPL
1095         select SPL_DM if SPL
1096         select SPL_DM_SPI if SPL
1097         select SPL_DM_SPI_FLASH if SPL
1098         select SPL_OF_CONTROL if SPL
1099         select SPL_SEPARATE_BSS if SPL
1100         select SUPPORT_SPL
1101         imply ARCH_EARLY_INIT_R
1102         imply BOARD_LATE_INIT
1103         imply CMD_CLK
1104         imply CMD_DM
1105         imply CMD_SPL
1106         imply ENV_VARS_UBOOT_RUNTIME_CONFIG
1107         imply FAT_WRITE
1108
1109 config ARCH_ZYNQMP_R5
1110         bool "Xilinx ZynqMP R5 based platform"
1111         select CLK
1112         select CPU_V7R
1113         select DM
1114         select DM_ETH if NET
1115         select DM_MMC if MMC
1116         select DM_SERIAL
1117         select GPIO_EXTRA_HEADER
1118         select OF_CONTROL
1119         imply CMD_DM
1120         imply DM_USB_GADGET
1121
1122 config ARCH_ZYNQMP
1123         bool "Xilinx ZynqMP based platform"
1124         select ARM64
1125         select CLK
1126         select DM
1127         select DM_ETH if NET
1128         select DM_MAILBOX
1129         select DM_MMC if MMC
1130         select DM_SERIAL
1131         select DM_SPI if SPI
1132         select DM_SPI_FLASH if DM_SPI
1133         select FIRMWARE
1134         select GPIO_EXTRA_HEADER
1135         select OF_CONTROL
1136         select SPL_BOARD_INIT if SPL
1137         select SPL_CLK if SPL
1138         select SPL_DM if SPL
1139         select SPL_DM_SPI if SPI && SPL_DM
1140         select SPL_DM_SPI_FLASH if SPL_DM_SPI
1141         select SPL_DM_MAILBOX if SPL
1142         select SPL_FIRMWARE if SPL
1143         select SPL_SEPARATE_BSS if SPL
1144         select SUPPORT_SPL
1145         select ZYNQMP_IPI
1146         select SOC_DEVICE
1147         imply BOARD_LATE_INIT
1148         imply CMD_DM
1149         imply ENV_VARS_UBOOT_RUNTIME_CONFIG
1150         imply FAT_WRITE
1151         imply MP
1152         imply DM_USB_GADGET
1153
1154 config ARCH_TEGRA
1155         bool "NVIDIA Tegra"
1156         select GPIO_EXTRA_HEADER
1157         imply DISTRO_DEFAULTS
1158         imply FAT_WRITE
1159
1160 config TARGET_VEXPRESS64_AEMV8A
1161         bool "Support vexpress_aemv8a"
1162         select ARM64
1163         select GPIO_EXTRA_HEADER
1164         select PL01X_SERIAL
1165
1166 config TARGET_VEXPRESS64_BASE_FVP
1167         bool "Support Versatile Express ARMv8a FVP BASE model"
1168         select ARM64
1169         select GPIO_EXTRA_HEADER
1170         select PL01X_SERIAL
1171         select SEMIHOSTING
1172
1173 config TARGET_VEXPRESS64_JUNO
1174         bool "Support Versatile Express Juno Development Platform"
1175         select ARM64
1176         select GPIO_EXTRA_HEADER
1177         select PL01X_SERIAL
1178         select DM
1179         select OF_CONTROL
1180         select OF_BOARD
1181         select CLK
1182         select DM_SERIAL
1183         select ARM_PSCI_FW
1184         select PSCI_RESET
1185         select DM_ETH
1186         select BLK
1187         select USB
1188
1189 config TARGET_TOTAL_COMPUTE
1190         bool "Support Total Compute Platform"
1191         select ARM64
1192         select PL01X_SERIAL
1193         select DM
1194         select DM_SERIAL
1195         select DM_MMC
1196         select DM_GPIO
1197
1198 config TARGET_LS2080A_EMU
1199         bool "Support ls2080a_emu"
1200         select ARCH_LS2080A
1201         select ARM64
1202         select ARMV8_MULTIENTRY
1203         select FSL_DDR_SYNC_REFRESH
1204         select GPIO_EXTRA_HEADER
1205         help
1206           Support for Freescale LS2080A_EMU platform.
1207           The LS2080A Development System (EMULATOR) is a pre-silicon
1208           development platform that supports the QorIQ LS2080A
1209           Layerscape Architecture processor.
1210
1211 config TARGET_LS1088AQDS
1212         bool "Support ls1088aqds"
1213         select ARCH_LS1088A
1214         select ARM64
1215         select ARMV8_MULTIENTRY
1216         select ARCH_SUPPORT_TFABOOT
1217         select BOARD_LATE_INIT
1218         select GPIO_EXTRA_HEADER
1219         select SUPPORT_SPL
1220         select FSL_DDR_INTERACTIVE if !SD_BOOT
1221         help
1222           Support for NXP LS1088AQDS platform.
1223           The LS1088A Development System (QDS) is a high-performance
1224           development platform that supports the QorIQ LS1088A
1225           Layerscape Architecture processor.
1226
1227 config TARGET_LS2080AQDS
1228         bool "Support ls2080aqds"
1229         select ARCH_LS2080A
1230         select ARM64
1231         select ARMV8_MULTIENTRY
1232         select ARCH_SUPPORT_TFABOOT
1233         select BOARD_LATE_INIT
1234         select GPIO_EXTRA_HEADER
1235         select SUPPORT_SPL
1236         imply SCSI
1237         imply SCSI_AHCI
1238         select FSL_DDR_BIST
1239         select FSL_DDR_INTERACTIVE if !SPL
1240         help
1241           Support for Freescale LS2080AQDS platform.
1242           The LS2080A Development System (QDS) is a high-performance
1243           development platform that supports the QorIQ LS2080A
1244           Layerscape Architecture processor.
1245
1246 config TARGET_LS2080ARDB
1247         bool "Support ls2080ardb"
1248         select ARCH_LS2080A
1249         select ARM64
1250         select ARMV8_MULTIENTRY
1251         select ARCH_SUPPORT_TFABOOT
1252         select BOARD_LATE_INIT
1253         select SUPPORT_SPL
1254         select FSL_DDR_BIST
1255         select FSL_DDR_INTERACTIVE if !SPL
1256         select GPIO_EXTRA_HEADER
1257         imply SCSI
1258         imply SCSI_AHCI
1259         help
1260           Support for Freescale LS2080ARDB platform.
1261           The LS2080A Reference design board (RDB) is a high-performance
1262           development platform that supports the QorIQ LS2080A
1263           Layerscape Architecture processor.
1264
1265 config TARGET_LS2081ARDB
1266         bool "Support ls2081ardb"
1267         select ARCH_LS2080A
1268         select ARM64
1269         select ARMV8_MULTIENTRY
1270         select BOARD_LATE_INIT
1271         select GPIO_EXTRA_HEADER
1272         select SUPPORT_SPL
1273         help
1274           Support for Freescale LS2081ARDB platform.
1275           The LS2081A Reference design board (RDB) is a high-performance
1276           development platform that supports the QorIQ LS2081A/LS2041A
1277           Layerscape Architecture processor.
1278
1279 config TARGET_LX2160ARDB
1280         bool "Support lx2160ardb"
1281         select ARCH_LX2160A
1282         select ARM64
1283         select ARMV8_MULTIENTRY
1284         select ARCH_SUPPORT_TFABOOT
1285         select BOARD_LATE_INIT
1286         select GPIO_EXTRA_HEADER
1287         help
1288           Support for NXP LX2160ARDB platform.
1289           The lx2160ardb (LX2160A Reference design board (RDB)
1290           is a high-performance development platform that supports the
1291           QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
1292
1293 config TARGET_LX2160AQDS
1294         bool "Support lx2160aqds"
1295         select ARCH_LX2160A
1296         select ARM64
1297         select ARMV8_MULTIENTRY
1298         select ARCH_SUPPORT_TFABOOT
1299         select BOARD_LATE_INIT
1300         select GPIO_EXTRA_HEADER
1301         help
1302           Support for NXP LX2160AQDS platform.
1303           The lx2160aqds (LX2160A QorIQ Development System (QDS)
1304           is a high-performance development platform that supports the
1305           QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
1306
1307 config TARGET_LX2162AQDS
1308         bool "Support lx2162aqds"
1309         select ARCH_LX2162A
1310         select ARCH_MISC_INIT
1311         select ARM64
1312         select ARMV8_MULTIENTRY
1313         select ARCH_SUPPORT_TFABOOT
1314         select BOARD_LATE_INIT
1315         select GPIO_EXTRA_HEADER
1316         help
1317           Support for NXP LX2162AQDS platform.
1318           The lx2162aqds support is based on LX2160A Layerscape Architecture processor.
1319
1320 config TARGET_HIKEY
1321         bool "Support HiKey 96boards Consumer Edition Platform"
1322         select ARM64
1323         select DM
1324         select DM_GPIO
1325         select DM_SERIAL
1326         select GPIO_EXTRA_HEADER
1327         select OF_CONTROL
1328         select PL01X_SERIAL
1329         select SPECIFY_CONSOLE_INDEX
1330         imply CMD_DM
1331           help
1332           Support for HiKey 96boards platform. It features a HI6220
1333           SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
1334
1335 config TARGET_HIKEY960
1336         bool "Support HiKey960 96boards Consumer Edition Platform"
1337         select ARM64
1338         select DM
1339         select DM_SERIAL
1340         select GPIO_EXTRA_HEADER
1341         select OF_CONTROL
1342         select PL01X_SERIAL
1343         imply CMD_DM
1344           help
1345           Support for HiKey960 96boards platform. It features a HI3660
1346           SoC, with 4xA73 CPU, 4xA53 CPU, MALI-G71 GPU, and 3GB RAM.
1347
1348 config TARGET_POPLAR
1349         bool "Support Poplar 96boards Enterprise Edition Platform"
1350         select ARM64
1351         select DM
1352         select DM_SERIAL
1353         select GPIO_EXTRA_HEADER
1354         select OF_CONTROL
1355         select PL01X_SERIAL
1356         imply CMD_DM
1357           help
1358           Support for Poplar 96boards EE platform. It features a HI3798cv200
1359           SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
1360           making it capable of running any commercial set-top solution based on
1361           Linux or Android.
1362
1363 config TARGET_LS1012AQDS
1364         bool "Support ls1012aqds"
1365         select ARCH_LS1012A
1366         select ARM64
1367         select ARCH_SUPPORT_TFABOOT
1368         select BOARD_LATE_INIT
1369         select GPIO_EXTRA_HEADER
1370         help
1371           Support for Freescale LS1012AQDS platform.
1372           The LS1012A Development System (QDS) is a high-performance
1373           development platform that supports the QorIQ LS1012A
1374           Layerscape Architecture processor.
1375
1376 config TARGET_LS1012ARDB
1377         bool "Support ls1012ardb"
1378         select ARCH_LS1012A
1379         select ARM64
1380         select ARCH_SUPPORT_TFABOOT
1381         select BOARD_LATE_INIT
1382         select GPIO_EXTRA_HEADER
1383         imply SCSI
1384         imply SCSI_AHCI
1385         help
1386           Support for Freescale LS1012ARDB platform.
1387           The LS1012A Reference design board (RDB) is a high-performance
1388           development platform that supports the QorIQ LS1012A
1389           Layerscape Architecture processor.
1390
1391 config TARGET_LS1012A2G5RDB
1392         bool "Support ls1012a2g5rdb"
1393         select ARCH_LS1012A
1394         select ARM64
1395         select ARCH_SUPPORT_TFABOOT
1396         select BOARD_LATE_INIT
1397         select GPIO_EXTRA_HEADER
1398         imply SCSI
1399         help
1400           Support for Freescale LS1012A2G5RDB platform.
1401           The LS1012A 2G5 Reference design board (RDB) is a high-performance
1402           development platform that supports the QorIQ LS1012A
1403           Layerscape Architecture processor.
1404
1405 config TARGET_LS1012AFRWY
1406         bool "Support ls1012afrwy"
1407         select ARCH_LS1012A
1408         select ARM64
1409         select ARCH_SUPPORT_TFABOOT
1410         select BOARD_LATE_INIT
1411         select GPIO_EXTRA_HEADER
1412         imply SCSI
1413         imply SCSI_AHCI
1414         help
1415          Support for Freescale LS1012AFRWY platform.
1416          The LS1012A FRWY board (FRWY) is a high-performance
1417          development platform that supports the QorIQ LS1012A
1418          Layerscape Architecture processor.
1419
1420 config TARGET_LS1012AFRDM
1421         bool "Support ls1012afrdm"
1422         select ARCH_LS1012A
1423         select ARM64
1424         select ARCH_SUPPORT_TFABOOT
1425         select GPIO_EXTRA_HEADER
1426         help
1427           Support for Freescale LS1012AFRDM platform.
1428           The LS1012A Freedom  board (FRDM) is a high-performance
1429           development platform that supports the QorIQ LS1012A
1430           Layerscape Architecture processor.
1431
1432 config TARGET_LS1028AQDS
1433         bool "Support ls1028aqds"
1434         select ARCH_LS1028A
1435         select ARM64
1436         select ARMV8_MULTIENTRY
1437         select ARCH_SUPPORT_TFABOOT
1438         select BOARD_LATE_INIT
1439         select GPIO_EXTRA_HEADER
1440         help
1441           Support for Freescale LS1028AQDS platform
1442           The LS1028A Development System (QDS) is a high-performance
1443           development platform that supports the QorIQ LS1028A
1444           Layerscape Architecture processor.
1445
1446 config TARGET_LS1028ARDB
1447         bool "Support ls1028ardb"
1448         select ARCH_LS1028A
1449         select ARM64
1450         select ARMV8_MULTIENTRY
1451         select ARCH_SUPPORT_TFABOOT
1452         select BOARD_LATE_INIT
1453         select GPIO_EXTRA_HEADER
1454         help
1455           Support for Freescale LS1028ARDB platform
1456           The LS1028A Development System (RDB) is a high-performance
1457           development platform that supports the QorIQ LS1028A
1458           Layerscape Architecture processor.
1459
1460 config TARGET_LS1088ARDB
1461         bool "Support ls1088ardb"
1462         select ARCH_LS1088A
1463         select ARM64
1464         select ARMV8_MULTIENTRY
1465         select ARCH_SUPPORT_TFABOOT
1466         select BOARD_LATE_INIT
1467         select SUPPORT_SPL
1468         select FSL_DDR_INTERACTIVE if !SD_BOOT
1469         select GPIO_EXTRA_HEADER
1470         help
1471           Support for NXP LS1088ARDB platform.
1472           The LS1088A Reference design board (RDB) is a high-performance
1473           development platform that supports the QorIQ LS1088A
1474           Layerscape Architecture processor.
1475
1476 config TARGET_LS1021AQDS
1477         bool "Support ls1021aqds"
1478         select ARCH_LS1021A
1479         select ARCH_SUPPORT_PSCI
1480         select BOARD_EARLY_INIT_F
1481         select BOARD_LATE_INIT
1482         select CPU_V7A
1483         select CPU_V7_HAS_NONSEC
1484         select CPU_V7_HAS_VIRT
1485         select LS1_DEEP_SLEEP
1486         select SUPPORT_SPL
1487         select SYS_FSL_DDR
1488         select FSL_DDR_INTERACTIVE
1489         select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
1490         select GPIO_EXTRA_HEADER
1491         select SPI_FLASH_DATAFLASH if FSL_DSPI || FSL_QSPI
1492         imply SCSI
1493
1494 config TARGET_LS1021ATWR
1495         bool "Support ls1021atwr"
1496         select ARCH_LS1021A
1497         select ARCH_SUPPORT_PSCI
1498         select BOARD_EARLY_INIT_F
1499         select BOARD_LATE_INIT
1500         select CPU_V7A
1501         select CPU_V7_HAS_NONSEC
1502         select CPU_V7_HAS_VIRT
1503         select LS1_DEEP_SLEEP
1504         select SUPPORT_SPL
1505         select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
1506         select GPIO_EXTRA_HEADER
1507         imply SCSI
1508
1509 config TARGET_PG_WCOM_SELI8
1510         bool "Support Hitachi-Powergrids SELI8 service unit card"
1511         select ARCH_LS1021A
1512         select ARCH_SUPPORT_PSCI
1513         select BOARD_EARLY_INIT_F
1514         select BOARD_LATE_INIT
1515         select CPU_V7A
1516         select CPU_V7_HAS_NONSEC
1517         select CPU_V7_HAS_VIRT
1518         select SYS_FSL_DDR
1519         select FSL_DDR_INTERACTIVE
1520         select GPIO_EXTRA_HEADER
1521         select VENDOR_KM
1522         imply SCSI
1523         help
1524          Support for Hitachi-Powergrids SELI8 service unit card.
1525          SELI8 is a QorIQ LS1021a based service unit card used
1526          in XMC20 and FOX615 product families.
1527
1528 config TARGET_PG_WCOM_EXPU1
1529         bool "Support Hitachi-Powergrids EXPU1 service unit card"
1530         select ARCH_LS1021A
1531         select ARCH_SUPPORT_PSCI
1532         select BOARD_EARLY_INIT_F
1533         select BOARD_LATE_INIT
1534         select CPU_V7A
1535         select CPU_V7_HAS_NONSEC
1536         select CPU_V7_HAS_VIRT
1537         select SYS_FSL_DDR
1538         select FSL_DDR_INTERACTIVE
1539         select VENDOR_KM
1540         imply SCSI
1541         help
1542          Support for Hitachi-Powergrids EXPU1 service unit card.
1543          EXPU1 is a QorIQ LS1021a based service unit card used
1544          in XMC20 and FOX615 product families.
1545
1546 config TARGET_LS1021ATSN
1547         bool "Support ls1021atsn"
1548         select ARCH_LS1021A
1549         select ARCH_SUPPORT_PSCI
1550         select BOARD_EARLY_INIT_F
1551         select BOARD_LATE_INIT
1552         select CPU_V7A
1553         select CPU_V7_HAS_NONSEC
1554         select CPU_V7_HAS_VIRT
1555         select LS1_DEEP_SLEEP
1556         select SUPPORT_SPL
1557         select GPIO_EXTRA_HEADER
1558         imply SCSI
1559
1560 config TARGET_LS1021AIOT
1561         bool "Support ls1021aiot"
1562         select ARCH_LS1021A
1563         select ARCH_SUPPORT_PSCI
1564         select BOARD_LATE_INIT
1565         select CPU_V7A
1566         select CPU_V7_HAS_NONSEC
1567         select CPU_V7_HAS_VIRT
1568         select SUPPORT_SPL
1569         select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
1570         select GPIO_EXTRA_HEADER
1571         imply SCSI
1572         help
1573           Support for Freescale LS1021AIOT platform.
1574           The LS1021A Freescale board (IOT) is a high-performance
1575           development platform that supports the QorIQ LS1021A
1576           Layerscape Architecture processor.
1577
1578 config TARGET_LS1043AQDS
1579         bool "Support ls1043aqds"
1580         select ARCH_LS1043A
1581         select ARM64
1582         select ARMV8_MULTIENTRY
1583         select ARCH_SUPPORT_TFABOOT
1584         select BOARD_EARLY_INIT_F
1585         select BOARD_LATE_INIT
1586         select SUPPORT_SPL
1587         select FSL_DDR_INTERACTIVE if !SPL
1588         select FSL_DSPI if !SPL_NO_DSPI
1589         select DM_SPI_FLASH if FSL_DSPI
1590         select GPIO_EXTRA_HEADER
1591         imply SCSI
1592         imply SCSI_AHCI
1593         help
1594           Support for Freescale LS1043AQDS platform.
1595
1596 config TARGET_LS1043ARDB
1597         bool "Support ls1043ardb"
1598         select ARCH_LS1043A
1599         select ARM64
1600         select ARMV8_MULTIENTRY
1601         select ARCH_SUPPORT_TFABOOT
1602         select BOARD_EARLY_INIT_F
1603         select BOARD_LATE_INIT
1604         select SUPPORT_SPL
1605         select FSL_DSPI if !SPL_NO_DSPI
1606         select DM_SPI_FLASH if FSL_DSPI
1607         select GPIO_EXTRA_HEADER
1608         help
1609           Support for Freescale LS1043ARDB platform.
1610
1611 config TARGET_LS1046AQDS
1612         bool "Support ls1046aqds"
1613         select ARCH_LS1046A
1614         select ARM64
1615         select ARMV8_MULTIENTRY
1616         select ARCH_SUPPORT_TFABOOT
1617         select BOARD_EARLY_INIT_F
1618         select BOARD_LATE_INIT
1619         select DM_SPI_FLASH if DM_SPI
1620         select SUPPORT_SPL
1621         select FSL_DDR_BIST if !SPL
1622         select FSL_DDR_INTERACTIVE  if !SPL
1623         select FSL_DDR_INTERACTIVE if !SPL
1624         select GPIO_EXTRA_HEADER
1625         imply SCSI
1626         help
1627           Support for Freescale LS1046AQDS platform.
1628           The LS1046A Development System (QDS) is a high-performance
1629           development platform that supports the QorIQ LS1046A
1630           Layerscape Architecture processor.
1631
1632 config TARGET_LS1046ARDB
1633         bool "Support ls1046ardb"
1634         select ARCH_LS1046A
1635         select ARM64
1636         select ARMV8_MULTIENTRY
1637         select ARCH_SUPPORT_TFABOOT
1638         select BOARD_EARLY_INIT_F
1639         select BOARD_LATE_INIT
1640         select DM_SPI_FLASH if DM_SPI
1641         select POWER_MC34VR500
1642         select SUPPORT_SPL
1643         select FSL_DDR_BIST
1644         select FSL_DDR_INTERACTIVE if !SPL
1645         select GPIO_EXTRA_HEADER
1646         imply SCSI
1647         help
1648           Support for Freescale LS1046ARDB platform.
1649           The LS1046A Reference Design Board (RDB) is a high-performance
1650           development platform that supports the QorIQ LS1046A
1651           Layerscape Architecture processor.
1652
1653 config TARGET_LS1046AFRWY
1654         bool "Support ls1046afrwy"
1655         select ARCH_LS1046A
1656         select ARM64
1657         select ARMV8_MULTIENTRY
1658         select ARCH_SUPPORT_TFABOOT
1659         select BOARD_EARLY_INIT_F
1660         select BOARD_LATE_INIT
1661         select DM_SPI_FLASH if DM_SPI
1662         select GPIO_EXTRA_HEADER
1663         imply SCSI
1664         help
1665           Support for Freescale LS1046AFRWY platform.
1666           The LS1046A Freeway Board (FRWY) is a high-performance
1667           development platform that supports the QorIQ LS1046A
1668           Layerscape Architecture processor.
1669
1670 config TARGET_SL28
1671         bool "Support sl28"
1672         select ARCH_LS1028A
1673         select ARM64
1674         select ARMV8_MULTIENTRY
1675         select SUPPORT_SPL
1676         select BINMAN
1677         select DM
1678         select DM_GPIO
1679         select DM_I2C
1680         select DM_MMC
1681         select DM_SPI_FLASH
1682         select DM_ETH
1683         select DM_MDIO
1684         select DM_PCI
1685         select DM_RNG
1686         select DM_RTC
1687         select DM_SCSI
1688         select DM_SERIAL
1689         select DM_SPI
1690         select GPIO_EXTRA_HEADER
1691         select SPL_DM if SPL
1692         select SPL_DM_SPI if SPL
1693         select SPL_DM_SPI_FLASH if SPL
1694         select SPL_DM_I2C if SPL
1695         select SPL_DM_MMC if SPL
1696         select SPL_DM_SERIAL if SPL
1697         help
1698           Support for Kontron SMARC-sAL28 board.
1699
1700 config TARGET_COLIBRI_PXA270
1701         bool "Support colibri_pxa270"
1702         select CPU_PXA
1703         select GPIO_EXTRA_HEADER
1704
1705 config ARCH_UNIPHIER
1706         bool "Socionext UniPhier SoCs"
1707         select BOARD_LATE_INIT
1708         select DM
1709         select DM_ETH
1710         select DM_GPIO
1711         select DM_I2C
1712         select DM_MMC
1713         select DM_MTD
1714         select DM_RESET
1715         select DM_SERIAL
1716         select OF_BOARD_SETUP
1717         select OF_CONTROL
1718         select OF_LIBFDT
1719         select PINCTRL
1720         select SPL_BOARD_INIT if SPL
1721         select SPL_DM if SPL
1722         select SPL_LIBCOMMON_SUPPORT if SPL
1723         select SPL_LIBGENERIC_SUPPORT if SPL
1724         select SPL_OF_CONTROL if SPL
1725         select SPL_PINCTRL if SPL
1726         select SUPPORT_SPL
1727         imply CMD_DM
1728         imply DISTRO_DEFAULTS
1729         imply FAT_WRITE
1730         help
1731           Support for UniPhier SoC family developed by Socionext Inc.
1732           (formerly, System LSI Business Division of Panasonic Corporation)
1733
1734 config ARCH_SYNQUACER
1735         bool "Socionext SynQuacer SoCs"
1736         select ARM64
1737         select DM
1738         select GIC_V3
1739         select PSCI_RESET
1740         select SYSRESET
1741         select SYSRESET_PSCI
1742         select OF_CONTROL
1743         help
1744           Support for SynQuacer SoC family developed by Socionext Inc.
1745           This SoC is used on 96boards EE DeveloperBox.
1746
1747 config ARCH_STM32
1748         bool "Support STMicroelectronics STM32 MCU with cortex M"
1749         select CPU_V7M
1750         select DM
1751         select DM_SERIAL
1752         select GPIO_EXTRA_HEADER
1753         imply CMD_DM
1754
1755 config ARCH_STI
1756         bool "Support STMicrolectronics SoCs"
1757         select BLK
1758         select CPU_V7A
1759         select DM
1760         select DM_MMC
1761         select DM_RESET
1762         select DM_SERIAL
1763         imply CMD_DM
1764         help
1765           Support for STMicroelectronics STiH407/10 SoC family.
1766           This SoC is used on Linaro 96Board STiH410-B2260
1767
1768 config ARCH_STM32MP
1769         bool "Support STMicroelectronics STM32MP Socs with cortex A"
1770         select ARCH_MISC_INIT
1771         select ARCH_SUPPORT_TFABOOT
1772         select BOARD_LATE_INIT
1773         select CLK
1774         select DM
1775         select DM_GPIO
1776         select DM_RESET
1777         select DM_SERIAL
1778         select GPIO_EXTRA_HEADER
1779         select MISC
1780         select OF_CONTROL
1781         select OF_LIBFDT
1782         select OF_SYSTEM_SETUP
1783         select PINCTRL
1784         select REGMAP
1785         select SUPPORT_SPL
1786         select SYSCON
1787         select SYSRESET
1788         select SYS_THUMB_BUILD
1789         imply SPL_SYSRESET
1790         imply CMD_DM
1791         imply CMD_POWEROFF
1792         imply OF_LIBFDT_OVERLAY
1793         imply ENV_VARS_UBOOT_RUNTIME_CONFIG
1794         imply USE_PREBOOT
1795         help
1796           Support for STM32MP SoC family developed by STMicroelectronics,
1797           MPUs based on ARM cortex A core
1798           U-BOOT is running in DDR, loaded by the First Stage BootLoader (FSBL).
1799           FSBL can be TF-A: Trusted Firmware for Cortex A, for trusted boot
1800           chain.
1801           SPL is the unsecure FSBL for the basic boot chain.
1802
1803 config ARCH_ROCKCHIP
1804         bool "Support Rockchip SoCs"
1805         select BLK
1806         select BINMAN if SPL_OPTEE || (SPL && !ARM64)
1807         select DM
1808         select DM_GPIO
1809         select DM_I2C
1810         select DM_MMC
1811         select DM_PWM
1812         select DM_REGULATOR
1813         select DM_SERIAL
1814         select DM_SPI
1815         select DM_SPI_FLASH
1816         select ENABLE_ARM_SOC_BOOT0_HOOK
1817         select OF_CONTROL
1818         select SPI
1819         select SPL_DM if SPL
1820         select SPL_DM_SPI if SPL
1821         select SPL_DM_SPI_FLASH if SPL
1822         select SYS_MALLOC_F
1823         select SYS_THUMB_BUILD if !ARM64
1824         imply ADC
1825         imply CMD_DM
1826         imply DEBUG_UART_BOARD_INIT
1827         imply DISTRO_DEFAULTS
1828         imply FAT_WRITE
1829         imply SARADC_ROCKCHIP
1830         imply SPL_SYSRESET
1831         imply SPL_SYS_MALLOC_SIMPLE
1832         imply SYS_NS16550
1833         imply TPL_SYSRESET
1834         imply USB_FUNCTION_FASTBOOT
1835
1836 config ARCH_OCTEONTX
1837         bool "Support OcteonTX SoCs"
1838         select CLK
1839         select DM
1840         select GPIO_EXTRA_HEADER
1841         select ARM64
1842         select OF_CONTROL
1843         select OF_LIVE
1844         select BOARD_LATE_INIT
1845         select SYS_CACHE_SHIFT_7
1846
1847 config ARCH_OCTEONTX2
1848         bool "Support OcteonTX2 SoCs"
1849         select CLK
1850         select DM
1851         select GPIO_EXTRA_HEADER
1852         select ARM64
1853         select OF_CONTROL
1854         select OF_LIVE
1855         select BOARD_LATE_INIT
1856         select SYS_CACHE_SHIFT_7
1857
1858 config TARGET_THUNDERX_88XX
1859         bool "Support ThunderX 88xx"
1860         select ARM64
1861         select GPIO_EXTRA_HEADER
1862         select OF_CONTROL
1863         select PL01X_SERIAL
1864         select SYS_CACHE_SHIFT_7
1865
1866 config ARCH_ASPEED
1867         bool "Support Aspeed SoCs"
1868         select DM
1869         select OF_CONTROL
1870         imply CMD_DM
1871
1872 config TARGET_DURIAN
1873         bool "Support Phytium Durian Platform"
1874         select ARM64
1875         select GPIO_EXTRA_HEADER
1876         help
1877           Support for durian platform.
1878           It has 2GB Sdram, uart and pcie.
1879
1880 config TARGET_PRESIDIO_ASIC
1881         bool "Support Cortina Presidio ASIC Platform"
1882         select ARM64
1883
1884 config TARGET_XENGUEST_ARM64
1885         bool "Xen guest ARM64"
1886         select ARM64
1887         select XEN
1888         select OF_CONTROL
1889         select LINUX_KERNEL_IMAGE_HEADER
1890         select XEN_SERIAL
1891         select SSCANF
1892 endchoice
1893
1894 config ARCH_SUPPORT_TFABOOT
1895         bool
1896
1897 config TFABOOT
1898         bool "Support for booting from TF-A"
1899         depends on ARCH_SUPPORT_TFABOOT
1900         default n
1901         help
1902           Some platforms support the setup of secure registers (for instance
1903           for CPU errata handling) or provide secure services like PSCI.
1904           Those services could also be provided by other firmware parts
1905           like TF-A (Trusted Firmware for Cortex-A), in which case U-Boot
1906           does not need to (and cannot) execute this code.
1907           Enabling this option will make a U-Boot binary that is relying
1908           on other firmware layers to provide secure functionality.
1909
1910 config TI_SECURE_DEVICE
1911         bool "HS Device Type Support"
1912         depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_K3
1913         help
1914           If a high secure (HS) device type is being used, this config
1915           must be set. This option impacts various aspects of the
1916           build system (to create signed boot images that can be
1917           authenticated) and the code. See the doc/README.ti-secure
1918           file for further details.
1919
1920 if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
1921 config ISW_ENTRY_ADDR
1922         hex "Address in memory or XIP address of bootloader entry point"
1923         default 0x402F4000 if AM43XX
1924         default 0x402F0400 if AM33XX
1925         default 0x40301350 if OMAP54XX
1926         help
1927           After any reset, the boot ROM searches the boot media for a valid
1928           boot image. For non-XIP devices, the ROM then copies the image into
1929           internal memory. For all boot modes, after the ROM processes the
1930           boot image it eventually computes the entry point address depending
1931           on the device type (secure/non-secure), boot media (xip/non-xip) and
1932           image headers.
1933 endif
1934
1935 source "arch/arm/mach-aspeed/Kconfig"
1936
1937 source "arch/arm/mach-at91/Kconfig"
1938
1939 source "arch/arm/mach-bcm283x/Kconfig"
1940
1941 source "arch/arm/mach-bcmstb/Kconfig"
1942
1943 source "arch/arm/mach-davinci/Kconfig"
1944
1945 source "arch/arm/mach-exynos/Kconfig"
1946
1947 source "arch/arm/mach-highbank/Kconfig"
1948
1949 source "arch/arm/mach-integrator/Kconfig"
1950
1951 source "arch/arm/mach-ipq40xx/Kconfig"
1952
1953 source "arch/arm/mach-k3/Kconfig"
1954
1955 source "arch/arm/mach-keystone/Kconfig"
1956
1957 source "arch/arm/mach-kirkwood/Kconfig"
1958
1959 source "arch/arm/mach-lpc32xx/Kconfig"
1960
1961 source "arch/arm/mach-mvebu/Kconfig"
1962
1963 source "arch/arm/mach-octeontx/Kconfig"
1964
1965 source "arch/arm/mach-octeontx2/Kconfig"
1966
1967 source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1968
1969 source "arch/arm/mach-imx/mx2/Kconfig"
1970
1971 source "arch/arm/mach-imx/mx3/Kconfig"
1972
1973 source "arch/arm/mach-imx/mx5/Kconfig"
1974
1975 source "arch/arm/mach-imx/mx6/Kconfig"
1976
1977 source "arch/arm/mach-imx/mx7/Kconfig"
1978
1979 source "arch/arm/mach-imx/mx7ulp/Kconfig"
1980
1981 source "arch/arm/mach-imx/imx8/Kconfig"
1982
1983 source "arch/arm/mach-imx/imx8m/Kconfig"
1984
1985 source "arch/arm/mach-imx/imx8ulp/Kconfig"
1986
1987 source "arch/arm/mach-imx/imxrt/Kconfig"
1988
1989 source "arch/arm/mach-imx/mxs/Kconfig"
1990
1991 source "arch/arm/mach-omap2/Kconfig"
1992
1993 source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1994
1995 source "arch/arm/mach-orion5x/Kconfig"
1996
1997 source "arch/arm/mach-owl/Kconfig"
1998
1999 source "arch/arm/mach-rmobile/Kconfig"
2000
2001 source "arch/arm/mach-meson/Kconfig"
2002
2003 source "arch/arm/mach-mediatek/Kconfig"
2004
2005 source "arch/arm/mach-qemu/Kconfig"
2006
2007 source "arch/arm/mach-rockchip/Kconfig"
2008
2009 source "arch/arm/mach-s5pc1xx/Kconfig"
2010
2011 source "arch/arm/mach-snapdragon/Kconfig"
2012
2013 source "arch/arm/mach-socfpga/Kconfig"
2014
2015 source "arch/arm/mach-sti/Kconfig"
2016
2017 source "arch/arm/mach-stm32/Kconfig"
2018
2019 source "arch/arm/mach-stm32mp/Kconfig"
2020
2021 source "arch/arm/mach-sunxi/Kconfig"
2022
2023 source "arch/arm/mach-tegra/Kconfig"
2024
2025 source "arch/arm/mach-u8500/Kconfig"
2026
2027 source "arch/arm/mach-uniphier/Kconfig"
2028
2029 source "arch/arm/cpu/armv7/vf610/Kconfig"
2030
2031 source "arch/arm/mach-zynq/Kconfig"
2032
2033 source "arch/arm/mach-zynqmp/Kconfig"
2034
2035 source "arch/arm/mach-versal/Kconfig"
2036
2037 source "arch/arm/mach-zynqmp-r5/Kconfig"
2038
2039 source "arch/arm/cpu/armv7/Kconfig"
2040
2041 source "arch/arm/cpu/armv8/Kconfig"
2042
2043 source "arch/arm/mach-imx/Kconfig"
2044
2045 source "arch/arm/mach-nexell/Kconfig"
2046
2047 source "board/armltd/total_compute/Kconfig"
2048
2049 source "board/bosch/shc/Kconfig"
2050 source "board/bosch/guardian/Kconfig"
2051 source "board/CarMediaLab/flea3/Kconfig"
2052 source "board/Marvell/aspenite/Kconfig"
2053 source "board/Marvell/octeontx/Kconfig"
2054 source "board/Marvell/octeontx2/Kconfig"
2055 source "board/armltd/vexpress64/Kconfig"
2056 source "board/cortina/presidio-asic/Kconfig"
2057 source "board/broadcom/bcm963158/Kconfig"
2058 source "board/broadcom/bcm968360bg/Kconfig"
2059 source "board/broadcom/bcm968580xref/Kconfig"
2060 source "board/broadcom/bcmns3/Kconfig"
2061 source "board/cavium/thunderx/Kconfig"
2062 source "board/eets/pdu001/Kconfig"
2063 source "board/emulation/qemu-arm/Kconfig"
2064 source "board/freescale/ls2080aqds/Kconfig"
2065 source "board/freescale/ls2080ardb/Kconfig"
2066 source "board/freescale/ls1088a/Kconfig"
2067 source "board/freescale/ls1028a/Kconfig"
2068 source "board/freescale/ls1021aqds/Kconfig"
2069 source "board/freescale/ls1043aqds/Kconfig"
2070 source "board/freescale/ls1021atwr/Kconfig"
2071 source "board/freescale/ls1021atsn/Kconfig"
2072 source "board/freescale/ls1021aiot/Kconfig"
2073 source "board/freescale/ls1046aqds/Kconfig"
2074 source "board/freescale/ls1043ardb/Kconfig"
2075 source "board/freescale/ls1046ardb/Kconfig"
2076 source "board/freescale/ls1046afrwy/Kconfig"
2077 source "board/freescale/ls1012aqds/Kconfig"
2078 source "board/freescale/ls1012ardb/Kconfig"
2079 source "board/freescale/ls1012afrdm/Kconfig"
2080 source "board/freescale/lx2160a/Kconfig"
2081 source "board/grinn/chiliboard/Kconfig"
2082 source "board/hisilicon/hikey/Kconfig"
2083 source "board/hisilicon/hikey960/Kconfig"
2084 source "board/hisilicon/poplar/Kconfig"
2085 source "board/isee/igep003x/Kconfig"
2086 source "board/kontron/sl28/Kconfig"
2087 source "board/myir/mys_6ulx/Kconfig"
2088 source "board/seeed/npi_imx6ull/Kconfig"
2089 source "board/socionext/developerbox/Kconfig"
2090 source "board/st/stv0991/Kconfig"
2091 source "board/tcl/sl50/Kconfig"
2092 source "board/toradex/colibri_pxa270/Kconfig"
2093 source "board/variscite/dart_6ul/Kconfig"
2094 source "board/vscom/baltos/Kconfig"
2095 source "board/phytium/durian/Kconfig"
2096 source "board/xen/xenguest_arm64/Kconfig"
2097 source "board/keymile/Kconfig"
2098
2099 source "arch/arm/Kconfig.debug"
2100
2101 endmenu
2102
2103 config SPL_LDSCRIPT
2104         default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if (ARCH_MX23 || ARCH_MX28) && !SPL_FRAMEWORK
2105         default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
2106         default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64