Merge branch '2021-09-02-assorted-platform-and-bugfixes' into next
[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_SUPPORT
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_SUPPORT
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_SUPPORT
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_SUPPORT if MMC
1040         imply SPL_POWER
1041         imply SPL_SERIAL_SUPPORT
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_BASER_FVP
1189         bool "Support Versatile Express ARMv8r64 FVP BASE model"
1190         select ARM64
1191         select DM
1192         select DM_SERIAL
1193         select PL01X_SERIAL
1194
1195 config TARGET_VEXPRESS64_JUNO
1196         bool "Support Versatile Express Juno Development Platform"
1197         select ARM64
1198         select GPIO_EXTRA_HEADER
1199         select PL01X_SERIAL
1200         select DM
1201         select OF_CONTROL
1202         select OF_BOARD
1203         select CLK
1204         select DM_SERIAL
1205         select ARM_PSCI_FW
1206         select PSCI_RESET
1207         select DM_ETH
1208         select BLK
1209         select USB
1210
1211 config TARGET_TOTAL_COMPUTE
1212         bool "Support Total Compute Platform"
1213         select ARM64
1214         select PL01X_SERIAL
1215         select DM
1216         select DM_SERIAL
1217         select DM_MMC
1218         select DM_GPIO
1219
1220 config TARGET_LS2080A_EMU
1221         bool "Support ls2080a_emu"
1222         select ARCH_LS2080A
1223         select ARM64
1224         select ARMV8_MULTIENTRY
1225         select FSL_DDR_SYNC_REFRESH
1226         select GPIO_EXTRA_HEADER
1227         help
1228           Support for Freescale LS2080A_EMU platform.
1229           The LS2080A Development System (EMULATOR) is a pre-silicon
1230           development platform that supports the QorIQ LS2080A
1231           Layerscape Architecture processor.
1232
1233 config TARGET_LS1088AQDS
1234         bool "Support ls1088aqds"
1235         select ARCH_LS1088A
1236         select ARM64
1237         select ARMV8_MULTIENTRY
1238         select ARCH_SUPPORT_TFABOOT
1239         select BOARD_LATE_INIT
1240         select GPIO_EXTRA_HEADER
1241         select SUPPORT_SPL
1242         select FSL_DDR_INTERACTIVE if !SD_BOOT
1243         help
1244           Support for NXP LS1088AQDS platform.
1245           The LS1088A Development System (QDS) is a high-performance
1246           development platform that supports the QorIQ LS1088A
1247           Layerscape Architecture processor.
1248
1249 config TARGET_LS2080AQDS
1250         bool "Support ls2080aqds"
1251         select ARCH_LS2080A
1252         select ARM64
1253         select ARMV8_MULTIENTRY
1254         select ARCH_SUPPORT_TFABOOT
1255         select BOARD_LATE_INIT
1256         select GPIO_EXTRA_HEADER
1257         select SUPPORT_SPL
1258         imply SCSI
1259         imply SCSI_AHCI
1260         select FSL_DDR_BIST
1261         select FSL_DDR_INTERACTIVE if !SPL
1262         help
1263           Support for Freescale LS2080AQDS platform.
1264           The LS2080A Development System (QDS) is a high-performance
1265           development platform that supports the QorIQ LS2080A
1266           Layerscape Architecture processor.
1267
1268 config TARGET_LS2080ARDB
1269         bool "Support ls2080ardb"
1270         select ARCH_LS2080A
1271         select ARM64
1272         select ARMV8_MULTIENTRY
1273         select ARCH_SUPPORT_TFABOOT
1274         select BOARD_LATE_INIT
1275         select SUPPORT_SPL
1276         select FSL_DDR_BIST
1277         select FSL_DDR_INTERACTIVE if !SPL
1278         select GPIO_EXTRA_HEADER
1279         imply SCSI
1280         imply SCSI_AHCI
1281         help
1282           Support for Freescale LS2080ARDB platform.
1283           The LS2080A Reference design board (RDB) is a high-performance
1284           development platform that supports the QorIQ LS2080A
1285           Layerscape Architecture processor.
1286
1287 config TARGET_LS2081ARDB
1288         bool "Support ls2081ardb"
1289         select ARCH_LS2080A
1290         select ARM64
1291         select ARMV8_MULTIENTRY
1292         select BOARD_LATE_INIT
1293         select GPIO_EXTRA_HEADER
1294         select SUPPORT_SPL
1295         help
1296           Support for Freescale LS2081ARDB platform.
1297           The LS2081A Reference design board (RDB) is a high-performance
1298           development platform that supports the QorIQ LS2081A/LS2041A
1299           Layerscape Architecture processor.
1300
1301 config TARGET_LX2160ARDB
1302         bool "Support lx2160ardb"
1303         select ARCH_LX2160A
1304         select ARM64
1305         select ARMV8_MULTIENTRY
1306         select ARCH_SUPPORT_TFABOOT
1307         select BOARD_LATE_INIT
1308         select GPIO_EXTRA_HEADER
1309         help
1310           Support for NXP LX2160ARDB platform.
1311           The lx2160ardb (LX2160A Reference design board (RDB)
1312           is a high-performance development platform that supports the
1313           QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
1314
1315 config TARGET_LX2160AQDS
1316         bool "Support lx2160aqds"
1317         select ARCH_LX2160A
1318         select ARM64
1319         select ARMV8_MULTIENTRY
1320         select ARCH_SUPPORT_TFABOOT
1321         select BOARD_LATE_INIT
1322         select GPIO_EXTRA_HEADER
1323         help
1324           Support for NXP LX2160AQDS platform.
1325           The lx2160aqds (LX2160A QorIQ Development System (QDS)
1326           is a high-performance development platform that supports the
1327           QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
1328
1329 config TARGET_LX2162AQDS
1330         bool "Support lx2162aqds"
1331         select ARCH_LX2162A
1332         select ARCH_MISC_INIT
1333         select ARM64
1334         select ARMV8_MULTIENTRY
1335         select ARCH_SUPPORT_TFABOOT
1336         select BOARD_LATE_INIT
1337         select GPIO_EXTRA_HEADER
1338         help
1339           Support for NXP LX2162AQDS platform.
1340           The lx2162aqds support is based on LX2160A Layerscape Architecture processor.
1341
1342 config TARGET_HIKEY
1343         bool "Support HiKey 96boards Consumer Edition Platform"
1344         select ARM64
1345         select DM
1346         select DM_GPIO
1347         select DM_SERIAL
1348         select GPIO_EXTRA_HEADER
1349         select OF_CONTROL
1350         select PL01X_SERIAL
1351         select SPECIFY_CONSOLE_INDEX
1352         imply CMD_DM
1353           help
1354           Support for HiKey 96boards platform. It features a HI6220
1355           SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
1356
1357 config TARGET_HIKEY960
1358         bool "Support HiKey960 96boards Consumer Edition Platform"
1359         select ARM64
1360         select DM
1361         select DM_SERIAL
1362         select GPIO_EXTRA_HEADER
1363         select OF_CONTROL
1364         select PL01X_SERIAL
1365         imply CMD_DM
1366           help
1367           Support for HiKey960 96boards platform. It features a HI3660
1368           SoC, with 4xA73 CPU, 4xA53 CPU, MALI-G71 GPU, and 3GB RAM.
1369
1370 config TARGET_POPLAR
1371         bool "Support Poplar 96boards Enterprise Edition Platform"
1372         select ARM64
1373         select DM
1374         select DM_SERIAL
1375         select GPIO_EXTRA_HEADER
1376         select OF_CONTROL
1377         select PL01X_SERIAL
1378         imply CMD_DM
1379           help
1380           Support for Poplar 96boards EE platform. It features a HI3798cv200
1381           SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
1382           making it capable of running any commercial set-top solution based on
1383           Linux or Android.
1384
1385 config TARGET_LS1012AQDS
1386         bool "Support ls1012aqds"
1387         select ARCH_LS1012A
1388         select ARM64
1389         select ARCH_SUPPORT_TFABOOT
1390         select BOARD_LATE_INIT
1391         select GPIO_EXTRA_HEADER
1392         help
1393           Support for Freescale LS1012AQDS platform.
1394           The LS1012A Development System (QDS) is a high-performance
1395           development platform that supports the QorIQ LS1012A
1396           Layerscape Architecture processor.
1397
1398 config TARGET_LS1012ARDB
1399         bool "Support ls1012ardb"
1400         select ARCH_LS1012A
1401         select ARM64
1402         select ARCH_SUPPORT_TFABOOT
1403         select BOARD_LATE_INIT
1404         select GPIO_EXTRA_HEADER
1405         imply SCSI
1406         imply SCSI_AHCI
1407         help
1408           Support for Freescale LS1012ARDB platform.
1409           The LS1012A Reference design board (RDB) is a high-performance
1410           development platform that supports the QorIQ LS1012A
1411           Layerscape Architecture processor.
1412
1413 config TARGET_LS1012A2G5RDB
1414         bool "Support ls1012a2g5rdb"
1415         select ARCH_LS1012A
1416         select ARM64
1417         select ARCH_SUPPORT_TFABOOT
1418         select BOARD_LATE_INIT
1419         select GPIO_EXTRA_HEADER
1420         imply SCSI
1421         help
1422           Support for Freescale LS1012A2G5RDB platform.
1423           The LS1012A 2G5 Reference design board (RDB) is a high-performance
1424           development platform that supports the QorIQ LS1012A
1425           Layerscape Architecture processor.
1426
1427 config TARGET_LS1012AFRWY
1428         bool "Support ls1012afrwy"
1429         select ARCH_LS1012A
1430         select ARM64
1431         select ARCH_SUPPORT_TFABOOT
1432         select BOARD_LATE_INIT
1433         select GPIO_EXTRA_HEADER
1434         imply SCSI
1435         imply SCSI_AHCI
1436         help
1437          Support for Freescale LS1012AFRWY platform.
1438          The LS1012A FRWY board (FRWY) is a high-performance
1439          development platform that supports the QorIQ LS1012A
1440          Layerscape Architecture processor.
1441
1442 config TARGET_LS1012AFRDM
1443         bool "Support ls1012afrdm"
1444         select ARCH_LS1012A
1445         select ARM64
1446         select ARCH_SUPPORT_TFABOOT
1447         select GPIO_EXTRA_HEADER
1448         help
1449           Support for Freescale LS1012AFRDM platform.
1450           The LS1012A Freedom  board (FRDM) is a high-performance
1451           development platform that supports the QorIQ LS1012A
1452           Layerscape Architecture processor.
1453
1454 config TARGET_LS1028AQDS
1455         bool "Support ls1028aqds"
1456         select ARCH_LS1028A
1457         select ARM64
1458         select ARMV8_MULTIENTRY
1459         select ARCH_SUPPORT_TFABOOT
1460         select BOARD_LATE_INIT
1461         select GPIO_EXTRA_HEADER
1462         help
1463           Support for Freescale LS1028AQDS platform
1464           The LS1028A Development System (QDS) is a high-performance
1465           development platform that supports the QorIQ LS1028A
1466           Layerscape Architecture processor.
1467
1468 config TARGET_LS1028ARDB
1469         bool "Support ls1028ardb"
1470         select ARCH_LS1028A
1471         select ARM64
1472         select ARMV8_MULTIENTRY
1473         select ARCH_SUPPORT_TFABOOT
1474         select BOARD_LATE_INIT
1475         select GPIO_EXTRA_HEADER
1476         help
1477           Support for Freescale LS1028ARDB platform
1478           The LS1028A Development System (RDB) is a high-performance
1479           development platform that supports the QorIQ LS1028A
1480           Layerscape Architecture processor.
1481
1482 config TARGET_LS1088ARDB
1483         bool "Support ls1088ardb"
1484         select ARCH_LS1088A
1485         select ARM64
1486         select ARMV8_MULTIENTRY
1487         select ARCH_SUPPORT_TFABOOT
1488         select BOARD_LATE_INIT
1489         select SUPPORT_SPL
1490         select FSL_DDR_INTERACTIVE if !SD_BOOT
1491         select GPIO_EXTRA_HEADER
1492         help
1493           Support for NXP LS1088ARDB platform.
1494           The LS1088A Reference design board (RDB) is a high-performance
1495           development platform that supports the QorIQ LS1088A
1496           Layerscape Architecture processor.
1497
1498 config TARGET_LS1021AQDS
1499         bool "Support ls1021aqds"
1500         select ARCH_LS1021A
1501         select ARCH_SUPPORT_PSCI
1502         select BOARD_EARLY_INIT_F
1503         select BOARD_LATE_INIT
1504         select CPU_V7A
1505         select CPU_V7_HAS_NONSEC
1506         select CPU_V7_HAS_VIRT
1507         select LS1_DEEP_SLEEP
1508         select SUPPORT_SPL
1509         select SYS_FSL_DDR
1510         select FSL_DDR_INTERACTIVE
1511         select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
1512         select GPIO_EXTRA_HEADER
1513         select SPI_FLASH_DATAFLASH if FSL_DSPI || FSL_QSPI
1514         imply SCSI
1515
1516 config TARGET_LS1021ATWR
1517         bool "Support ls1021atwr"
1518         select ARCH_LS1021A
1519         select ARCH_SUPPORT_PSCI
1520         select BOARD_EARLY_INIT_F
1521         select BOARD_LATE_INIT
1522         select CPU_V7A
1523         select CPU_V7_HAS_NONSEC
1524         select CPU_V7_HAS_VIRT
1525         select LS1_DEEP_SLEEP
1526         select SUPPORT_SPL
1527         select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
1528         select GPIO_EXTRA_HEADER
1529         imply SCSI
1530
1531 config TARGET_PG_WCOM_SELI8
1532         bool "Support Hitachi-Powergrids SELI8 service unit card"
1533         select ARCH_LS1021A
1534         select ARCH_SUPPORT_PSCI
1535         select BOARD_EARLY_INIT_F
1536         select BOARD_LATE_INIT
1537         select CPU_V7A
1538         select CPU_V7_HAS_NONSEC
1539         select CPU_V7_HAS_VIRT
1540         select SYS_FSL_DDR
1541         select FSL_DDR_INTERACTIVE
1542         select GPIO_EXTRA_HEADER
1543         select VENDOR_KM
1544         imply SCSI
1545         help
1546          Support for Hitachi-Powergrids SELI8 service unit card.
1547          SELI8 is a QorIQ LS1021a based service unit card used
1548          in XMC20 and FOX615 product families.
1549
1550 config TARGET_PG_WCOM_EXPU1
1551         bool "Support Hitachi-Powergrids EXPU1 service unit card"
1552         select ARCH_LS1021A
1553         select ARCH_SUPPORT_PSCI
1554         select BOARD_EARLY_INIT_F
1555         select BOARD_LATE_INIT
1556         select CPU_V7A
1557         select CPU_V7_HAS_NONSEC
1558         select CPU_V7_HAS_VIRT
1559         select SYS_FSL_DDR
1560         select FSL_DDR_INTERACTIVE
1561         select VENDOR_KM
1562         imply SCSI
1563         help
1564          Support for Hitachi-Powergrids EXPU1 service unit card.
1565          EXPU1 is a QorIQ LS1021a based service unit card used
1566          in XMC20 and FOX615 product families.
1567
1568 config TARGET_LS1021ATSN
1569         bool "Support ls1021atsn"
1570         select ARCH_LS1021A
1571         select ARCH_SUPPORT_PSCI
1572         select BOARD_EARLY_INIT_F
1573         select BOARD_LATE_INIT
1574         select CPU_V7A
1575         select CPU_V7_HAS_NONSEC
1576         select CPU_V7_HAS_VIRT
1577         select LS1_DEEP_SLEEP
1578         select SUPPORT_SPL
1579         select GPIO_EXTRA_HEADER
1580         imply SCSI
1581
1582 config TARGET_LS1021AIOT
1583         bool "Support ls1021aiot"
1584         select ARCH_LS1021A
1585         select ARCH_SUPPORT_PSCI
1586         select BOARD_LATE_INIT
1587         select CPU_V7A
1588         select CPU_V7_HAS_NONSEC
1589         select CPU_V7_HAS_VIRT
1590         select SUPPORT_SPL
1591         select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
1592         select GPIO_EXTRA_HEADER
1593         imply SCSI
1594         help
1595           Support for Freescale LS1021AIOT platform.
1596           The LS1021A Freescale board (IOT) is a high-performance
1597           development platform that supports the QorIQ LS1021A
1598           Layerscape Architecture processor.
1599
1600 config TARGET_LS1043AQDS
1601         bool "Support ls1043aqds"
1602         select ARCH_LS1043A
1603         select ARM64
1604         select ARMV8_MULTIENTRY
1605         select ARCH_SUPPORT_TFABOOT
1606         select BOARD_EARLY_INIT_F
1607         select BOARD_LATE_INIT
1608         select SUPPORT_SPL
1609         select FSL_DDR_INTERACTIVE if !SPL
1610         select FSL_DSPI if !SPL_NO_DSPI
1611         select DM_SPI_FLASH if FSL_DSPI
1612         select GPIO_EXTRA_HEADER
1613         imply SCSI
1614         imply SCSI_AHCI
1615         help
1616           Support for Freescale LS1043AQDS platform.
1617
1618 config TARGET_LS1043ARDB
1619         bool "Support ls1043ardb"
1620         select ARCH_LS1043A
1621         select ARM64
1622         select ARMV8_MULTIENTRY
1623         select ARCH_SUPPORT_TFABOOT
1624         select BOARD_EARLY_INIT_F
1625         select BOARD_LATE_INIT
1626         select SUPPORT_SPL
1627         select FSL_DSPI if !SPL_NO_DSPI
1628         select DM_SPI_FLASH if FSL_DSPI
1629         select GPIO_EXTRA_HEADER
1630         help
1631           Support for Freescale LS1043ARDB platform.
1632
1633 config TARGET_LS1046AQDS
1634         bool "Support ls1046aqds"
1635         select ARCH_LS1046A
1636         select ARM64
1637         select ARMV8_MULTIENTRY
1638         select ARCH_SUPPORT_TFABOOT
1639         select BOARD_EARLY_INIT_F
1640         select BOARD_LATE_INIT
1641         select DM_SPI_FLASH if DM_SPI
1642         select SUPPORT_SPL
1643         select FSL_DDR_BIST if !SPL
1644         select FSL_DDR_INTERACTIVE  if !SPL
1645         select FSL_DDR_INTERACTIVE if !SPL
1646         select GPIO_EXTRA_HEADER
1647         imply SCSI
1648         help
1649           Support for Freescale LS1046AQDS platform.
1650           The LS1046A Development System (QDS) is a high-performance
1651           development platform that supports the QorIQ LS1046A
1652           Layerscape Architecture processor.
1653
1654 config TARGET_LS1046ARDB
1655         bool "Support ls1046ardb"
1656         select ARCH_LS1046A
1657         select ARM64
1658         select ARMV8_MULTIENTRY
1659         select ARCH_SUPPORT_TFABOOT
1660         select BOARD_EARLY_INIT_F
1661         select BOARD_LATE_INIT
1662         select DM_SPI_FLASH if DM_SPI
1663         select POWER_MC34VR500
1664         select SUPPORT_SPL
1665         select FSL_DDR_BIST
1666         select FSL_DDR_INTERACTIVE if !SPL
1667         select GPIO_EXTRA_HEADER
1668         imply SCSI
1669         help
1670           Support for Freescale LS1046ARDB platform.
1671           The LS1046A Reference Design Board (RDB) is a high-performance
1672           development platform that supports the QorIQ LS1046A
1673           Layerscape Architecture processor.
1674
1675 config TARGET_LS1046AFRWY
1676         bool "Support ls1046afrwy"
1677         select ARCH_LS1046A
1678         select ARM64
1679         select ARMV8_MULTIENTRY
1680         select ARCH_SUPPORT_TFABOOT
1681         select BOARD_EARLY_INIT_F
1682         select BOARD_LATE_INIT
1683         select DM_SPI_FLASH if DM_SPI
1684         select GPIO_EXTRA_HEADER
1685         imply SCSI
1686         help
1687           Support for Freescale LS1046AFRWY platform.
1688           The LS1046A Freeway Board (FRWY) is a high-performance
1689           development platform that supports the QorIQ LS1046A
1690           Layerscape Architecture processor.
1691
1692 config TARGET_SL28
1693         bool "Support sl28"
1694         select ARCH_LS1028A
1695         select ARM64
1696         select ARMV8_MULTIENTRY
1697         select SUPPORT_SPL
1698         select BINMAN
1699         select DM
1700         select DM_GPIO
1701         select DM_I2C
1702         select DM_MMC
1703         select DM_SPI_FLASH
1704         select DM_ETH
1705         select DM_MDIO
1706         select DM_PCI
1707         select DM_RNG
1708         select DM_RTC
1709         select DM_SCSI
1710         select DM_SERIAL
1711         select DM_SPI
1712         select GPIO_EXTRA_HEADER
1713         select SPL_DM if SPL
1714         select SPL_DM_SPI if SPL
1715         select SPL_DM_SPI_FLASH if SPL
1716         select SPL_DM_I2C if SPL
1717         select SPL_DM_MMC if SPL
1718         select SPL_DM_SERIAL if SPL
1719         help
1720           Support for Kontron SMARC-sAL28 board.
1721
1722 config TARGET_COLIBRI_PXA270
1723         bool "Support colibri_pxa270"
1724         select CPU_PXA
1725         select GPIO_EXTRA_HEADER
1726
1727 config ARCH_UNIPHIER
1728         bool "Socionext UniPhier SoCs"
1729         select BOARD_LATE_INIT
1730         select DM
1731         select DM_ETH
1732         select DM_GPIO
1733         select DM_I2C
1734         select DM_MMC
1735         select DM_MTD
1736         select DM_RESET
1737         select DM_SERIAL
1738         select OF_BOARD_SETUP
1739         select OF_CONTROL
1740         select OF_LIBFDT
1741         select PINCTRL
1742         select SPL_BOARD_INIT if SPL
1743         select SPL_DM if SPL
1744         select SPL_LIBCOMMON_SUPPORT if SPL
1745         select SPL_LIBGENERIC_SUPPORT if SPL
1746         select SPL_OF_CONTROL if SPL
1747         select SPL_PINCTRL if SPL
1748         select SUPPORT_SPL
1749         imply CMD_DM
1750         imply DISTRO_DEFAULTS
1751         imply FAT_WRITE
1752         help
1753           Support for UniPhier SoC family developed by Socionext Inc.
1754           (formerly, System LSI Business Division of Panasonic Corporation)
1755
1756 config ARCH_SYNQUACER
1757         bool "Socionext SynQuacer SoCs"
1758         select ARM64
1759         select DM
1760         select GIC_V3
1761         select PSCI_RESET
1762         select SYSRESET
1763         select SYSRESET_PSCI
1764         select OF_CONTROL
1765         help
1766           Support for SynQuacer SoC family developed by Socionext Inc.
1767           This SoC is used on 96boards EE DeveloperBox.
1768
1769 config ARCH_STM32
1770         bool "Support STMicroelectronics STM32 MCU with cortex M"
1771         select CPU_V7M
1772         select DM
1773         select DM_SERIAL
1774         select GPIO_EXTRA_HEADER
1775         imply CMD_DM
1776
1777 config ARCH_STI
1778         bool "Support STMicrolectronics SoCs"
1779         select BLK
1780         select CPU_V7A
1781         select DM
1782         select DM_MMC
1783         select DM_RESET
1784         select DM_SERIAL
1785         imply CMD_DM
1786         help
1787           Support for STMicroelectronics STiH407/10 SoC family.
1788           This SoC is used on Linaro 96Board STiH410-B2260
1789
1790 config ARCH_STM32MP
1791         bool "Support STMicroelectronics STM32MP Socs with cortex A"
1792         select ARCH_MISC_INIT
1793         select ARCH_SUPPORT_TFABOOT
1794         select BOARD_LATE_INIT
1795         select CLK
1796         select DM
1797         select DM_GPIO
1798         select DM_RESET
1799         select DM_SERIAL
1800         select GPIO_EXTRA_HEADER
1801         select MISC
1802         select OF_CONTROL
1803         select OF_LIBFDT
1804         select OF_SYSTEM_SETUP
1805         select PINCTRL
1806         select REGMAP
1807         select SUPPORT_SPL
1808         select SYSCON
1809         select SYSRESET
1810         select SYS_THUMB_BUILD
1811         imply SPL_SYSRESET
1812         imply CMD_DM
1813         imply CMD_POWEROFF
1814         imply OF_LIBFDT_OVERLAY
1815         imply ENV_VARS_UBOOT_RUNTIME_CONFIG
1816         imply USE_PREBOOT
1817         help
1818           Support for STM32MP SoC family developed by STMicroelectronics,
1819           MPUs based on ARM cortex A core
1820           U-BOOT is running in DDR, loaded by the First Stage BootLoader (FSBL).
1821           FSBL can be TF-A: Trusted Firmware for Cortex A, for trusted boot
1822           chain.
1823           SPL is the unsecure FSBL for the basic boot chain.
1824
1825 config ARCH_ROCKCHIP
1826         bool "Support Rockchip SoCs"
1827         select BLK
1828         select BINMAN if SPL_OPTEE || (SPL && !ARM64)
1829         select DM
1830         select DM_GPIO
1831         select DM_I2C
1832         select DM_MMC
1833         select DM_PWM
1834         select DM_REGULATOR
1835         select DM_SERIAL
1836         select DM_SPI
1837         select DM_SPI_FLASH
1838         select ENABLE_ARM_SOC_BOOT0_HOOK
1839         select OF_CONTROL
1840         select SPI
1841         select SPL_DM if SPL
1842         select SPL_DM_SPI if SPL
1843         select SPL_DM_SPI_FLASH if SPL
1844         select SYS_MALLOC_F
1845         select SYS_THUMB_BUILD if !ARM64
1846         imply ADC
1847         imply CMD_DM
1848         imply DEBUG_UART_BOARD_INIT
1849         imply DISTRO_DEFAULTS
1850         imply FAT_WRITE
1851         imply SARADC_ROCKCHIP
1852         imply SPL_SYSRESET
1853         imply SPL_SYS_MALLOC_SIMPLE
1854         imply SYS_NS16550
1855         imply TPL_SYSRESET
1856         imply USB_FUNCTION_FASTBOOT
1857
1858 config ARCH_OCTEONTX
1859         bool "Support OcteonTX SoCs"
1860         select CLK
1861         select DM
1862         select GPIO_EXTRA_HEADER
1863         select ARM64
1864         select OF_CONTROL
1865         select OF_LIVE
1866         select BOARD_LATE_INIT
1867         select SYS_CACHE_SHIFT_7
1868
1869 config ARCH_OCTEONTX2
1870         bool "Support OcteonTX2 SoCs"
1871         select CLK
1872         select DM
1873         select GPIO_EXTRA_HEADER
1874         select ARM64
1875         select OF_CONTROL
1876         select OF_LIVE
1877         select BOARD_LATE_INIT
1878         select SYS_CACHE_SHIFT_7
1879
1880 config TARGET_THUNDERX_88XX
1881         bool "Support ThunderX 88xx"
1882         select ARM64
1883         select GPIO_EXTRA_HEADER
1884         select OF_CONTROL
1885         select PL01X_SERIAL
1886         select SYS_CACHE_SHIFT_7
1887
1888 config ARCH_ASPEED
1889         bool "Support Aspeed SoCs"
1890         select DM
1891         select OF_CONTROL
1892         imply CMD_DM
1893
1894 config TARGET_DURIAN
1895         bool "Support Phytium Durian Platform"
1896         select ARM64
1897         select GPIO_EXTRA_HEADER
1898         help
1899           Support for durian platform.
1900           It has 2GB Sdram, uart and pcie.
1901
1902 config TARGET_PRESIDIO_ASIC
1903         bool "Support Cortina Presidio ASIC Platform"
1904         select ARM64
1905         select GICV2
1906
1907 config TARGET_XENGUEST_ARM64
1908         bool "Xen guest ARM64"
1909         select ARM64
1910         select XEN
1911         select OF_CONTROL
1912         select LINUX_KERNEL_IMAGE_HEADER
1913         select XEN_SERIAL
1914         select SSCANF
1915 endchoice
1916
1917 config ARCH_SUPPORT_TFABOOT
1918         bool
1919
1920 config TFABOOT
1921         bool "Support for booting from TF-A"
1922         depends on ARCH_SUPPORT_TFABOOT
1923         help
1924           Some platforms support the setup of secure registers (for instance
1925           for CPU errata handling) or provide secure services like PSCI.
1926           Those services could also be provided by other firmware parts
1927           like TF-A (Trusted Firmware for Cortex-A), in which case U-Boot
1928           does not need to (and cannot) execute this code.
1929           Enabling this option will make a U-Boot binary that is relying
1930           on other firmware layers to provide secure functionality.
1931
1932 config TI_SECURE_DEVICE
1933         bool "HS Device Type Support"
1934         depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_K3
1935         help
1936           If a high secure (HS) device type is being used, this config
1937           must be set. This option impacts various aspects of the
1938           build system (to create signed boot images that can be
1939           authenticated) and the code. See the doc/README.ti-secure
1940           file for further details.
1941
1942 if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
1943 config ISW_ENTRY_ADDR
1944         hex "Address in memory or XIP address of bootloader entry point"
1945         default 0x402F4000 if AM43XX
1946         default 0x402F0400 if AM33XX
1947         default 0x40301350 if OMAP54XX
1948         help
1949           After any reset, the boot ROM searches the boot media for a valid
1950           boot image. For non-XIP devices, the ROM then copies the image into
1951           internal memory. For all boot modes, after the ROM processes the
1952           boot image it eventually computes the entry point address depending
1953           on the device type (secure/non-secure), boot media (xip/non-xip) and
1954           image headers.
1955 endif
1956
1957 source "arch/arm/mach-aspeed/Kconfig"
1958
1959 source "arch/arm/mach-at91/Kconfig"
1960
1961 source "arch/arm/mach-bcm283x/Kconfig"
1962
1963 source "arch/arm/mach-bcmstb/Kconfig"
1964
1965 source "arch/arm/mach-davinci/Kconfig"
1966
1967 source "arch/arm/mach-exynos/Kconfig"
1968
1969 source "arch/arm/mach-highbank/Kconfig"
1970
1971 source "arch/arm/mach-integrator/Kconfig"
1972
1973 source "arch/arm/mach-ipq40xx/Kconfig"
1974
1975 source "arch/arm/mach-k3/Kconfig"
1976
1977 source "arch/arm/mach-keystone/Kconfig"
1978
1979 source "arch/arm/mach-kirkwood/Kconfig"
1980
1981 source "arch/arm/mach-lpc32xx/Kconfig"
1982
1983 source "arch/arm/mach-mvebu/Kconfig"
1984
1985 source "arch/arm/mach-octeontx/Kconfig"
1986
1987 source "arch/arm/mach-octeontx2/Kconfig"
1988
1989 source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1990
1991 source "arch/arm/mach-imx/mx2/Kconfig"
1992
1993 source "arch/arm/mach-imx/mx3/Kconfig"
1994
1995 source "arch/arm/mach-imx/mx5/Kconfig"
1996
1997 source "arch/arm/mach-imx/mx6/Kconfig"
1998
1999 source "arch/arm/mach-imx/mx7/Kconfig"
2000
2001 source "arch/arm/mach-imx/mx7ulp/Kconfig"
2002
2003 source "arch/arm/mach-imx/imx8/Kconfig"
2004
2005 source "arch/arm/mach-imx/imx8m/Kconfig"
2006
2007 source "arch/arm/mach-imx/imx8ulp/Kconfig"
2008
2009 source "arch/arm/mach-imx/imxrt/Kconfig"
2010
2011 source "arch/arm/mach-imx/mxs/Kconfig"
2012
2013 source "arch/arm/mach-omap2/Kconfig"
2014
2015 source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
2016
2017 source "arch/arm/mach-orion5x/Kconfig"
2018
2019 source "arch/arm/mach-owl/Kconfig"
2020
2021 source "arch/arm/mach-rmobile/Kconfig"
2022
2023 source "arch/arm/mach-meson/Kconfig"
2024
2025 source "arch/arm/mach-mediatek/Kconfig"
2026
2027 source "arch/arm/mach-qemu/Kconfig"
2028
2029 source "arch/arm/mach-rockchip/Kconfig"
2030
2031 source "arch/arm/mach-s5pc1xx/Kconfig"
2032
2033 source "arch/arm/mach-snapdragon/Kconfig"
2034
2035 source "arch/arm/mach-socfpga/Kconfig"
2036
2037 source "arch/arm/mach-sti/Kconfig"
2038
2039 source "arch/arm/mach-stm32/Kconfig"
2040
2041 source "arch/arm/mach-stm32mp/Kconfig"
2042
2043 source "arch/arm/mach-sunxi/Kconfig"
2044
2045 source "arch/arm/mach-tegra/Kconfig"
2046
2047 source "arch/arm/mach-u8500/Kconfig"
2048
2049 source "arch/arm/mach-uniphier/Kconfig"
2050
2051 source "arch/arm/cpu/armv7/vf610/Kconfig"
2052
2053 source "arch/arm/mach-zynq/Kconfig"
2054
2055 source "arch/arm/mach-zynqmp/Kconfig"
2056
2057 source "arch/arm/mach-versal/Kconfig"
2058
2059 source "arch/arm/mach-zynqmp-r5/Kconfig"
2060
2061 source "arch/arm/cpu/armv7/Kconfig"
2062
2063 source "arch/arm/cpu/armv8/Kconfig"
2064
2065 source "arch/arm/mach-imx/Kconfig"
2066
2067 source "arch/arm/mach-nexell/Kconfig"
2068
2069 source "board/armltd/total_compute/Kconfig"
2070
2071 source "board/bosch/shc/Kconfig"
2072 source "board/bosch/guardian/Kconfig"
2073 source "board/CarMediaLab/flea3/Kconfig"
2074 source "board/Marvell/aspenite/Kconfig"
2075 source "board/Marvell/octeontx/Kconfig"
2076 source "board/Marvell/octeontx2/Kconfig"
2077 source "board/armltd/vexpress64/Kconfig"
2078 source "board/cortina/presidio-asic/Kconfig"
2079 source "board/broadcom/bcm963158/Kconfig"
2080 source "board/broadcom/bcm968360bg/Kconfig"
2081 source "board/broadcom/bcm968580xref/Kconfig"
2082 source "board/broadcom/bcmns3/Kconfig"
2083 source "board/cavium/thunderx/Kconfig"
2084 source "board/eets/pdu001/Kconfig"
2085 source "board/emulation/qemu-arm/Kconfig"
2086 source "board/freescale/ls2080aqds/Kconfig"
2087 source "board/freescale/ls2080ardb/Kconfig"
2088 source "board/freescale/ls1088a/Kconfig"
2089 source "board/freescale/ls1028a/Kconfig"
2090 source "board/freescale/ls1021aqds/Kconfig"
2091 source "board/freescale/ls1043aqds/Kconfig"
2092 source "board/freescale/ls1021atwr/Kconfig"
2093 source "board/freescale/ls1021atsn/Kconfig"
2094 source "board/freescale/ls1021aiot/Kconfig"
2095 source "board/freescale/ls1046aqds/Kconfig"
2096 source "board/freescale/ls1043ardb/Kconfig"
2097 source "board/freescale/ls1046ardb/Kconfig"
2098 source "board/freescale/ls1046afrwy/Kconfig"
2099 source "board/freescale/ls1012aqds/Kconfig"
2100 source "board/freescale/ls1012ardb/Kconfig"
2101 source "board/freescale/ls1012afrdm/Kconfig"
2102 source "board/freescale/lx2160a/Kconfig"
2103 source "board/grinn/chiliboard/Kconfig"
2104 source "board/hisilicon/hikey/Kconfig"
2105 source "board/hisilicon/hikey960/Kconfig"
2106 source "board/hisilicon/poplar/Kconfig"
2107 source "board/isee/igep003x/Kconfig"
2108 source "board/kontron/sl28/Kconfig"
2109 source "board/myir/mys_6ulx/Kconfig"
2110 source "board/seeed/npi_imx6ull/Kconfig"
2111 source "board/socionext/developerbox/Kconfig"
2112 source "board/st/stv0991/Kconfig"
2113 source "board/tcl/sl50/Kconfig"
2114 source "board/toradex/colibri_pxa270/Kconfig"
2115 source "board/variscite/dart_6ul/Kconfig"
2116 source "board/vscom/baltos/Kconfig"
2117 source "board/phytium/durian/Kconfig"
2118 source "board/xen/xenguest_arm64/Kconfig"
2119 source "board/keymile/Kconfig"
2120
2121 source "arch/arm/Kconfig.debug"
2122
2123 endmenu
2124
2125 config SPL_LDSCRIPT
2126         default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if (ARCH_MX23 || ARCH_MX28) && !SPL_FRAMEWORK
2127         default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
2128         default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64