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