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