]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/Kconfig
arm: zynq: Enable SPL_CLK only if SPL is enabled
[people/ms/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
bb6b142f 9 select PHYS_64BIT
067716ba 10 select SYS_CACHE_SHIFT_6
016a954e 11
49e93875
SW
12if ARM64
13config 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
19 from almost any address. This logic relies on the relocation
20 information that is embedded into the binary to support U-Boot
21 relocating itself to the top-of-RAM later during execution.
e6c90448
SW
22
23config SYS_INIT_SP_BSS_OFFSET
24 int
25 help
26 U-Boot typically uses a hard-coded value for the stack pointer
27 before relocation. Define this option to instead calculate the
28 initial SP at run-time. This is useful to avoid hard-coding addresses
29 into U-Boot, so that can be loaded and executed at arbitrary
30 addresses and thus avoid using arbitrary addresses at runtime. This
31 option's value is the offset added to &_bss_start in order to
32 calculate the stack pointer. This offset should be large enough so
33 that the early malloc region, global data (gd), and early stack usage
34 do not overlap any appended DTB.
8163faf9
SW
35
36config LINUX_KERNEL_IMAGE_HEADER
37 bool
38 help
39 Place a Linux kernel image header at the start of the U-Boot binary.
40 The format of the header is described in the Linux kernel source at
41 Documentation/arm64/booting.txt. This feature is useful since the
42 image header reports the amount of memory (BSS and similar) that
43 U-Boot needs to use, but which isn't part of the binary.
44
45if LINUX_KERNEL_IMAGE_HEADER
46config LNX_KRNL_IMG_TEXT_OFFSET_BASE
47 hex
48 help
49 The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the
50 TEXT_OFFSET value written in to the Linux kernel image header.
51endif
49e93875
SW
52endif
53
54config STATIC_RELA
55 bool
56 default y if ARM64 && !POSITION_INDEPENDENT
57
37217f0e
LV
58config DMA_ADDR_T_64BIT
59 bool
60 default y if ARM64
61
2e07c249 62config HAS_VBAR
e009bfa4 63 bool
2e07c249 64
62e92077 65config HAS_THUMB2
e009bfa4 66 bool
62e92077 67
111a6af9
PE
68# Used for compatibility with asm files copied from the kernel
69config ARM_ASM_UNIFIED
70 bool
71 default y
72
73# Used for compatibility with asm files copied from the kernel
74config THUMB2_KERNEL
75 bool
76
8dda2e2f
TR
77# If set, the workarounds for these ARM errata are applied early during U-Boot
78# startup. Note that in general these options force the workarounds to be
79# applied; no CPU-type/version detection exists, unlike the similar options in
80# the Linux kernel. Do not set these options unless they apply! Also note that
81# the following can be machine specific errata. These do have ability to
82# provide rudimentary version and machine specific checks, but expect no
83# product checks:
84# CONFIG_ARM_ERRATA_430973
85# CONFIG_ARM_ERRATA_454179
86# CONFIG_ARM_ERRATA_621766
87# CONFIG_ARM_ERRATA_798870
88# CONFIG_ARM_ERRATA_801819
89config ARM_ERRATA_430973
90 bool
91
92config ARM_ERRATA_454179
93 bool
94
95config ARM_ERRATA_621766
96 bool
97
98config ARM_ERRATA_716044
99 bool
100
19a75b8c
SS
101config ARM_ERRATA_725233
102 bool
103
8dda2e2f
TR
104config ARM_ERRATA_742230
105 bool
106
107config ARM_ERRATA_743622
108 bool
109
110config ARM_ERRATA_751472
111 bool
112
113config ARM_ERRATA_761320
114 bool
115
116config ARM_ERRATA_773022
117 bool
118
119config ARM_ERRATA_774769
120 bool
121
122config ARM_ERRATA_794072
123 bool
124
125config ARM_ERRATA_798870
126 bool
127
128config ARM_ERRATA_801819
129 bool
130
131config ARM_ERRATA_826974
132 bool
133
134config ARM_ERRATA_828024
135 bool
136
137config ARM_ERRATA_829520
138 bool
139
140config ARM_ERRATA_833069
141 bool
142
143config ARM_ERRATA_833471
144 bool
145
11d94319
PF
146config ARM_ERRATA_845369
147 bool
148
8776350d
NM
149config ARM_ERRATA_852421
150 bool
151
152config ARM_ERRATA_852423
153 bool
154
ab0ab54e
AW
155config ARM_ERRATA_855873
156 bool
157
2e07c249 158config CPU_ARM720T
e009bfa4 159 bool
067716ba 160 select SYS_CACHE_SHIFT_5
2e07c249
GS
161
162config CPU_ARM920T
e009bfa4 163 bool
067716ba 164 select SYS_CACHE_SHIFT_5
2e07c249
GS
165
166config CPU_ARM926EJS
e009bfa4 167 bool
067716ba 168 select SYS_CACHE_SHIFT_5
2e07c249
GS
169
170config CPU_ARM946ES
e009bfa4 171 bool
067716ba 172 select SYS_CACHE_SHIFT_5
2e07c249
GS
173
174config CPU_ARM1136
e009bfa4 175 bool
067716ba 176 select SYS_CACHE_SHIFT_5
2e07c249
GS
177
178config CPU_ARM1176
e009bfa4
TR
179 bool
180 select HAS_VBAR
067716ba 181 select SYS_CACHE_SHIFT_5
2e07c249
GS
182
183config CPU_V7
e009bfa4
TR
184 bool
185 select HAS_VBAR
186 select HAS_THUMB2
067716ba 187 select SYS_CACHE_SHIFT_6
2e07c249 188
12d8a729 189config CPU_V7M
190 bool
e009bfa4 191 select HAS_THUMB2
111a6af9 192 select THUMB2_KERNEL
067716ba 193 select SYS_CACHE_SHIFT_5
12d8a729 194
2e07c249 195config CPU_PXA
e009bfa4 196 bool
067716ba 197 select SYS_CACHE_SHIFT_5
2e07c249
GS
198
199config CPU_SA1100
e009bfa4 200 bool
067716ba 201 select SYS_CACHE_SHIFT_5
2e07c249
GS
202
203config SYS_CPU
e009bfa4
TR
204 default "arm720t" if CPU_ARM720T
205 default "arm920t" if CPU_ARM920T
206 default "arm926ejs" if CPU_ARM926EJS
207 default "arm946es" if CPU_ARM946ES
208 default "arm1136" if CPU_ARM1136
209 default "arm1176" if CPU_ARM1176
210 default "armv7" if CPU_V7
211 default "armv7m" if CPU_V7M
212 default "pxa" if CPU_PXA
213 default "sa1100" if CPU_SA1100
01541eec 214 default "armv8" if ARM64
2e07c249 215
66020a67
MV
216config SYS_ARM_ARCH
217 int
218 default 4 if CPU_ARM720T
219 default 4 if CPU_ARM920T
220 default 5 if CPU_ARM926EJS
221 default 5 if CPU_ARM946ES
222 default 6 if CPU_ARM1136
223 default 6 if CPU_ARM1176
224 default 7 if CPU_V7
225 default 7 if CPU_V7M
226 default 5 if CPU_PXA
227 default 4 if CPU_SA1100
228 default 8 if ARM64
229
067716ba
TR
230config SYS_CACHE_SHIFT_5
231 bool
232
233config SYS_CACHE_SHIFT_6
234 bool
235
236config SYS_CACHE_SHIFT_7
237 bool
238
239config SYS_CACHELINE_SIZE
240 int
241 default 128 if SYS_CACHE_SHIFT_7
242 default 64 if SYS_CACHE_SHIFT_6
243 default 32 if SYS_CACHE_SHIFT_5
244
c54bcf68
MY
245config ARM_SMCCC
246 bool "Support for ARM SMC Calling Convention (SMCCC)"
247 depends on CPU_V7 || ARM64
573a3811 248 select ARM_PSCI_FW
c54bcf68
MY
249 help
250 Say Y here if you want to enable ARM SMC Calling Convention.
251 This should be enabled if U-Boot needs to communicate with system
252 firmware (for example, PSCI) according to SMCCC.
253
f91afc4d
LW
254config SEMIHOSTING
255 bool "support boot from semihosting"
256 help
257 In emulated environments, semihosting is a way for
258 the hosted environment to call out to the emulator to
259 retrieve files from the host machine.
260
3a649407
TR
261config SYS_THUMB_BUILD
262 bool "Build U-Boot using the Thumb instruction set"
263 depends on !ARM64
264 help
265 Use this flag to build U-Boot using the Thumb instruction set for
266 ARM architectures. Thumb instruction set provides better code
267 density. For ARM architectures that support Thumb2 this flag will
268 result in Thumb2 code generated by GCC.
269
270config SPL_SYS_THUMB_BUILD
271 bool "Build SPL using the Thumb instruction set"
272 default y if SYS_THUMB_BUILD
273 depends on !ARM64
274 help
275 Use this flag to build SPL using the Thumb instruction set for
276 ARM architectures. Thumb instruction set provides better code
277 density. For ARM architectures that support Thumb2 this flag will
278 result in Thumb2 code generated by GCC.
279
f3e9bec8
PF
280config SYS_L2CACHE_OFF
281 bool "L2cache off"
282 help
283 If SoC does not support L2CACHE or one do not want to enable
284 L2CACHE, choose this option.
285
cdaa633f
AP
286config ENABLE_ARM_SOC_BOOT0_HOOK
287 bool "prepare BOOT0 header"
288 help
289 If the SoC's BOOT0 requires a header area filled with (magic)
290 values, then choose this option, and create a define called
291 ARM_SOC_BOOT0_HOOK which contains the required assembler
292 preprocessor code.
293
85db5831
AP
294config ARM_CORTEX_CPU_IS_UP
295 bool
296 default n
297
be72591b
FE
298config USE_ARCH_MEMCPY
299 bool "Use an assembly optimized implementation of memcpy"
40d5534c
TR
300 default y
301 depends on !ARM64
302 help
303 Enable the generation of an optimized version of memcpy.
304 Such implementation may be faster under some conditions
305 but may increase the binary size.
306
307config SPL_USE_ARCH_MEMCPY
f8136e68 308 bool "Use an assembly optimized implementation of memcpy for SPL"
40d5534c 309 default y if USE_ARCH_MEMCPY
085be482 310 depends on !ARM64
be72591b
FE
311 help
312 Enable the generation of an optimized version of memcpy.
313 Such implementation may be faster under some conditions
314 but may increase the binary size.
315
316config USE_ARCH_MEMSET
317 bool "Use an assembly optimized implementation of memset"
40d5534c
TR
318 default y
319 depends on !ARM64
320 help
321 Enable the generation of an optimized version of memset.
322 Such implementation may be faster under some conditions
323 but may increase the binary size.
324
325config SPL_USE_ARCH_MEMSET
f8136e68 326 bool "Use an assembly optimized implementation of memset for SPL"
40d5534c 327 default y if USE_ARCH_MEMSET
085be482 328 depends on !ARM64
be72591b
FE
329 help
330 Enable the generation of an optimized version of memset.
331 Such implementation may be faster under some conditions
332 but may increase the binary size.
333
ec6617c3
AW
334config ARM64_SUPPORT_AARCH32
335 bool "ARM64 system support AArch32 execution state"
336 default y if ARM64 && !TARGET_THUNDERX_88XX
337 help
338 This ARM64 system supports AArch32 execution state.
339
dd84058d
MY
340choice
341 prompt "Target select"
b928e658 342 default TARGET_HIKEY
dd84058d 343
4614b891
MY
344config ARCH_AT91
345 bool "Atmel AT91"
0680f1b1 346 select SPL_BOARD_INIT if SPL
dd84058d
MY
347
348config TARGET_EDB93XX
349 bool "Support edb93xx"
2e07c249 350 select CPU_ARM920T
dd84058d 351
dd84058d
MY
352config TARGET_ASPENITE
353 bool "Support aspenite"
2e07c249 354 select CPU_ARM926EJS
dd84058d
MY
355
356config TARGET_GPLUGD
357 bool "Support gplugd"
2e07c249 358 select CPU_ARM926EJS
dd84058d 359
3491ba63
MY
360config ARCH_DAVINCI
361 bool "TI DaVinci"
2e07c249 362 select CPU_ARM926EJS
15dc63d6 363 imply CMD_SAVES
3491ba63
MY
364 help
365 Support for TI's DaVinci platform.
dd84058d 366
47539e23
MY
367config KIRKWOOD
368 bool "Marvell Kirkwood"
2e07c249 369 select CPU_ARM926EJS
a5d67547 370 select BOARD_EARLY_INIT_F
4585601a 371 select ARCH_MISC_INIT
dd84058d 372
c3d89140 373config ARCH_MVEBU
21b29fc6 374 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
9cffb233
SR
375 select OF_CONTROL
376 select OF_SEPARATE
377 select DM
e3b9c98a 378 select DM_ETH
1d51ea19 379 select DM_SERIAL
09a54c00
SR
380 select DM_SPI
381 select DM_SPI_FLASH
a4884831 382
dd84058d
MY
383config TARGET_DEVKIT3250
384 bool "Support devkit3250"
2e07c249 385 select CPU_ARM926EJS
e9b3ce3f 386 select SUPPORT_SPL
dd84058d 387
412ae53a
AA
388config TARGET_WORK_92105
389 bool "Support work_92105"
390 select CPU_ARM926EJS
391 select SUPPORT_SPL
392
dd84058d
MY
393config TARGET_APF27
394 bool "Support apf27"
2e07c249 395 select CPU_ARM926EJS
02627356 396 select SUPPORT_SPL
dd84058d 397
dd84058d
MY
398config TARGET_APX4DEVKIT
399 bool "Support apx4devkit"
2e07c249 400 select CPU_ARM926EJS
02627356 401 select SUPPORT_SPL
dd84058d
MY
402
403config TARGET_XFI3
404 bool "Support xfi3"
2e07c249 405 select CPU_ARM926EJS
02627356 406 select SUPPORT_SPL
dd84058d
MY
407
408config TARGET_M28EVK
409 bool "Support m28evk"
2e07c249 410 select CPU_ARM926EJS
02627356 411 select SUPPORT_SPL
dd84058d
MY
412
413config TARGET_MX23EVK
414 bool "Support mx23evk"
2e07c249 415 select CPU_ARM926EJS
02627356 416 select SUPPORT_SPL
a5d67547 417 select BOARD_EARLY_INIT_F
dd84058d
MY
418
419config TARGET_MX28EVK
420 bool "Support mx28evk"
2e07c249 421 select CPU_ARM926EJS
02627356 422 select SUPPORT_SPL
a5d67547 423 select BOARD_EARLY_INIT_F
dd84058d
MY
424
425config TARGET_MX23_OLINUXINO
426 bool "Support mx23_olinuxino"
2e07c249 427 select CPU_ARM926EJS
02627356 428 select SUPPORT_SPL
a5d67547 429 select BOARD_EARLY_INIT_F
dd84058d
MY
430
431config TARGET_BG0900
432 bool "Support bg0900"
2e07c249 433 select CPU_ARM926EJS
02627356 434 select SUPPORT_SPL
dd84058d
MY
435
436config TARGET_SANSA_FUZE_PLUS
437 bool "Support sansa_fuze_plus"
2e07c249 438 select CPU_ARM926EJS
02627356 439 select SUPPORT_SPL
dd84058d
MY
440
441config TARGET_SC_SPS_1
442 bool "Support sc_sps_1"
2e07c249 443 select CPU_ARM926EJS
02627356 444 select SUPPORT_SPL
dd84058d 445
22f2be7a
MY
446config ORION5X
447 bool "Marvell Orion"
2e07c249 448 select CPU_ARM926EJS
dd84058d 449
dd84058d
MY
450config TARGET_SPEAR300
451 bool "Support spear300"
2e07c249 452 select CPU_ARM926EJS
a5d67547 453 select BOARD_EARLY_INIT_F
15dc63d6 454 imply CMD_SAVES
dd84058d
MY
455
456config TARGET_SPEAR310
457 bool "Support spear310"
2e07c249 458 select CPU_ARM926EJS
a5d67547 459 select BOARD_EARLY_INIT_F
15dc63d6 460 imply CMD_SAVES
dd84058d
MY
461
462config TARGET_SPEAR320
463 bool "Support spear320"
2e07c249 464 select CPU_ARM926EJS
a5d67547 465 select BOARD_EARLY_INIT_F
15dc63d6 466 imply CMD_SAVES
dd84058d
MY
467
468config TARGET_SPEAR600
469 bool "Support spear600"
2e07c249 470 select CPU_ARM926EJS
a5d67547 471 select BOARD_EARLY_INIT_F
15dc63d6 472 imply CMD_SAVES
dd84058d 473
9fa32b12
VM
474config TARGET_STV0991
475 bool "Support stv0991"
476 select CPU_V7
cac0ca76
MY
477 select DM
478 select DM_SERIAL
e67abcaa
VM
479 select DM_SPI
480 select DM_SPI_FLASH
481 select SPI_FLASH
9fa32b12 482
dd84058d
MY
483config TARGET_X600
484 bool "Support x600"
e5ec4815 485 select BOARD_LATE_INIT
2e07c249 486 select CPU_ARM926EJS
02627356 487 select SUPPORT_SPL
dd84058d 488
dd84058d 489config TARGET_IMX31_PHYCORE
f428268a
TR
490 bool "Support imx31_phycore_eet"
491 select CPU_ARM1136
a5d67547 492 select BOARD_EARLY_INIT_F
f428268a
TR
493
494config TARGET_IMX31_PHYCORE_EET
495 bool "Support imx31_phycore_eet"
e5ec4815 496 select BOARD_LATE_INIT
2e07c249 497 select CPU_ARM1136
a5d67547 498 select BOARD_EARLY_INIT_F
dd84058d 499
dd84058d
MY
500config TARGET_MX31ADS
501 bool "Support mx31ads"
2e07c249 502 select CPU_ARM1136
a5d67547 503 select BOARD_EARLY_INIT_F
dd84058d
MY
504
505config TARGET_MX31PDK
506 bool "Support mx31pdk"
e5ec4815 507 select BOARD_LATE_INIT
2e07c249 508 select CPU_ARM1136
02627356 509 select SUPPORT_SPL
a5d67547 510 select BOARD_EARLY_INIT_F
dd84058d 511
dd84058d
MY
512config TARGET_WOODBURN
513 bool "Support woodburn"
2e07c249 514 select CPU_ARM1136
dd84058d
MY
515
516config TARGET_WOODBURN_SD
517 bool "Support woodburn_sd"
2e07c249 518 select CPU_ARM1136
02627356 519 select SUPPORT_SPL
dd84058d
MY
520
521config TARGET_FLEA3
522 bool "Support flea3"
2e07c249 523 select CPU_ARM1136
dd84058d
MY
524
525config TARGET_MX35PDK
526 bool "Support mx35pdk"
e5ec4815 527 select BOARD_LATE_INIT
2e07c249 528 select CPU_ARM1136
dd84058d 529
ddf6bd48
MY
530config ARCH_BCM283X
531 bool "Broadcom BCM283X family"
58d423b8
MY
532 select DM
533 select DM_SERIAL
534 select DM_GPIO
76709096 535 select OF_CONTROL
91d27a17 536 imply FAT_WRITE
46414296 537
dd84058d
MY
538config TARGET_VEXPRESS_CA15_TC2
539 bool "Support vexpress_ca15_tc2"
2e07c249 540 select CPU_V7
ea624e19
HG
541 select CPU_V7_HAS_NONSEC
542 select CPU_V7_HAS_VIRT
dd84058d
MY
543
544config TARGET_VEXPRESS_CA5X2
545 bool "Support vexpress_ca5x2"
2e07c249 546 select CPU_V7
dd84058d
MY
547
548config TARGET_VEXPRESS_CA9X4
549 bool "Support vexpress_ca9x4"
2e07c249 550 select CPU_V7
dd84058d 551
43486e4c
SR
552config TARGET_BCM23550_W1D
553 bool "Support bcm23550_w1d"
554 select CPU_V7
221a949e 555 imply CRC32_VERIFY
91d27a17 556 imply FAT_WRITE
43486e4c 557
dd84058d
MY
558config TARGET_BCM28155_AP
559 bool "Support bcm28155_ap"
2e07c249 560 select CPU_V7
221a949e 561 imply CRC32_VERIFY
91d27a17 562 imply FAT_WRITE
dd84058d 563
abb1678c
SR
564config TARGET_BCMCYGNUS
565 bool "Support bcmcygnus"
2e07c249 566 select CPU_V7
221a949e 567 imply CRC32_VERIFY
551c3934 568 imply CMD_HASH
91d27a17 569 imply FAT_WRITE
221a949e 570 imply HASH_VERIFY
c89782dc
SV
571 imply NETDEVICES
572 imply BCM_SF2_ETH
573 imply BCM_SF2_ETH_GMAC
9dec5270 574
abb1678c
SR
575config TARGET_BCMNSP
576 bool "Support bcmnsp"
2e07c249 577 select CPU_V7
9dec5270 578
274bced8
JM
579config TARGET_BCMNS2
580 bool "Support Broadcom Northstar2"
581 select ARM64
582 help
583 Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit
584 ARMv8 Cortex-A57 processors targeting a broad range of networking
585 applications
586
72df68cc
MY
587config ARCH_EXYNOS
588 bool "Samsung EXYNOS"
58d423b8 589 select DM
fc47cf9d 590 select DM_I2C
58d423b8
MY
591 select DM_SPI_FLASH
592 select DM_SERIAL
593 select DM_SPI
594 select DM_GPIO
1fa4bfde 595 select DM_KEYBOARD
91d27a17 596 imply FAT_WRITE
dd84058d 597
311757be
SG
598config ARCH_S5PC1XX
599 bool "Samsung S5PC1XX"
2e07c249 600 select CPU_V7
58d423b8
MY
601 select DM
602 select DM_SERIAL
603 select DM_GPIO
08848e9c 604 select DM_I2C
311757be 605
ef2b694c
MY
606config ARCH_HIGHBANK
607 bool "Calxeda Highbank"
2e07c249 608 select CPU_V7
dd84058d 609
5cbbd9bd
MY
610config ARCH_INTEGRATOR
611 bool "ARM Ltd. Integrator family"
3f394e70
LW
612 select DM
613 select DM_SERIAL
5cbbd9bd 614
c338f09e
MY
615config ARCH_KEYSTONE
616 bool "TI Keystone"
2e07c249 617 select CPU_V7
02627356 618 select SUPPORT_SPL
3a649407 619 select SYS_THUMB_BUILD
534bc70e 620 select CMD_POWEROFF
d56b4b19 621 imply CMD_MTDPARTS
46f9ef18 622 imply FIT
15dc63d6 623 imply CMD_SAVES
dd84058d 624
a93fbf4a
MY
625config ARCH_OMAP2PLUS
626 bool "TI OMAP2+"
627 select CPU_V7
0680f1b1 628 select SPL_BOARD_INIT if SPL
ff6c3125 629 select SPL_STACK_R if SPL
a93fbf4a
MY
630 select SUPPORT_SPL
631 imply FIT
632
bfcef28a
BG
633config ARCH_MESON
634 bool "Amlogic Meson"
635 help
636 Support for the Meson SoC family developed by Amlogic Inc.,
637 targeted at media players and tablet computers. We currently
638 support the S905 (GXBaby) 64-bit SoC.
639
07df697e
FE
640config ARCH_MX25
641 bool "NXP MX25"
642 select CPU_ARM926EJS
643
e90a08da
PF
644config ARCH_MX7ULP
645 bool "NXP MX7ULP"
646 select CPU_V7
647 select ROM_UNIFIED_SECTIONS
648
1a8150d4
AA
649config ARCH_MX7
650 bool "Freescale MX7"
651 select CPU_V7
2c2e2c9e
YS
652 select SYS_FSL_HAS_SEC if SECURE_BOOT
653 select SYS_FSL_SEC_COMPAT_4
90b80386 654 select SYS_FSL_SEC_LE
a5d67547 655 select BOARD_EARLY_INIT_F
4585601a 656 select ARCH_MISC_INIT
1a8150d4 657
89ebc821
BB
658config ARCH_MX6
659 bool "Freescale MX6"
660 select CPU_V7
2c2e2c9e
YS
661 select SYS_FSL_HAS_SEC if SECURE_BOOT
662 select SYS_FSL_SEC_COMPAT_4
90b80386 663 select SYS_FSL_SEC_LE
3a649407 664 select SYS_THUMB_BUILD if SPL
89ebc821 665
b529993e
PT
666if ARCH_MX6
667config SPL_LDSCRIPT
668 default "arch/arm/mach-omap2/u-boot-spl.lds"
669endif
670
424ee3d1
AR
671config ARCH_MX5
672 bool "Freescale MX5"
673 select CPU_V7
a5d67547 674 select BOARD_EARLY_INIT_F
424ee3d1 675
32f11829
TT
676config ARCH_QEMU
677 bool "QEMU Virtual Platform"
678 select CPU_V7
679 select ARCH_SUPPORT_PSCI
680 select DM
681 select DM_SERIAL
682 select OF_CONTROL
683
1cc95f6e 684config ARCH_RMOBILE
f40b9898 685 bool "Renesas ARM SoCs"
1cc95f6e
NI
686 select DM
687 select DM_SERIAL
a5d67547 688 select BOARD_EARLY_INIT_F
91d27a17 689 imply FAT_WRITE
3a649407 690 imply SYS_THUMB_BUILD
dd84058d 691
9702ec00
EP
692config TARGET_S32V234EVB
693 bool "Support s32v234evb"
694 select ARM64
c01e4a1a 695 select SYS_FSL_ERRATUM_ESDHC111
9702ec00 696
08592136
MK
697config ARCH_SNAPDRAGON
698 bool "Qualcomm Snapdragon SoCs"
699 select ARM64
700 select DM
701 select DM_GPIO
702 select DM_SERIAL
703 select SPMI
704 select OF_CONTROL
705 select OF_SEPARATE
706
7865f4b0
MY
707config ARCH_SOCFPGA
708 bool "Altera SOCFPGA family"
2e07c249 709 select CPU_V7
02627356 710 select SUPPORT_SPL
dfd3dff5
MV
711 select OF_CONTROL
712 select SPL_OF_CONTROL
1d9aa3e5
MY
713 select DM
714 select DM_SPI_FLASH
715 select DM_SPI
beee6a30 716 select ENABLE_ARM_SOC_BOOT0_HOOK
a421192f 717 select ARCH_EARLY_INIT_R
4585601a 718 select ARCH_MISC_INIT
949123e3 719 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
3a649407 720 select SYS_THUMB_BUILD
d56b4b19 721 imply CMD_MTDPARTS
221a949e 722 imply CRC32_VERIFY
91d27a17 723 imply FAT_WRITE
dd84058d 724
2c7e3b90
IC
725config ARCH_SUNXI
726 bool "Support sunxi (Allwinner) SoCs"
d6a0c78a 727 select BINMAN
88bb800d 728 select CMD_GPIO
0878a8a7 729 select CMD_MMC if MMC
2997ee50 730 select CMD_USB if DISTRO_DEFAULTS
b6006baf 731 select DM
45368827 732 select DM_ETH
211d57a4
HG
733 select DM_GPIO
734 select DM_KEYBOARD
45368827 735 select DM_SERIAL
2997ee50 736 select DM_USB if DISTRO_DEFAULTS
d75111a7 737 select OF_BOARD_SETUP
b6006baf
HG
738 select OF_CONTROL
739 select OF_SEPARATE
ab43de80
TR
740 select SPL_STACK_R if SPL
741 select SPL_SYS_MALLOC_SIMPLE if SPL
6edf6a21 742 select SYS_NS16550
3a649407 743 select SPL_SYS_THUMB_BUILD if !ARM64
ce2e44d8 744 select SYS_THUMB_BUILD if !ARM64
2997ee50
YM
745 select USB if DISTRO_DEFAULTS
746 select USB_STORAGE if DISTRO_DEFAULTS
747 select USB_KEYBOARD if DISTRO_DEFAULTS
8c7d2296 748 select USE_TINY_PRINTF
a12fb0e3 749 imply CMD_GPT
91d27a17 750 imply FAT_WRITE
af83a604
MY
751 imply PRE_CONSOLE_BUFFER
752 imply SPL_GPIO_SUPPORT
753 imply SPL_LIBCOMMON_SUPPORT
754 imply SPL_LIBDISK_SUPPORT
755 imply SPL_LIBGENERIC_SUPPORT
4aa2ba3a 756 imply SPL_MMC_SUPPORT if MMC
af83a604
MY
757 imply SPL_POWER_SUPPORT
758 imply SPL_SERIAL_SUPPORT
654b02b1 759 imply USB_GADGET
8ebe4f42 760
d9e268ed
SB
761config TARGET_TS4600
762 bool "Support TS4600"
763 select CPU_ARM926EJS
764 select SUPPORT_SPL
765
7966b437
SA
766config ARCH_VF610
767 bool "Freescale Vybrid"
e7b860fa 768 select CPU_V7
c01e4a1a 769 select SYS_FSL_ERRATUM_ESDHC111
d56b4b19 770 imply CMD_MTDPARTS
5bbc265b 771 imply NAND
e7b860fa 772
5ca269a4 773config ARCH_ZYNQ
b8d4497f 774 bool "Xilinx Zynq based platform"
e5ec4815 775 select BOARD_LATE_INIT
2e07c249 776 select CPU_V7
02627356 777 select SUPPORT_SPL
d065cfd9 778 select OF_CONTROL
0680f1b1 779 select SPL_BOARD_INIT if SPL
eb04ab34 780 select SPL_OF_CONTROL if SPL
8981f05c 781 select DM
6889ca71 782 select DM_ETH
2978ae23 783 select DM_GPIO
eb04ab34 784 select SPL_DM if SPL
d9ae52c8 785 select DM_MMC
9f7a4502 786 select DM_SPI
42800ffa 787 select DM_SERIAL
9f7a4502 788 select DM_SPI_FLASH
eb04ab34 789 select SPL_SEPARATE_BSS if SPL
dec49e86 790 select DM_USB if USB
329a449f 791 select BLK
781745bd 792 select CLK
578d95e9 793 select SPL_CLK if SPL
781745bd 794 select CLK_ZYNQ
d315628e 795 imply CMD_CLK
91d27a17 796 imply FAT_WRITE
72c3033f 797 imply CMD_SPL
dd84058d 798
0b54a9dd 799config ARCH_ZYNQMP
b8d4497f 800 bool "Xilinx ZynqMP based platform"
84c7204b 801 select ARM64
e5ec4815 802 select BOARD_LATE_INIT
c2490bf5
MS
803 select DM
804 select OF_CONTROL
805 select DM_SERIAL
e6a9ed04 806 select SUPPORT_SPL
1f29738a 807 select CLK
0680f1b1 808 select SPL_BOARD_INIT if SPL
2f03968e 809 select SPL_CLK if SPL
dec49e86 810 select DM_USB if USB
91d27a17 811 imply FAT_WRITE
84c7204b 812
ddd960e6
MY
813config TEGRA
814 bool "NVIDIA Tegra"
91d27a17 815 imply FAT_WRITE
dd84058d 816
f91afc4d 817config TARGET_VEXPRESS64_AEMV8A
dd84058d 818 bool "Support vexpress_aemv8a"
016a954e 819 select ARM64
dd84058d 820
f91afc4d
LW
821config TARGET_VEXPRESS64_BASE_FVP
822 bool "Support Versatile Express ARMv8a FVP BASE model"
823 select ARM64
824 select SEMIHOSTING
825
fc04b923
RH
826config TARGET_VEXPRESS64_BASE_FVP_DRAM
827 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
828 select ARM64
829 help
830 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
831 the default config to allow the user to load the images directly into
832 DRAM using model parameters rather than by using semi-hosting to load
833 the files from the host filesystem.
834
ffc10373
LW
835config TARGET_VEXPRESS64_JUNO
836 bool "Support Versatile Express Juno Development Platform"
837 select ARM64
838
44937214
PK
839config TARGET_LS2080A_EMU
840 bool "Support ls2080a_emu"
fb2bf8c2 841 select ARCH_LS2080A
016a954e 842 select ARM64
23b5877c 843 select ARMV8_MULTIENTRY
4585601a 844 select ARCH_MISC_INIT
44937214
PK
845 help
846 Support for Freescale LS2080A_EMU platform
847 The LS2080A Development System (EMULATOR) is a pre silicon
848 development platform that supports the QorIQ LS2080A
849 Layerscape Architecture processor.
dd84058d 850
44937214
PK
851config TARGET_LS2080A_SIMU
852 bool "Support ls2080a_simu"
fb2bf8c2 853 select ARCH_LS2080A
016a954e 854 select ARM64
23b5877c 855 select ARMV8_MULTIENTRY
4585601a 856 select ARCH_MISC_INIT
44937214
PK
857 help
858 Support for Freescale LS2080A_SIMU platform
859 The LS2080A Development System (QDS) is a pre silicon
860 development platform that supports the QorIQ LS2080A
861 Layerscape Architecture processor.
dd84058d 862
7769776a
AK
863config TARGET_LS1088AQDS
864 bool "Support ls1088aqds"
865 select ARCH_LS1088A
866 select ARM64
867 select ARMV8_MULTIENTRY
868 select ARCH_MISC_INIT
869 select BOARD_LATE_INIT
91fded62 870 select SUPPORT_SPL
7769776a
AK
871 help
872 Support for NXP LS1088AQDS platform
873 The LS1088A Development System (QDS) is a high-performance
874 development platform that supports the QorIQ LS1088A
875 Layerscape Architecture processor.
876
44937214
PK
877config TARGET_LS2080AQDS
878 bool "Support ls2080aqds"
fb2bf8c2 879 select ARCH_LS2080A
7288c2c2
YS
880 select ARM64
881 select ARMV8_MULTIENTRY
e5ec4815 882 select BOARD_LATE_INIT
b2d5ac59 883 select SUPPORT_SPL
4585601a 884 select ARCH_MISC_INIT
fedb428c 885 imply SCSI
9fd95ef0 886 imply SCSI_AHCI
7288c2c2 887 help
44937214
PK
888 Support for Freescale LS2080AQDS platform
889 The LS2080A Development System (QDS) is a high-performance
890 development platform that supports the QorIQ LS2080A
7288c2c2
YS
891 Layerscape Architecture processor.
892
44937214
PK
893config TARGET_LS2080ARDB
894 bool "Support ls2080ardb"
fb2bf8c2 895 select ARCH_LS2080A
e2b65ea9
YS
896 select ARM64
897 select ARMV8_MULTIENTRY
e5ec4815 898 select BOARD_LATE_INIT
32eda7cc 899 select SUPPORT_SPL
4585601a 900 select ARCH_MISC_INIT
fedb428c 901 imply SCSI
9fd95ef0 902 imply SCSI_AHCI
e2b65ea9 903 help
44937214
PK
904 Support for Freescale LS2080ARDB platform.
905 The LS2080A Reference design board (RDB) is a high-performance
906 development platform that supports the QorIQ LS2080A
e2b65ea9
YS
907 Layerscape Architecture processor.
908
3049a583
PJ
909config TARGET_LS2081ARDB
910 bool "Support ls2081ardb"
911 select ARCH_LS2080A
912 select ARM64
913 select ARMV8_MULTIENTRY
914 select BOARD_LATE_INIT
915 select SUPPORT_SPL
916 select ARCH_MISC_INIT
917 help
918 Support for Freescale LS2081ARDB platform.
919 The LS2081A Reference design board (RDB) is a high-performance
920 development platform that supports the QorIQ LS2081A/LS2041A
921 Layerscape Architecture processor.
922
11ac2363
PG
923config TARGET_HIKEY
924 bool "Support HiKey 96boards Consumer Edition Platform"
925 select ARM64
efd7b60a
PG
926 select DM
927 select DM_GPIO
9c71bcdc 928 select DM_SERIAL
cd593ed6 929 select OF_CONTROL
11ac2363
PG
930 help
931 Support for HiKey 96boards platform. It features a HI6220
932 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
933
d754254f
JRO
934config TARGET_POPLAR
935 bool "Support Poplar 96boards Enterprise Edition Platform"
936 select ARM64
937 select DM
938 select OF_CONTROL
939 select DM_SERIAL
940 select DM_USB
941 help
942 Support for Poplar 96boards EE platform. It features a HI3798cv200
943 SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
944 making it capable of running any commercial set-top solution based on
945 Linux or Android.
946
9d044fcb
PK
947config TARGET_LS1012AQDS
948 bool "Support ls1012aqds"
9533acf3 949 select ARCH_LS1012A
9d044fcb 950 select ARM64
e5ec4815 951 select BOARD_LATE_INIT
9d044fcb
PK
952 help
953 Support for Freescale LS1012AQDS platform.
954 The LS1012A Development System (QDS) is a high-performance
955 development platform that supports the QorIQ LS1012A
956 Layerscape Architecture processor.
957
3b6e3898
PK
958config TARGET_LS1012ARDB
959 bool "Support ls1012ardb"
9533acf3 960 select ARCH_LS1012A
3b6e3898 961 select ARM64
e5ec4815 962 select BOARD_LATE_INIT
fedb428c 963 imply SCSI
9fd95ef0 964 imply SCSI_AHCI
3b6e3898
PK
965 help
966 Support for Freescale LS1012ARDB platform.
967 The LS1012A Reference design board (RDB) is a high-performance
968 development platform that supports the QorIQ LS1012A
969 Layerscape Architecture processor.
970
ff78aa2b
PK
971config TARGET_LS1012AFRDM
972 bool "Support ls1012afrdm"
9533acf3 973 select ARCH_LS1012A
ff78aa2b
PK
974 select ARM64
975 help
976 Support for Freescale LS1012AFRDM platform.
977 The LS1012A Freedom board (FRDM) is a high-performance
978 development platform that supports the QorIQ LS1012A
979 Layerscape Architecture processor.
980
e84a324b
AK
981config TARGET_LS1088ARDB
982 bool "Support ls1088ardb"
983 select ARCH_LS1088A
984 select ARM64
985 select ARMV8_MULTIENTRY
986 select ARCH_MISC_INIT
987 select BOARD_LATE_INIT
099f4093 988 select SUPPORT_SPL
e84a324b
AK
989 help
990 Support for NXP LS1088ARDB platform.
991 The LS1088A Reference design board (RDB) is a high-performance
992 development platform that supports the QorIQ LS1088A
993 Layerscape Architecture processor.
994
550e3dc0 995config TARGET_LS1021AQDS
0de15707 996 bool "Support ls1021aqds"
e5ec4815 997 select BOARD_LATE_INIT
2e07c249 998 select CPU_V7
adee1d4c
HZ
999 select CPU_V7_HAS_NONSEC
1000 select CPU_V7_HAS_VIRT
50f0c663 1001 select SUPPORT_SPL
0a37cf8f 1002 select ARCH_LS1021A
217f92bb 1003 select ARCH_SUPPORT_PSCI
5e8bd7e1 1004 select LS1_DEEP_SLEEP
d26e34c4 1005 select SYS_FSL_DDR
a5d67547 1006 select BOARD_EARLY_INIT_F
fedb428c 1007 imply SCSI
217f92bb 1008
c8a7d9da 1009config TARGET_LS1021ATWR
0de15707 1010 bool "Support ls1021atwr"
e5ec4815 1011 select BOARD_LATE_INIT
2e07c249 1012 select CPU_V7
adee1d4c
HZ
1013 select CPU_V7_HAS_NONSEC
1014 select CPU_V7_HAS_VIRT
50f0c663 1015 select SUPPORT_SPL
0a37cf8f 1016 select ARCH_LS1021A
217f92bb 1017 select ARCH_SUPPORT_PSCI
5e8bd7e1 1018 select LS1_DEEP_SLEEP
a5d67547 1019 select BOARD_EARLY_INIT_F
fedb428c 1020 imply SCSI
c8a7d9da 1021
20c700f8
FL
1022config TARGET_LS1021AIOT
1023 bool "Support ls1021aiot"
e5ec4815 1024 select BOARD_LATE_INIT
20c700f8
FL
1025 select CPU_V7
1026 select CPU_V7_HAS_NONSEC
1027 select CPU_V7_HAS_VIRT
1028 select SUPPORT_SPL
1029 select ARCH_LS1021A
1030 select ARCH_SUPPORT_PSCI
fedb428c 1031 imply SCSI
20c700f8
FL
1032 help
1033 Support for Freescale LS1021AIOT platform.
1034 The LS1021A Freescale board (IOT) is a high-performance
1035 development platform that supports the QorIQ LS1021A
1036 Layerscape Architecture processor.
1037
02b5d2ed
SX
1038config TARGET_LS1043AQDS
1039 bool "Support ls1043aqds"
0a37cf8f 1040 select ARCH_LS1043A
02b5d2ed
SX
1041 select ARM64
1042 select ARMV8_MULTIENTRY
e5ec4815 1043 select BOARD_LATE_INIT
02b5d2ed 1044 select SUPPORT_SPL
a5d67547 1045 select BOARD_EARLY_INIT_F
fedb428c 1046 imply SCSI
02b5d2ed
SX
1047 help
1048 Support for Freescale LS1043AQDS platform.
1049
f3a8e2b7
MH
1050config TARGET_LS1043ARDB
1051 bool "Support ls1043ardb"
0a37cf8f 1052 select ARCH_LS1043A
f3a8e2b7 1053 select ARM64
831c068f 1054 select ARMV8_MULTIENTRY
e5ec4815 1055 select BOARD_LATE_INIT
3ad44729 1056 select SUPPORT_SPL
a5d67547 1057 select BOARD_EARLY_INIT_F
fedb428c 1058 imply SCSI
f3a8e2b7
MH
1059 help
1060 Support for Freescale LS1043ARDB platform.
1061
126fe70d
SX
1062config TARGET_LS1046AQDS
1063 bool "Support ls1046aqds"
da28e58a 1064 select ARCH_LS1046A
126fe70d
SX
1065 select ARM64
1066 select ARMV8_MULTIENTRY
e5ec4815 1067 select BOARD_LATE_INIT
126fe70d
SX
1068 select SUPPORT_SPL
1069 select DM_SPI_FLASH if DM_SPI
a5d67547 1070 select BOARD_EARLY_INIT_F
fedb428c 1071 imply SCSI
126fe70d
SX
1072 help
1073 Support for Freescale LS1046AQDS platform.
1074 The LS1046A Development System (QDS) is a high-performance
1075 development platform that supports the QorIQ LS1046A
1076 Layerscape Architecture processor.
1077
dd02936f
MH
1078config TARGET_LS1046ARDB
1079 bool "Support ls1046ardb"
da28e58a 1080 select ARCH_LS1046A
dd02936f
MH
1081 select ARM64
1082 select ARMV8_MULTIENTRY
e5ec4815 1083 select BOARD_LATE_INIT
dd02936f
MH
1084 select SUPPORT_SPL
1085 select DM_SPI_FLASH if DM_SPI
dccef2ec 1086 select POWER_MC34VR500
a5d67547 1087 select BOARD_EARLY_INIT_F
fedb428c 1088 imply SCSI
dd02936f
MH
1089 help
1090 Support for Freescale LS1046ARDB platform.
1091 The LS1046A Reference Design Board (RDB) is a high-performance
1092 development platform that supports the QorIQ LS1046A
1093 Layerscape Architecture processor.
1094
dd84058d
MY
1095config TARGET_H2200
1096 bool "Support h2200"
2e07c249 1097 select CPU_PXA
dd84058d 1098
f19eb154
VK
1099config TARGET_ZIPITZ2
1100 bool "Support zipitz2"
1101 select CPU_PXA
1102
dd84058d
MY
1103config TARGET_COLIBRI_PXA270
1104 bool "Support colibri_pxa270"
2e07c249 1105 select CPU_PXA
dd84058d 1106
66cba041 1107config ARCH_UNIPHIER
b6ef3a3f 1108 bool "Socionext UniPhier SoCs"
e5ec4815 1109 select BOARD_LATE_INIT
4e819950 1110 select DM
b800cbde 1111 select DM_GPIO
4e819950 1112 select DM_I2C
4aceb3f8 1113 select DM_MMC
4fb96c48 1114 select DM_RESET
b5550e49 1115 select DM_SERIAL
47a79f65 1116 select DM_USB
b5550e49
MY
1117 select OF_CONTROL
1118 select OF_LIBFDT
27350c92 1119 select PINCTRL
0680f1b1 1120 select SPL_BOARD_INIT if SPL
561ca649
MY
1121 select SPL_DM if SPL
1122 select SPL_LIBCOMMON_SUPPORT if SPL
1123 select SPL_LIBGENERIC_SUPPORT if SPL
1124 select SPL_OF_CONTROL if SPL
1125 select SPL_PINCTRL if SPL
b5550e49 1126 select SUPPORT_SPL
91d27a17 1127 imply FAT_WRITE
b6ef3a3f
MY
1128 help
1129 Support for UniPhier SoC family developed by Socionext Inc.
1130 (formerly, System LSI Business Division of Panasonic Corporation)
66cba041 1131
0a61ee88
VM
1132config STM32
1133 bool "Support STM32"
ed09a554 1134 select CPU_V7M
66562414
KL
1135 select DM
1136 select DM_SERIAL
3a649407 1137 select SYS_THUMB_BUILD
ed09a554 1138
94e9a4ef
PC
1139config ARCH_STI
1140 bool "Support STMicrolectronics SoCs"
1141 select CPU_V7
214a17e6
PC
1142 select DM
1143 select DM_SERIAL
eee20f81
PC
1144 select BLK
1145 select DM_MMC
584861ff 1146 select DM_RESET
94e9a4ef
PC
1147 help
1148 Support for STMicroelectronics STiH407/10 SoC family.
1149 This SoC is used on Linaro 96Board STiH410-B2260
1150
2444dae5
SG
1151config ARCH_ROCKCHIP
1152 bool "Support Rockchip SoCs"
2444dae5 1153 select OF_CONTROL
aa15038c 1154 select BLK
2444dae5 1155 select DM
a381bcf5 1156 select SPL_DM if SPL
aa15038c 1157 select SYS_MALLOC_F
3a649407 1158 select SYS_THUMB_BUILD if !ARM64
a381bcf5 1159 select SPL_SYS_MALLOC_SIMPLE if SPL
aa15038c
SG
1160 select DM_GPIO
1161 select DM_I2C
1162 select DM_MMC
1163 select DM_SERIAL
1164 select DM_SPI
1165 select DM_SPI_FLASH
892742df 1166 select DM_USB if USB
8d29e3a4
KY
1167 select DM_PWM
1168 select DM_REGULATOR
14ad6eb2 1169 select ENABLE_ARM_SOC_BOOT0_HOOK
48f6232e
TR
1170 imply CMD_FASTBOOT
1171 imply FASTBOOT
91d27a17 1172 imply FAT_WRITE
48f6232e 1173 imply USB_FUNCTION_FASTBOOT
0532ceef 1174 imply SPL_SYSRESET
e19fa89c 1175 imply TPL_SYSRESET
8e8bcccc
PT
1176 imply ADC
1177 imply SARADC_ROCKCHIP
2444dae5 1178
746f985a
ST
1179config TARGET_THUNDERX_88XX
1180 bool "Support ThunderX 88xx"
b4ba1693 1181 select ARM64
746f985a 1182 select OF_CONTROL
067716ba 1183 select SYS_CACHE_SHIFT_7
746f985a 1184
4697abea 1185config ARCH_ASPEED
1186 bool "Support Aspeed SoCs"
1187 select OF_CONTROL
1188 select DM
1189
dd84058d
MY
1190endchoice
1191
4697abea 1192source "arch/arm/mach-aspeed/Kconfig"
1193
4614b891
MY
1194source "arch/arm/mach-at91/Kconfig"
1195
ddf6bd48 1196source "arch/arm/mach-bcm283x/Kconfig"
3491ba63 1197
ddf6bd48 1198source "arch/arm/mach-davinci/Kconfig"
34e609ca 1199
77b55e8c 1200source "arch/arm/mach-exynos/Kconfig"
72df68cc 1201
72a8ff4b 1202source "arch/arm/mach-highbank/Kconfig"
ef2b694c 1203
5cbbd9bd
MY
1204source "arch/arm/mach-integrator/Kconfig"
1205
39a72345 1206source "arch/arm/mach-keystone/Kconfig"
c338f09e 1207
56f86e39 1208source "arch/arm/mach-kirkwood/Kconfig"
47539e23 1209
c3d89140
SR
1210source "arch/arm/mach-mvebu/Kconfig"
1211
0a37cf8f
YS
1212source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1213
07df697e
FE
1214source "arch/arm/mach-imx/mx2/Kconfig"
1215
552a848e 1216source "arch/arm/mach-imx/mx7ulp/Kconfig"
e90a08da 1217
552a848e 1218source "arch/arm/mach-imx/mx7/Kconfig"
1a8150d4 1219
552a848e 1220source "arch/arm/mach-imx/mx6/Kconfig"
89ebc821 1221
552a848e 1222source "arch/arm/mach-imx/mx5/Kconfig"
424ee3d1 1223
983e3700 1224source "arch/arm/mach-omap2/Kconfig"
6384726d 1225
da28e58a
YS
1226source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1227
3e93b4e6 1228source "arch/arm/mach-orion5x/Kconfig"
22f2be7a 1229
badbb63c 1230source "arch/arm/mach-rmobile/Kconfig"
f40b9898 1231
bfcef28a
BG
1232source "arch/arm/mach-meson/Kconfig"
1233
32f11829
TT
1234source "arch/arm/mach-qemu/Kconfig"
1235
2444dae5
SG
1236source "arch/arm/mach-rockchip/Kconfig"
1237
225f5eec 1238source "arch/arm/mach-s5pc1xx/Kconfig"
311757be 1239
08592136
MK
1240source "arch/arm/mach-snapdragon/Kconfig"
1241
7865f4b0
MY
1242source "arch/arm/mach-socfpga/Kconfig"
1243
94e9a4ef
PC
1244source "arch/arm/mach-sti/Kconfig"
1245
0a61ee88
VM
1246source "arch/arm/mach-stm32/Kconfig"
1247
3abfd887
MY
1248source "arch/arm/mach-sunxi/Kconfig"
1249
09f455dc 1250source "arch/arm/mach-tegra/Kconfig"
ddd960e6 1251
4c425570 1252source "arch/arm/mach-uniphier/Kconfig"
66cba041 1253
7966b437
SA
1254source "arch/arm/cpu/armv7/vf610/Kconfig"
1255
0107f240 1256source "arch/arm/mach-zynq/Kconfig"
ddd960e6 1257
ea624e19
HG
1258source "arch/arm/cpu/armv7/Kconfig"
1259
75580007
SDPP
1260source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1261
23b5877c
LW
1262source "arch/arm/cpu/armv8/Kconfig"
1263
552a848e 1264source "arch/arm/mach-imx/Kconfig"
a05a6045 1265
fcea480d 1266source "board/aries/m28evk/Kconfig"
d8ccbe93 1267source "board/bosch/shc/Kconfig"
dd84058d 1268source "board/CarMediaLab/flea3/Kconfig"
dd84058d 1269source "board/Marvell/aspenite/Kconfig"
dd84058d 1270source "board/Marvell/gplugd/Kconfig"
dd84058d 1271source "board/armadeus/apf27/Kconfig"
dd84058d
MY
1272source "board/armltd/vexpress/Kconfig"
1273source "board/armltd/vexpress64/Kconfig"
dd84058d 1274source "board/bluegiga/apx4devkit/Kconfig"
43486e4c 1275source "board/broadcom/bcm23550_w1d/Kconfig"
dd84058d 1276source "board/broadcom/bcm28155_ap/Kconfig"
abb1678c
SR
1277source "board/broadcom/bcmcygnus/Kconfig"
1278source "board/broadcom/bcmnsp/Kconfig"
274bced8 1279source "board/broadcom/bcmns2/Kconfig"
746f985a 1280source "board/cavium/thunderx/Kconfig"
dd84058d 1281source "board/cirrus/edb93xx/Kconfig"
dd84058d 1282source "board/creative/xfi3/Kconfig"
44937214
PK
1283source "board/freescale/ls2080a/Kconfig"
1284source "board/freescale/ls2080aqds/Kconfig"
1285source "board/freescale/ls2080ardb/Kconfig"
e84a324b 1286source "board/freescale/ls1088a/Kconfig"
550e3dc0 1287source "board/freescale/ls1021aqds/Kconfig"
02b5d2ed 1288source "board/freescale/ls1043aqds/Kconfig"
c8a7d9da 1289source "board/freescale/ls1021atwr/Kconfig"
20c700f8 1290source "board/freescale/ls1021aiot/Kconfig"
126fe70d 1291source "board/freescale/ls1046aqds/Kconfig"
f3a8e2b7 1292source "board/freescale/ls1043ardb/Kconfig"
dd02936f 1293source "board/freescale/ls1046ardb/Kconfig"
9d044fcb 1294source "board/freescale/ls1012aqds/Kconfig"
3b6e3898 1295source "board/freescale/ls1012ardb/Kconfig"
ff78aa2b 1296source "board/freescale/ls1012afrdm/Kconfig"
dd84058d 1297source "board/freescale/mx23evk/Kconfig"
dd84058d
MY
1298source "board/freescale/mx28evk/Kconfig"
1299source "board/freescale/mx31ads/Kconfig"
1300source "board/freescale/mx31pdk/Kconfig"
1301source "board/freescale/mx35pdk/Kconfig"
9702ec00 1302source "board/freescale/s32v234evb/Kconfig"
60083261 1303source "board/gdsys/a38x/Kconfig"
ab38bf6a 1304source "board/grinn/chiliboard/Kconfig"
dd84058d
MY
1305source "board/gumstix/pepper/Kconfig"
1306source "board/h2200/Kconfig"
345243ed 1307source "board/hisilicon/hikey/Kconfig"
d754254f 1308source "board/hisilicon/poplar/Kconfig"
dd84058d 1309source "board/imx31_phycore/Kconfig"
a96c08f5 1310source "board/isee/igep003x/Kconfig"
dd84058d 1311source "board/olimex/mx23_olinuxino/Kconfig"
dd84058d
MY
1312source "board/phytec/pcm051/Kconfig"
1313source "board/ppcag/bg0900/Kconfig"
dd84058d 1314source "board/sandisk/sansa_fuze_plus/Kconfig"
dd84058d 1315source "board/schulercontrol/sc_sps_1/Kconfig"
dd84058d 1316source "board/silica/pengwyn/Kconfig"
dd84058d
MY
1317source "board/spear/spear300/Kconfig"
1318source "board/spear/spear310/Kconfig"
1319source "board/spear/spear320/Kconfig"
1320source "board/spear/spear600/Kconfig"
1321source "board/spear/x600/Kconfig"
9fa32b12 1322source "board/st/stv0991/Kconfig"
9d1b2987 1323source "board/tcl/sl50/Kconfig"
a2bc4321 1324source "board/birdland/bav335x/Kconfig"
dd84058d 1325source "board/timll/devkit3250/Kconfig"
dd84058d 1326source "board/toradex/colibri_pxa270/Kconfig"
d9e268ed 1327source "board/technologic/ts4600/Kconfig"
6ce89324 1328source "board/vscom/baltos/Kconfig"
dd84058d 1329source "board/woodburn/Kconfig"
412ae53a 1330source "board/work-microwave/work_92105/Kconfig"
f19eb154 1331source "board/zipitz2/Kconfig"
dd84058d 1332
51b17d49
MY
1333source "arch/arm/Kconfig.debug"
1334
dd84058d 1335endmenu
b529993e
PT
1336
1337config SPL_LDSCRIPT
1338 default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if TARGET_APX4DEVKIT || TARGET_BG0900 || TARGET_M28EVK || TARGET_MX23_OLINUXINO || TARGET_MX23EVK || TARGET_MX28EVK || TARGET_SANSA_FUZE_PLUS || TARGET_SC_SPS_1 || TARGET_TS4600 || TARGET_XFI3
1339 default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
1340 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1341
1342