]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/Kconfig
mmc: move CONFIG_SYS_FSL_ERRATUM_ESDHC* to Kconfig
[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
2e07c249 22config CPU_ARM720T
e009bfa4 23 bool
067716ba 24 select SYS_CACHE_SHIFT_5
2e07c249
GS
25
26config CPU_ARM920T
e009bfa4 27 bool
067716ba 28 select SYS_CACHE_SHIFT_5
2e07c249
GS
29
30config CPU_ARM926EJS
e009bfa4 31 bool
067716ba 32 select SYS_CACHE_SHIFT_5
2e07c249
GS
33
34config CPU_ARM946ES
e009bfa4 35 bool
067716ba 36 select SYS_CACHE_SHIFT_5
2e07c249
GS
37
38config CPU_ARM1136
e009bfa4 39 bool
067716ba 40 select SYS_CACHE_SHIFT_5
2e07c249
GS
41
42config CPU_ARM1176
e009bfa4
TR
43 bool
44 select HAS_VBAR
067716ba 45 select SYS_CACHE_SHIFT_5
2e07c249
GS
46
47config CPU_V7
e009bfa4
TR
48 bool
49 select HAS_VBAR
50 select HAS_THUMB2
067716ba 51 select SYS_CACHE_SHIFT_6
2e07c249 52
12d8a729 53config CPU_V7M
54 bool
e009bfa4 55 select HAS_THUMB2
067716ba 56 select SYS_CACHE_SHIFT_5
12d8a729 57
2e07c249 58config CPU_PXA
e009bfa4 59 bool
067716ba 60 select SYS_CACHE_SHIFT_5
2e07c249
GS
61
62config CPU_SA1100
e009bfa4 63 bool
067716ba 64 select SYS_CACHE_SHIFT_5
2e07c249
GS
65
66config SYS_CPU
e009bfa4
TR
67 default "arm720t" if CPU_ARM720T
68 default "arm920t" if CPU_ARM920T
69 default "arm926ejs" if CPU_ARM926EJS
70 default "arm946es" if CPU_ARM946ES
71 default "arm1136" if CPU_ARM1136
72 default "arm1176" if CPU_ARM1176
73 default "armv7" if CPU_V7
74 default "armv7m" if CPU_V7M
75 default "pxa" if CPU_PXA
76 default "sa1100" if CPU_SA1100
01541eec 77 default "armv8" if ARM64
2e07c249 78
66020a67
MV
79config SYS_ARM_ARCH
80 int
81 default 4 if CPU_ARM720T
82 default 4 if CPU_ARM920T
83 default 5 if CPU_ARM926EJS
84 default 5 if CPU_ARM946ES
85 default 6 if CPU_ARM1136
86 default 6 if CPU_ARM1176
87 default 7 if CPU_V7
88 default 7 if CPU_V7M
89 default 5 if CPU_PXA
90 default 4 if CPU_SA1100
91 default 8 if ARM64
92
067716ba
TR
93config SYS_CACHE_SHIFT_5
94 bool
95
96config SYS_CACHE_SHIFT_6
97 bool
98
99config SYS_CACHE_SHIFT_7
100 bool
101
102config SYS_CACHELINE_SIZE
103 int
104 default 128 if SYS_CACHE_SHIFT_7
105 default 64 if SYS_CACHE_SHIFT_6
106 default 32 if SYS_CACHE_SHIFT_5
107
f91afc4d
LW
108config SEMIHOSTING
109 bool "support boot from semihosting"
110 help
111 In emulated environments, semihosting is a way for
112 the hosted environment to call out to the emulator to
113 retrieve files from the host machine.
114
f3e9bec8
PF
115config SYS_L2CACHE_OFF
116 bool "L2cache off"
117 help
118 If SoC does not support L2CACHE or one do not want to enable
119 L2CACHE, choose this option.
120
cdaa633f
AP
121config ENABLE_ARM_SOC_BOOT0_HOOK
122 bool "prepare BOOT0 header"
123 help
124 If the SoC's BOOT0 requires a header area filled with (magic)
125 values, then choose this option, and create a define called
126 ARM_SOC_BOOT0_HOOK which contains the required assembler
127 preprocessor code.
128
be72591b
FE
129config USE_ARCH_MEMCPY
130 bool "Use an assembly optimized implementation of memcpy"
131 default y if CPU_V7
085be482 132 depends on !ARM64
be72591b
FE
133 help
134 Enable the generation of an optimized version of memcpy.
135 Such implementation may be faster under some conditions
136 but may increase the binary size.
137
138config USE_ARCH_MEMSET
139 bool "Use an assembly optimized implementation of memset"
140 default y if CPU_V7
085be482 141 depends on !ARM64
be72591b
FE
142 help
143 Enable the generation of an optimized version of memset.
144 Such implementation may be faster under some conditions
145 but may increase the binary size.
146
272686eb
TR
147config ARCH_OMAP2
148 bool
149 select CPU_V7
150 select SUPPORT_SPL
151
ec6617c3
AW
152config ARM64_SUPPORT_AARCH32
153 bool "ARM64 system support AArch32 execution state"
154 default y if ARM64 && !TARGET_THUNDERX_88XX
155 help
156 This ARM64 system supports AArch32 execution state.
157
dd84058d
MY
158choice
159 prompt "Target select"
b928e658 160 default TARGET_HIKEY
dd84058d 161
4614b891
MY
162config ARCH_AT91
163 bool "Atmel AT91"
dd84058d
MY
164
165config TARGET_EDB93XX
166 bool "Support edb93xx"
2e07c249 167 select CPU_ARM920T
dd84058d 168
dd84058d
MY
169config TARGET_ASPENITE
170 bool "Support aspenite"
2e07c249 171 select CPU_ARM926EJS
dd84058d
MY
172
173config TARGET_GPLUGD
174 bool "Support gplugd"
2e07c249 175 select CPU_ARM926EJS
dd84058d 176
3491ba63
MY
177config ARCH_DAVINCI
178 bool "TI DaVinci"
2e07c249 179 select CPU_ARM926EJS
3491ba63
MY
180 help
181 Support for TI's DaVinci platform.
dd84058d 182
47539e23
MY
183config KIRKWOOD
184 bool "Marvell Kirkwood"
2e07c249 185 select CPU_ARM926EJS
dd84058d 186
c3d89140 187config ARCH_MVEBU
21b29fc6 188 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
9cffb233
SR
189 select OF_CONTROL
190 select OF_SEPARATE
191 select DM
e3b9c98a 192 select DM_ETH
1d51ea19 193 select DM_SERIAL
09a54c00
SR
194 select DM_SPI
195 select DM_SPI_FLASH
a4884831 196
dd84058d
MY
197config TARGET_DEVKIT3250
198 bool "Support devkit3250"
2e07c249 199 select CPU_ARM926EJS
e9b3ce3f 200 select SUPPORT_SPL
dd84058d 201
412ae53a
AA
202config TARGET_WORK_92105
203 bool "Support work_92105"
204 select CPU_ARM926EJS
205 select SUPPORT_SPL
206
dd84058d
MY
207config TARGET_MX25PDK
208 bool "Support mx25pdk"
2e07c249 209 select CPU_ARM926EJS
dd84058d 210
dd84058d
MY
211config TARGET_ZMX25
212 bool "Support zmx25"
2e07c249 213 select CPU_ARM926EJS
dd84058d
MY
214
215config TARGET_APF27
216 bool "Support apf27"
2e07c249 217 select CPU_ARM926EJS
02627356 218 select SUPPORT_SPL
dd84058d 219
dd84058d
MY
220config TARGET_APX4DEVKIT
221 bool "Support apx4devkit"
2e07c249 222 select CPU_ARM926EJS
02627356 223 select SUPPORT_SPL
dd84058d
MY
224
225config TARGET_XFI3
226 bool "Support xfi3"
2e07c249 227 select CPU_ARM926EJS
02627356 228 select SUPPORT_SPL
dd84058d
MY
229
230config TARGET_M28EVK
231 bool "Support m28evk"
2e07c249 232 select CPU_ARM926EJS
02627356 233 select SUPPORT_SPL
dd84058d
MY
234
235config TARGET_MX23EVK
236 bool "Support mx23evk"
2e07c249 237 select CPU_ARM926EJS
02627356 238 select SUPPORT_SPL
dd84058d
MY
239
240config TARGET_MX28EVK
241 bool "Support mx28evk"
2e07c249 242 select CPU_ARM926EJS
02627356 243 select SUPPORT_SPL
dd84058d
MY
244
245config TARGET_MX23_OLINUXINO
246 bool "Support mx23_olinuxino"
2e07c249 247 select CPU_ARM926EJS
02627356 248 select SUPPORT_SPL
dd84058d
MY
249
250config TARGET_BG0900
251 bool "Support bg0900"
2e07c249 252 select CPU_ARM926EJS
02627356 253 select SUPPORT_SPL
dd84058d
MY
254
255config TARGET_SANSA_FUZE_PLUS
256 bool "Support sansa_fuze_plus"
2e07c249 257 select CPU_ARM926EJS
02627356 258 select SUPPORT_SPL
dd84058d
MY
259
260config TARGET_SC_SPS_1
261 bool "Support sc_sps_1"
2e07c249 262 select CPU_ARM926EJS
02627356 263 select SUPPORT_SPL
dd84058d 264
22f2be7a
MY
265config ORION5X
266 bool "Marvell Orion"
2e07c249 267 select CPU_ARM926EJS
dd84058d 268
dd84058d
MY
269config TARGET_SPEAR300
270 bool "Support spear300"
2e07c249 271 select CPU_ARM926EJS
dd84058d
MY
272
273config TARGET_SPEAR310
274 bool "Support spear310"
2e07c249 275 select CPU_ARM926EJS
dd84058d
MY
276
277config TARGET_SPEAR320
278 bool "Support spear320"
2e07c249 279 select CPU_ARM926EJS
dd84058d
MY
280
281config TARGET_SPEAR600
282 bool "Support spear600"
2e07c249 283 select CPU_ARM926EJS
dd84058d 284
9fa32b12
VM
285config TARGET_STV0991
286 bool "Support stv0991"
287 select CPU_V7
cac0ca76
MY
288 select DM
289 select DM_SERIAL
e67abcaa
VM
290 select DM_SPI
291 select DM_SPI_FLASH
292 select SPI_FLASH
9fa32b12 293
dd84058d
MY
294config TARGET_X600
295 bool "Support x600"
2e07c249 296 select CPU_ARM926EJS
02627356 297 select SUPPORT_SPL
dd84058d 298
dd84058d
MY
299config TARGET_IMX31_PHYCORE
300 bool "Support imx31_phycore"
2e07c249 301 select CPU_ARM1136
dd84058d 302
dd84058d
MY
303config TARGET_MX31ADS
304 bool "Support mx31ads"
2e07c249 305 select CPU_ARM1136
dd84058d
MY
306
307config TARGET_MX31PDK
308 bool "Support mx31pdk"
2e07c249 309 select CPU_ARM1136
02627356 310 select SUPPORT_SPL
dd84058d 311
dd84058d
MY
312config TARGET_WOODBURN
313 bool "Support woodburn"
2e07c249 314 select CPU_ARM1136
dd84058d
MY
315
316config TARGET_WOODBURN_SD
317 bool "Support woodburn_sd"
2e07c249 318 select CPU_ARM1136
02627356 319 select SUPPORT_SPL
dd84058d
MY
320
321config TARGET_FLEA3
322 bool "Support flea3"
2e07c249 323 select CPU_ARM1136
dd84058d
MY
324
325config TARGET_MX35PDK
326 bool "Support mx35pdk"
2e07c249 327 select CPU_ARM1136
dd84058d 328
ddf6bd48
MY
329config ARCH_BCM283X
330 bool "Broadcom BCM283X family"
58d423b8
MY
331 select DM
332 select DM_SERIAL
333 select DM_GPIO
76709096 334 select OF_CONTROL
46414296 335
dd84058d
MY
336config TARGET_VEXPRESS_CA15_TC2
337 bool "Support vexpress_ca15_tc2"
2e07c249 338 select CPU_V7
ea624e19
HG
339 select CPU_V7_HAS_NONSEC
340 select CPU_V7_HAS_VIRT
dd84058d
MY
341
342config TARGET_VEXPRESS_CA5X2
343 bool "Support vexpress_ca5x2"
2e07c249 344 select CPU_V7
dd84058d
MY
345
346config TARGET_VEXPRESS_CA9X4
347 bool "Support vexpress_ca9x4"
2e07c249 348 select CPU_V7
dd84058d 349
a4d79993
HS
350config TARGET_BRXRE1
351 bool "Support BRXRE1"
272686eb 352 select ARCH_OMAP2
dd84058d 353
2290fe06
HS
354config TARGET_BRPPT1
355 bool "Support BRPPT1"
272686eb 356 select ARCH_OMAP2
dd84058d 357
dd84058d
MY
358config TARGET_DRACO
359 bool "Support draco"
272686eb 360 select ARCH_OMAP2
71423435
HS
361 select DM
362 select DM_SERIAL
363 select DM_GPIO
dd84058d 364
8c65a2fa
HS
365config TARGET_THUBAN
366 bool "Support thuban"
272686eb 367 select ARCH_OMAP2
71423435
HS
368 select DM
369 select DM_SERIAL
370 select DM_GPIO
dd84058d 371
578056c3
HS
372config TARGET_RASTABAN
373 bool "Support rastaban"
272686eb 374 select ARCH_OMAP2
71423435
HS
375 select DM
376 select DM_SERIAL
377 select DM_GPIO
578056c3 378
6b3943f1 379config TARGET_ETAMIN
e009bfa4 380 bool "Support etamin"
272686eb 381 select ARCH_OMAP2
71423435
HS
382 select DM
383 select DM_SERIAL
384 select DM_GPIO
6b3943f1 385
dd84058d
MY
386config TARGET_PXM2
387 bool "Support pxm2"
272686eb 388 select ARCH_OMAP2
71423435
HS
389 select DM
390 select DM_SERIAL
391 select DM_GPIO
dd84058d
MY
392
393config TARGET_RUT
394 bool "Support rut"
272686eb 395 select ARCH_OMAP2
71423435
HS
396 select DM
397 select DM_SERIAL
398 select DM_GPIO
dd84058d 399
dd84058d
MY
400config TARGET_TI814X_EVM
401 bool "Support ti814x_evm"
272686eb 402 select ARCH_OMAP2
dd84058d
MY
403
404config TARGET_TI816X_EVM
405 bool "Support ti816x_evm"
272686eb 406 select ARCH_OMAP2
dd84058d 407
43486e4c
SR
408config TARGET_BCM23550_W1D
409 bool "Support bcm23550_w1d"
410 select CPU_V7
411
dd84058d
MY
412config TARGET_BCM28155_AP
413 bool "Support bcm28155_ap"
2e07c249 414 select CPU_V7
dd84058d 415
abb1678c
SR
416config TARGET_BCMCYGNUS
417 bool "Support bcmcygnus"
2e07c249 418 select CPU_V7
9dec5270 419
abb1678c
SR
420config TARGET_BCMNSP
421 bool "Support bcmnsp"
2e07c249 422 select CPU_V7
9dec5270 423
72df68cc
MY
424config ARCH_EXYNOS
425 bool "Samsung EXYNOS"
58d423b8 426 select DM
fc47cf9d 427 select DM_I2C
58d423b8
MY
428 select DM_SPI_FLASH
429 select DM_SERIAL
430 select DM_SPI
431 select DM_GPIO
1fa4bfde 432 select DM_KEYBOARD
dd84058d 433
311757be
SG
434config ARCH_S5PC1XX
435 bool "Samsung S5PC1XX"
2e07c249 436 select CPU_V7
58d423b8
MY
437 select DM
438 select DM_SERIAL
439 select DM_GPIO
08848e9c 440 select DM_I2C
311757be 441
ef2b694c
MY
442config ARCH_HIGHBANK
443 bool "Calxeda Highbank"
2e07c249 444 select CPU_V7
dd84058d 445
5cbbd9bd
MY
446config ARCH_INTEGRATOR
447 bool "ARM Ltd. Integrator family"
3f394e70
LW
448 select DM
449 select DM_SERIAL
5cbbd9bd 450
c338f09e
MY
451config ARCH_KEYSTONE
452 bool "TI Keystone"
2e07c249 453 select CPU_V7
02627356 454 select SUPPORT_SPL
534bc70e 455 select CMD_POWEROFF
dd84058d 456
bfcef28a
BG
457config ARCH_MESON
458 bool "Amlogic Meson"
459 help
460 Support for the Meson SoC family developed by Amlogic Inc.,
461 targeted at media players and tablet computers. We currently
462 support the S905 (GXBaby) 64-bit SoC.
463
1a8150d4
AA
464config ARCH_MX7
465 bool "Freescale MX7"
466 select CPU_V7
2c2e2c9e
YS
467 select SYS_FSL_HAS_SEC if SECURE_BOOT
468 select SYS_FSL_SEC_COMPAT_4
90b80386 469 select SYS_FSL_SEC_LE
1a8150d4 470
89ebc821
BB
471config ARCH_MX6
472 bool "Freescale MX6"
473 select CPU_V7
2c2e2c9e
YS
474 select SYS_FSL_HAS_SEC if SECURE_BOOT
475 select SYS_FSL_SEC_COMPAT_4
90b80386 476 select SYS_FSL_SEC_LE
89ebc821 477
424ee3d1
AR
478config ARCH_MX5
479 bool "Freescale MX5"
480 select CPU_V7
481
dd84058d
MY
482config TARGET_M53EVK
483 bool "Support m53evk"
2e07c249 484 select CPU_V7
02627356 485 select SUPPORT_SPL
dd84058d 486
dd84058d
MY
487config TARGET_MX51EVK
488 bool "Support mx51evk"
2e07c249 489 select CPU_V7
dd84058d
MY
490
491config TARGET_MX53ARD
492 bool "Support mx53ard"
2e07c249 493 select CPU_V7
dd84058d
MY
494
495config TARGET_MX53EVK
496 bool "Support mx53evk"
2e07c249 497 select CPU_V7
dd84058d
MY
498
499config TARGET_MX53LOCO
500 bool "Support mx53loco"
2e07c249 501 select CPU_V7
dd84058d
MY
502
503config TARGET_MX53SMD
504 bool "Support mx53smd"
2e07c249 505 select CPU_V7
dd84058d 506
3cfbcb58
MY
507config OMAP34XX
508 bool "OMAP34XX SoC"
272686eb 509 select ARCH_OMAP2
7d106242 510 select USE_TINY_PRINTF
dd84058d 511
d08215a5
MY
512config OMAP44XX
513 bool "OMAP44XX SoC"
272686eb 514 select ARCH_OMAP2
7d106242 515 select USE_TINY_PRINTF
dd84058d 516
6c5431ac
MY
517config OMAP54XX
518 bool "OMAP54XX SoC"
272686eb 519 select ARCH_OMAP2
dd84058d 520
6384726d
MS
521config AM43XX
522 bool "AM43XX SoC"
272686eb 523 select ARCH_OMAP2
6384726d
MS
524 help
525 Support for AM43xx SOC from Texas Instruments.
526 The AM43xx high performance SOC features a Cortex-A9
527 ARM core, a quad core PRU-ICSS for industrial Ethernet
528 protocols, dual camera support, optional 3D graphics
529 and an optional customer programmable secure boot.
530
b39a9ade
AD
531config AM33XX
532 bool "AM33XX SoC"
272686eb 533 select ARCH_OMAP2
b39a9ade
AD
534 help
535 Support for AM335x SOC from Texas Instruments.
536 The AM335x high performance SOC features a Cortex-A8
537 ARM core, a dual core PRU-ICSS for industrial Ethernet
538 protocols, optional 3D graphics and an optional customer
539 programmable secure boot.
540
1cc95f6e 541config ARCH_RMOBILE
f40b9898 542 bool "Renesas ARM SoCs"
1cc95f6e
NI
543 select DM
544 select DM_SERIAL
dd84058d 545
9702ec00
EP
546config TARGET_S32V234EVB
547 bool "Support s32v234evb"
548 select ARM64
c01e4a1a 549 select SYS_FSL_ERRATUM_ESDHC111
9702ec00 550
08592136
MK
551config ARCH_SNAPDRAGON
552 bool "Qualcomm Snapdragon SoCs"
553 select ARM64
554 select DM
555 select DM_GPIO
556 select DM_SERIAL
557 select SPMI
558 select OF_CONTROL
559 select OF_SEPARATE
560
7865f4b0
MY
561config ARCH_SOCFPGA
562 bool "Altera SOCFPGA family"
2e07c249 563 select CPU_V7
02627356 564 select SUPPORT_SPL
dfd3dff5
MV
565 select OF_CONTROL
566 select SPL_OF_CONTROL
1d9aa3e5
MY
567 select DM
568 select DM_SPI_FLASH
569 select DM_SPI
beee6a30 570 select ENABLE_ARM_SOC_BOOT0_HOOK
dd84058d 571
8883ddaf
NK
572config TARGET_CM_T43
573 bool "Support cm_t43"
983e3700 574 select ARCH_OMAP2
8883ddaf 575
2c7e3b90
IC
576config ARCH_SUNXI
577 bool "Support sunxi (Allwinner) SoCs"
88bb800d 578 select CMD_GPIO
0878a8a7 579 select CMD_MMC if MMC
2997ee50 580 select CMD_USB if DISTRO_DEFAULTS
b6006baf 581 select DM
45368827 582 select DM_ETH
211d57a4
HG
583 select DM_GPIO
584 select DM_KEYBOARD
45368827 585 select DM_SERIAL
2997ee50 586 select DM_USB if DISTRO_DEFAULTS
d75111a7 587 select OF_BOARD_SETUP
b6006baf
HG
588 select OF_CONTROL
589 select OF_SEPARATE
8434f035
AG
590 select SPL_STACK_R if SUPPORT_SPL
591 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
6edf6a21 592 select SYS_NS16550
2997ee50
YM
593 select USB if DISTRO_DEFAULTS
594 select USB_STORAGE if DISTRO_DEFAULTS
595 select USB_KEYBOARD if DISTRO_DEFAULTS
8c7d2296 596 select USE_TINY_PRINTF
8ebe4f42 597
d9e268ed
SB
598config TARGET_TS4600
599 bool "Support TS4600"
600 select CPU_ARM926EJS
601 select SUPPORT_SPL
602
9ee16897
LQ
603config TARGET_TS4800
604 bool "Support TS4800"
605 select CPU_V7
c01e4a1a 606 select SYS_FSL_ERRATUM_ESDHC_A001
9ee16897 607
dd84058d
MY
608config TARGET_VF610TWR
609 bool "Support vf610twr"
2e07c249 610 select CPU_V7
c01e4a1a 611 select SYS_FSL_ERRATUM_ESDHC111
dd84058d 612
e7b860fa
SM
613config TARGET_COLIBRI_VF
614 bool "Support Colibri VF50/61"
615 select CPU_V7
c01e4a1a 616 select SYS_FSL_ERRATUM_ESDHC111
e7b860fa 617
931a1d2a
AA
618config TARGET_PCM052
619 bool "Support pcm-052"
620 select CPU_V7
c01e4a1a
YS
621 select SYS_FSL_ERRATUM_ESDHC111
622 select SYS_FSL_ERRATUM_ESDHC135
623 select SYS_FSL_ERRATUM_ESDHC_A001
931a1d2a 624
27192d16
AA
625config TARGET_BK4R1
626 bool "Support BK4r1"
627 select CPU_V7
c01e4a1a
YS
628 select SYS_FSL_ERRATUM_ESDHC111
629 select SYS_FSL_ERRATUM_ESDHC135
630 select SYS_FSL_ERRATUM_ESDHC_A001
27192d16 631
5ca269a4 632config ARCH_ZYNQ
44dcb403 633 bool "Xilinx Zynq Platform"
2e07c249 634 select CPU_V7
02627356 635 select SUPPORT_SPL
d065cfd9 636 select OF_CONTROL
eb04ab34 637 select SPL_OF_CONTROL if SPL
8981f05c 638 select DM
6889ca71 639 select DM_ETH
2978ae23 640 select DM_GPIO
eb04ab34 641 select SPL_DM if SPL
d9ae52c8 642 select DM_MMC
329a449f 643 select DM_MMC_OPS
9f7a4502 644 select DM_SPI
42800ffa 645 select DM_SERIAL
9f7a4502 646 select DM_SPI_FLASH
eb04ab34 647 select SPL_SEPARATE_BSS if SPL
dec49e86 648 select DM_USB if USB
329a449f 649 select BLK
dd84058d 650
0b54a9dd 651config ARCH_ZYNQMP
84c7204b
MS
652 bool "Support Xilinx ZynqMP Platform"
653 select ARM64
c2490bf5
MS
654 select DM
655 select OF_CONTROL
656 select DM_SERIAL
e6a9ed04 657 select SUPPORT_SPL
1f29738a
MS
658 select CLK
659 select SPL_CLK
dec49e86 660 select DM_USB if USB
84c7204b 661
ddd960e6
MY
662config TEGRA
663 bool "NVIDIA Tegra"
dd84058d 664
f91afc4d 665config TARGET_VEXPRESS64_AEMV8A
dd84058d 666 bool "Support vexpress_aemv8a"
016a954e 667 select ARM64
dd84058d 668
f91afc4d
LW
669config TARGET_VEXPRESS64_BASE_FVP
670 bool "Support Versatile Express ARMv8a FVP BASE model"
671 select ARM64
672 select SEMIHOSTING
673
fc04b923
RH
674config TARGET_VEXPRESS64_BASE_FVP_DRAM
675 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
676 select ARM64
677 help
678 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
679 the default config to allow the user to load the images directly into
680 DRAM using model parameters rather than by using semi-hosting to load
681 the files from the host filesystem.
682
ffc10373
LW
683config TARGET_VEXPRESS64_JUNO
684 bool "Support Versatile Express Juno Development Platform"
685 select ARM64
686
44937214
PK
687config TARGET_LS2080A_EMU
688 bool "Support ls2080a_emu"
fb2bf8c2 689 select ARCH_LS2080A
016a954e 690 select ARM64
23b5877c 691 select ARMV8_MULTIENTRY
44937214
PK
692 help
693 Support for Freescale LS2080A_EMU platform
694 The LS2080A Development System (EMULATOR) is a pre silicon
695 development platform that supports the QorIQ LS2080A
696 Layerscape Architecture processor.
dd84058d 697
44937214
PK
698config TARGET_LS2080A_SIMU
699 bool "Support ls2080a_simu"
fb2bf8c2 700 select ARCH_LS2080A
016a954e 701 select ARM64
23b5877c 702 select ARMV8_MULTIENTRY
44937214
PK
703 help
704 Support for Freescale LS2080A_SIMU platform
705 The LS2080A Development System (QDS) is a pre silicon
706 development platform that supports the QorIQ LS2080A
707 Layerscape Architecture processor.
dd84058d 708
44937214
PK
709config TARGET_LS2080AQDS
710 bool "Support ls2080aqds"
fb2bf8c2 711 select ARCH_LS2080A
7288c2c2
YS
712 select ARM64
713 select ARMV8_MULTIENTRY
b2d5ac59 714 select SUPPORT_SPL
7288c2c2 715 help
44937214
PK
716 Support for Freescale LS2080AQDS platform
717 The LS2080A Development System (QDS) is a high-performance
718 development platform that supports the QorIQ LS2080A
7288c2c2
YS
719 Layerscape Architecture processor.
720
44937214
PK
721config TARGET_LS2080ARDB
722 bool "Support ls2080ardb"
fb2bf8c2 723 select ARCH_LS2080A
e2b65ea9
YS
724 select ARM64
725 select ARMV8_MULTIENTRY
32eda7cc 726 select SUPPORT_SPL
e2b65ea9 727 help
44937214
PK
728 Support for Freescale LS2080ARDB platform.
729 The LS2080A Reference design board (RDB) is a high-performance
730 development platform that supports the QorIQ LS2080A
e2b65ea9
YS
731 Layerscape Architecture processor.
732
11ac2363
PG
733config TARGET_HIKEY
734 bool "Support HiKey 96boards Consumer Edition Platform"
735 select ARM64
efd7b60a
PG
736 select DM
737 select DM_GPIO
9c71bcdc 738 select DM_SERIAL
cd593ed6 739 select OF_CONTROL
11ac2363
PG
740 help
741 Support for HiKey 96boards platform. It features a HI6220
742 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
743
9d044fcb
PK
744config TARGET_LS1012AQDS
745 bool "Support ls1012aqds"
9533acf3 746 select ARCH_LS1012A
9d044fcb
PK
747 select ARM64
748 help
749 Support for Freescale LS1012AQDS platform.
750 The LS1012A Development System (QDS) is a high-performance
751 development platform that supports the QorIQ LS1012A
752 Layerscape Architecture processor.
753
3b6e3898
PK
754config TARGET_LS1012ARDB
755 bool "Support ls1012ardb"
9533acf3 756 select ARCH_LS1012A
3b6e3898
PK
757 select ARM64
758 help
759 Support for Freescale LS1012ARDB platform.
760 The LS1012A Reference design board (RDB) is a high-performance
761 development platform that supports the QorIQ LS1012A
762 Layerscape Architecture processor.
763
ff78aa2b
PK
764config TARGET_LS1012AFRDM
765 bool "Support ls1012afrdm"
9533acf3 766 select ARCH_LS1012A
ff78aa2b
PK
767 select ARM64
768 help
769 Support for Freescale LS1012AFRDM platform.
770 The LS1012A Freedom board (FRDM) is a high-performance
771 development platform that supports the QorIQ LS1012A
772 Layerscape Architecture processor.
773
550e3dc0 774config TARGET_LS1021AQDS
0de15707 775 bool "Support ls1021aqds"
2e07c249 776 select CPU_V7
adee1d4c
HZ
777 select CPU_V7_HAS_NONSEC
778 select CPU_V7_HAS_VIRT
50f0c663 779 select SUPPORT_SPL
0a37cf8f 780 select ARCH_LS1021A
217f92bb 781 select ARCH_SUPPORT_PSCI
5e8bd7e1 782 select LS1_DEEP_SLEEP
d26e34c4 783 select SYS_FSL_DDR
217f92bb 784
c8a7d9da 785config TARGET_LS1021ATWR
0de15707 786 bool "Support ls1021atwr"
2e07c249 787 select CPU_V7
adee1d4c
HZ
788 select CPU_V7_HAS_NONSEC
789 select CPU_V7_HAS_VIRT
50f0c663 790 select SUPPORT_SPL
0a37cf8f 791 select ARCH_LS1021A
217f92bb 792 select ARCH_SUPPORT_PSCI
5e8bd7e1 793 select LS1_DEEP_SLEEP
c8a7d9da 794
20c700f8
FL
795config TARGET_LS1021AIOT
796 bool "Support ls1021aiot"
797 select CPU_V7
798 select CPU_V7_HAS_NONSEC
799 select CPU_V7_HAS_VIRT
800 select SUPPORT_SPL
801 select ARCH_LS1021A
802 select ARCH_SUPPORT_PSCI
803 help
804 Support for Freescale LS1021AIOT platform.
805 The LS1021A Freescale board (IOT) is a high-performance
806 development platform that supports the QorIQ LS1021A
807 Layerscape Architecture processor.
808
02b5d2ed
SX
809config TARGET_LS1043AQDS
810 bool "Support ls1043aqds"
0a37cf8f 811 select ARCH_LS1043A
02b5d2ed
SX
812 select ARM64
813 select ARMV8_MULTIENTRY
814 select SUPPORT_SPL
815 help
816 Support for Freescale LS1043AQDS platform.
817
f3a8e2b7
MH
818config TARGET_LS1043ARDB
819 bool "Support ls1043ardb"
0a37cf8f 820 select ARCH_LS1043A
f3a8e2b7 821 select ARM64
831c068f 822 select ARMV8_MULTIENTRY
3ad44729 823 select SUPPORT_SPL
f3a8e2b7
MH
824 help
825 Support for Freescale LS1043ARDB platform.
826
126fe70d
SX
827config TARGET_LS1046AQDS
828 bool "Support ls1046aqds"
da28e58a 829 select ARCH_LS1046A
126fe70d
SX
830 select ARM64
831 select ARMV8_MULTIENTRY
832 select SUPPORT_SPL
833 select DM_SPI_FLASH if DM_SPI
834 help
835 Support for Freescale LS1046AQDS platform.
836 The LS1046A Development System (QDS) is a high-performance
837 development platform that supports the QorIQ LS1046A
838 Layerscape Architecture processor.
839
dd02936f
MH
840config TARGET_LS1046ARDB
841 bool "Support ls1046ardb"
da28e58a 842 select ARCH_LS1046A
dd02936f
MH
843 select ARM64
844 select ARMV8_MULTIENTRY
845 select SUPPORT_SPL
846 select DM_SPI_FLASH if DM_SPI
847 help
848 Support for Freescale LS1046ARDB platform.
849 The LS1046A Reference Design Board (RDB) is a high-performance
850 development platform that supports the QorIQ LS1046A
851 Layerscape Architecture processor.
852
dd84058d
MY
853config TARGET_H2200
854 bool "Support h2200"
2e07c249 855 select CPU_PXA
dd84058d 856
f19eb154
VK
857config TARGET_ZIPITZ2
858 bool "Support zipitz2"
859 select CPU_PXA
860
dd84058d
MY
861config TARGET_COLIBRI_PXA270
862 bool "Support colibri_pxa270"
2e07c249 863 select CPU_PXA
dd84058d 864
66cba041 865config ARCH_UNIPHIER
b6ef3a3f 866 bool "Socionext UniPhier SoCs"
48264d9b 867 select CLK_UNIPHIER
4e819950 868 select DM
b800cbde 869 select DM_GPIO
4e819950 870 select DM_I2C
4aceb3f8 871 select DM_MMC
4fb96c48 872 select DM_RESET
b5550e49 873 select DM_SERIAL
47a79f65 874 select DM_USB
b5550e49
MY
875 select OF_CONTROL
876 select OF_LIBFDT
27350c92 877 select PINCTRL
b5550e49
MY
878 select SPL
879 select SPL_DM
0298f4c0
MY
880 select SPL_LIBCOMMON_SUPPORT
881 select SPL_LIBGENERIC_SUPPORT
b5550e49 882 select SPL_OF_CONTROL
27350c92 883 select SPL_PINCTRL
b5550e49 884 select SUPPORT_SPL
b6ef3a3f
MY
885 help
886 Support for UniPhier SoC family developed by Socionext Inc.
887 (formerly, System LSI Business Division of Panasonic Corporation)
66cba041 888
0a61ee88
VM
889config STM32
890 bool "Support STM32"
ed09a554 891 select CPU_V7M
66562414
KL
892 select DM
893 select DM_SERIAL
ed09a554 894
2444dae5
SG
895config ARCH_ROCKCHIP
896 bool "Support Rockchip SoCs"
2444dae5 897 select OF_CONTROL
aa15038c 898 select BLK
2444dae5 899 select DM
a381bcf5 900 select SPL_DM if SPL
aa15038c 901 select SYS_MALLOC_F
a381bcf5 902 select SPL_SYS_MALLOC_SIMPLE if SPL
aa15038c
SG
903 select DM_GPIO
904 select DM_I2C
905 select DM_MMC
42b37d8d 906 select DM_MMC_OPS
aa15038c
SG
907 select DM_SERIAL
908 select DM_SPI
909 select DM_SPI_FLASH
892742df 910 select DM_USB if USB
8d29e3a4
KY
911 select DM_PWM
912 select DM_REGULATOR
2444dae5 913
746f985a
ST
914config TARGET_THUNDERX_88XX
915 bool "Support ThunderX 88xx"
b4ba1693 916 select ARM64
746f985a 917 select OF_CONTROL
067716ba 918 select SYS_CACHE_SHIFT_7
746f985a 919
dd84058d
MY
920endchoice
921
4614b891
MY
922source "arch/arm/mach-at91/Kconfig"
923
ddf6bd48 924source "arch/arm/mach-bcm283x/Kconfig"
3491ba63 925
ddf6bd48 926source "arch/arm/mach-davinci/Kconfig"
34e609ca 927
77b55e8c 928source "arch/arm/mach-exynos/Kconfig"
72df68cc 929
72a8ff4b 930source "arch/arm/mach-highbank/Kconfig"
ef2b694c 931
5cbbd9bd
MY
932source "arch/arm/mach-integrator/Kconfig"
933
39a72345 934source "arch/arm/mach-keystone/Kconfig"
c338f09e 935
56f86e39 936source "arch/arm/mach-kirkwood/Kconfig"
47539e23 937
727feafe
MN
938source "arch/arm/mach-litesom/Kconfig"
939
c3d89140
SR
940source "arch/arm/mach-mvebu/Kconfig"
941
0a37cf8f
YS
942source "arch/arm/cpu/armv7/ls102xa/Kconfig"
943
1a8150d4
AA
944source "arch/arm/cpu/armv7/mx7/Kconfig"
945
89ebc821
BB
946source "arch/arm/cpu/armv7/mx6/Kconfig"
947
424ee3d1
AR
948source "arch/arm/cpu/armv7/mx5/Kconfig"
949
983e3700 950source "arch/arm/mach-omap2/Kconfig"
6384726d 951
da28e58a
YS
952source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
953
3e93b4e6 954source "arch/arm/mach-orion5x/Kconfig"
22f2be7a 955
badbb63c 956source "arch/arm/mach-rmobile/Kconfig"
f40b9898 957
bfcef28a
BG
958source "arch/arm/mach-meson/Kconfig"
959
2444dae5
SG
960source "arch/arm/mach-rockchip/Kconfig"
961
225f5eec 962source "arch/arm/mach-s5pc1xx/Kconfig"
311757be 963
08592136
MK
964source "arch/arm/mach-snapdragon/Kconfig"
965
7865f4b0
MY
966source "arch/arm/mach-socfpga/Kconfig"
967
0a61ee88
VM
968source "arch/arm/mach-stm32/Kconfig"
969
09f455dc 970source "arch/arm/mach-tegra/Kconfig"
ddd960e6 971
4c425570 972source "arch/arm/mach-uniphier/Kconfig"
66cba041 973
0107f240 974source "arch/arm/mach-zynq/Kconfig"
ddd960e6 975
ea624e19
HG
976source "arch/arm/cpu/armv7/Kconfig"
977
75580007
SDPP
978source "arch/arm/cpu/armv8/zynqmp/Kconfig"
979
23b5877c
LW
980source "arch/arm/cpu/armv8/Kconfig"
981
a05a6045
BB
982source "arch/arm/imx-common/Kconfig"
983
d8ccbe93 984source "board/bosch/shc/Kconfig"
a4d79993 985source "board/BuR/brxre1/Kconfig"
2290fe06 986source "board/BuR/brppt1/Kconfig"
dd84058d 987source "board/CarMediaLab/flea3/Kconfig"
dd84058d 988source "board/Marvell/aspenite/Kconfig"
dd84058d 989source "board/Marvell/gplugd/Kconfig"
dd84058d 990source "board/armadeus/apf27/Kconfig"
dd84058d
MY
991source "board/armltd/vexpress/Kconfig"
992source "board/armltd/vexpress64/Kconfig"
dd84058d 993source "board/bluegiga/apx4devkit/Kconfig"
43486e4c 994source "board/broadcom/bcm23550_w1d/Kconfig"
dd84058d 995source "board/broadcom/bcm28155_ap/Kconfig"
abb1678c
SR
996source "board/broadcom/bcmcygnus/Kconfig"
997source "board/broadcom/bcmnsp/Kconfig"
746f985a 998source "board/cavium/thunderx/Kconfig"
dd84058d 999source "board/cirrus/edb93xx/Kconfig"
dd84058d 1000source "board/compulab/cm_t335/Kconfig"
345243ed 1001source "board/compulab/cm_t43/Kconfig"
dd84058d 1002source "board/creative/xfi3/Kconfig"
dd84058d
MY
1003source "board/denx/m28evk/Kconfig"
1004source "board/denx/m53evk/Kconfig"
44937214
PK
1005source "board/freescale/ls2080a/Kconfig"
1006source "board/freescale/ls2080aqds/Kconfig"
1007source "board/freescale/ls2080ardb/Kconfig"
550e3dc0 1008source "board/freescale/ls1021aqds/Kconfig"
02b5d2ed 1009source "board/freescale/ls1043aqds/Kconfig"
c8a7d9da 1010source "board/freescale/ls1021atwr/Kconfig"
20c700f8 1011source "board/freescale/ls1021aiot/Kconfig"
126fe70d 1012source "board/freescale/ls1046aqds/Kconfig"
f3a8e2b7 1013source "board/freescale/ls1043ardb/Kconfig"
dd02936f 1014source "board/freescale/ls1046ardb/Kconfig"
9d044fcb 1015source "board/freescale/ls1012aqds/Kconfig"
3b6e3898 1016source "board/freescale/ls1012ardb/Kconfig"
ff78aa2b 1017source "board/freescale/ls1012afrdm/Kconfig"
dd84058d
MY
1018source "board/freescale/mx23evk/Kconfig"
1019source "board/freescale/mx25pdk/Kconfig"
1020source "board/freescale/mx28evk/Kconfig"
1021source "board/freescale/mx31ads/Kconfig"
1022source "board/freescale/mx31pdk/Kconfig"
1023source "board/freescale/mx35pdk/Kconfig"
1024source "board/freescale/mx51evk/Kconfig"
1025source "board/freescale/mx53ard/Kconfig"
1026source "board/freescale/mx53evk/Kconfig"
1027source "board/freescale/mx53loco/Kconfig"
1028source "board/freescale/mx53smd/Kconfig"
9702ec00 1029source "board/freescale/s32v234evb/Kconfig"
dd84058d 1030source "board/freescale/vf610twr/Kconfig"
dd84058d
MY
1031source "board/gumstix/pepper/Kconfig"
1032source "board/h2200/Kconfig"
345243ed 1033source "board/hisilicon/hikey/Kconfig"
dd84058d 1034source "board/imx31_phycore/Kconfig"
dd84058d 1035source "board/isee/igep0033/Kconfig"
dd84058d 1036source "board/olimex/mx23_olinuxino/Kconfig"
dd84058d 1037source "board/phytec/pcm051/Kconfig"
931a1d2a 1038source "board/phytec/pcm052/Kconfig"
dd84058d 1039source "board/ppcag/bg0900/Kconfig"
dd84058d 1040source "board/sandisk/sansa_fuze_plus/Kconfig"
dd84058d 1041source "board/schulercontrol/sc_sps_1/Kconfig"
dd84058d
MY
1042source "board/siemens/draco/Kconfig"
1043source "board/siemens/pxm2/Kconfig"
1044source "board/siemens/rut/Kconfig"
dd84058d 1045source "board/silica/pengwyn/Kconfig"
dd84058d
MY
1046source "board/spear/spear300/Kconfig"
1047source "board/spear/spear310/Kconfig"
1048source "board/spear/spear320/Kconfig"
1049source "board/spear/spear600/Kconfig"
1050source "board/spear/x600/Kconfig"
9fa32b12 1051source "board/st/stv0991/Kconfig"
dd84058d 1052source "board/sunxi/Kconfig"
dd84058d 1053source "board/syteco/zmx25/Kconfig"
9d1b2987 1054source "board/tcl/sl50/Kconfig"
dd84058d 1055source "board/ti/am335x/Kconfig"
dd84058d 1056source "board/ti/am43xx/Kconfig"
a2bc4321 1057source "board/birdland/bav335x/Kconfig"
dd84058d
MY
1058source "board/ti/ti814x/Kconfig"
1059source "board/ti/ti816x/Kconfig"
dd84058d 1060source "board/timll/devkit3250/Kconfig"
dd84058d 1061source "board/toradex/colibri_pxa270/Kconfig"
e7b860fa 1062source "board/toradex/colibri_vf/Kconfig"
d9e268ed 1063source "board/technologic/ts4600/Kconfig"
9ee16897 1064source "board/technologic/ts4800/Kconfig"
6ce89324 1065source "board/vscom/baltos/Kconfig"
dd84058d 1066source "board/woodburn/Kconfig"
412ae53a 1067source "board/work-microwave/work_92105/Kconfig"
f19eb154 1068source "board/zipitz2/Kconfig"
dd84058d 1069
51b17d49
MY
1070source "arch/arm/Kconfig.debug"
1071
dd84058d 1072endmenu