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