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