]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/Kconfig
Kconfig: sandbox: Drop CONFIG_CMD_SANDBOX option
[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
3491ba63
MY
311 help
312 Support for TI's DaVinci platform.
dd84058d 313
47539e23
MY
314config KIRKWOOD
315 bool "Marvell Kirkwood"
2e07c249 316 select CPU_ARM926EJS
a5d67547 317 select BOARD_EARLY_INIT_F
4585601a 318 select ARCH_MISC_INIT
dd84058d 319
c3d89140 320config ARCH_MVEBU
21b29fc6 321 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
9cffb233
SR
322 select OF_CONTROL
323 select OF_SEPARATE
324 select DM
e3b9c98a 325 select DM_ETH
1d51ea19 326 select DM_SERIAL
09a54c00
SR
327 select DM_SPI
328 select DM_SPI_FLASH
a4884831 329
dd84058d
MY
330config TARGET_DEVKIT3250
331 bool "Support devkit3250"
2e07c249 332 select CPU_ARM926EJS
e9b3ce3f 333 select SUPPORT_SPL
dd84058d 334
412ae53a
AA
335config TARGET_WORK_92105
336 bool "Support work_92105"
337 select CPU_ARM926EJS
338 select SUPPORT_SPL
339
dd84058d
MY
340config TARGET_MX25PDK
341 bool "Support mx25pdk"
e5ec4815 342 select BOARD_LATE_INIT
2e07c249 343 select CPU_ARM926EJS
a5d67547 344 select BOARD_EARLY_INIT_F
dd84058d 345
dd84058d
MY
346config TARGET_ZMX25
347 bool "Support zmx25"
e5ec4815 348 select BOARD_LATE_INIT
2e07c249 349 select CPU_ARM926EJS
dd84058d
MY
350
351config TARGET_APF27
352 bool "Support apf27"
2e07c249 353 select CPU_ARM926EJS
02627356 354 select SUPPORT_SPL
dd84058d 355
dd84058d
MY
356config TARGET_APX4DEVKIT
357 bool "Support apx4devkit"
2e07c249 358 select CPU_ARM926EJS
02627356 359 select SUPPORT_SPL
dd84058d
MY
360
361config TARGET_XFI3
362 bool "Support xfi3"
2e07c249 363 select CPU_ARM926EJS
02627356 364 select SUPPORT_SPL
dd84058d
MY
365
366config TARGET_M28EVK
367 bool "Support m28evk"
2e07c249 368 select CPU_ARM926EJS
02627356 369 select SUPPORT_SPL
dd84058d
MY
370
371config TARGET_MX23EVK
372 bool "Support mx23evk"
2e07c249 373 select CPU_ARM926EJS
02627356 374 select SUPPORT_SPL
a5d67547 375 select BOARD_EARLY_INIT_F
dd84058d
MY
376
377config TARGET_MX28EVK
378 bool "Support mx28evk"
2e07c249 379 select CPU_ARM926EJS
02627356 380 select SUPPORT_SPL
a5d67547 381 select BOARD_EARLY_INIT_F
dd84058d
MY
382
383config TARGET_MX23_OLINUXINO
384 bool "Support mx23_olinuxino"
2e07c249 385 select CPU_ARM926EJS
02627356 386 select SUPPORT_SPL
a5d67547 387 select BOARD_EARLY_INIT_F
dd84058d
MY
388
389config TARGET_BG0900
390 bool "Support bg0900"
2e07c249 391 select CPU_ARM926EJS
02627356 392 select SUPPORT_SPL
dd84058d
MY
393
394config TARGET_SANSA_FUZE_PLUS
395 bool "Support sansa_fuze_plus"
2e07c249 396 select CPU_ARM926EJS
02627356 397 select SUPPORT_SPL
dd84058d
MY
398
399config TARGET_SC_SPS_1
400 bool "Support sc_sps_1"
2e07c249 401 select CPU_ARM926EJS
02627356 402 select SUPPORT_SPL
dd84058d 403
22f2be7a
MY
404config ORION5X
405 bool "Marvell Orion"
2e07c249 406 select CPU_ARM926EJS
dd84058d 407
dd84058d
MY
408config TARGET_SPEAR300
409 bool "Support spear300"
2e07c249 410 select CPU_ARM926EJS
a5d67547 411 select BOARD_EARLY_INIT_F
dd84058d
MY
412
413config TARGET_SPEAR310
414 bool "Support spear310"
2e07c249 415 select CPU_ARM926EJS
a5d67547 416 select BOARD_EARLY_INIT_F
dd84058d
MY
417
418config TARGET_SPEAR320
419 bool "Support spear320"
2e07c249 420 select CPU_ARM926EJS
a5d67547 421 select BOARD_EARLY_INIT_F
dd84058d
MY
422
423config TARGET_SPEAR600
424 bool "Support spear600"
2e07c249 425 select CPU_ARM926EJS
a5d67547 426 select BOARD_EARLY_INIT_F
dd84058d 427
9fa32b12
VM
428config TARGET_STV0991
429 bool "Support stv0991"
430 select CPU_V7
cac0ca76
MY
431 select DM
432 select DM_SERIAL
e67abcaa
VM
433 select DM_SPI
434 select DM_SPI_FLASH
435 select SPI_FLASH
9fa32b12 436
dd84058d
MY
437config TARGET_X600
438 bool "Support x600"
e5ec4815 439 select BOARD_LATE_INIT
2e07c249 440 select CPU_ARM926EJS
02627356 441 select SUPPORT_SPL
dd84058d 442
dd84058d 443config TARGET_IMX31_PHYCORE
f428268a
TR
444 bool "Support imx31_phycore_eet"
445 select CPU_ARM1136
a5d67547 446 select BOARD_EARLY_INIT_F
f428268a
TR
447
448config TARGET_IMX31_PHYCORE_EET
449 bool "Support imx31_phycore_eet"
e5ec4815 450 select BOARD_LATE_INIT
2e07c249 451 select CPU_ARM1136
a5d67547 452 select BOARD_EARLY_INIT_F
dd84058d 453
dd84058d
MY
454config TARGET_MX31ADS
455 bool "Support mx31ads"
2e07c249 456 select CPU_ARM1136
a5d67547 457 select BOARD_EARLY_INIT_F
dd84058d
MY
458
459config TARGET_MX31PDK
460 bool "Support mx31pdk"
e5ec4815 461 select BOARD_LATE_INIT
2e07c249 462 select CPU_ARM1136
02627356 463 select SUPPORT_SPL
a5d67547 464 select BOARD_EARLY_INIT_F
dd84058d 465
dd84058d
MY
466config TARGET_WOODBURN
467 bool "Support woodburn"
2e07c249 468 select CPU_ARM1136
dd84058d
MY
469
470config TARGET_WOODBURN_SD
471 bool "Support woodburn_sd"
2e07c249 472 select CPU_ARM1136
02627356 473 select SUPPORT_SPL
dd84058d
MY
474
475config TARGET_FLEA3
476 bool "Support flea3"
2e07c249 477 select CPU_ARM1136
dd84058d
MY
478
479config TARGET_MX35PDK
480 bool "Support mx35pdk"
e5ec4815 481 select BOARD_LATE_INIT
2e07c249 482 select CPU_ARM1136
dd84058d 483
ddf6bd48
MY
484config ARCH_BCM283X
485 bool "Broadcom BCM283X family"
58d423b8
MY
486 select DM
487 select DM_SERIAL
488 select DM_GPIO
76709096 489 select OF_CONTROL
91d27a17 490 imply FAT_WRITE
b31e065f 491 imply ENV_IS_IN_FAT
46414296 492
dd84058d
MY
493config TARGET_VEXPRESS_CA15_TC2
494 bool "Support vexpress_ca15_tc2"
2e07c249 495 select CPU_V7
ea624e19
HG
496 select CPU_V7_HAS_NONSEC
497 select CPU_V7_HAS_VIRT
dd84058d
MY
498
499config TARGET_VEXPRESS_CA5X2
500 bool "Support vexpress_ca5x2"
2e07c249 501 select CPU_V7
dd84058d
MY
502
503config TARGET_VEXPRESS_CA9X4
504 bool "Support vexpress_ca9x4"
2e07c249 505 select CPU_V7
dd84058d 506
43486e4c
SR
507config TARGET_BCM23550_W1D
508 bool "Support bcm23550_w1d"
509 select CPU_V7
221a949e 510 imply CRC32_VERIFY
91d27a17 511 imply FAT_WRITE
43486e4c 512
dd84058d
MY
513config TARGET_BCM28155_AP
514 bool "Support bcm28155_ap"
2e07c249 515 select CPU_V7
221a949e 516 imply CRC32_VERIFY
91d27a17 517 imply FAT_WRITE
dd84058d 518
abb1678c
SR
519config TARGET_BCMCYGNUS
520 bool "Support bcmcygnus"
2e07c249 521 select CPU_V7
221a949e 522 imply CRC32_VERIFY
551c3934 523 imply CMD_HASH
91d27a17 524 imply FAT_WRITE
221a949e 525 imply HASH_VERIFY
c89782dc
SV
526 imply NETDEVICES
527 imply BCM_SF2_ETH
528 imply BCM_SF2_ETH_GMAC
9dec5270 529
abb1678c
SR
530config TARGET_BCMNSP
531 bool "Support bcmnsp"
2e07c249 532 select CPU_V7
9dec5270 533
274bced8
JM
534config TARGET_BCMNS2
535 bool "Support Broadcom Northstar2"
536 select ARM64
537 help
538 Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit
539 ARMv8 Cortex-A57 processors targeting a broad range of networking
540 applications
541
72df68cc
MY
542config ARCH_EXYNOS
543 bool "Samsung EXYNOS"
58d423b8 544 select DM
fc47cf9d 545 select DM_I2C
58d423b8
MY
546 select DM_SPI_FLASH
547 select DM_SERIAL
548 select DM_SPI
549 select DM_GPIO
1fa4bfde 550 select DM_KEYBOARD
91d27a17 551 imply FAT_WRITE
dd84058d 552
311757be
SG
553config ARCH_S5PC1XX
554 bool "Samsung S5PC1XX"
2e07c249 555 select CPU_V7
58d423b8
MY
556 select DM
557 select DM_SERIAL
558 select DM_GPIO
08848e9c 559 select DM_I2C
311757be 560
ef2b694c
MY
561config ARCH_HIGHBANK
562 bool "Calxeda Highbank"
2e07c249 563 select CPU_V7
dd84058d 564
5cbbd9bd
MY
565config ARCH_INTEGRATOR
566 bool "ARM Ltd. Integrator family"
3f394e70
LW
567 select DM
568 select DM_SERIAL
5cbbd9bd 569
c338f09e
MY
570config ARCH_KEYSTONE
571 bool "TI Keystone"
2e07c249 572 select CPU_V7
02627356 573 select SUPPORT_SPL
3a649407 574 select SYS_THUMB_BUILD
534bc70e 575 select CMD_POWEROFF
d56b4b19 576 imply CMD_MTDPARTS
46f9ef18 577 imply FIT
dd84058d 578
a93fbf4a
MY
579config ARCH_OMAP2PLUS
580 bool "TI OMAP2+"
581 select CPU_V7
0680f1b1 582 select SPL_BOARD_INIT if SPL
a93fbf4a
MY
583 select SUPPORT_SPL
584 imply FIT
585
bfcef28a
BG
586config ARCH_MESON
587 bool "Amlogic Meson"
588 help
589 Support for the Meson SoC family developed by Amlogic Inc.,
590 targeted at media players and tablet computers. We currently
591 support the S905 (GXBaby) 64-bit SoC.
592
e90a08da
PF
593config ARCH_MX7ULP
594 bool "NXP MX7ULP"
595 select CPU_V7
596 select ROM_UNIFIED_SECTIONS
597
1a8150d4
AA
598config ARCH_MX7
599 bool "Freescale MX7"
600 select CPU_V7
2c2e2c9e
YS
601 select SYS_FSL_HAS_SEC if SECURE_BOOT
602 select SYS_FSL_SEC_COMPAT_4
90b80386 603 select SYS_FSL_SEC_LE
a5d67547 604 select BOARD_EARLY_INIT_F
4585601a 605 select ARCH_MISC_INIT
1a8150d4 606
89ebc821
BB
607config ARCH_MX6
608 bool "Freescale MX6"
609 select CPU_V7
2c2e2c9e
YS
610 select SYS_FSL_HAS_SEC if SECURE_BOOT
611 select SYS_FSL_SEC_COMPAT_4
90b80386 612 select SYS_FSL_SEC_LE
3a649407 613 select SYS_THUMB_BUILD if SPL
89ebc821 614
424ee3d1
AR
615config ARCH_MX5
616 bool "Freescale MX5"
617 select CPU_V7
a5d67547 618 select BOARD_EARLY_INIT_F
424ee3d1 619
1cc95f6e 620config ARCH_RMOBILE
f40b9898 621 bool "Renesas ARM SoCs"
1cc95f6e
NI
622 select DM
623 select DM_SERIAL
a5d67547 624 select BOARD_EARLY_INIT_F
91d27a17 625 imply FAT_WRITE
3a649407 626 imply SYS_THUMB_BUILD
dd84058d 627
9702ec00
EP
628config TARGET_S32V234EVB
629 bool "Support s32v234evb"
630 select ARM64
c01e4a1a 631 select SYS_FSL_ERRATUM_ESDHC111
9702ec00 632
08592136
MK
633config ARCH_SNAPDRAGON
634 bool "Qualcomm Snapdragon SoCs"
635 select ARM64
636 select DM
637 select DM_GPIO
638 select DM_SERIAL
639 select SPMI
640 select OF_CONTROL
641 select OF_SEPARATE
642
7865f4b0
MY
643config ARCH_SOCFPGA
644 bool "Altera SOCFPGA family"
2e07c249 645 select CPU_V7
02627356 646 select SUPPORT_SPL
dfd3dff5
MV
647 select OF_CONTROL
648 select SPL_OF_CONTROL
1d9aa3e5
MY
649 select DM
650 select DM_SPI_FLASH
651 select DM_SPI
beee6a30 652 select ENABLE_ARM_SOC_BOOT0_HOOK
a421192f 653 select ARCH_EARLY_INIT_R
4585601a 654 select ARCH_MISC_INIT
949123e3 655 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
3a649407 656 select SYS_THUMB_BUILD
d56b4b19 657 imply CMD_MTDPARTS
221a949e 658 imply CRC32_VERIFY
91d27a17 659 imply FAT_WRITE
dd84058d 660
2c7e3b90
IC
661config ARCH_SUNXI
662 bool "Support sunxi (Allwinner) SoCs"
88bb800d 663 select CMD_GPIO
0878a8a7 664 select CMD_MMC if MMC
2997ee50 665 select CMD_USB if DISTRO_DEFAULTS
b6006baf 666 select DM
45368827 667 select DM_ETH
211d57a4
HG
668 select DM_GPIO
669 select DM_KEYBOARD
45368827 670 select DM_SERIAL
2997ee50 671 select DM_USB if DISTRO_DEFAULTS
d75111a7 672 select OF_BOARD_SETUP
b6006baf
HG
673 select OF_CONTROL
674 select OF_SEPARATE
ab43de80
TR
675 select SPL_STACK_R if SPL
676 select SPL_SYS_MALLOC_SIMPLE if SPL
6edf6a21 677 select SYS_NS16550
3a649407 678 select SPL_SYS_THUMB_BUILD if !ARM64
2997ee50
YM
679 select USB if DISTRO_DEFAULTS
680 select USB_STORAGE if DISTRO_DEFAULTS
681 select USB_KEYBOARD if DISTRO_DEFAULTS
8c7d2296 682 select USE_TINY_PRINTF
91d27a17 683 imply FAT_WRITE
af83a604
MY
684 imply PRE_CONSOLE_BUFFER
685 imply SPL_GPIO_SUPPORT
686 imply SPL_LIBCOMMON_SUPPORT
687 imply SPL_LIBDISK_SUPPORT
688 imply SPL_LIBGENERIC_SUPPORT
4aa2ba3a 689 imply SPL_MMC_SUPPORT if MMC
af83a604
MY
690 imply SPL_POWER_SUPPORT
691 imply SPL_SERIAL_SUPPORT
8ebe4f42 692
d9e268ed
SB
693config TARGET_TS4600
694 bool "Support TS4600"
695 select CPU_ARM926EJS
696 select SUPPORT_SPL
697
7966b437
SA
698config ARCH_VF610
699 bool "Freescale Vybrid"
e7b860fa 700 select CPU_V7
c01e4a1a 701 select SYS_FSL_ERRATUM_ESDHC111
d56b4b19 702 imply CMD_MTDPARTS
e7b860fa 703
5ca269a4 704config ARCH_ZYNQ
44dcb403 705 bool "Xilinx Zynq Platform"
e5ec4815 706 select BOARD_LATE_INIT
2e07c249 707 select CPU_V7
02627356 708 select SUPPORT_SPL
d065cfd9 709 select OF_CONTROL
0680f1b1 710 select SPL_BOARD_INIT if SPL
eb04ab34 711 select SPL_OF_CONTROL if SPL
8981f05c 712 select DM
6889ca71 713 select DM_ETH
2978ae23 714 select DM_GPIO
eb04ab34 715 select SPL_DM if SPL
d9ae52c8 716 select DM_MMC
329a449f 717 select DM_MMC_OPS
9f7a4502 718 select DM_SPI
42800ffa 719 select DM_SERIAL
9f7a4502 720 select DM_SPI_FLASH
eb04ab34 721 select SPL_SEPARATE_BSS if SPL
dec49e86 722 select DM_USB if USB
329a449f 723 select BLK
781745bd
SH
724 select CLK
725 select SPL_CLK
726 select CLK_ZYNQ
d315628e 727 imply CMD_CLK
91d27a17 728 imply FAT_WRITE
dd84058d 729
0b54a9dd 730config ARCH_ZYNQMP
84c7204b
MS
731 bool "Support Xilinx ZynqMP Platform"
732 select ARM64
e5ec4815 733 select BOARD_LATE_INIT
c2490bf5
MS
734 select DM
735 select OF_CONTROL
736 select DM_SERIAL
e6a9ed04 737 select SUPPORT_SPL
1f29738a 738 select CLK
0680f1b1 739 select SPL_BOARD_INIT if SPL
1f29738a 740 select SPL_CLK
dec49e86 741 select DM_USB if USB
91d27a17 742 imply FAT_WRITE
84c7204b 743
ddd960e6
MY
744config TEGRA
745 bool "NVIDIA Tegra"
91d27a17 746 imply FAT_WRITE
dd84058d 747
f91afc4d 748config TARGET_VEXPRESS64_AEMV8A
dd84058d 749 bool "Support vexpress_aemv8a"
016a954e 750 select ARM64
dd84058d 751
f91afc4d
LW
752config TARGET_VEXPRESS64_BASE_FVP
753 bool "Support Versatile Express ARMv8a FVP BASE model"
754 select ARM64
755 select SEMIHOSTING
756
fc04b923
RH
757config TARGET_VEXPRESS64_BASE_FVP_DRAM
758 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
759 select ARM64
760 help
761 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
762 the default config to allow the user to load the images directly into
763 DRAM using model parameters rather than by using semi-hosting to load
764 the files from the host filesystem.
765
ffc10373
LW
766config TARGET_VEXPRESS64_JUNO
767 bool "Support Versatile Express Juno Development Platform"
768 select ARM64
769
44937214
PK
770config TARGET_LS2080A_EMU
771 bool "Support ls2080a_emu"
fb2bf8c2 772 select ARCH_LS2080A
016a954e 773 select ARM64
23b5877c 774 select ARMV8_MULTIENTRY
4585601a 775 select ARCH_MISC_INIT
44937214
PK
776 help
777 Support for Freescale LS2080A_EMU platform
778 The LS2080A Development System (EMULATOR) is a pre silicon
779 development platform that supports the QorIQ LS2080A
780 Layerscape Architecture processor.
dd84058d 781
44937214
PK
782config TARGET_LS2080A_SIMU
783 bool "Support ls2080a_simu"
fb2bf8c2 784 select ARCH_LS2080A
016a954e 785 select ARM64
23b5877c 786 select ARMV8_MULTIENTRY
4585601a 787 select ARCH_MISC_INIT
44937214
PK
788 help
789 Support for Freescale LS2080A_SIMU platform
790 The LS2080A Development System (QDS) is a pre silicon
791 development platform that supports the QorIQ LS2080A
792 Layerscape Architecture processor.
dd84058d 793
44937214
PK
794config TARGET_LS2080AQDS
795 bool "Support ls2080aqds"
fb2bf8c2 796 select ARCH_LS2080A
7288c2c2
YS
797 select ARM64
798 select ARMV8_MULTIENTRY
e5ec4815 799 select BOARD_LATE_INIT
b2d5ac59 800 select SUPPORT_SPL
4585601a 801 select ARCH_MISC_INIT
fedb428c 802 imply SCSI
7288c2c2 803 help
44937214
PK
804 Support for Freescale LS2080AQDS platform
805 The LS2080A Development System (QDS) is a high-performance
806 development platform that supports the QorIQ LS2080A
7288c2c2
YS
807 Layerscape Architecture processor.
808
44937214
PK
809config TARGET_LS2080ARDB
810 bool "Support ls2080ardb"
fb2bf8c2 811 select ARCH_LS2080A
e2b65ea9
YS
812 select ARM64
813 select ARMV8_MULTIENTRY
e5ec4815 814 select BOARD_LATE_INIT
32eda7cc 815 select SUPPORT_SPL
4585601a 816 select ARCH_MISC_INIT
fedb428c 817 imply SCSI
e2b65ea9 818 help
44937214
PK
819 Support for Freescale LS2080ARDB platform.
820 The LS2080A Reference design board (RDB) is a high-performance
821 development platform that supports the QorIQ LS2080A
e2b65ea9
YS
822 Layerscape Architecture processor.
823
3049a583
PJ
824config TARGET_LS2081ARDB
825 bool "Support ls2081ardb"
826 select ARCH_LS2080A
827 select ARM64
828 select ARMV8_MULTIENTRY
829 select BOARD_LATE_INIT
830 select SUPPORT_SPL
831 select ARCH_MISC_INIT
832 help
833 Support for Freescale LS2081ARDB platform.
834 The LS2081A Reference design board (RDB) is a high-performance
835 development platform that supports the QorIQ LS2081A/LS2041A
836 Layerscape Architecture processor.
837
11ac2363
PG
838config TARGET_HIKEY
839 bool "Support HiKey 96boards Consumer Edition Platform"
840 select ARM64
efd7b60a
PG
841 select DM
842 select DM_GPIO
9c71bcdc 843 select DM_SERIAL
cd593ed6 844 select OF_CONTROL
11ac2363
PG
845 help
846 Support for HiKey 96boards platform. It features a HI6220
847 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
848
d754254f
JRO
849config TARGET_POPLAR
850 bool "Support Poplar 96boards Enterprise Edition Platform"
851 select ARM64
852 select DM
853 select OF_CONTROL
854 select DM_SERIAL
855 select DM_USB
856 help
857 Support for Poplar 96boards EE platform. It features a HI3798cv200
858 SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
859 making it capable of running any commercial set-top solution based on
860 Linux or Android.
861
9d044fcb
PK
862config TARGET_LS1012AQDS
863 bool "Support ls1012aqds"
9533acf3 864 select ARCH_LS1012A
9d044fcb 865 select ARM64
e5ec4815 866 select BOARD_LATE_INIT
9d044fcb
PK
867 help
868 Support for Freescale LS1012AQDS platform.
869 The LS1012A Development System (QDS) is a high-performance
870 development platform that supports the QorIQ LS1012A
871 Layerscape Architecture processor.
872
3b6e3898
PK
873config TARGET_LS1012ARDB
874 bool "Support ls1012ardb"
9533acf3 875 select ARCH_LS1012A
3b6e3898 876 select ARM64
e5ec4815 877 select BOARD_LATE_INIT
fedb428c 878 imply SCSI
3b6e3898
PK
879 help
880 Support for Freescale LS1012ARDB platform.
881 The LS1012A Reference design board (RDB) is a high-performance
882 development platform that supports the QorIQ LS1012A
883 Layerscape Architecture processor.
884
ff78aa2b
PK
885config TARGET_LS1012AFRDM
886 bool "Support ls1012afrdm"
9533acf3 887 select ARCH_LS1012A
ff78aa2b
PK
888 select ARM64
889 help
890 Support for Freescale LS1012AFRDM platform.
891 The LS1012A Freedom board (FRDM) is a high-performance
892 development platform that supports the QorIQ LS1012A
893 Layerscape Architecture processor.
894
550e3dc0 895config TARGET_LS1021AQDS
0de15707 896 bool "Support ls1021aqds"
e5ec4815 897 select BOARD_LATE_INIT
2e07c249 898 select CPU_V7
adee1d4c
HZ
899 select CPU_V7_HAS_NONSEC
900 select CPU_V7_HAS_VIRT
50f0c663 901 select SUPPORT_SPL
0a37cf8f 902 select ARCH_LS1021A
217f92bb 903 select ARCH_SUPPORT_PSCI
5e8bd7e1 904 select LS1_DEEP_SLEEP
d26e34c4 905 select SYS_FSL_DDR
a5d67547 906 select BOARD_EARLY_INIT_F
fedb428c 907 imply SCSI
217f92bb 908
c8a7d9da 909config TARGET_LS1021ATWR
0de15707 910 bool "Support ls1021atwr"
e5ec4815 911 select BOARD_LATE_INIT
2e07c249 912 select CPU_V7
adee1d4c
HZ
913 select CPU_V7_HAS_NONSEC
914 select CPU_V7_HAS_VIRT
50f0c663 915 select SUPPORT_SPL
0a37cf8f 916 select ARCH_LS1021A
217f92bb 917 select ARCH_SUPPORT_PSCI
5e8bd7e1 918 select LS1_DEEP_SLEEP
a5d67547 919 select BOARD_EARLY_INIT_F
fedb428c 920 imply SCSI
c8a7d9da 921
20c700f8
FL
922config TARGET_LS1021AIOT
923 bool "Support ls1021aiot"
e5ec4815 924 select BOARD_LATE_INIT
20c700f8
FL
925 select CPU_V7
926 select CPU_V7_HAS_NONSEC
927 select CPU_V7_HAS_VIRT
928 select SUPPORT_SPL
929 select ARCH_LS1021A
930 select ARCH_SUPPORT_PSCI
fedb428c 931 imply SCSI
20c700f8
FL
932 help
933 Support for Freescale LS1021AIOT platform.
934 The LS1021A Freescale board (IOT) is a high-performance
935 development platform that supports the QorIQ LS1021A
936 Layerscape Architecture processor.
937
02b5d2ed
SX
938config TARGET_LS1043AQDS
939 bool "Support ls1043aqds"
0a37cf8f 940 select ARCH_LS1043A
02b5d2ed
SX
941 select ARM64
942 select ARMV8_MULTIENTRY
e5ec4815 943 select BOARD_LATE_INIT
02b5d2ed 944 select SUPPORT_SPL
a5d67547 945 select BOARD_EARLY_INIT_F
fedb428c 946 imply SCSI
02b5d2ed
SX
947 help
948 Support for Freescale LS1043AQDS platform.
949
f3a8e2b7
MH
950config TARGET_LS1043ARDB
951 bool "Support ls1043ardb"
0a37cf8f 952 select ARCH_LS1043A
f3a8e2b7 953 select ARM64
831c068f 954 select ARMV8_MULTIENTRY
e5ec4815 955 select BOARD_LATE_INIT
3ad44729 956 select SUPPORT_SPL
a5d67547 957 select BOARD_EARLY_INIT_F
fedb428c 958 imply SCSI
f3a8e2b7
MH
959 help
960 Support for Freescale LS1043ARDB platform.
961
126fe70d
SX
962config TARGET_LS1046AQDS
963 bool "Support ls1046aqds"
da28e58a 964 select ARCH_LS1046A
126fe70d
SX
965 select ARM64
966 select ARMV8_MULTIENTRY
e5ec4815 967 select BOARD_LATE_INIT
126fe70d
SX
968 select SUPPORT_SPL
969 select DM_SPI_FLASH if DM_SPI
a5d67547 970 select BOARD_EARLY_INIT_F
fedb428c 971 imply SCSI
126fe70d
SX
972 help
973 Support for Freescale LS1046AQDS platform.
974 The LS1046A Development System (QDS) is a high-performance
975 development platform that supports the QorIQ LS1046A
976 Layerscape Architecture processor.
977
dd02936f
MH
978config TARGET_LS1046ARDB
979 bool "Support ls1046ardb"
da28e58a 980 select ARCH_LS1046A
dd02936f
MH
981 select ARM64
982 select ARMV8_MULTIENTRY
e5ec4815 983 select BOARD_LATE_INIT
dd02936f
MH
984 select SUPPORT_SPL
985 select DM_SPI_FLASH if DM_SPI
dccef2ec 986 select POWER_MC34VR500
a5d67547 987 select BOARD_EARLY_INIT_F
fedb428c 988 imply SCSI
dd02936f
MH
989 help
990 Support for Freescale LS1046ARDB platform.
991 The LS1046A Reference Design Board (RDB) is a high-performance
992 development platform that supports the QorIQ LS1046A
993 Layerscape Architecture processor.
994
dd84058d
MY
995config TARGET_H2200
996 bool "Support h2200"
2e07c249 997 select CPU_PXA
dd84058d 998
f19eb154
VK
999config TARGET_ZIPITZ2
1000 bool "Support zipitz2"
1001 select CPU_PXA
1002
dd84058d
MY
1003config TARGET_COLIBRI_PXA270
1004 bool "Support colibri_pxa270"
2e07c249 1005 select CPU_PXA
dd84058d 1006
66cba041 1007config ARCH_UNIPHIER
b6ef3a3f 1008 bool "Socionext UniPhier SoCs"
e5ec4815 1009 select BOARD_LATE_INIT
48264d9b 1010 select CLK_UNIPHIER
4e819950 1011 select DM
b800cbde 1012 select DM_GPIO
4e819950 1013 select DM_I2C
4aceb3f8 1014 select DM_MMC
4fb96c48 1015 select DM_RESET
b5550e49 1016 select DM_SERIAL
47a79f65 1017 select DM_USB
b5550e49
MY
1018 select OF_CONTROL
1019 select OF_LIBFDT
27350c92 1020 select PINCTRL
0680f1b1 1021 select SPL_BOARD_INIT if SPL
561ca649
MY
1022 select SPL_DM if SPL
1023 select SPL_LIBCOMMON_SUPPORT if SPL
1024 select SPL_LIBGENERIC_SUPPORT if SPL
1025 select SPL_OF_CONTROL if SPL
1026 select SPL_PINCTRL if SPL
b5550e49 1027 select SUPPORT_SPL
91d27a17 1028 imply FAT_WRITE
2be29653 1029 imply ENV_IS_IN_MMC
b6ef3a3f
MY
1030 help
1031 Support for UniPhier SoC family developed by Socionext Inc.
1032 (formerly, System LSI Business Division of Panasonic Corporation)
66cba041 1033
0a61ee88
VM
1034config STM32
1035 bool "Support STM32"
ed09a554 1036 select CPU_V7M
66562414
KL
1037 select DM
1038 select DM_SERIAL
3a649407 1039 select SYS_THUMB_BUILD
ed09a554 1040
94e9a4ef
PC
1041config ARCH_STI
1042 bool "Support STMicrolectronics SoCs"
1043 select CPU_V7
214a17e6
PC
1044 select DM
1045 select DM_SERIAL
eee20f81
PC
1046 select BLK
1047 select DM_MMC
584861ff 1048 select DM_RESET
94e9a4ef
PC
1049 help
1050 Support for STMicroelectronics STiH407/10 SoC family.
1051 This SoC is used on Linaro 96Board STiH410-B2260
1052
2444dae5
SG
1053config ARCH_ROCKCHIP
1054 bool "Support Rockchip SoCs"
2444dae5 1055 select OF_CONTROL
aa15038c 1056 select BLK
2444dae5 1057 select DM
a381bcf5 1058 select SPL_DM if SPL
aa15038c 1059 select SYS_MALLOC_F
3a649407 1060 select SYS_THUMB_BUILD if !ARM64
a381bcf5 1061 select SPL_SYS_MALLOC_SIMPLE if SPL
aa15038c
SG
1062 select DM_GPIO
1063 select DM_I2C
1064 select DM_MMC
42b37d8d 1065 select DM_MMC_OPS
aa15038c
SG
1066 select DM_SERIAL
1067 select DM_SPI
1068 select DM_SPI_FLASH
892742df 1069 select DM_USB if USB
8d29e3a4
KY
1070 select DM_PWM
1071 select DM_REGULATOR
91d27a17 1072 imply FAT_WRITE
2444dae5 1073
746f985a
ST
1074config TARGET_THUNDERX_88XX
1075 bool "Support ThunderX 88xx"
b4ba1693 1076 select ARM64
746f985a 1077 select OF_CONTROL
067716ba 1078 select SYS_CACHE_SHIFT_7
746f985a 1079
4697abea 1080config ARCH_ASPEED
1081 bool "Support Aspeed SoCs"
1082 select OF_CONTROL
1083 select DM
1084
dd84058d
MY
1085endchoice
1086
4697abea 1087source "arch/arm/mach-aspeed/Kconfig"
1088
4614b891
MY
1089source "arch/arm/mach-at91/Kconfig"
1090
ddf6bd48 1091source "arch/arm/mach-bcm283x/Kconfig"
3491ba63 1092
ddf6bd48 1093source "arch/arm/mach-davinci/Kconfig"
34e609ca 1094
77b55e8c 1095source "arch/arm/mach-exynos/Kconfig"
72df68cc 1096
72a8ff4b 1097source "arch/arm/mach-highbank/Kconfig"
ef2b694c 1098
5cbbd9bd
MY
1099source "arch/arm/mach-integrator/Kconfig"
1100
39a72345 1101source "arch/arm/mach-keystone/Kconfig"
c338f09e 1102
56f86e39 1103source "arch/arm/mach-kirkwood/Kconfig"
47539e23 1104
c3d89140
SR
1105source "arch/arm/mach-mvebu/Kconfig"
1106
0a37cf8f
YS
1107source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1108
552a848e 1109source "arch/arm/mach-imx/mx7ulp/Kconfig"
e90a08da 1110
552a848e 1111source "arch/arm/mach-imx/mx7/Kconfig"
1a8150d4 1112
552a848e 1113source "arch/arm/mach-imx/mx6/Kconfig"
89ebc821 1114
552a848e 1115source "arch/arm/mach-imx/mx5/Kconfig"
424ee3d1 1116
983e3700 1117source "arch/arm/mach-omap2/Kconfig"
6384726d 1118
da28e58a
YS
1119source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1120
3e93b4e6 1121source "arch/arm/mach-orion5x/Kconfig"
22f2be7a 1122
badbb63c 1123source "arch/arm/mach-rmobile/Kconfig"
f40b9898 1124
bfcef28a
BG
1125source "arch/arm/mach-meson/Kconfig"
1126
2444dae5
SG
1127source "arch/arm/mach-rockchip/Kconfig"
1128
225f5eec 1129source "arch/arm/mach-s5pc1xx/Kconfig"
311757be 1130
08592136
MK
1131source "arch/arm/mach-snapdragon/Kconfig"
1132
7865f4b0
MY
1133source "arch/arm/mach-socfpga/Kconfig"
1134
94e9a4ef
PC
1135source "arch/arm/mach-sti/Kconfig"
1136
0a61ee88
VM
1137source "arch/arm/mach-stm32/Kconfig"
1138
3abfd887
MY
1139source "arch/arm/mach-sunxi/Kconfig"
1140
09f455dc 1141source "arch/arm/mach-tegra/Kconfig"
ddd960e6 1142
4c425570 1143source "arch/arm/mach-uniphier/Kconfig"
66cba041 1144
7966b437
SA
1145source "arch/arm/cpu/armv7/vf610/Kconfig"
1146
0107f240 1147source "arch/arm/mach-zynq/Kconfig"
ddd960e6 1148
ea624e19
HG
1149source "arch/arm/cpu/armv7/Kconfig"
1150
75580007
SDPP
1151source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1152
23b5877c
LW
1153source "arch/arm/cpu/armv8/Kconfig"
1154
552a848e 1155source "arch/arm/mach-imx/Kconfig"
a05a6045 1156
fcea480d 1157source "board/aries/m28evk/Kconfig"
d8ccbe93 1158source "board/bosch/shc/Kconfig"
dd84058d 1159source "board/CarMediaLab/flea3/Kconfig"
dd84058d 1160source "board/Marvell/aspenite/Kconfig"
dd84058d 1161source "board/Marvell/gplugd/Kconfig"
dd84058d 1162source "board/armadeus/apf27/Kconfig"
dd84058d
MY
1163source "board/armltd/vexpress/Kconfig"
1164source "board/armltd/vexpress64/Kconfig"
dd84058d 1165source "board/bluegiga/apx4devkit/Kconfig"
43486e4c 1166source "board/broadcom/bcm23550_w1d/Kconfig"
dd84058d 1167source "board/broadcom/bcm28155_ap/Kconfig"
abb1678c
SR
1168source "board/broadcom/bcmcygnus/Kconfig"
1169source "board/broadcom/bcmnsp/Kconfig"
274bced8 1170source "board/broadcom/bcmns2/Kconfig"
746f985a 1171source "board/cavium/thunderx/Kconfig"
dd84058d 1172source "board/cirrus/edb93xx/Kconfig"
dd84058d 1173source "board/creative/xfi3/Kconfig"
44937214
PK
1174source "board/freescale/ls2080a/Kconfig"
1175source "board/freescale/ls2080aqds/Kconfig"
1176source "board/freescale/ls2080ardb/Kconfig"
550e3dc0 1177source "board/freescale/ls1021aqds/Kconfig"
02b5d2ed 1178source "board/freescale/ls1043aqds/Kconfig"
c8a7d9da 1179source "board/freescale/ls1021atwr/Kconfig"
20c700f8 1180source "board/freescale/ls1021aiot/Kconfig"
126fe70d 1181source "board/freescale/ls1046aqds/Kconfig"
f3a8e2b7 1182source "board/freescale/ls1043ardb/Kconfig"
dd02936f 1183source "board/freescale/ls1046ardb/Kconfig"
9d044fcb 1184source "board/freescale/ls1012aqds/Kconfig"
3b6e3898 1185source "board/freescale/ls1012ardb/Kconfig"
ff78aa2b 1186source "board/freescale/ls1012afrdm/Kconfig"
dd84058d
MY
1187source "board/freescale/mx23evk/Kconfig"
1188source "board/freescale/mx25pdk/Kconfig"
1189source "board/freescale/mx28evk/Kconfig"
1190source "board/freescale/mx31ads/Kconfig"
1191source "board/freescale/mx31pdk/Kconfig"
1192source "board/freescale/mx35pdk/Kconfig"
9702ec00 1193source "board/freescale/s32v234evb/Kconfig"
60083261 1194source "board/gdsys/a38x/Kconfig"
ab38bf6a 1195source "board/grinn/chiliboard/Kconfig"
dd84058d
MY
1196source "board/gumstix/pepper/Kconfig"
1197source "board/h2200/Kconfig"
345243ed 1198source "board/hisilicon/hikey/Kconfig"
d754254f 1199source "board/hisilicon/poplar/Kconfig"
dd84058d 1200source "board/imx31_phycore/Kconfig"
a96c08f5 1201source "board/isee/igep003x/Kconfig"
dd84058d 1202source "board/olimex/mx23_olinuxino/Kconfig"
dd84058d
MY
1203source "board/phytec/pcm051/Kconfig"
1204source "board/ppcag/bg0900/Kconfig"
dd84058d 1205source "board/sandisk/sansa_fuze_plus/Kconfig"
dd84058d 1206source "board/schulercontrol/sc_sps_1/Kconfig"
dd84058d 1207source "board/silica/pengwyn/Kconfig"
dd84058d
MY
1208source "board/spear/spear300/Kconfig"
1209source "board/spear/spear310/Kconfig"
1210source "board/spear/spear320/Kconfig"
1211source "board/spear/spear600/Kconfig"
1212source "board/spear/x600/Kconfig"
9fa32b12 1213source "board/st/stv0991/Kconfig"
dd84058d 1214source "board/syteco/zmx25/Kconfig"
9d1b2987 1215source "board/tcl/sl50/Kconfig"
a2bc4321 1216source "board/birdland/bav335x/Kconfig"
dd84058d 1217source "board/timll/devkit3250/Kconfig"
dd84058d 1218source "board/toradex/colibri_pxa270/Kconfig"
d9e268ed 1219source "board/technologic/ts4600/Kconfig"
6ce89324 1220source "board/vscom/baltos/Kconfig"
dd84058d 1221source "board/woodburn/Kconfig"
412ae53a 1222source "board/work-microwave/work_92105/Kconfig"
f19eb154 1223source "board/zipitz2/Kconfig"
dd84058d 1224
51b17d49
MY
1225source "arch/arm/Kconfig.debug"
1226
dd84058d 1227endmenu