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