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