]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/Kconfig
stv0991: Remove stv0991 board and architecture code
[thirdparty/u-boot.git] / arch / arm / Kconfig
CommitLineData
dd84058d
MY
1menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
dd84058d
MY
5 default "arm"
6
016a954e
MY
7config ARM64
8 bool
0cff87c9 9 select 64BIT
bb6b142f 10 select PHYS_64BIT
067716ba 11 select SYS_CACHE_SHIFT_6
1dd56db5 12 imply SPL_SEPARATE_BSS
016a954e 13
270f8710
MV
14config ARM64_CRC32
15 bool "Enable support for CRC32 instruction"
c2e5eea3 16 depends on ARM64 && CC_IS_GCC
270f8710
MV
17 default y
18 help
19 ARMv8 implements dedicated crc32 instruction for crc32 calculation.
20 This is faster than software crc32 calculation. This instruction may
21 not be present on all ARMv8.0, but is always present on ARMv8.1 and
22 newer.
23
bf8c4ced
PF
24config COUNTER_FREQUENCY
25 int "Timer clock frequency"
26 depends on ARM64 || CPU_V7A
4e65175e
PF
27 default 8000000 if IMX8 || MX7 || MX6UL || MX6ULL
28 default 24000000 if ARCH_SUNXI || ARCH_EXYNOS || ROCKCHIP_RK3128 || \
29 ROCKCHIP_RK3288 || ROCKCHIP_RK322X || ROCKCHIP_RK3036
30 default 25000000 if ARCH_LX2160A || ARCH_LX2162A || ARCH_LS1088A
31 default 100000000 if ARCH_ZYNQMP
bf8c4ced
PF
32 default 0
33 help
34 For platforms with ARMv8-A and ARMv7-A which features a system
35 counter, those platforms needs software to program the counter
36 frequency. Setup time clock frequency for certain platform.
37 0 means no need to configure the system counter frequency.
38 For platforms needs the frequency set in U-Boot with a
39 pre-defined value, should have the macro defined as a non-zero value.
40
49e93875
SW
41config POSITION_INDEPENDENT
42 bool "Generate position-independent pre-relocation code"
cd82f199 43 depends on ARM64 || CPU_V7A
49e93875
SW
44 help
45 U-Boot expects to be linked to a specific hard-coded address, and to
46 be loaded to and run from that address. This option lifts that
11f4fbf0
EI
47 restriction, thus allowing the code to be loaded to and executed from
48 almost any 4K aligned address. This logic relies on the relocation
e852b30b 49 information that is embedded in the binary to support U-Boot
49e93875 50 relocating itself to the top-of-RAM later during execution.
e6c90448 51
382de4a7
MY
52config INIT_SP_RELATIVE
53 bool "Specify the early stack pointer relative to the .bss section"
aa29b21d 54 depends on ARM64
f5cb6c30 55 default n if ARCH_QEMU
12650e4a 56 default y if POSITION_INDEPENDENT
e6c90448
SW
57 help
58 U-Boot typically uses a hard-coded value for the stack pointer
382de4a7 59 before relocation. Enable this option to instead calculate the
e6c90448 60 initial SP at run-time. This is useful to avoid hard-coding addresses
e852b30b 61 into U-Boot, so that it can be loaded and executed at arbitrary
382de4a7
MY
62 addresses and thus avoid using arbitrary addresses at runtime.
63
64 If this option is enabled, the early stack pointer is set to
65 &_bss_start with a offset value added. The offset is specified by
66 SYS_INIT_SP_BSS_OFFSET.
67
68config SYS_INIT_SP_BSS_OFFSET
69 int "Early stack offset from the .bss base address"
aa29b21d 70 depends on ARM64
382de4a7
MY
71 depends on INIT_SP_RELATIVE
72 default 524288
73 help
74 This option's value is the offset added to &_bss_start in order to
e6c90448
SW
75 calculate the stack pointer. This offset should be large enough so
76 that the early malloc region, global data (gd), and early stack usage
77 do not overlap any appended DTB.
8163faf9 78
372779ab
T
79config SPL_SYS_NO_VECTOR_TABLE
80 depends on SPL
81 bool
82
29f390bb
CB
83config SPL_USE_SEPARATE_FAULT_HANDLERS
84 bool "Use separate fault handlers instead of a single common one"
85 depends on !SPL_SYS_NO_VECTOR_TABLE && !ARM64 && !CPU_V7M
86 help
87 Instead of a common fault handler, generate a separate one for
88 undefined_instruction, software_interrupt, prefetch_abort etc.
89 This is for debugging purposes, when you want to set breakpoints
90 on them separately.
91
8163faf9 92config LINUX_KERNEL_IMAGE_HEADER
aa29b21d 93 depends on ARM64
8163faf9
SW
94 bool
95 help
96 Place a Linux kernel image header at the start of the U-Boot binary.
97 The format of the header is described in the Linux kernel source at
98 Documentation/arm64/booting.txt. This feature is useful since the
99 image header reports the amount of memory (BSS and similar) that
100 U-Boot needs to use, but which isn't part of the binary.
101
8163faf9 102config LNX_KRNL_IMG_TEXT_OFFSET_BASE
aa29b21d 103 depends on LINUX_KERNEL_IMAGE_HEADER
8163faf9
SW
104 hex
105 help
98463903 106 The value subtracted from CONFIG_TEXT_BASE to calculate the
e852b30b 107 TEXT_OFFSET value written to the Linux kernel image header.
49e93875 108
5afdcca0
TR
109config GICV2
110 bool
111
112config GICV3
113 bool
114
0bc4356d
BKRG
115config GIC_V3_ITS
116 bool "ARM GICV3 ITS"
504f8648 117 select IRQ
0bc4356d
BKRG
118 help
119 ARM GICV3 Interrupt translation service (ITS).
120 Basic support for programming locality specific peripheral
121 interrupts (LPI) configuration tables and enable LPI tables.
122 LPI configuration table can be used by u-boot or Linux.
123 ARM GICV3 has limitation, once the LPI table is enabled, LPI
124 configuration table can not be re-programmed, unless GICV3 reset.
125
49e93875
SW
126config STATIC_RELA
127 bool
eabc0902 128 default y if ARM64
49e93875 129
37217f0e
LV
130config DMA_ADDR_T_64BIT
131 bool
132 default y if ARM64
133
2e07c249 134config HAS_VBAR
e009bfa4 135 bool
2e07c249 136
62e92077 137config HAS_THUMB2
e009bfa4 138 bool
62e92077 139
7a672057
MH
140config GPIO_EXTRA_HEADER
141 bool
142
111a6af9
PE
143# Used for compatibility with asm files copied from the kernel
144config ARM_ASM_UNIFIED
145 bool
146 default y
147
148# Used for compatibility with asm files copied from the kernel
149config THUMB2_KERNEL
150 bool
151
a0aba8a2
TW
152config SYS_ICACHE_OFF
153 bool "Do not enable icache"
a0aba8a2
TW
154 help
155 Do not enable instruction cache in U-Boot.
156
10015025
TW
157config SPL_SYS_ICACHE_OFF
158 bool "Do not enable icache in SPL"
159 depends on SPL
160 default SYS_ICACHE_OFF
161 help
162 Do not enable instruction cache in SPL.
163
a0aba8a2
TW
164config SYS_DCACHE_OFF
165 bool "Do not enable dcache"
a0aba8a2
TW
166 help
167 Do not enable data cache in U-Boot.
168
10015025
TW
169config SPL_SYS_DCACHE_OFF
170 bool "Do not enable dcache in SPL"
171 depends on SPL
172 default SYS_DCACHE_OFF
173 help
174 Do not enable data cache in SPL.
175
f4bcd767
LV
176config SYS_ARM_CACHE_CP15
177 bool "CP15 based cache enabling support"
178 help
179 Select this if your processor suports enabling caches by using
180 CP15 registers.
181
7240b80e
LV
182config SYS_ARM_MMU
183 bool "MMU-based Paged Memory Management Support"
f4bcd767 184 select SYS_ARM_CACHE_CP15
7240b80e
LV
185 help
186 Select if you want MMU-based virtualised addressing space
e852b30b 187 support via paged memory management.
7240b80e 188
f2ef2043
LV
189config SYS_ARM_MPU
190 bool 'Use the ARM v7 PMSA Compliant MPU'
191 help
192 Some ARM systems without an MMU have instead a Memory Protection
193 Unit (MPU) that defines the type and permissions for regions of
194 memory.
195 If your CPU has an MPU then you should choose 'y' here unless you
196 know that you do not want to use the MPU.
197
8dda2e2f
TR
198# If set, the workarounds for these ARM errata are applied early during U-Boot
199# startup. Note that in general these options force the workarounds to be
200# applied; no CPU-type/version detection exists, unlike the similar options in
201# the Linux kernel. Do not set these options unless they apply! Also note that
e852b30b
RD
202# the following can be machine-specific errata. These do have ability to
203# provide rudimentary version and machine-specific checks, but expect no
8dda2e2f
TR
204# product checks:
205# CONFIG_ARM_ERRATA_430973
206# CONFIG_ARM_ERRATA_454179
207# CONFIG_ARM_ERRATA_621766
208# CONFIG_ARM_ERRATA_798870
209# CONFIG_ARM_ERRATA_801819
7b37a9c7 210# CONFIG_ARM_CORTEX_A8_CVE_2017_5715
c2ca3fdf 211# CONFIG_ARM_CORTEX_A15_CVE_2017_5715
7b37a9c7 212
8dda2e2f
TR
213config ARM_ERRATA_430973
214 bool
215
216config ARM_ERRATA_454179
217 bool
218
219config ARM_ERRATA_621766
220 bool
221
222config ARM_ERRATA_716044
223 bool
224
19a75b8c
SS
225config ARM_ERRATA_725233
226 bool
227
8dda2e2f
TR
228config ARM_ERRATA_742230
229 bool
230
231config ARM_ERRATA_743622
232 bool
233
234config ARM_ERRATA_751472
235 bool
236
237config ARM_ERRATA_761320
238 bool
239
240config ARM_ERRATA_773022
241 bool
242
243config ARM_ERRATA_774769
244 bool
245
246config ARM_ERRATA_794072
247 bool
248
249config ARM_ERRATA_798870
250 bool
251
252config ARM_ERRATA_801819
253 bool
254
255config ARM_ERRATA_826974
256 bool
257
258config ARM_ERRATA_828024
259 bool
260
261config ARM_ERRATA_829520
262 bool
263
264config ARM_ERRATA_833069
265 bool
266
267config ARM_ERRATA_833471
268 bool
269
11d94319 270config ARM_ERRATA_845369
6e7bdde4 271 bool
11d94319 272
8776350d
NM
273config ARM_ERRATA_852421
274 bool
275
276config ARM_ERRATA_852423
277 bool
278
ab0ab54e
AW
279config ARM_ERRATA_855873
280 bool
281
7b37a9c7
NM
282config ARM_CORTEX_A8_CVE_2017_5715
283 bool
284
c2ca3fdf
NM
285config ARM_CORTEX_A15_CVE_2017_5715
286 bool
287
2e07c249 288config CPU_ARM720T
e009bfa4 289 bool
067716ba 290 select SYS_CACHE_SHIFT_5
7240b80e 291 imply SYS_ARM_MMU
2e07c249
GS
292
293config CPU_ARM920T
e009bfa4 294 bool
067716ba 295 select SYS_CACHE_SHIFT_5
7240b80e 296 imply SYS_ARM_MMU
2e07c249
GS
297
298config CPU_ARM926EJS
e009bfa4 299 bool
067716ba 300 select SYS_CACHE_SHIFT_5
7240b80e 301 imply SYS_ARM_MMU
1dd56db5 302 imply SPL_SEPARATE_BSS
2e07c249
GS
303
304config CPU_ARM946ES
e009bfa4 305 bool
067716ba 306 select SYS_CACHE_SHIFT_5
7240b80e 307 imply SYS_ARM_MMU
2e07c249
GS
308
309config CPU_ARM1136
e009bfa4 310 bool
067716ba 311 select SYS_CACHE_SHIFT_5
7240b80e 312 imply SYS_ARM_MMU
1dd56db5 313 imply SPL_SEPARATE_BSS
2e07c249
GS
314
315config CPU_ARM1176
e009bfa4
TR
316 bool
317 select HAS_VBAR
067716ba 318 select SYS_CACHE_SHIFT_5
7240b80e 319 imply SYS_ARM_MMU
2e07c249 320
acf15001 321config CPU_V7A
e009bfa4 322 bool
e009bfa4 323 select HAS_THUMB2
5ed063d1 324 select HAS_VBAR
067716ba 325 select SYS_CACHE_SHIFT_6
7240b80e 326 imply SYS_ARM_MMU
2e07c249 327
12d8a729 328config CPU_V7M
329 bool
e009bfa4 330 select HAS_THUMB2
f2ef2043 331 select SYS_ARM_MPU
5ed063d1 332 select SYS_CACHE_SHIFT_5
ea37f0b3 333 select SYS_THUMB_BUILD
5ed063d1 334 select THUMB2_KERNEL
12d8a729 335
4bbd6b1d
MS
336config CPU_V7R
337 bool
338 select HAS_THUMB2
f2ef2043 339 select SYS_ARM_CACHE_CP15
5ed063d1
MS
340 select SYS_ARM_MPU
341 select SYS_CACHE_SHIFT_6
4bbd6b1d 342
2e07c249 343config SYS_CPU
e009bfa4
TR
344 default "arm720t" if CPU_ARM720T
345 default "arm920t" if CPU_ARM920T
346 default "arm926ejs" if CPU_ARM926EJS
347 default "arm946es" if CPU_ARM946ES
348 default "arm1136" if CPU_ARM1136
349 default "arm1176" if CPU_ARM1176
acf15001 350 default "armv7" if CPU_V7A
4bbd6b1d 351 default "armv7" if CPU_V7R
e009bfa4 352 default "armv7m" if CPU_V7M
01541eec 353 default "armv8" if ARM64
2e07c249 354
66020a67
MV
355config SYS_ARM_ARCH
356 int
357 default 4 if CPU_ARM720T
358 default 4 if CPU_ARM920T
359 default 5 if CPU_ARM926EJS
360 default 5 if CPU_ARM946ES
361 default 6 if CPU_ARM1136
362 default 6 if CPU_ARM1176
acf15001 363 default 7 if CPU_V7A
66020a67 364 default 7 if CPU_V7M
4bbd6b1d 365 default 7 if CPU_V7R
66020a67
MV
366 default 8 if ARM64
367
f8dc7f2f
PD
368choice
369 prompt "Select the ARM data write cache policy"
1f2e4027 370 default SYS_ARM_CACHE_WRITETHROUGH if TARGET_BCMNS || RZA1
f8dc7f2f
PD
371 default SYS_ARM_CACHE_WRITEBACK
372
373config SYS_ARM_CACHE_WRITEBACK
374 bool "Write-back (WB)"
375 help
376 A write updates the cache only and marks the cache line as dirty.
377 External memory is updated only when the line is evicted or explicitly
378 cleaned.
379
380config SYS_ARM_CACHE_WRITETHROUGH
381 bool "Write-through (WT)"
382 help
383 A write updates both the cache and the external memory system.
384 This does not mark the cache line as dirty.
385
386config SYS_ARM_CACHE_WRITEALLOC
387 bool "Write allocation (WA)"
388 help
389 A cache line is allocated on a write miss. This means that executing a
390 store instruction on the processor might cause a burst read to occur.
391 There is a linefill to obtain the data for the cache line, before the
392 write is performed.
393endchoice
394
948da777
T
395config ARCH_VERY_EARLY_INIT
396 bool
397
398config SPL_ARCH_VERY_EARLY_INIT
399 bool
400
1bf33015
AF
401config ARCH_CPU_INIT
402 bool "Enable ARCH_CPU_INIT"
403 help
e852b30b 404 Some architectures require a call to arch_cpu_init().
1bf33015
AF
405 Say Y here to enable it
406
7842b6a9
AP
407config SYS_ARCH_TIMER
408 bool "ARM Generic Timer support"
acf15001 409 depends on CPU_V7A || ARM64
7842b6a9
AP
410 default y if ARM64
411 help
412 The ARM Generic Timer (aka arch-timer) provides an architected
413 interface to a timer source on an SoC.
e852b30b 414 It is mandatory for ARMv8 implementation and widely available
7842b6a9
AP
415 on ARMv7 systems.
416
c54bcf68
MY
417config ARM_SMCCC
418 bool "Support for ARM SMC Calling Convention (SMCCC)"
acf15001 419 depends on CPU_V7A || ARM64
573a3811 420 select ARM_PSCI_FW
c54bcf68
MY
421 help
422 Say Y here if you want to enable ARM SMC Calling Convention.
423 This should be enabled if U-Boot needs to communicate with system
424 firmware (for example, PSCI) according to SMCCC.
425
3a649407
TR
426config SYS_THUMB_BUILD
427 bool "Build U-Boot using the Thumb instruction set"
428 depends on !ARM64
429 help
430 Use this flag to build U-Boot 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
435config SPL_SYS_THUMB_BUILD
436 bool "Build SPL using the Thumb instruction set"
437 default y if SYS_THUMB_BUILD
05705566 438 depends on !ARM64 && SPL
3a649407
TR
439 help
440 Use this flag to build SPL using the Thumb instruction set for
441 ARM architectures. Thumb instruction set provides better code
442 density. For ARM architectures that support Thumb2 this flag will
443 result in Thumb2 code generated by GCC.
444
1e32c519
KY
445config TPL_SYS_THUMB_BUILD
446 bool "Build TPL using the Thumb instruction set"
447 default y if SYS_THUMB_BUILD
448 depends on TPL && !ARM64
449 help
e852b30b 450 Use this flag to build TPL using the Thumb instruction set for
1e32c519
KY
451 ARM architectures. Thumb instruction set provides better code
452 density. For ARM architectures that support Thumb2 this flag will
453 result in Thumb2 code generated by GCC.
454
11168883
PO
455config SYS_L2_PL310
456 bool "ARM PL310 L2 cache controller"
457 help
458 Enable support for ARM PL310 L2 cache controller in U-Boot
1e32c519 459
b6664eac
PO
460config SPL_SYS_L2_PL310
461 bool "ARM PL310 L2 cache controller in SPL"
462 help
463 Enable support for ARM PL310 L2 cache controller in SPL
464
f3e9bec8
PF
465config SYS_L2CACHE_OFF
466 bool "L2cache off"
467 help
e852b30b 468 If SoC does not support L2CACHE or one does not want to enable
f3e9bec8
PF
469 L2CACHE, choose this option.
470
cdaa633f
AP
471config ENABLE_ARM_SOC_BOOT0_HOOK
472 bool "prepare BOOT0 header"
473 help
474 If the SoC's BOOT0 requires a header area filled with (magic)
7d531e8a
SG
475 values, then choose this option, and create a file included as
476 <asm/arch/boot0.h> which contains the required assembler code.
cdaa633f 477
be72591b
FE
478config USE_ARCH_MEMCPY
479 bool "Use an assembly optimized implementation of memcpy"
4e062fc9
SR
480 default y if !ARM64
481 depends on !ARM64 || (ARM64 && (GCC_VERSION >= 90400))
40d5534c
TR
482 help
483 Enable the generation of an optimized version of memcpy.
e852b30b 484 Such an implementation may be faster under some conditions
40d5534c
TR
485 but may increase the binary size.
486
487config SPL_USE_ARCH_MEMCPY
f8136e68 488 bool "Use an assembly optimized implementation of memcpy for SPL"
40d5534c 489 default y if USE_ARCH_MEMCPY
4e062fc9 490 depends on SPL
be72591b
FE
491 help
492 Enable the generation of an optimized version of memcpy.
e852b30b 493 Such an implementation may be faster under some conditions
be72591b
FE
494 but may increase the binary size.
495
1e32c519
KY
496config TPL_USE_ARCH_MEMCPY
497 bool "Use an assembly optimized implementation of memcpy for TPL"
498 default y if USE_ARCH_MEMCPY
4e062fc9 499 depends on TPL
1e32c519
KY
500 help
501 Enable the generation of an optimized version of memcpy.
e852b30b 502 Such an implementation may be faster under some conditions
1e32c519
KY
503 but may increase the binary size.
504
4e062fc9
SR
505config USE_ARCH_MEMMOVE
506 bool "Use an assembly optimized implementation of memmove" if !ARM64
507 default USE_ARCH_MEMCPY if ARM64
508 depends on ARM64
509 help
510 Enable the generation of an optimized version of memmove.
511 Such an implementation may be faster under some conditions
512 but may increase the binary size.
513
514config SPL_USE_ARCH_MEMMOVE
515 bool "Use an assembly optimized implementation of memmove for SPL" if !ARM64
516 default SPL_USE_ARCH_MEMCPY if ARM64
517 depends on SPL && ARM64
518 help
519 Enable the generation of an optimized version of memmove.
520 Such an implementation may be faster under some conditions
521 but may increase the binary size.
522
523config TPL_USE_ARCH_MEMMOVE
524 bool "Use an assembly optimized implementation of memmove for TPL" if !ARM64
525 default TPL_USE_ARCH_MEMCPY if ARM64
526 depends on TPL && ARM64
527 help
528 Enable the generation of an optimized version of memmove.
529 Such an implementation may be faster under some conditions
530 but may increase the binary size.
531
be72591b
FE
532config USE_ARCH_MEMSET
533 bool "Use an assembly optimized implementation of memset"
4e062fc9
SR
534 default y if !ARM64
535 depends on !ARM64 || (ARM64 && (GCC_VERSION >= 90400))
40d5534c
TR
536 help
537 Enable the generation of an optimized version of memset.
e852b30b 538 Such an implementation may be faster under some conditions
40d5534c
TR
539 but may increase the binary size.
540
541config SPL_USE_ARCH_MEMSET
f8136e68 542 bool "Use an assembly optimized implementation of memset for SPL"
40d5534c 543 default y if USE_ARCH_MEMSET
4e062fc9 544 depends on SPL
be72591b
FE
545 help
546 Enable the generation of an optimized version of memset.
e852b30b 547 Such an implementation may be faster under some conditions
be72591b
FE
548 but may increase the binary size.
549
1e32c519
KY
550config TPL_USE_ARCH_MEMSET
551 bool "Use an assembly optimized implementation of memset for TPL"
552 default y if USE_ARCH_MEMSET
4e062fc9 553 depends on TPL
1e32c519
KY
554 help
555 Enable the generation of an optimized version of memset.
e852b30b 556 Such an implementation may be faster under some conditions
1e32c519
KY
557 but may increase the binary size.
558
ec6617c3
AW
559config ARM64_SUPPORT_AARCH32
560 bool "ARM64 system support AArch32 execution state"
05705566
AF
561 depends on ARM64
562 default y if !TARGET_THUNDERX_88XX
ec6617c3
AW
563 help
564 This ARM64 system supports AArch32 execution state.
565
e95bcfb5
TR
566config IPROC
567 bool
568
24ec3dea
TR
569config S5P
570 def_bool y if ARCH_EXYNOS || ARCH_S5PC1XX
571
dd84058d
MY
572choice
573 prompt "Target select"
b928e658 574 default TARGET_HIKEY
dd84058d 575
4614b891
MY
576config ARCH_AT91
577 bool "Atmel AT91"
7a672057 578 select GPIO_EXTRA_HEADER
f58e9460 579 select SPL_BOARD_INIT if SPL && !TARGET_SMARTWEB
c7c120c2 580 select SPL_SEPARATE_BSS if SPL
a9a73799 581 imply SYS_THUMB_BUILD
dd84058d 582
3491ba63
MY
583config ARCH_DAVINCI
584 bool "TI DaVinci"
2e07c249 585 select CPU_ARM926EJS
7a672057 586 select GPIO_EXTRA_HEADER
56c40460 587 select SPL_DM_SPI if SPL
15dc63d6 588 imply CMD_SAVES
3491ba63
MY
589 help
590 Support for TI's DaVinci platform.
dd84058d 591
e90711f0
YX
592config ARCH_HISTB
593 bool "Hisilicon HiSTB SoCs"
594 select DM
595 select DM_SERIAL
596 select OF_CONTROL
597 select PL01X_SERIAL
598 imply CMD_DM
599 help
600 Support for HiSTB SoCs.
601
bb0fb4c0 602config ARCH_KIRKWOOD
47539e23 603 bool "Marvell Kirkwood"
4585601a 604 select ARCH_MISC_INIT
5ed063d1
MS
605 select BOARD_EARLY_INIT_F
606 select CPU_ARM926EJS
7a672057 607 select GPIO_EXTRA_HEADER
7b530bb1 608 select TIMER
dd84058d 609
c3d89140 610config ARCH_MVEBU
21b29fc6 611 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
efb0aa7b 612 select ARCH_EARLY_INIT_R if ARM64
9cffb233 613 select DM
1d51ea19 614 select DM_SERIAL
09a54c00
SR
615 select DM_SPI
616 select DM_SPI_FLASH
7a672057 617 select GPIO_EXTRA_HEADER
db04ff42 618 select MTD
56c40460
LM
619 select SPL_DM_SPI if SPL
620 select SPL_DM_SPI_FLASH if SPL
7b530bb1 621 select SPL_TIMER if SPL
3988e6d6 622 select TIMER if !ARM64
5ed063d1
MS
623 select OF_CONTROL
624 select OF_SEPARATE
f1b1f770 625 select SPI
08a00cba 626 imply CMD_DM
a4884831 627
b16a3316 628config ARCH_ORION5X
22f2be7a 629 bool "Marvell Orion"
2e07c249 630 select CPU_ARM926EJS
7a672057 631 select GPIO_EXTRA_HEADER
1dd56db5 632 select SPL_SEPARATE_BSS if SPL
7b530bb1 633 select TIMER
dd84058d 634
ddf6bd48
MY
635config ARCH_BCM283X
636 bool "Broadcom BCM283X family"
58d423b8 637 select DM
58d423b8 638 select DM_GPIO
5ed063d1 639 select DM_SERIAL
7a672057 640 select GPIO_EXTRA_HEADER
76709096 641 select OF_CONTROL
cf2c7784 642 select PL01X_SERIAL
ae5326a6 643 select SERIAL_SEARCH_ALL
08a00cba 644 imply CMD_DM
91d27a17 645 imply FAT_WRITE
46414296 646
894c3ad2
TF
647config ARCH_BCMSTB
648 bool "Broadcom BCM7XXX family"
649 select CPU_V7A
650 select DM
7a672057 651 select GPIO_EXTRA_HEADER
894c3ad2 652 select OF_CONTROL
08a00cba 653 imply CMD_DM
239d22c7 654 imply OF_HAS_PRIOR_STAGE
894c3ad2
TF
655 help
656 This enables support for Broadcom ARM-based set-top box
657 chipsets, including the 7445 family of chips.
658
f8209d30
WZ
659config ARCH_BCMBCA
660 bool "Broadcom broadband chip family"
661 select DM
662 select OF_CONTROL
07f97bde 663 imply CMD_DM
f8209d30 664
15e30106
KA
665config TARGET_VEXPRESS_CA9X4
666 bool "Support vexpress_ca9x4"
667 select CPU_V7A
798ad3e6 668 select PL01X_SERIAL
15e30106 669
d3d9cd8e
LW
670config TARGET_BCMNS
671 bool "Support Broadcom Northstar"
672 select CPU_V7A
673 select DM
674 select DM_GPIO
675 select DM_SERIAL
676 select OF_CONTROL
677 select TIMER
678 select SYS_NS16550
679 select ARM_GLOBAL_TIMER
680 imply SYS_THUMB_BUILD
681 imply MTD_RAW_NAND
682 imply NAND_BRCMNAND
683 imply NAND_BRCMNAND_IPROC
684 help
685 Support for Broadcom Northstar SoCs. NS is a dual-core 32-bit
686 ARMv7 Cortex-A9 SoC family including BCM4708, BCM47094,
687 BCM5301x etc.
688
291635ae
RK
689config TARGET_BCMNS3
690 bool "Support Broadcom NS3"
691 select ARM64
692 select BOARD_LATE_INIT
693 help
694 Support for Broadcom Northstar 3 SoCs. NS3 is a octo-core 64-bit
695 ARMv8 Cortex-A72 processors targeting a broad range of networking
696 applications.
697
72df68cc
MY
698config ARCH_EXYNOS
699 bool "Samsung EXYNOS"
58d423b8 700 select DM
5ed063d1 701 select DM_GPIO
fc47cf9d 702 select DM_I2C
5ed063d1 703 select DM_KEYBOARD
58d423b8
MY
704 select DM_SERIAL
705 select DM_SPI
5ed063d1 706 select DM_SPI_FLASH
db04ff42 707 select MTD
f1b1f770 708 select SPI
7a672057 709 select GPIO_EXTRA_HEADER
c96d9036 710 imply SYS_THUMB_BUILD
08a00cba 711 imply CMD_DM
91d27a17 712 imply FAT_WRITE
dd84058d 713
311757be
SG
714config ARCH_S5PC1XX
715 bool "Samsung S5PC1XX"
acf15001 716 select CPU_V7A
58d423b8 717 select DM
58d423b8 718 select DM_GPIO
08848e9c 719 select DM_I2C
5ed063d1 720 select DM_SERIAL
7a672057 721 select GPIO_EXTRA_HEADER
08a00cba 722 imply CMD_DM
311757be 723
ef2b694c
MY
724config ARCH_HIGHBANK
725 bool "Calxeda Highbank"
acf15001 726 select CPU_V7A
109552d7
AP
727 select PL01X_SERIAL
728 select DM
729 select DM_SERIAL
730 select OF_CONTROL
109552d7
AP
731 select CLK
732 select CLK_CCF
733 select AHCI
1238d014 734 select PHYS_64BIT
44b7abf8
AP
735 select TIMER
736 select SP804_TIMER
239d22c7 737 imply OF_HAS_PRIOR_STAGE
dd84058d 738
5cbbd9bd
MY
739config ARCH_INTEGRATOR
740 bool "ARM Ltd. Integrator family"
3f394e70
LW
741 select DM
742 select DM_SERIAL
7a672057 743 select GPIO_EXTRA_HEADER
cf2c7784 744 select PL01X_SERIAL
08a00cba 745 imply CMD_DM
5cbbd9bd 746
e479a7d5
RM
747config ARCH_IPQ40XX
748 bool "Qualcomm IPQ40xx SoCs"
749 select CPU_V7A
750 select DM
751 select DM_GPIO
752 select DM_SERIAL
496a3aa5 753 select DM_RESET
7a672057 754 select GPIO_EXTRA_HEADER
6ef099b2 755 select MSM_SMEM
e479a7d5
RM
756 select PINCTRL
757 select CLK
6ef099b2 758 select SMEM
e479a7d5 759 select OF_CONTROL
fac2121a 760 select CLK_QCOM_IPQ4019
24d2908e 761 select PINCTRL_QCOM_IPQ4019
e479a7d5
RM
762 imply CMD_DM
763
c338f09e
MY
764config ARCH_KEYSTONE
765 bool "TI Keystone"
a4650bf6 766 select CMD_DDR3
5ed063d1 767 select CMD_POWEROFF
acf15001 768 select CPU_V7A
222d22a3 769 select DDR_SPD
a4650bf6 770 select SPL_BOARD_INIT if SPL
02627356 771 select SUPPORT_SPL
7842b6a9 772 select SYS_ARCH_TIMER
5ed063d1 773 select SYS_THUMB_BUILD
d56b4b19 774 imply CMD_MTDPARTS
f2ae98a6 775 imply CMD_NFS
15dc63d6 776 imply CMD_SAVES
a4650bf6 777 imply DM_I2C
5ed063d1 778 imply FIT
a4650bf6
AD
779 imply SOC_TI
780 imply TI_KEYSTONE_SERDES
dd84058d 781
586bde93
LV
782config ARCH_K3
783 bool "Texas Instruments' K3 Architecture"
784 select SPL
785 select SUPPORT_SPL
786 select FIT
913cea38 787 select REGEX
86fab110 788 select FIT_SIGNATURE if ARM64
1a1d48e3 789 imply TI_SECURE_DEVICE
586bde93 790
a93fbf4a
MY
791config ARCH_OMAP2PLUS
792 bool "TI OMAP2+"
acf15001 793 select CPU_V7A
7a672057 794 select GPIO_EXTRA_HEADER
0680f1b1 795 select SPL_BOARD_INIT if SPL
ff6c3125 796 select SPL_STACK_R if SPL
a93fbf4a 797 select SUPPORT_SPL
92cc4e1c 798 imply TI_SYSC if DM && OF_CONTROL
a93fbf4a 799 imply FIT
1dd56db5 800 imply SPL_SEPARATE_BSS
a93fbf4a 801
bfcef28a
BG
802config ARCH_MESON
803 bool "Amlogic Meson"
7a672057 804 select GPIO_EXTRA_HEADER
7325f6cf 805 imply DISTRO_DEFAULTS
6da749d8 806 imply DM_RNG
bfcef28a
BG
807 help
808 Support for the Meson SoC family developed by Amlogic Inc.,
809 targeted at media players and tablet computers. We currently
810 support the S905 (GXBaby) 64-bit SoC.
811
cbd2fba1
RL
812config ARCH_MEDIATEK
813 bool "MediaTek SoCs"
cbd2fba1 814 select DM
7a672057 815 select GPIO_EXTRA_HEADER
cbd2fba1
RL
816 select OF_CONTROL
817 select SPL_DM if SPL
818 select SPL_LIBCOMMON_SUPPORT if SPL
819 select SPL_LIBGENERIC_SUPPORT if SPL
820 select SPL_OF_CONTROL if SPL
821 select SUPPORT_SPL
822 help
823 Support for the MediaTek SoCs family developed by MediaTek Inc.
824 Please refer to doc/README.mediatek for more information.
825
ee54dfea
VZ
826config ARCH_LPC32XX
827 bool "NXP LPC32xx platform"
828 select CPU_ARM926EJS
829 select DM
830 select DM_GPIO
831 select DM_SERIAL
7a672057 832 select GPIO_EXTRA_HEADER
ee54dfea
VZ
833 select SPL_DM if SPL
834 select SUPPORT_SPL
835 imply CMD_DM
836
b2b8b9be
PF
837config ARCH_IMX8
838 bool "NXP i.MX8 platform"
839 select ARM64
cb5d0419
GJ
840 select SYS_FSL_HAS_SEC
841 select SYS_FSL_SEC_COMPAT_4
842 select SYS_FSL_SEC_LE
b2b8b9be 843 select DM
448e2b63 844 select DM_EVENT
7a672057 845 select GPIO_EXTRA_HEADER
0c2729ed 846 select MACH_IMX
b2b8b9be 847 select OF_CONTROL
9a273858 848 select ENABLE_ARM_SOC_BOOT0_HOOK
b2b8b9be 849
cd357ad1 850config ARCH_IMX8M
7a7391fd
PF
851 bool "NXP i.MX8M platform"
852 select ARM64
7a672057 853 select GPIO_EXTRA_HEADER
0c2729ed 854 select MACH_IMX
2cddfcbc 855 select SYS_FSL_HAS_SEC
940d36d5
AS
856 select SYS_FSL_SEC_COMPAT_4
857 select SYS_FSL_SEC_LE
15e7b768 858 select SYS_I2C_MXC
7a7391fd 859 select DM
448e2b63 860 select DM_EVENT if CLK
7a7391fd 861 select SUPPORT_SPL
08a00cba 862 imply CMD_DM
7a7391fd 863
19b990b4
PF
864config ARCH_IMX8ULP
865 bool "NXP i.MX8ULP platform"
866 select ARM64
867 select DM
448e2b63 868 select DM_EVENT
0c2729ed 869 select MACH_IMX
19b990b4
PF
870 select OF_CONTROL
871 select SUPPORT_SPL
872 select GPIO_EXTRA_HEADER
03fcf966 873 select MISC
d3ee9dbd 874 select IMX_ELE
19b990b4
PF
875 imply CMD_DM
876
881df6ed
PF
877config ARCH_IMX9
878 bool "NXP i.MX9 platform"
879 select ARM64
880 select DM
448e2b63 881 select DM_EVENT
881df6ed
PF
882 select MACH_IMX
883 select SUPPORT_SPL
12f23227 884 select GPIO_EXTRA_HEADER
03fcf966 885 select MISC
d3ee9dbd 886 select IMX_ELE
19b990b4
PF
887 imply CMD_DM
888
77eb9a90
GB
889config ARCH_IMXRT
890 bool "NXP i.MXRT platform"
891 select CPU_V7M
892 select DM
893 select DM_SERIAL
7a672057 894 select GPIO_EXTRA_HEADER
0c2729ed 895 select MACH_IMX
77eb9a90
GB
896 select SUPPORT_SPL
897 imply CMD_DM
898
c5343d4e
SA
899config ARCH_MX23
900 bool "NXP i.MX23 family"
901 select CPU_ARM926EJS
7a672057 902 select GPIO_EXTRA_HEADER
0c2729ed 903 select MACH_IMX
c5343d4e
SA
904 select SUPPORT_SPL
905
25c5b4e1
SA
906config ARCH_MX28
907 bool "NXP i.MX28 family"
908 select CPU_ARM926EJS
7a672057 909 select GPIO_EXTRA_HEADER
0c2729ed 910 select MACH_IMX
25c5b4e1
SA
911 select SUPPORT_SPL
912
3159ec64
ML
913config ARCH_MX31
914 bool "NXP i.MX31 family"
915 select CPU_ARM1136
7a672057 916 select GPIO_EXTRA_HEADER
0c2729ed 917 select MACH_IMX
3159ec64 918
e90a08da 919config ARCH_MX7ULP
6e7bdde4 920 bool "NXP MX7ULP"
6d21dd31 921 select BOARD_POSTCLK_INIT
acf15001 922 select CPU_V7A
7a672057 923 select GPIO_EXTRA_HEADER
0c2729ed 924 select MACH_IMX
75d3a9f8 925 select SYS_FSL_HAS_SEC
b5438002
FL
926 select SYS_FSL_SEC_COMPAT_4
927 select SYS_FSL_SEC_LE
e90a08da 928 select ROM_UNIFIED_SECTIONS
8bbff6a7 929 imply MXC_GPIO
44ad4961 930 imply SYS_THUMB_BUILD
e90a08da 931
1a8150d4
AA
932config ARCH_MX7
933 bool "Freescale MX7"
5ed063d1 934 select ARCH_MISC_INIT
acf15001 935 select CPU_V7A
7a672057 936 select GPIO_EXTRA_HEADER
0c2729ed 937 select MACH_IMX
9b0240f8 938 select MXC_GPT_HCLK
4f1375d4 939 select SYS_FSL_HAS_SEC
2c2e2c9e 940 select SYS_FSL_SEC_COMPAT_4
90b80386 941 select SYS_FSL_SEC_LE
72041603 942 imply BOARD_EARLY_INIT_F
8bbff6a7 943 imply MXC_GPIO
44ad4961 944 imply SYS_THUMB_BUILD
1a8150d4 945
89ebc821
BB
946config ARCH_MX6
947 bool "Freescale MX6"
6d21dd31 948 select BOARD_POSTCLK_INIT
acf15001 949 select CPU_V7A
7a672057 950 select GPIO_EXTRA_HEADER
0c2729ed 951 select MACH_IMX
9b0240f8 952 select MXC_GPT_HCLK
90865614 953 select SYS_FSL_HAS_SEC
2c2e2c9e 954 select SYS_FSL_SEC_COMPAT_4
90b80386 955 select SYS_FSL_SEC_LE
11168883 956 select SYS_L2_PL310 if !SYS_L2CACHE_OFF
8bbff6a7 957 imply MXC_GPIO
44ad4961 958 imply SYS_THUMB_BUILD
1dd56db5 959 imply SPL_SEPARATE_BSS
89ebc821 960
424ee3d1
AR
961config ARCH_MX5
962 bool "Freescale MX5"
a5d67547 963 select BOARD_EARLY_INIT_F
5ed063d1 964 select CPU_V7A
7a672057 965 select GPIO_EXTRA_HEADER
0c2729ed 966 select MACH_IMX
8bbff6a7 967 imply MXC_GPIO
424ee3d1 968
95e9a8e2
SB
969config ARCH_NEXELL
970 bool "Nexell S5P4418/S5P6818 SoC"
971 select ENABLE_ARM_SOC_BOOT0_HOOK
972 select DM
7a672057 973 select GPIO_EXTRA_HEADER
95e9a8e2 974
84335544
JL
975config ARCH_NPCM
976 bool "Support Nuvoton SoCs"
977 select DM
978 select OF_CONTROL
979 imply CMD_DM
980
003b657e
MK
981config ARCH_APPLE
982 bool "Apple SoCs"
983 select ARM64
d520e1fb 984 select CLK
bdebb00d 985 select CMD_PCI
003b657e
MK
986 select CMD_USB
987 select DM
b814e000 988 select DM_GPIO
003b657e 989 select DM_KEYBOARD
456305ec 990 select DM_MAILBOX
81fafbbe 991 select DM_RESET
003b657e 992 select DM_SERIAL
7184e299 993 select DM_SPI
003b657e 994 select DM_USB
b86986c7 995 select VIDEO
785cfde5 996 select IOMMU
003b657e 997 select LINUX_KERNEL_IMAGE_HEADER
db04ff42 998 select MTD
a609353e 999 select OF_BOARD_SETUP
003b657e 1000 select OF_CONTROL
bdebb00d 1001 select PCI
b99c6357 1002 select PHY
b814e000 1003 select PINCTRL
003b657e 1004 select POSITION_INDEPENDENT
97187d5e
MK
1005 select POWER_DOMAIN
1006 select REGMAP
7184e299 1007 select SPI
97187d5e 1008 select SYSCON
9a8e3736
MK
1009 select SYSRESET
1010 select SYSRESET_WATCHDOG
1011 select SYSRESET_WATCHDOG_AUTO
003b657e
MK
1012 select USB
1013 imply CMD_DM
1014 imply CMD_GPT
1015 imply DISTRO_DEFAULTS
239d22c7 1016 imply OF_HAS_PRIOR_STAGE
003b657e 1017
97775d26
MS
1018config ARCH_OWL
1019 bool "Actions Semi OWL SoCs"
97775d26
MS
1020 select DM
1021 select DM_SERIAL
7a672057 1022 select GPIO_EXTRA_HEADER
b1a6bb3b 1023 select OWL_SERIAL
8b520ac1
AST
1024 select CLK
1025 select CLK_OWL
97775d26 1026 select OF_CONTROL
36c2f020 1027 select SYS_RELOC_GD_ENV_ADDR
08a00cba 1028 imply CMD_DM
97775d26 1029
32f11829
TT
1030config ARCH_QEMU
1031 bool "QEMU Virtual Platform"
32f11829
TT
1032 select DM
1033 select DM_SERIAL
1034 select OF_CONTROL
cf2c7784 1035 select PL01X_SERIAL
08a00cba 1036 imply CMD_DM
684710dc 1037 imply DM_RNG
a47c1b5b
AT
1038 imply DM_RTC
1039 imply RTC_PL031
239d22c7 1040 imply OF_HAS_PRIOR_STAGE
4d6641d5
ANY
1041 imply VIDEO
1042 imply VIDEO_BOCHS
1043 imply SYS_WHITE_ON_BLACK
1044 imply SYS_CONSOLE_IS_IN_ENV
120f540a 1045 imply PRE_CONSOLE_BUFFER
05e2fa79
ANY
1046 imply USB
1047 imply USB_XHCI_HCD
1048 imply USB_XHCI_PCI
1049 imply USB_KEYBOARD
1050 imply CMD_USB
32f11829 1051
f9aabd45 1052config ARCH_RENESAS
f40b9898 1053 bool "Renesas ARM SoCs"
1cc95f6e
NI
1054 select DM
1055 select DM_SERIAL
7a672057 1056 select GPIO_EXTRA_HEADER
87f9ffbe 1057 select LTO
5157b011 1058 imply BOARD_EARLY_INIT_F
08a00cba 1059 imply CMD_DM
91d27a17 1060 imply FAT_WRITE
3a649407 1061 imply SYS_THUMB_BUILD
00e4b57e 1062 imply ARCH_MISC_INIT if DISPLAY_CPUINFO
dd84058d 1063
08592136
MK
1064config ARCH_SNAPDRAGON
1065 bool "Qualcomm Snapdragon SoCs"
1066 select ARM64
1067 select DM
1068 select DM_GPIO
1069 select DM_SERIAL
3ead6616 1070 select DM_RESET
7a672057 1071 select GPIO_EXTRA_HEADER
5ed063d1 1072 select MSM_SMEM
08592136
MK
1073 select OF_CONTROL
1074 select OF_SEPARATE
654dd4a8 1075 select SMEM
5ed063d1 1076 select SPMI
a2364d97 1077 select BOARD_LATE_INIT
059d526a
CC
1078 select OF_BOARD
1079 select SAVE_PREV_BL_FDT_ADDR
1080 select LINUX_KERNEL_IMAGE_HEADER
08a00cba 1081 imply CMD_DM
08592136 1082
7865f4b0
MY
1083config ARCH_SOCFPGA
1084 bool "Altera SOCFPGA family"
48befc00 1085 select ARCH_EARLY_INIT_R
d6a61da4 1086 select ARCH_MISC_INIT if !TARGET_SOCFPGA_ARRIA10
9a5bbdfd 1087 select ARM64 if TARGET_SOCFPGA_SOC64
a684729a 1088 select CPU_V7A if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
1d9aa3e5 1089 select DM
73172753 1090 select DM_SERIAL
5afdcca0 1091 select GICV2
7a672057 1092 select GPIO_EXTRA_HEADER
a684729a 1093 select ENABLE_ARM_SOC_BOOT0_HOOK if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
48befc00 1094 select OF_CONTROL
00057eea 1095 select SPL_DM_RESET if DM_RESET
5ed063d1 1096 select SPL_DM_SERIAL
48befc00 1097 select SPL_LIBCOMMON_SUPPORT
48befc00 1098 select SPL_LIBGENERIC_SUPPORT
48befc00 1099 select SPL_OF_CONTROL
9a5bbdfd 1100 select SPL_SEPARATE_BSS if TARGET_SOCFPGA_SOC64
2a736066 1101 select SPL_SERIAL
ef72ba0b 1102 select SPL_SYSRESET
078111b9 1103 select SPL_WATCHDOG
48befc00 1104 select SUPPORT_SPL
73172753 1105 select SYS_NS16550
a684729a 1106 select SYS_THUMB_BUILD if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
ef72ba0b
SG
1107 select SYSRESET
1108 select SYSRESET_SOCFPGA if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
9a5bbdfd 1109 select SYSRESET_SOCFPGA_SOC64 if TARGET_SOCFPGA_SOC64
08a00cba 1110 imply CMD_DM
d56b4b19 1111 imply CMD_MTDPARTS
221a949e 1112 imply CRC32_VERIFY
fef4a545
SG
1113 imply DM_SPI
1114 imply DM_SPI_FLASH
91d27a17 1115 imply FAT_WRITE
db04ff42 1116 imply MTD
aef44283
SG
1117 imply SPL
1118 imply SPL_DM
56c40460
LM
1119 imply SPL_DM_SPI
1120 imply SPL_DM_SPI_FLASH
a9024dc1 1121 imply SPL_LIBDISK_SUPPORT
103c5f18 1122 imply SPL_MMC
fef4a545 1123 imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
f48db4ed 1124 imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
a9024dc1 1125 imply SPL_SPI_FLASH_SUPPORT
ea2ca7e1 1126 imply SPL_SPI
aaa64803 1127 imply L2X0_CACHE
dd84058d 1128
2c7e3b90
IC
1129config ARCH_SUNXI
1130 bool "Support sunxi (Allwinner) SoCs"
d6a0c78a 1131 select BINMAN
88bb800d 1132 select CMD_GPIO
0878a8a7 1133 select CMD_MMC if MMC
be5c0608 1134 select CMD_USB if DISTRO_DEFAULTS && USB_HOST
e236ff0a 1135 select CLK
b6006baf 1136 select DM
211d57a4 1137 select DM_GPIO
f9437b00 1138 select DM_I2C if I2C
81a46c15 1139 select DM_SPI if SPI
db04ff42 1140 select DM_SPI_FLASH if SPI && MTD
211d57a4 1141 select DM_KEYBOARD
bb3362b0 1142 select DM_MMC if MMC
45368827 1143 select DM_SERIAL
d75111a7 1144 select OF_BOARD_SETUP
b6006baf
HG
1145 select OF_CONTROL
1146 select OF_SEPARATE
b799eabc 1147 select PINCTRL
6f6b7cfa 1148 select SPECIFY_CONSOLE_INDEX
a3010bcf 1149 select SPL_SEPARATE_BSS if SPL
ab43de80
TR
1150 select SPL_STACK_R if SPL
1151 select SPL_SYS_MALLOC_SIMPLE if SPL
5375fb1d 1152 select SPL_SYS_THUMB_BUILD if SPL && !ARM64
10cfbaab 1153 select SUNXI_GPIO
5ed063d1 1154 select SYS_NS16550
ce2e44d8 1155 select SYS_THUMB_BUILD if !ARM64
2997ee50 1156 select USB if DISTRO_DEFAULTS
be5c0608
TR
1157 select USB_KEYBOARD if DISTRO_DEFAULTS && USB_HOST
1158 select USB_STORAGE if DISTRO_DEFAULTS && USB_HOST
5375fb1d 1159 select SPL_USE_TINY_PRINTF if SPL
48313fe5
AP
1160 select USE_PREBOOT
1161 select SYS_RELOC_GD_ENV_ADDR
92600edb 1162 imply BOARD_LATE_INIT
08a00cba 1163 imply CMD_DM
a12fb0e3 1164 imply CMD_GPT
88718be3 1165 imply CMD_UBI if MTD_RAW_NAND
7325f6cf 1166 imply DISTRO_DEFAULTS
ae79c1d0
AP
1167 imply DM_REGULATOR
1168 imply DM_REGULATOR_FIXED
91d27a17 1169 imply FAT_WRITE
2f13cf35 1170 imply FIT
eff264d7 1171 imply OF_LIBFDT_OVERLAY
af83a604 1172 imply PRE_CONSOLE_BUFFER
83061dbd 1173 imply SPL_GPIO
af83a604 1174 imply SPL_LIBCOMMON_SUPPORT
af83a604 1175 imply SPL_LIBGENERIC_SUPPORT
103c5f18 1176 imply SPL_MMC if MMC
933b2f09 1177 imply SPL_POWER
2a736066 1178 imply SPL_SERIAL
40edc320
SH
1179 imply SYSRESET
1180 imply SYSRESET_WATCHDOG
1181 imply SYSRESET_WATCHDOG_AUTO
654b02b1 1182 imply USB_GADGET
b147bd36 1183 imply WDT
8ebe4f42 1184
689088f9
SG
1185config ARCH_U8500
1186 bool "ST-Ericsson U8500 Series"
1187 select CPU_V7A
1188 select DM
1189 select DM_GPIO
1190 select DM_MMC if MMC
1191 select DM_SERIAL
9f78ccf1 1192 select DM_USB_GADGET if DM_USB
689088f9
SG
1193 select OF_CONTROL
1194 select SYSRESET
1195 select TIMER
9f78ccf1 1196 imply AB8500_USB_PHY
689088f9 1197 imply ARM_PL180_MMCI
9f78ccf1
SG
1198 imply CLK
1199 imply DM_PMIC
689088f9 1200 imply DM_RTC
9f78ccf1 1201 imply NOMADIK_GPIO
689088f9 1202 imply NOMADIK_MTU_TIMER
9f78ccf1 1203 imply PHY
689088f9 1204 imply PL01X_SERIAL
9f78ccf1 1205 imply PMIC_AB8500
689088f9 1206 imply RTC_PL031
8956854d 1207 imply SYS_THUMB_BUILD
689088f9
SG
1208 imply SYSRESET_SYSCON
1209
ec48b6c9
MS
1210config ARCH_VERSAL
1211 bool "Support Xilinx Versal Platform"
1212 select ARM64
1213 select CLK
1214 select DM
fa797157 1215 select DM_MMC if MMC
ec48b6c9 1216 select DM_SERIAL
5afdcca0 1217 select GICV3
ec48b6c9 1218 select OF_CONTROL
42e20f52 1219 select SOC_DEVICE
bfd092f9 1220 imply BOARD_LATE_INIT
62b96262 1221 imply ENV_VARS_UBOOT_RUNTIME_CONFIG
ec48b6c9 1222
f6aebdf6 1223config ARCH_VERSAL_NET
6b067f4b 1224 bool "Support Xilinx Versal NET Platform"
f6aebdf6
MS
1225 select ARM64
1226 select CLK
1227 select DM
f6aebdf6
MS
1228 select DM_MMC if MMC
1229 select DM_SERIAL
1230 select OF_CONTROL
1231 imply BOARD_LATE_INIT
1232 imply ENV_VARS_UBOOT_RUNTIME_CONFIG
1233
7966b437
SA
1234config ARCH_VF610
1235 bool "Freescale Vybrid"
acf15001 1236 select CPU_V7A
7a672057 1237 select GPIO_EXTRA_HEADER
c136a861 1238 select IOMUX_SHARE_CONF_REG
0c2729ed 1239 select MACH_IMX
c01e4a1a 1240 select SYS_FSL_ERRATUM_ESDHC111
d56b4b19 1241 imply CMD_MTDPARTS
88718be3 1242 imply MTD_RAW_NAND
e7b860fa 1243
5ca269a4 1244config ARCH_ZYNQ
b8d4497f 1245 bool "Xilinx Zynq based platform"
b7e0750d 1246 select ARM_TWD_TIMER
d0bfa29c 1247 select ARCH_EARLY_INIT_R if FPGA || (SPL && SPL_FPGA)
5ed063d1
MS
1248 select CLK
1249 select CLK_ZYNQ
acf15001 1250 select CPU_V7A
05f0f269 1251 select DEBUG_UART_BOARD_INIT if SPL && DEBUG_UART
8981f05c 1252 select DM
c4a142f4 1253 select DM_MMC if MMC
42800ffa 1254 select DM_SERIAL
5ed063d1 1255 select DM_SPI
9f7a4502 1256 select DM_SPI_FLASH
5ed063d1 1257 select OF_CONTROL
db04ff42 1258 select MTD
f1b1f770 1259 select SPI
5ed063d1
MS
1260 select SPL_BOARD_INIT if SPL
1261 select SPL_CLK if SPL
1262 select SPL_DM if SPL
56c40460
LM
1263 select SPL_DM_SPI if SPL
1264 select SPL_DM_SPI_FLASH if SPL
5ed063d1
MS
1265 select SPL_OF_CONTROL if SPL
1266 select SPL_SEPARATE_BSS if SPL
b7e0750d 1267 select SPL_TIMER if SPL
5ed063d1 1268 select SUPPORT_SPL
b7e0750d 1269 select TIMER
8eb55e19 1270 imply BOARD_LATE_INIT
d315628e 1271 imply CMD_CLK
08a00cba 1272 imply CMD_DM
72c3033f 1273 imply CMD_SPL
62b96262 1274 imply ENV_VARS_UBOOT_RUNTIME_CONFIG
5ed063d1 1275 imply FAT_WRITE
dd84058d 1276
1d6c54ec
MS
1277config ARCH_ZYNQMP_R5
1278 bool "Xilinx ZynqMP R5 based platform"
5ed063d1 1279 select CLK
1d6c54ec 1280 select CPU_V7R
1d6c54ec 1281 select DM
6f96fb50 1282 select DM_MMC if MMC
1d6c54ec 1283 select DM_SERIAL
5ed063d1 1284 select OF_CONTROL
08a00cba 1285 imply CMD_DM
687ab545 1286 imply DM_USB_GADGET
1d6c54ec 1287
0b54a9dd 1288config ARCH_ZYNQMP
b8d4497f 1289 bool "Xilinx ZynqMP based platform"
84c7204b 1290 select ARM64
5ed063d1 1291 select CLK
c2490bf5 1292 select DM
11381fba 1293 select DEBUG_UART_BOARD_INIT if SPL && DEBUG_UART
92e69005 1294 imply DM_MAILBOX
fb693108 1295 select DM_MMC if MMC
c2490bf5 1296 select DM_SERIAL
db04ff42 1297 select MTD
088f83ee
MS
1298 select DM_SPI if SPI
1299 select DM_SPI_FLASH if DM_SPI
71efd45a 1300 imply FIRMWARE
5afdcca0 1301 select GICV2
5ed063d1 1302 select OF_CONTROL
0680f1b1 1303 select SPL_BOARD_INIT if SPL
2f03968e 1304 select SPL_CLK if SPL
6cb402f3
MS
1305 select SPL_DM if SPL
1306 select SPL_DM_SPI if SPI && SPL_DM
56c40460 1307 select SPL_DM_SPI_FLASH if SPL_DM_SPI
325a22dc 1308 select SPL_DM_MAILBOX if SPL
71efd45a 1309 imply SPL_FIRMWARE if SPL
850e7795 1310 select SPL_SEPARATE_BSS if SPL
5ed063d1 1311 select SUPPORT_SPL
92e69005 1312 imply ZYNQMP_IPI if DM_MAILBOX
a890a53a 1313 select SOC_DEVICE
8eb55e19 1314 imply BOARD_LATE_INIT
08a00cba 1315 imply CMD_DM
62b96262 1316 imply ENV_VARS_UBOOT_RUNTIME_CONFIG
91d27a17 1317 imply FAT_WRITE
22270ca0 1318 imply MP
687ab545 1319 imply DM_USB_GADGET
3b441cf4 1320 imply ZYNQMP_GPIO_MODEPIN if DM_GPIO && USB
84c7204b 1321
18138ab2 1322config ARCH_TEGRA
ddd960e6 1323 bool "NVIDIA Tegra"
7a672057 1324 select GPIO_EXTRA_HEADER
7325f6cf 1325 imply DISTRO_DEFAULTS
91d27a17 1326 imply FAT_WRITE
412a4c6f 1327 imply SPL_TIMER if SPL
dd84058d 1328
fac7fc43
AP
1329config ARCH_VEXPRESS64
1330 bool "Support ARMv8 Arm Ltd. VExpress based boards and models"
016a954e 1331 select ARM64
b3270e91 1332 select DM
b3270e91 1333 select DM_SERIAL
fac7fc43 1334 select PL01X_SERIAL
c0fce929
AP
1335 select OF_CONTROL
1336 select CLK
58650382
AP
1337 select BLK
1338 select MTD_NOR_FLASH if MTD
1339 select FLASH_CFI_DRIVER if MTD
1340 select ENV_IS_IN_FLASH if MTD
8a0a8ff5 1341 imply DISTRO_DEFAULTS
ffc10373 1342
f98457d7
RMS
1343config TARGET_CORSTONE1000
1344 bool "Support Corstone1000 Platform"
1345 select ARM64
1346 select PL01X_SERIAL
1347 select DM
1348
565add12
UA
1349config TARGET_TOTAL_COMPUTE
1350 bool "Support Total Compute Platform"
1351 select ARM64
1352 select PL01X_SERIAL
1353 select DM
1354 select DM_SERIAL
1355 select DM_MMC
1356 select DM_GPIO
1357
44937214
PK
1358config TARGET_LS2080A_EMU
1359 bool "Support ls2080a_emu"
fb2bf8c2 1360 select ARCH_LS2080A
016a954e 1361 select ARM64
23b5877c 1362 select ARMV8_MULTIENTRY
32413125 1363 select FSL_DDR_SYNC_REFRESH
7a672057 1364 select GPIO_EXTRA_HEADER
44937214 1365 help
e852b30b
RD
1366 Support for Freescale LS2080A_EMU platform.
1367 The LS2080A Development System (EMULATOR) is a pre-silicon
44937214
PK
1368 development platform that supports the QorIQ LS2080A
1369 Layerscape Architecture processor.
dd84058d 1370
7769776a
AK
1371config TARGET_LS1088AQDS
1372 bool "Support ls1088aqds"
1373 select ARCH_LS1088A
1374 select ARM64
1375 select ARMV8_MULTIENTRY
6324d506 1376 select ARCH_SUPPORT_TFABOOT
7769776a 1377 select BOARD_LATE_INIT
7a672057 1378 select GPIO_EXTRA_HEADER
91fded62 1379 select SUPPORT_SPL
32413125 1380 select FSL_DDR_INTERACTIVE if !SD_BOOT
7769776a 1381 help
e852b30b 1382 Support for NXP LS1088AQDS platform.
7769776a
AK
1383 The LS1088A Development System (QDS) is a high-performance
1384 development platform that supports the QorIQ LS1088A
1385 Layerscape Architecture processor.
1386
44937214
PK
1387config TARGET_LS2080AQDS
1388 bool "Support ls2080aqds"
fb2bf8c2 1389 select ARCH_LS2080A
7288c2c2
YS
1390 select ARM64
1391 select ARMV8_MULTIENTRY
6324d506 1392 select ARCH_SUPPORT_TFABOOT
e5ec4815 1393 select BOARD_LATE_INIT
7a672057 1394 select GPIO_EXTRA_HEADER
b2d5ac59 1395 select SUPPORT_SPL
fedb428c 1396 imply SCSI
9fd95ef0 1397 imply SCSI_AHCI
32413125
RB
1398 select FSL_DDR_BIST
1399 select FSL_DDR_INTERACTIVE if !SPL
7288c2c2 1400 help
e852b30b 1401 Support for Freescale LS2080AQDS platform.
44937214
PK
1402 The LS2080A Development System (QDS) is a high-performance
1403 development platform that supports the QorIQ LS2080A
7288c2c2
YS
1404 Layerscape Architecture processor.
1405
44937214
PK
1406config TARGET_LS2080ARDB
1407 bool "Support ls2080ardb"
fb2bf8c2 1408 select ARCH_LS2080A
e2b65ea9
YS
1409 select ARM64
1410 select ARMV8_MULTIENTRY
6324d506 1411 select ARCH_SUPPORT_TFABOOT
e5ec4815 1412 select BOARD_LATE_INIT
32eda7cc 1413 select SUPPORT_SPL
32413125
RB
1414 select FSL_DDR_BIST
1415 select FSL_DDR_INTERACTIVE if !SPL
7a672057 1416 select GPIO_EXTRA_HEADER
fedb428c 1417 imply SCSI
9fd95ef0 1418 imply SCSI_AHCI
e2b65ea9 1419 help
44937214
PK
1420 Support for Freescale LS2080ARDB platform.
1421 The LS2080A Reference design board (RDB) is a high-performance
1422 development platform that supports the QorIQ LS2080A
e2b65ea9
YS
1423 Layerscape Architecture processor.
1424
3049a583
PJ
1425config TARGET_LS2081ARDB
1426 bool "Support ls2081ardb"
1427 select ARCH_LS2080A
1428 select ARM64
1429 select ARMV8_MULTIENTRY
1430 select BOARD_LATE_INIT
7a672057 1431 select GPIO_EXTRA_HEADER
3049a583 1432 select SUPPORT_SPL
3049a583
PJ
1433 help
1434 Support for Freescale LS2081ARDB platform.
1435 The LS2081A Reference design board (RDB) is a high-performance
1436 development platform that supports the QorIQ LS2081A/LS2041A
1437 Layerscape Architecture processor.
1438
58c3e620
PJ
1439config TARGET_LX2160ARDB
1440 bool "Support lx2160ardb"
1441 select ARCH_LX2160A
58c3e620
PJ
1442 select ARM64
1443 select ARMV8_MULTIENTRY
6324d506 1444 select ARCH_SUPPORT_TFABOOT
58c3e620 1445 select BOARD_LATE_INIT
7a672057 1446 select GPIO_EXTRA_HEADER
58c3e620
PJ
1447 help
1448 Support for NXP LX2160ARDB platform.
1449 The lx2160ardb (LX2160A Reference design board (RDB)
1450 is a high-performance development platform that supports the
1451 QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
1452
1eba723c
PB
1453config TARGET_LX2160AQDS
1454 bool "Support lx2160aqds"
1455 select ARCH_LX2160A
1eba723c
PB
1456 select ARM64
1457 select ARMV8_MULTIENTRY
6324d506 1458 select ARCH_SUPPORT_TFABOOT
1eba723c 1459 select BOARD_LATE_INIT
7a672057 1460 select GPIO_EXTRA_HEADER
1eba723c
PB
1461 help
1462 Support for NXP LX2160AQDS platform.
1463 The lx2160aqds (LX2160A QorIQ Development System (QDS)
1464 is a high-performance development platform that supports the
1465 QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
9ed303df
MA
1466
1467config TARGET_LX2162AQDS
1468 bool "Support lx2162aqds"
1469 select ARCH_LX2162A
1470 select ARCH_MISC_INIT
1471 select ARM64
1472 select ARMV8_MULTIENTRY
1473 select ARCH_SUPPORT_TFABOOT
1474 select BOARD_LATE_INIT
7a672057 1475 select GPIO_EXTRA_HEADER
9ed303df
MA
1476 help
1477 Support for NXP LX2162AQDS platform.
1478 The lx2162aqds support is based on LX2160A Layerscape Architecture processor.
1eba723c 1479
11ac2363
PG
1480config TARGET_HIKEY
1481 bool "Support HiKey 96boards Consumer Edition Platform"
1482 select ARM64
efd7b60a
PG
1483 select DM
1484 select DM_GPIO
9c71bcdc 1485 select DM_SERIAL
7a672057 1486 select GPIO_EXTRA_HEADER
cd593ed6 1487 select OF_CONTROL
cf2c7784 1488 select PL01X_SERIAL
6f6b7cfa 1489 select SPECIFY_CONSOLE_INDEX
08a00cba 1490 imply CMD_DM
11ac2363
PG
1491 help
1492 Support for HiKey 96boards platform. It features a HI6220
1493 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
1494
c62c7ef7
MS
1495config TARGET_HIKEY960
1496 bool "Support HiKey960 96boards Consumer Edition Platform"
1497 select ARM64
1498 select DM
1499 select DM_SERIAL
7a672057 1500 select GPIO_EXTRA_HEADER
c62c7ef7
MS
1501 select OF_CONTROL
1502 select PL01X_SERIAL
1503 imply CMD_DM
1504 help
1505 Support for HiKey960 96boards platform. It features a HI3660
1506 SoC, with 4xA73 CPU, 4xA53 CPU, MALI-G71 GPU, and 3GB RAM.
1507
d754254f
JRO
1508config TARGET_POPLAR
1509 bool "Support Poplar 96boards Enterprise Edition Platform"
1510 select ARM64
1511 select DM
d754254f 1512 select DM_SERIAL
7a672057 1513 select GPIO_EXTRA_HEADER
5ed063d1 1514 select OF_CONTROL
cf2c7784 1515 select PL01X_SERIAL
08a00cba 1516 imply CMD_DM
d754254f
JRO
1517 help
1518 Support for Poplar 96boards EE platform. It features a HI3798cv200
1519 SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
1520 making it capable of running any commercial set-top solution based on
1521 Linux or Android.
1522
9d044fcb
PK
1523config TARGET_LS1012AQDS
1524 bool "Support ls1012aqds"
9533acf3 1525 select ARCH_LS1012A
9d044fcb 1526 select ARM64
6324d506 1527 select ARCH_SUPPORT_TFABOOT
e5ec4815 1528 select BOARD_LATE_INIT
7a672057 1529 select GPIO_EXTRA_HEADER
9d044fcb
PK
1530 help
1531 Support for Freescale LS1012AQDS platform.
1532 The LS1012A Development System (QDS) is a high-performance
1533 development platform that supports the QorIQ LS1012A
1534 Layerscape Architecture processor.
1535
3b6e3898
PK
1536config TARGET_LS1012ARDB
1537 bool "Support ls1012ardb"
9533acf3 1538 select ARCH_LS1012A
3b6e3898 1539 select ARM64
6324d506 1540 select ARCH_SUPPORT_TFABOOT
e5ec4815 1541 select BOARD_LATE_INIT
7a672057 1542 select GPIO_EXTRA_HEADER
fedb428c 1543 imply SCSI
9fd95ef0 1544 imply SCSI_AHCI
3b6e3898
PK
1545 help
1546 Support for Freescale LS1012ARDB platform.
1547 The LS1012A Reference design board (RDB) is a high-performance
1548 development platform that supports the QorIQ LS1012A
1549 Layerscape Architecture processor.
1550
b0ce187b
BU
1551config TARGET_LS1012A2G5RDB
1552 bool "Support ls1012a2g5rdb"
1553 select ARCH_LS1012A
1554 select ARM64
6324d506 1555 select ARCH_SUPPORT_TFABOOT
b0ce187b 1556 select BOARD_LATE_INIT
7a672057 1557 select GPIO_EXTRA_HEADER
b0ce187b
BU
1558 imply SCSI
1559 help
1560 Support for Freescale LS1012A2G5RDB platform.
1561 The LS1012A 2G5 Reference design board (RDB) is a high-performance
1562 development platform that supports the QorIQ LS1012A
1563 Layerscape Architecture processor.
1564
9629ccdd
BU
1565config TARGET_LS1012AFRWY
1566 bool "Support ls1012afrwy"
1567 select ARCH_LS1012A
1568 select ARM64
6324d506 1569 select ARCH_SUPPORT_TFABOOT
5ed063d1 1570 select BOARD_LATE_INIT
7a672057 1571 select GPIO_EXTRA_HEADER
9629ccdd
BU
1572 imply SCSI
1573 imply SCSI_AHCI
1574 help
1575 Support for Freescale LS1012AFRWY platform.
1576 The LS1012A FRWY board (FRWY) is a high-performance
1577 development platform that supports the QorIQ LS1012A
1578 Layerscape Architecture processor.
1579
ff78aa2b
PK
1580config TARGET_LS1012AFRDM
1581 bool "Support ls1012afrdm"
9533acf3 1582 select ARCH_LS1012A
ff78aa2b 1583 select ARM64
6324d506 1584 select ARCH_SUPPORT_TFABOOT
7a672057 1585 select GPIO_EXTRA_HEADER
ff78aa2b
PK
1586 help
1587 Support for Freescale LS1012AFRDM platform.
1588 The LS1012A Freedom board (FRDM) is a high-performance
1589 development platform that supports the QorIQ LS1012A
1590 Layerscape Architecture processor.
1591
f278a217
YT
1592config TARGET_LS1028AQDS
1593 bool "Support ls1028aqds"
1594 select ARCH_LS1028A
1595 select ARM64
1596 select ARMV8_MULTIENTRY
6324d506 1597 select ARCH_SUPPORT_TFABOOT
acf40f50 1598 select BOARD_LATE_INIT
7a672057 1599 select GPIO_EXTRA_HEADER
f278a217
YT
1600 help
1601 Support for Freescale LS1028AQDS platform
1602 The LS1028A Development System (QDS) is a high-performance
1603 development platform that supports the QorIQ LS1028A
1604 Layerscape Architecture processor.
1605
353f36d9
YT
1606config TARGET_LS1028ARDB
1607 bool "Support ls1028ardb"
1608 select ARCH_LS1028A
1609 select ARM64
1610 select ARMV8_MULTIENTRY
6324d506 1611 select ARCH_SUPPORT_TFABOOT
c40ebf7e 1612 select BOARD_LATE_INIT
7a672057 1613 select GPIO_EXTRA_HEADER
353f36d9
YT
1614 help
1615 Support for Freescale LS1028ARDB platform
1616 The LS1028A Development System (RDB) is a high-performance
1617 development platform that supports the QorIQ LS1028A
1618 Layerscape Architecture processor.
1619
e84a324b
AK
1620config TARGET_LS1088ARDB
1621 bool "Support ls1088ardb"
1622 select ARCH_LS1088A
1623 select ARM64
1624 select ARMV8_MULTIENTRY
6324d506 1625 select ARCH_SUPPORT_TFABOOT
e84a324b 1626 select BOARD_LATE_INIT
099f4093 1627 select SUPPORT_SPL
32413125 1628 select FSL_DDR_INTERACTIVE if !SD_BOOT
7a672057 1629 select GPIO_EXTRA_HEADER
e84a324b
AK
1630 help
1631 Support for NXP LS1088ARDB platform.
1632 The LS1088A Reference design board (RDB) is a high-performance
1633 development platform that supports the QorIQ LS1088A
1634 Layerscape Architecture processor.
1635
550e3dc0 1636config TARGET_LS1021AQDS
0de15707 1637 bool "Support ls1021aqds"
5ed063d1
MS
1638 select ARCH_LS1021A
1639 select ARCH_SUPPORT_PSCI
1640 select BOARD_EARLY_INIT_F
e5ec4815 1641 select BOARD_LATE_INIT
acf15001 1642 select CPU_V7A
adee1d4c
HZ
1643 select CPU_V7_HAS_NONSEC
1644 select CPU_V7_HAS_VIRT
5e8bd7e1 1645 select LS1_DEEP_SLEEP
2b210540 1646 select PEN_ADDR_BIG_ENDIAN
5ed063d1 1647 select SUPPORT_SPL
d26e34c4 1648 select SYS_FSL_DDR
32413125 1649 select FSL_DDR_INTERACTIVE
28964227 1650 select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
7a672057 1651 select GPIO_EXTRA_HEADER
28964227 1652 select SPI_FLASH_DATAFLASH if FSL_DSPI || FSL_QSPI
fedb428c 1653 imply SCSI
217f92bb 1654
c8a7d9da 1655config TARGET_LS1021ATWR
0de15707 1656 bool "Support ls1021atwr"
5ed063d1
MS
1657 select ARCH_LS1021A
1658 select ARCH_SUPPORT_PSCI
1659 select BOARD_EARLY_INIT_F
e5ec4815 1660 select BOARD_LATE_INIT
acf15001 1661 select CPU_V7A
adee1d4c
HZ
1662 select CPU_V7_HAS_NONSEC
1663 select CPU_V7_HAS_VIRT
5e8bd7e1 1664 select LS1_DEEP_SLEEP
2b210540 1665 select PEN_ADDR_BIG_ENDIAN
5ed063d1 1666 select SUPPORT_SPL
28964227 1667 select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
7a672057 1668 select GPIO_EXTRA_HEADER
fedb428c 1669 imply SCSI
c8a7d9da 1670
91ee5474
AG
1671config TARGET_PG_WCOM_SELI8
1672 bool "Support Hitachi-Powergrids SELI8 service unit card"
1673 select ARCH_LS1021A
1674 select ARCH_SUPPORT_PSCI
1675 select BOARD_EARLY_INIT_F
1676 select BOARD_LATE_INIT
1677 select CPU_V7A
1678 select CPU_V7_HAS_NONSEC
1679 select CPU_V7_HAS_VIRT
1680 select SYS_FSL_DDR
1681 select FSL_DDR_INTERACTIVE
7a672057 1682 select GPIO_EXTRA_HEADER
91ee5474
AG
1683 select VENDOR_KM
1684 imply SCSI
1685 help
1686 Support for Hitachi-Powergrids SELI8 service unit card.
1687 SELI8 is a QorIQ LS1021a based service unit card used
1688 in XMC20 and FOX615 product families.
1689
a7fd6fa1
AG
1690config TARGET_PG_WCOM_EXPU1
1691 bool "Support Hitachi-Powergrids EXPU1 service unit card"
1692 select ARCH_LS1021A
1693 select ARCH_SUPPORT_PSCI
1694 select BOARD_EARLY_INIT_F
1695 select BOARD_LATE_INIT
1696 select CPU_V7A
1697 select CPU_V7_HAS_NONSEC
1698 select CPU_V7_HAS_VIRT
1699 select SYS_FSL_DDR
1700 select FSL_DDR_INTERACTIVE
1701 select VENDOR_KM
1702 imply SCSI
1703 help
1704 Support for Hitachi-Powergrids EXPU1 service unit card.
1705 EXPU1 is a QorIQ LS1021a based service unit card used
1706 in XMC20 and FOX615 product families.
1707
87821220
JW
1708config TARGET_LS1021ATSN
1709 bool "Support ls1021atsn"
1710 select ARCH_LS1021A
1711 select ARCH_SUPPORT_PSCI
1712 select BOARD_EARLY_INIT_F
1713 select BOARD_LATE_INIT
1714 select CPU_V7A
1715 select CPU_V7_HAS_NONSEC
1716 select CPU_V7_HAS_VIRT
1717 select LS1_DEEP_SLEEP
1718 select SUPPORT_SPL
7a672057 1719 select GPIO_EXTRA_HEADER
87821220
JW
1720 imply SCSI
1721
20c700f8
FL
1722config TARGET_LS1021AIOT
1723 bool "Support ls1021aiot"
5ed063d1
MS
1724 select ARCH_LS1021A
1725 select ARCH_SUPPORT_PSCI
e5ec4815 1726 select BOARD_LATE_INIT
acf15001 1727 select CPU_V7A
20c700f8
FL
1728 select CPU_V7_HAS_NONSEC
1729 select CPU_V7_HAS_VIRT
2b210540 1730 select PEN_ADDR_BIG_ENDIAN
20c700f8 1731 select SUPPORT_SPL
28964227 1732 select DM_SPI_FLASH if FSL_DSPI || FSL_QSPI
7a672057 1733 select GPIO_EXTRA_HEADER
fedb428c 1734 imply SCSI
20c700f8
FL
1735 help
1736 Support for Freescale LS1021AIOT platform.
1737 The LS1021A Freescale board (IOT) is a high-performance
1738 development platform that supports the QorIQ LS1021A
1739 Layerscape Architecture processor.
1740
02b5d2ed
SX
1741config TARGET_LS1043AQDS
1742 bool "Support ls1043aqds"
0a37cf8f 1743 select ARCH_LS1043A
02b5d2ed
SX
1744 select ARM64
1745 select ARMV8_MULTIENTRY
6324d506 1746 select ARCH_SUPPORT_TFABOOT
5ed063d1 1747 select BOARD_EARLY_INIT_F
e5ec4815 1748 select BOARD_LATE_INIT
02b5d2ed 1749 select SUPPORT_SPL
32413125 1750 select FSL_DDR_INTERACTIVE if !SPL
044a66cb
LM
1751 select FSL_DSPI if !SPL_NO_DSPI
1752 select DM_SPI_FLASH if FSL_DSPI
7a672057 1753 select GPIO_EXTRA_HEADER
fedb428c 1754 imply SCSI
f11e492a 1755 imply SCSI_AHCI
02b5d2ed
SX
1756 help
1757 Support for Freescale LS1043AQDS platform.
1758
f3a8e2b7
MH
1759config TARGET_LS1043ARDB
1760 bool "Support ls1043ardb"
0a37cf8f 1761 select ARCH_LS1043A
f3a8e2b7 1762 select ARM64
831c068f 1763 select ARMV8_MULTIENTRY
6324d506 1764 select ARCH_SUPPORT_TFABOOT
5ed063d1 1765 select BOARD_EARLY_INIT_F
e5ec4815 1766 select BOARD_LATE_INIT
3ad44729 1767 select SUPPORT_SPL
044a66cb
LM
1768 select FSL_DSPI if !SPL_NO_DSPI
1769 select DM_SPI_FLASH if FSL_DSPI
7a672057 1770 select GPIO_EXTRA_HEADER
f3a8e2b7
MH
1771 help
1772 Support for Freescale LS1043ARDB platform.
1773
126fe70d
SX
1774config TARGET_LS1046AQDS
1775 bool "Support ls1046aqds"
da28e58a 1776 select ARCH_LS1046A
126fe70d
SX
1777 select ARM64
1778 select ARMV8_MULTIENTRY
6324d506 1779 select ARCH_SUPPORT_TFABOOT
5ed063d1 1780 select BOARD_EARLY_INIT_F
e5ec4815 1781 select BOARD_LATE_INIT
126fe70d 1782 select DM_SPI_FLASH if DM_SPI
5ed063d1 1783 select SUPPORT_SPL
32413125
RB
1784 select FSL_DDR_BIST if !SPL
1785 select FSL_DDR_INTERACTIVE if !SPL
1786 select FSL_DDR_INTERACTIVE if !SPL
7a672057 1787 select GPIO_EXTRA_HEADER
fedb428c 1788 imply SCSI
126fe70d
SX
1789 help
1790 Support for Freescale LS1046AQDS platform.
1791 The LS1046A Development System (QDS) is a high-performance
1792 development platform that supports the QorIQ LS1046A
1793 Layerscape Architecture processor.
1794
dd02936f
MH
1795config TARGET_LS1046ARDB
1796 bool "Support ls1046ardb"
da28e58a 1797 select ARCH_LS1046A
dd02936f
MH
1798 select ARM64
1799 select ARMV8_MULTIENTRY
6324d506 1800 select ARCH_SUPPORT_TFABOOT
5ed063d1 1801 select BOARD_EARLY_INIT_F
e5ec4815 1802 select BOARD_LATE_INIT
dd02936f 1803 select DM_SPI_FLASH if DM_SPI
dccef2ec 1804 select POWER_MC34VR500
5ed063d1 1805 select SUPPORT_SPL
32413125
RB
1806 select FSL_DDR_BIST
1807 select FSL_DDR_INTERACTIVE if !SPL
7a672057 1808 select GPIO_EXTRA_HEADER
fedb428c 1809 imply SCSI
dd02936f
MH
1810 help
1811 Support for Freescale LS1046ARDB platform.
1812 The LS1046A Reference Design Board (RDB) is a high-performance
1813 development platform that supports the QorIQ LS1046A
1814 Layerscape Architecture processor.
1815
d90c7ac7
VS
1816config TARGET_LS1046AFRWY
1817 bool "Support ls1046afrwy"
1818 select ARCH_LS1046A
1819 select ARM64
1820 select ARMV8_MULTIENTRY
6324d506 1821 select ARCH_SUPPORT_TFABOOT
d90c7ac7
VS
1822 select BOARD_EARLY_INIT_F
1823 select BOARD_LATE_INIT
1824 select DM_SPI_FLASH if DM_SPI
7a672057 1825 select GPIO_EXTRA_HEADER
d90c7ac7
VS
1826 imply SCSI
1827 help
1828 Support for Freescale LS1046AFRWY platform.
1829 The LS1046A Freeway Board (FRWY) is a high-performance
1830 development platform that supports the QorIQ LS1046A
1831 Layerscape Architecture processor.
dd84058d 1832
4ceb5c6d
MW
1833config TARGET_SL28
1834 bool "Support sl28"
1835 select ARCH_LS1028A
1836 select ARM64
1837 select ARMV8_MULTIENTRY
1838 select SUPPORT_SPL
1839 select BINMAN
356a3384
MW
1840 select DM
1841 select DM_GPIO
1842 select DM_I2C
1843 select DM_MMC
db04ff42 1844 select MTD
356a3384 1845 select DM_SPI_FLASH
356a3384 1846 select DM_MDIO
3232bdf0 1847 select PCI
356a3384
MW
1848 select DM_RNG
1849 select DM_RTC
b630f8b3 1850 select SCSI
6d1ab4a1 1851 select DM_SERIAL
356a3384 1852 select DM_SPI
7a672057 1853 select GPIO_EXTRA_HEADER
356a3384
MW
1854 select SPL_DM if SPL
1855 select SPL_DM_SPI if SPL
1856 select SPL_DM_SPI_FLASH if SPL
1857 select SPL_DM_I2C if SPL
1858 select SPL_DM_MMC if SPL
1859 select SPL_DM_SERIAL if SPL
4ceb5c6d
MW
1860 help
1861 Support for Kontron SMARC-sAL28 board.
1862
a1d2fd38
MM
1863config TARGET_TEN64
1864 bool "Support ten64"
1865 select ARCH_LS1088A
1866 select ARCH_MISC_INIT
1867 select ARM64
1868 select ARMV8_MULTIENTRY
1869 select ARCH_SUPPORT_TFABOOT
1870 select BOARD_LATE_INIT
1871 select SUPPORT_SPL
1872 select FSL_DDR_INTERACTIVE if !SD_BOOT
1873 select GPIO_EXTRA_HEADER
1874 help
1875 Support for Traverse Technologies Ten64 board, based
1876 on NXP LS1088A.
1877
66cba041 1878config ARCH_UNIPHIER
b6ef3a3f 1879 bool "Socionext UniPhier SoCs"
e5ec4815 1880 select BOARD_LATE_INIT
4e819950 1881 select DM
b800cbde 1882 select DM_GPIO
4e819950 1883 select DM_I2C
4aceb3f8 1884 select DM_MMC
407b01b3 1885 select DM_MTD
4fb96c48 1886 select DM_RESET
b5550e49 1887 select DM_SERIAL
65fce763 1888 select OF_BOARD_SETUP
b5550e49
MY
1889 select OF_CONTROL
1890 select OF_LIBFDT
27350c92 1891 select PINCTRL
0680f1b1 1892 select SPL_BOARD_INIT if SPL
561ca649
MY
1893 select SPL_DM if SPL
1894 select SPL_LIBCOMMON_SUPPORT if SPL
1895 select SPL_LIBGENERIC_SUPPORT if SPL
1896 select SPL_OF_CONTROL if SPL
1897 select SPL_PINCTRL if SPL
b5550e49 1898 select SUPPORT_SPL
08a00cba 1899 imply CMD_DM
7ef5b1e7 1900 imply DISTRO_DEFAULTS
91d27a17 1901 imply FAT_WRITE
b6ef3a3f
MY
1902 help
1903 Support for UniPhier SoC family developed by Socionext Inc.
1904 (formerly, System LSI Business Division of Panasonic Corporation)
66cba041 1905
5cd4a355
MH
1906config ARCH_SYNQUACER
1907 bool "Socionext SynQuacer SoCs"
1908 select ARM64
1909 select DM
1910 select GIC_V3
1911 select PSCI_RESET
1912 select SYSRESET
1913 select SYSRESET_PSCI
1914 select OF_CONTROL
1915 help
1916 Support for SynQuacer SoC family developed by Socionext Inc.
1917 This SoC is used on 96boards EE DeveloperBox.
1918
71f6354b 1919config ARCH_STM32
2514c2d0 1920 bool "Support STMicroelectronics STM32 MCU with cortex M"
ed09a554 1921 select CPU_V7M
66562414
KL
1922 select DM
1923 select DM_SERIAL
08a00cba 1924 imply CMD_DM
ed09a554 1925
94e9a4ef 1926config ARCH_STI
eae488b7 1927 bool "Support STMicroelectronics SoCs"
5ed063d1 1928 select BLK
acf15001 1929 select CPU_V7A
214a17e6 1930 select DM
eee20f81 1931 select DM_MMC
584861ff 1932 select DM_RESET
5ed063d1 1933 select DM_SERIAL
08a00cba 1934 imply CMD_DM
94e9a4ef
PC
1935 help
1936 Support for STMicroelectronics STiH407/10 SoC family.
1937 This SoC is used on Linaro 96Board STiH410-B2260
1938
2514c2d0
PD
1939config ARCH_STM32MP
1940 bool "Support STMicroelectronics STM32MP Socs with cortex A"
08772f6e 1941 select ARCH_MISC_INIT
654706be 1942 select ARCH_SUPPORT_TFABOOT
2514c2d0
PD
1943 select BOARD_LATE_INIT
1944 select CLK
1945 select DM
1946 select DM_GPIO
1947 select DM_RESET
1948 select DM_SERIAL
5ed063d1 1949 select MISC
2514c2d0
PD
1950 select OF_CONTROL
1951 select OF_LIBFDT
05d36936 1952 select OF_SYSTEM_SETUP
2514c2d0
PD
1953 select PINCTRL
1954 select REGMAP
2514c2d0 1955 select SYSCON
86634a93 1956 select SYSRESET
01a70199 1957 select SYS_THUMB_BUILD if !ARM64
09259fce 1958 imply SPL_SYSRESET
08a00cba 1959 imply CMD_DM
c16cc4f6 1960 imply CMD_POWEROFF
f219361d 1961 imply OF_LIBFDT_OVERLAY
b4ae34b6 1962 imply ENV_VARS_UBOOT_RUNTIME_CONFIG
ce3772ca 1963 imply USE_PREBOOT
d6b318de 1964 imply TIMESTAMP
2514c2d0
PD
1965 help
1966 Support for STM32MP SoC family developed by STMicroelectronics,
1967 MPUs based on ARM cortex A core
abf2678f
PD
1968 U-BOOT is running in DDR, loaded by the First Stage BootLoader (FSBL).
1969 FSBL can be TF-A: Trusted Firmware for Cortex A, for trusted boot
1970 chain.
1971 SPL is the unsecure FSBL for the basic boot chain.
2514c2d0 1972
2444dae5
SG
1973config ARCH_ROCKCHIP
1974 bool "Support Rockchip SoCs"
aa15038c 1975 select BLK
05713d57 1976 select BINMAN if SPL_OPTEE || SPL
2444dae5 1977 select DM
aa15038c
SG
1978 select DM_GPIO
1979 select DM_I2C
1980 select DM_MMC
5ed063d1
MS
1981 select DM_PWM
1982 select DM_REGULATOR
aa15038c
SG
1983 select DM_SERIAL
1984 select DM_SPI
1985 select DM_SPI_FLASH
bcbd9a6f 1986 select DM_USB_GADGET if USB_DWC3_GADGET
14ad6eb2 1987 select ENABLE_ARM_SOC_BOOT0_HOOK
5ed063d1 1988 select OF_CONTROL
db04ff42 1989 select MTD
f1b1f770 1990 select SPI
5ed063d1 1991 select SPL_DM if SPL
56c40460
LM
1992 select SPL_DM_SPI if SPL
1993 select SPL_DM_SPI_FLASH if SPL
5ed063d1
MS
1994 select SYS_MALLOC_F
1995 select SYS_THUMB_BUILD if !ARM64
1996 imply ADC
08a00cba 1997 imply CMD_DM
b0a569da 1998 imply DEBUG_UART_BOARD_INIT
7755dc58 1999 imply BOOTSTD_DEFAULTS
91d27a17 2000 imply FAT_WRITE
8e8bcccc 2001 imply SARADC_ROCKCHIP
5ed063d1 2002 imply SPL_SYSRESET
64eff47c 2003 imply SPL_SYS_MALLOC_SIMPLE
c3c0331d 2004 imply SYS_NS16550
5ed063d1
MS
2005 imply TPL_SYSRESET
2006 imply USB_FUNCTION_FASTBOOT
2444dae5 2007
03c22880
SG
2008config ARCH_OCTEONTX
2009 bool "Support OcteonTX SoCs"
7a78074c 2010 select CLK
03c22880 2011 select DM
7a672057 2012 select GPIO_EXTRA_HEADER
03c22880
SG
2013 select ARM64
2014 select OF_CONTROL
2015 select OF_LIVE
2016 select BOARD_LATE_INIT
2017 select SYS_CACHE_SHIFT_7
7856cd5a 2018 select SYS_PCI_64BIT if PCI
239d22c7 2019 imply OF_HAS_PRIOR_STAGE
0a668f6d
SG
2020
2021config ARCH_OCTEONTX2
2022 bool "Support OcteonTX2 SoCs"
7a78074c 2023 select CLK
0a668f6d 2024 select DM
7a672057 2025 select GPIO_EXTRA_HEADER
0a668f6d
SG
2026 select ARM64
2027 select OF_CONTROL
2028 select OF_LIVE
2029 select BOARD_LATE_INIT
2030 select SYS_CACHE_SHIFT_7
7856cd5a 2031 select SYS_PCI_64BIT if PCI
239d22c7 2032 imply OF_HAS_PRIOR_STAGE
0a668f6d 2033
746f985a
ST
2034config TARGET_THUNDERX_88XX
2035 bool "Support ThunderX 88xx"
b4ba1693 2036 select ARM64
7a672057 2037 select GPIO_EXTRA_HEADER
746f985a 2038 select OF_CONTROL
cf2c7784 2039 select PL01X_SERIAL
5ed063d1 2040 select SYS_CACHE_SHIFT_7
746f985a 2041
4697abea 2042config ARCH_ASPEED
2043 bool "Support Aspeed SoCs"
4697abea 2044 select DM
5ed063d1 2045 select OF_CONTROL
08a00cba 2046 imply CMD_DM
4697abea 2047
e3aafef4 2048config TARGET_DURIAN
2049 bool "Support Phytium Durian Platform"
2050 select ARM64
7a672057 2051 select GPIO_EXTRA_HEADER
e3aafef4 2052 help
2053 Support for durian platform.
2054 It has 2GB Sdram, uart and pcie.
2055
b9d0f00a 2056config TARGET_POMELO
2057 bool "Support Phytium Pomelo Platform"
2058 select ARM64
2059 select DM
2060 select AHCI
2061 select SCSI_AHCI
2062 select AHCI_PCI
2063 select BLK
2064 select PCI
2065 select DM_PCI
2066 select SCSI
b9d0f00a 2067 select DM_SERIAL
b9d0f00a 2068 imply CMD_PCI
2069 help
2070 Support for pomelo platform.
2071 It has 8GB Sdram, uart and pcie.
2072
e6a8c6f5
T
2073config TARGET_PE2201
2074 bool "Support Phytium PE2201 Platform"
2075 select ARM64
2076 help
2077 Support for pe2201 platform.It has 2GB Sdram, uart and pcie.
2078
7d706a88
AN
2079config TARGET_PRESIDIO_ASIC
2080 bool "Support Cortina Presidio ASIC Platform"
2081 select ARM64
5afdcca0 2082 select GICV2
7d706a88 2083
770a8eef
AA
2084config TARGET_XENGUEST_ARM64
2085 bool "Xen guest ARM64"
2086 select ARM64
2087 select XEN
2088 select OF_CONTROL
2089 select LINUX_KERNEL_IMAGE_HEADER
384d5cfe 2090 select XEN_SERIAL
239d22c7
SG
2091 imply OF_HAS_PRIOR_STAGE
2092
4276c9b2
NH
2093config ARCH_GXP
2094 bool "Support HPE GXP SoCs"
2095 select DM
2096 select OF_CONTROL
2097 imply CMD_DM
2098
dd84058d
MY
2099endchoice
2100
9774462e
TR
2101config SUPPORT_PASSING_ATAGS
2102 bool "Support pre-devicetree ATAG-based booting"
2103 depends on !ARM64
2104 imply SETUP_MEMORY_TAGS
2105 help
2106 Support for booting older Linux kernels, using ATAGs rather than
2107 passing a devicetree. This is option is rarely used, and the
2108 semantics are defined at
2109 https://www.kernel.org/doc/Documentation/arm/Booting at section 4a.
2110
2111config SETUP_MEMORY_TAGS
2112 bool "Pass memory size information via ATAG"
2113 depends on SUPPORT_PASSING_ATAGS
2114
2115config CMDLINE_TAG
2116 bool "Pass Linux kernel cmdline via ATAG"
2117 depends on SUPPORT_PASSING_ATAGS
2118
2119config INITRD_TAG
2120 bool "Pass initrd starting point and size via ATAG"
2121 depends on SUPPORT_PASSING_ATAGS
2122
2123config REVISION_TAG
2124 bool "Pass system revision via ATAG"
2125 depends on SUPPORT_PASSING_ATAGS
2126
2127config SERIAL_TAG
2128 bool "Pass system serial number via ATAG"
2129 depends on SUPPORT_PASSING_ATAGS
2130
87e8d38a
TR
2131config STATIC_MACH_TYPE
2132 bool "Statically define the Machine ID number"
493fd336 2133 default y if TARGET_DS109 || TARGET_DS414 || DEFAULT_DEVICE_TREE = "sun7i-a20-icnova-swac"
87e8d38a
TR
2134 help
2135 When booting via ATAGs, enable this option if we know the correct
2136 machine ID number to use at compile time. Some systems will be
2137 passed the number dynamically by whatever loads U-Boot.
2138
2139config MACH_TYPE
2140 int "Machine ID number"
2141 depends on STATIC_MACH_TYPE
012d4be4 2142 default 527 if TARGET_DS109
012d4be4
T
2143 default 3036 if TARGET_DS414
2144 default 4283 if DEFAULT_DEVICE_TREE = "sun7i-a20-icnova-swac"
87e8d38a
TR
2145 help
2146 When booting via ATAGs, the machine type must be passed as a number.
2147 For the full list see https://www.arm.linux.org.uk/developer/machines
2148
6324d506
AT
2149config ARCH_SUPPORT_TFABOOT
2150 bool
2151
2152config TFABOOT
2153 bool "Support for booting from TF-A"
2154 depends on ARCH_SUPPORT_TFABOOT
6324d506 2155 help
cee2e022
AP
2156 Some platforms support the setup of secure registers (for instance
2157 for CPU errata handling) or provide secure services like PSCI.
2158 Those services could also be provided by other firmware parts
2159 like TF-A (Trusted Firmware for Cortex-A), in which case U-Boot
2160 does not need to (and cannot) execute this code.
2161 Enabling this option will make a U-Boot binary that is relying
2162 on other firmware layers to provide secure functionality.
6324d506 2163
5fbed8f2
AD
2164config TI_SECURE_DEVICE
2165 bool "HS Device Type Support"
3a543a80 2166 depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_K3
5fbed8f2
AD
2167 help
2168 If a high secure (HS) device type is being used, this config
2169 must be set. This option impacts various aspects of the
2170 build system (to create signed boot images that can be
2171 authenticated) and the code. See the doc/README.ti-secure
2172 file for further details.
2173
440c00de
TR
2174config SYS_KWD_CONFIG
2175 string "kwbimage config file path"
2176 depends on ARCH_KIRKWOOD || ARCH_MVEBU
2177 default "arch/arm/mach-mvebu/kwbimage.cfg"
2178 help
2179 Path within the source directory to the kwbimage.cfg file to use
2180 when packaging the U-Boot image for use.
2181
003b657e
MK
2182source "arch/arm/mach-apple/Kconfig"
2183
4697abea 2184source "arch/arm/mach-aspeed/Kconfig"
2185
4614b891
MY
2186source "arch/arm/mach-at91/Kconfig"
2187
ddf6bd48 2188source "arch/arm/mach-bcm283x/Kconfig"
3491ba63 2189
f8209d30
WZ
2190source "arch/arm/mach-bcmbca/Kconfig"
2191
894c3ad2
TF
2192source "arch/arm/mach-bcmstb/Kconfig"
2193
ddf6bd48 2194source "arch/arm/mach-davinci/Kconfig"
34e609ca 2195
77b55e8c 2196source "arch/arm/mach-exynos/Kconfig"
72df68cc 2197
4276c9b2
NH
2198source "arch/arm/mach-hpe/gxp/Kconfig"
2199
72a8ff4b 2200source "arch/arm/mach-highbank/Kconfig"
ef2b694c 2201
e90711f0
YX
2202source "arch/arm/mach-histb/Kconfig"
2203
5cbbd9bd
MY
2204source "arch/arm/mach-integrator/Kconfig"
2205
e479a7d5
RM
2206source "arch/arm/mach-ipq40xx/Kconfig"
2207
586bde93
LV
2208source "arch/arm/mach-k3/Kconfig"
2209
39a72345 2210source "arch/arm/mach-keystone/Kconfig"
c338f09e 2211
56f86e39 2212source "arch/arm/mach-kirkwood/Kconfig"
47539e23 2213
b3d9a8b1 2214source "arch/arm/mach-lpc32xx/Kconfig"
ee54dfea 2215
c3d89140
SR
2216source "arch/arm/mach-mvebu/Kconfig"
2217
03c22880 2218source "arch/arm/mach-octeontx/Kconfig"
0a668f6d
SG
2219
2220source "arch/arm/mach-octeontx2/Kconfig"
2221
0a37cf8f
YS
2222source "arch/arm/cpu/armv7/ls102xa/Kconfig"
2223
3159ec64
ML
2224source "arch/arm/mach-imx/mx3/Kconfig"
2225
7a7391fd
PF
2226source "arch/arm/mach-imx/mx5/Kconfig"
2227
2228source "arch/arm/mach-imx/mx6/Kconfig"
e90a08da 2229
552a848e 2230source "arch/arm/mach-imx/mx7/Kconfig"
1a8150d4 2231
7a7391fd 2232source "arch/arm/mach-imx/mx7ulp/Kconfig"
89ebc821 2233
b2b8b9be
PF
2234source "arch/arm/mach-imx/imx8/Kconfig"
2235
cd357ad1 2236source "arch/arm/mach-imx/imx8m/Kconfig"
424ee3d1 2237
19b990b4
PF
2238source "arch/arm/mach-imx/imx8ulp/Kconfig"
2239
881df6ed
PF
2240source "arch/arm/mach-imx/imx9/Kconfig"
2241
77eb9a90
GB
2242source "arch/arm/mach-imx/imxrt/Kconfig"
2243
c5343d4e
SA
2244source "arch/arm/mach-imx/mxs/Kconfig"
2245
983e3700 2246source "arch/arm/mach-omap2/Kconfig"
6384726d 2247
da28e58a
YS
2248source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
2249
3e93b4e6 2250source "arch/arm/mach-orion5x/Kconfig"
22f2be7a 2251
97775d26
MS
2252source "arch/arm/mach-owl/Kconfig"
2253
40b9d53c 2254source "arch/arm/mach-renesas/Kconfig"
f40b9898 2255
bfcef28a
BG
2256source "arch/arm/mach-meson/Kconfig"
2257
cbd2fba1
RL
2258source "arch/arm/mach-mediatek/Kconfig"
2259
32f11829
TT
2260source "arch/arm/mach-qemu/Kconfig"
2261
2444dae5
SG
2262source "arch/arm/mach-rockchip/Kconfig"
2263
225f5eec 2264source "arch/arm/mach-s5pc1xx/Kconfig"
311757be 2265
08592136
MK
2266source "arch/arm/mach-snapdragon/Kconfig"
2267
7865f4b0
MY
2268source "arch/arm/mach-socfpga/Kconfig"
2269
94e9a4ef
PC
2270source "arch/arm/mach-sti/Kconfig"
2271
0a61ee88
VM
2272source "arch/arm/mach-stm32/Kconfig"
2273
2514c2d0
PD
2274source "arch/arm/mach-stm32mp/Kconfig"
2275
3abfd887
MY
2276source "arch/arm/mach-sunxi/Kconfig"
2277
09f455dc 2278source "arch/arm/mach-tegra/Kconfig"
ddd960e6 2279
689088f9
SG
2280source "arch/arm/mach-u8500/Kconfig"
2281
4c425570 2282source "arch/arm/mach-uniphier/Kconfig"
66cba041 2283
7966b437
SA
2284source "arch/arm/cpu/armv7/vf610/Kconfig"
2285
0107f240 2286source "arch/arm/mach-zynq/Kconfig"
ddd960e6 2287
274ccb5b
MS
2288source "arch/arm/mach-zynqmp/Kconfig"
2289
ec48b6c9
MS
2290source "arch/arm/mach-versal/Kconfig"
2291
f6aebdf6
MS
2292source "arch/arm/mach-versal-net/Kconfig"
2293
1d6c54ec
MS
2294source "arch/arm/mach-zynqmp-r5/Kconfig"
2295
ea624e19
HG
2296source "arch/arm/cpu/armv7/Kconfig"
2297
23b5877c
LW
2298source "arch/arm/cpu/armv8/Kconfig"
2299
552a848e 2300source "arch/arm/mach-imx/Kconfig"
a05a6045 2301
95e9a8e2
SB
2302source "arch/arm/mach-nexell/Kconfig"
2303
84335544
JL
2304source "arch/arm/mach-npcm/Kconfig"
2305
565add12 2306source "board/armltd/total_compute/Kconfig"
f98457d7 2307source "board/armltd/corstone1000/Kconfig"
d8ccbe93 2308source "board/bosch/shc/Kconfig"
45123804 2309source "board/bosch/guardian/Kconfig"
03c22880 2310source "board/Marvell/octeontx/Kconfig"
0a668f6d 2311source "board/Marvell/octeontx2/Kconfig"
15e30106 2312source "board/armltd/vexpress/Kconfig"
dd84058d 2313source "board/armltd/vexpress64/Kconfig"
7d706a88 2314source "board/cortina/presidio-asic/Kconfig"
6f63c296 2315source "board/broadcom/bcmns/Kconfig"
291635ae 2316source "board/broadcom/bcmns3/Kconfig"
746f985a 2317source "board/cavium/thunderx/Kconfig"
85ab0452 2318source "board/eets/pdu001/Kconfig"
6f332765 2319source "board/emulation/qemu-arm/Kconfig"
44937214
PK
2320source "board/freescale/ls2080aqds/Kconfig"
2321source "board/freescale/ls2080ardb/Kconfig"
e84a324b 2322source "board/freescale/ls1088a/Kconfig"
353f36d9 2323source "board/freescale/ls1028a/Kconfig"
550e3dc0 2324source "board/freescale/ls1021aqds/Kconfig"
02b5d2ed 2325source "board/freescale/ls1043aqds/Kconfig"
c8a7d9da 2326source "board/freescale/ls1021atwr/Kconfig"
87821220 2327source "board/freescale/ls1021atsn/Kconfig"
20c700f8 2328source "board/freescale/ls1021aiot/Kconfig"
126fe70d 2329source "board/freescale/ls1046aqds/Kconfig"
f3a8e2b7 2330source "board/freescale/ls1043ardb/Kconfig"
dd02936f 2331source "board/freescale/ls1046ardb/Kconfig"
d90c7ac7 2332source "board/freescale/ls1046afrwy/Kconfig"
9d044fcb 2333source "board/freescale/ls1012aqds/Kconfig"
3b6e3898 2334source "board/freescale/ls1012ardb/Kconfig"
ff78aa2b 2335source "board/freescale/ls1012afrdm/Kconfig"
58c3e620 2336source "board/freescale/lx2160a/Kconfig"
ab38bf6a 2337source "board/grinn/chiliboard/Kconfig"
345243ed 2338source "board/hisilicon/hikey/Kconfig"
c62c7ef7 2339source "board/hisilicon/hikey960/Kconfig"
d754254f 2340source "board/hisilicon/poplar/Kconfig"
a96c08f5 2341source "board/isee/igep003x/Kconfig"
4ceb5c6d 2342source "board/kontron/sl28/Kconfig"
10e959a1 2343source "board/myir/mys_6ulx/Kconfig"
4982e123 2344source "board/samsung/common/Kconfig"
3a21d45d 2345source "board/siemens/common/Kconfig"
a3a0bc85 2346source "board/seeed/npi_imx6ull/Kconfig"
5cd4a355 2347source "board/socionext/developerbox/Kconfig"
9d1b2987 2348source "board/tcl/sl50/Kconfig"
a1d2fd38 2349source "board/traverse/ten64/Kconfig"
d8d33b6d 2350source "board/variscite/dart_6ul/Kconfig"
6ce89324 2351source "board/vscom/baltos/Kconfig"
e3aafef4 2352source "board/phytium/durian/Kconfig"
b9d0f00a 2353source "board/phytium/pomelo/Kconfig"
e6a8c6f5 2354source "board/phytium/pe2201/Kconfig"
770a8eef 2355source "board/xen/xenguest_arm64/Kconfig"
dd84058d 2356
51b17d49
MY
2357source "arch/arm/Kconfig.debug"
2358
dd84058d 2359endmenu