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