Kconfig 16.3 KB
Newer Older
1 2 3 4 5 6
menu "ARM architecture"
	depends on ARM

config SYS_ARCH
	default "arm"

7 8 9
config ARM64
	bool

10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
config HAS_VBAR
        bool

config CPU_ARM720T
        bool

config CPU_ARM920T
        bool

config CPU_ARM926EJS
        bool

config CPU_ARM946ES
        bool

config CPU_ARM1136
        bool

config CPU_ARM1176
        bool
        select HAS_VBAR

config CPU_V7
        bool
        select HAS_VBAR

R
rev13@wp.pl 已提交
36 37 38
config CPU_V7M
	bool

39 40 41 42 43 44 45 46 47 48 49 50 51 52
config CPU_PXA
        bool

config CPU_SA1100
        bool

config SYS_CPU
        default "arm720t" if CPU_ARM720T
        default "arm920t" if CPU_ARM920T
        default "arm926ejs" if CPU_ARM926EJS
        default "arm946es" if CPU_ARM946ES
        default "arm1136" if CPU_ARM1136
        default "arm1176" if CPU_ARM1176
        default "armv7" if CPU_V7
R
rev13@wp.pl 已提交
53
        default "armv7m" if CPU_V7M
54 55
        default "pxa" if CPU_PXA
        default "sa1100" if CPU_SA1100
56
	default "armv8" if ARM64
57

58 59 60 61 62 63 64
config SEMIHOSTING
	bool "support boot from semihosting"
	help
	  In emulated environments, semihosting is a way for
	  the hosted environment to call out to the emulator to
	  retrieve files from the host machine.

65 66 67 68 69 70
config SYS_L2CACHE_OFF
	bool "L2cache off"
	help
	  If SoC does not support L2CACHE or one do not want to enable
	  L2CACHE, choose this option.

71 72
choice
	prompt "Target select"
S
Simon Glass 已提交
73
	default TARGET_HIKEY
74

75 76
config ARCH_AT91
	bool "Atmel AT91"
77 78 79

config TARGET_EDB93XX
	bool "Support edb93xx"
80
	select CPU_ARM920T
81 82 83

config TARGET_VCMA9
	bool "Support VCMA9"
84
	select CPU_ARM920T
85 86 87

config TARGET_SMDK2410
	bool "Support smdk2410"
88
	select CPU_ARM920T
89 90 91

config TARGET_ASPENITE
	bool "Support aspenite"
92
	select CPU_ARM926EJS
93 94 95

config TARGET_GPLUGD
	bool "Support gplugd"
96
	select CPU_ARM926EJS
97

98 99
config ARCH_DAVINCI
	bool "TI DaVinci"
100
	select CPU_ARM926EJS
101 102
	help
	  Support for TI's DaVinci platform.
103

104 105
config KIRKWOOD
	bool "Marvell Kirkwood"
106
	select CPU_ARM926EJS
107

108 109
config ARCH_MVEBU
	bool "Marvell MVEBU family (Armada XP/38x)"
110
	select CPU_V7
111
	select SUPPORT_SPL
112 113 114
	select OF_CONTROL
	select OF_SEPARATE
	select DM
115
	select DM_SERIAL
116

117 118
config TARGET_DEVKIT3250
	bool "Support devkit3250"
119
	select CPU_ARM926EJS
120
	select SUPPORT_SPL
121

122 123 124 125 126
config TARGET_WORK_92105
	bool "Support work_92105"
	select CPU_ARM926EJS
	select SUPPORT_SPL

127 128
config TARGET_MX25PDK
	bool "Support mx25pdk"
129
	select CPU_ARM926EJS
130 131 132

config TARGET_ZMX25
	bool "Support zmx25"
133
	select CPU_ARM926EJS
134 135 136

config TARGET_APF27
	bool "Support apf27"
137
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
138
	select SUPPORT_SPL
139 140 141

config TARGET_APX4DEVKIT
	bool "Support apx4devkit"
142
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
143
	select SUPPORT_SPL
144 145 146

config TARGET_XFI3
	bool "Support xfi3"
147
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
148
	select SUPPORT_SPL
149 150 151

config TARGET_M28EVK
	bool "Support m28evk"
152
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
153
	select SUPPORT_SPL
154 155 156

config TARGET_MX23EVK
	bool "Support mx23evk"
157
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
158
	select SUPPORT_SPL
159 160 161

config TARGET_MX28EVK
	bool "Support mx28evk"
162
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
163
	select SUPPORT_SPL
164 165 166

config TARGET_MX23_OLINUXINO
	bool "Support mx23_olinuxino"
167
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
168
	select SUPPORT_SPL
169 170 171

config TARGET_BG0900
	bool "Support bg0900"
172
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
173
	select SUPPORT_SPL
174 175 176

config TARGET_SANSA_FUZE_PLUS
	bool "Support sansa_fuze_plus"
177
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
178
	select SUPPORT_SPL
179 180 181

config TARGET_SC_SPS_1
	bool "Support sc_sps_1"
182
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
183
	select SUPPORT_SPL
184

185 186
config ORION5X
	bool "Marvell Orion"
187
	select CPU_ARM926EJS
188 189 190

config TARGET_SPEAR300
	bool "Support spear300"
191
	select CPU_ARM926EJS
192 193 194

config TARGET_SPEAR310
	bool "Support spear310"
195
	select CPU_ARM926EJS
196 197 198

config TARGET_SPEAR320
	bool "Support spear320"
199
	select CPU_ARM926EJS
200 201 202

config TARGET_SPEAR600
	bool "Support spear600"
203
	select CPU_ARM926EJS
204

205 206 207
config TARGET_STV0991
	bool "Support stv0991"
	select CPU_V7
208 209
	select DM
	select DM_SERIAL
210 211 212
	select DM_SPI
	select DM_SPI_FLASH
	select SPI_FLASH
213

214 215
config TARGET_X600
	bool "Support x600"
216
	select CPU_ARM926EJS
M
Masahiro Yamada 已提交
217
	select SUPPORT_SPL
218 219 220

config TARGET_IMX31_PHYCORE
	bool "Support imx31_phycore"
221
	select CPU_ARM1136
222 223 224

config TARGET_MX31ADS
	bool "Support mx31ads"
225
	select CPU_ARM1136
226 227 228

config TARGET_MX31PDK
	bool "Support mx31pdk"
229
	select CPU_ARM1136
M
Masahiro Yamada 已提交
230
	select SUPPORT_SPL
231 232 233

config TARGET_WOODBURN
	bool "Support woodburn"
234
	select CPU_ARM1136
235 236 237

config TARGET_WOODBURN_SD
	bool "Support woodburn_sd"
238
	select CPU_ARM1136
M
Masahiro Yamada 已提交
239
	select SUPPORT_SPL
240 241 242

config TARGET_FLEA3
	bool "Support flea3"
243
	select CPU_ARM1136
244 245 246

config TARGET_MX35PDK
	bool "Support mx35pdk"
247
	select CPU_ARM1136
248

249 250
config ARCH_BCM283X
	bool "Broadcom BCM283X family"
M
Masahiro Yamada 已提交
251 252 253
	select DM
	select DM_SERIAL
	select DM_GPIO
254

255 256
config TARGET_VEXPRESS_CA15_TC2
	bool "Support vexpress_ca15_tc2"
257
	select CPU_V7
258 259
	select CPU_V7_HAS_NONSEC
	select CPU_V7_HAS_VIRT
260 261 262

config TARGET_VEXPRESS_CA5X2
	bool "Support vexpress_ca5x2"
263
	select CPU_V7
264 265 266

config TARGET_VEXPRESS_CA9X4
	bool "Support vexpress_ca9x4"
267
	select CPU_V7
268 269 270

config TARGET_KWB
	bool "Support kwb"
271
	select CPU_V7
M
Masahiro Yamada 已提交
272
	select SUPPORT_SPL
273 274 275

config TARGET_TSERIES
	bool "Support tseries"
276
	select CPU_V7
M
Masahiro Yamada 已提交
277
	select SUPPORT_SPL
278 279 280

config TARGET_CM_T335
	bool "Support cm_t335"
281
	select CPU_V7
M
Masahiro Yamada 已提交
282
	select SUPPORT_SPL
M
Masahiro Yamada 已提交
283 284 285
	select DM
	select DM_SERIAL
	select DM_GPIO
286 287 288

config TARGET_PEPPER
	bool "Support pepper"
289
	select CPU_V7
M
Masahiro Yamada 已提交
290
	select SUPPORT_SPL
M
Masahiro Yamada 已提交
291 292 293
	select DM
	select DM_SERIAL
	select DM_GPIO
294 295 296

config TARGET_AM335X_IGEP0033
	bool "Support am335x_igep0033"
297
	select CPU_V7
M
Masahiro Yamada 已提交
298
	select SUPPORT_SPL
M
Masahiro Yamada 已提交
299 300 301
	select DM
	select DM_SERIAL
	select DM_GPIO
302 303 304

config TARGET_PCM051
	bool "Support pcm051"
305
	select CPU_V7
M
Masahiro Yamada 已提交
306
	select SUPPORT_SPL
M
Masahiro Yamada 已提交
307 308 309
	select DM
	select DM_SERIAL
	select DM_GPIO
310 311 312

config TARGET_DRACO
	bool "Support draco"
313
	select CPU_V7
M
Masahiro Yamada 已提交
314
	select SUPPORT_SPL
315

316 317
config TARGET_THUBAN
	bool "Support thuban"
318
	select CPU_V7
M
Masahiro Yamada 已提交
319
	select SUPPORT_SPL
320

321 322 323 324 325
config TARGET_RASTABAN
	bool "Support rastaban"
	select CPU_V7
	select SUPPORT_SPL

326 327
config TARGET_PXM2
	bool "Support pxm2"
328
	select CPU_V7
M
Masahiro Yamada 已提交
329
	select SUPPORT_SPL
330 331 332

config TARGET_RUT
	bool "Support rut"
333
	select CPU_V7
M
Masahiro Yamada 已提交
334
	select SUPPORT_SPL
335 336 337

config TARGET_PENGWYN
	bool "Support pengwyn"
338
	select CPU_V7
M
Masahiro Yamada 已提交
339
	select SUPPORT_SPL
M
Masahiro Yamada 已提交
340 341 342
	select DM
	select DM_SERIAL
	select DM_GPIO
343

344 345 346 347 348 349 350 351
config TARGET_AM335X_BALTOS
	bool "Support am335x_baltos"
	select CPU_V7
	select SUPPORT_SPL
	select DM
	select DM_SERIAL
	select DM_GPIO

352 353
config TARGET_AM335X_EVM
	bool "Support am335x_evm"
354
	select CPU_V7
M
Masahiro Yamada 已提交
355
	select SUPPORT_SPL
M
Masahiro Yamada 已提交
356 357 358
	select DM
	select DM_SERIAL
	select DM_GPIO
359

360 361 362 363 364 365 366
config TARGET_AM335X_SL50
	bool "Support am335x_sl50"
	select CPU_V7
	select SUPPORT_SPL
	select DM
	select DM_SERIAL

367 368
config TARGET_AM43XX_EVM
	bool "Support am43xx_evm"
369
	select CPU_V7
M
Masahiro Yamada 已提交
370
	select SUPPORT_SPL
371

372 373 374 375
config TARGET_BAV335X
	bool "Support bav335x"
	select CPU_V7
	select SUPPORT_SPL
376 377
	select DM
	select DM_SERIAL
378 379 380 381 382 383 384 385 386
	help
	  The BAV335x OEM Network Processor integrates all the functions of an
	  embedded network computer in a small, easy to use SODIMM module which
	  incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
	  processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
	  ethernet with simple connection to external connectors.

	  For more information, visit: http://birdland.com/oem

387 388
config TARGET_TI814X_EVM
	bool "Support ti814x_evm"
389
	select CPU_V7
M
Masahiro Yamada 已提交
390
	select SUPPORT_SPL
391 392 393

config TARGET_TI816X_EVM
	bool "Support ti816x_evm"
394
	select CPU_V7
M
Masahiro Yamada 已提交
395
	select SUPPORT_SPL
396 397 398

config TARGET_BCM28155_AP
	bool "Support bcm28155_ap"
399
	select CPU_V7
400

S
Steve Rae 已提交
401 402
config TARGET_BCMCYGNUS
	bool "Support bcmcygnus"
403
	select CPU_V7
404

S
Steve Rae 已提交
405 406
config TARGET_BCMNSP
	bool "Support bcmnsp"
407
	select CPU_V7
408

409 410
config ARCH_EXYNOS
	bool "Samsung EXYNOS"
411
	select CPU_V7
M
Masahiro Yamada 已提交
412 413 414 415 416
	select DM
	select DM_SPI_FLASH
	select DM_SERIAL
	select DM_SPI
	select DM_GPIO
417

418 419
config ARCH_S5PC1XX
	bool "Samsung S5PC1XX"
420
	select CPU_V7
M
Masahiro Yamada 已提交
421 422 423
	select DM
	select DM_SERIAL
	select DM_GPIO
424

425 426
config ARCH_HIGHBANK
	bool "Calxeda Highbank"
427
	select CPU_V7
428

429 430
config ARCH_INTEGRATOR
	bool "ARM Ltd. Integrator family"
431 432
	select DM
	select DM_SERIAL
433

434 435
config ARCH_KEYSTONE
	bool "TI Keystone"
436
	select CPU_V7
M
Masahiro Yamada 已提交
437
	select SUPPORT_SPL
438

439 440 441 442
config ARCH_MX7
	bool "Freescale MX7"
	select CPU_V7

443 444 445 446
config ARCH_MX6
	bool "Freescale MX6"
	select CPU_V7

447 448 449 450
config ARCH_MX5
	bool "Freescale MX5"
	select CPU_V7

451 452
config TARGET_M53EVK
	bool "Support m53evk"
453
	select CPU_V7
M
Masahiro Yamada 已提交
454
	select SUPPORT_SPL
455 456 457

config TARGET_MX51EVK
	bool "Support mx51evk"
458
	select CPU_V7
459 460 461

config TARGET_MX53ARD
	bool "Support mx53ard"
462
	select CPU_V7
463 464 465

config TARGET_MX53EVK
	bool "Support mx53evk"
466
	select CPU_V7
467 468 469

config TARGET_MX53LOCO
	bool "Support mx53loco"
470
	select CPU_V7
471 472 473

config TARGET_MX53SMD
	bool "Support mx53smd"
474
	select CPU_V7
475

476 477
config OMAP34XX
	bool "OMAP34XX SoC"
478
	select CPU_V7
479

480 481
config OMAP44XX
	bool "OMAP44XX SoC"
482
	select CPU_V7
M
Masahiro Yamada 已提交
483
	select SUPPORT_SPL
484

485 486
config OMAP54XX
	bool "OMAP54XX SoC"
487
	select CPU_V7
M
Masahiro Yamada 已提交
488
	select SUPPORT_SPL
489

490 491
config RMOBILE
	bool "Renesas ARM SoCs"
492
	select CPU_V7
493

494 495
config ARCH_SOCFPGA
	bool "Altera SOCFPGA family"
496
	select CPU_V7
M
Masahiro Yamada 已提交
497
	select SUPPORT_SPL
498 499
	select OF_CONTROL
	select SPL_OF_CONTROL
500 501 502
	select DM
	select DM_SPI_FLASH
	select DM_SPI
503

504 505 506 507 508
config TARGET_CM_T43
	bool "Support cm_t43"
	select CPU_V7
	select SUPPORT_SPL

509 510
config ARCH_SUNXI
	bool "Support sunxi (Allwinner) SoCs"
511
	select CMD_USB
512 513
	select DM
	select DM_GPIO
514 515
	select DM_ETH
	select DM_SERIAL
516
	select DM_USB
517 518
	select OF_CONTROL
	select OF_SEPARATE
H
Hans de Goede 已提交
519
	select SPL_STACK_R if !MACH_SUN9I
520
	select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I
521
	select USB
522
	select USB_STORAGE
523
	select USB_KEYBOARD
C
Chen-Yu Tsai 已提交
524

525 526 527 528
config TARGET_TS4800
	bool "Support TS4800"
	select CPU_V7

529 530
config TARGET_VF610TWR
	bool "Support vf610twr"
531
	select CPU_V7
532

533 534 535 536
config TARGET_COLIBRI_VF
	bool "Support Colibri VF50/61"
	select CPU_V7

537 538 539 540
config TARGET_PCM052
	bool "Support pcm-052"
	select CPU_V7

541
config ARCH_ZYNQ
542
	bool "Xilinx Zynq Platform"
543
	select CPU_V7
M
Masahiro Yamada 已提交
544
	select SUPPORT_SPL
545
	select OF_CONTROL
546
	select DM
547 548
	select DM_SPI
	select DM_SPI_FLASH
549

550
config ARCH_ZYNQMP
M
Michal Simek 已提交
551 552 553
	bool "Support Xilinx ZynqMP Platform"
	select ARM64

554 555
config TEGRA
	bool "NVIDIA Tegra"
556

557
config TARGET_VEXPRESS64_AEMV8A
558
	bool "Support vexpress_aemv8a"
559
	select ARM64
560

561 562 563 564 565
config TARGET_VEXPRESS64_BASE_FVP
	bool "Support Versatile Express ARMv8a FVP BASE model"
	select ARM64
	select SEMIHOSTING

566 567 568 569 570 571 572 573 574
config TARGET_VEXPRESS64_BASE_FVP_DRAM
	bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
	select ARM64
	help
	  This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
	  the default config to allow the user to load the images directly into
	  DRAM using model parameters rather than by using semi-hosting to load
	  the files from the host filesystem.

575 576 577 578
config TARGET_VEXPRESS64_JUNO
	bool "Support Versatile Express Juno Development Platform"
	select ARM64

579 580
config TARGET_LS2085A_EMU
	bool "Support ls2085a_emu"
581
	select ARM64
582
	select ARMV8_MULTIENTRY
583 584 585

config TARGET_LS2085A_SIMU
	bool "Support ls2085a_simu"
586
	select ARM64
587
	select ARMV8_MULTIENTRY
588

589 590 591 592
config TARGET_LS2085AQDS
	bool "Support ls2085aqds"
	select ARM64
	select ARMV8_MULTIENTRY
S
Scott Wood 已提交
593
	select SUPPORT_SPL
594 595 596 597 598 599
	help
	  Support for Freescale LS2085AQDS platform
	  The LS2085A Development System (QDS) is a high-performance
	  development platform that supports the QorIQ LS2085A
	  Layerscape Architecture processor.

600 601 602 603
config TARGET_LS2085ARDB
	bool "Support ls2085ardb"
	select ARM64
	select ARMV8_MULTIENTRY
604
	select SUPPORT_SPL
605 606 607 608 609 610
	help
	  Support for Freescale LS2085ARDB platform.
	  The LS2085A Reference design board (RDB) is a high-performance
	  development platform that supports the QorIQ LS2085A
	  Layerscape Architecture processor.

611 612 613
config TARGET_HIKEY
	bool "Support HiKey 96boards Consumer Edition Platform"
	select ARM64
614 615
	select DM
	select DM_GPIO
616
	select DM_SERIAL
617 618 619 620
	  help
	  Support for HiKey 96boards platform. It features a HI6220
	  SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.

621
config TARGET_LS1021AQDS
622
	bool "Support ls1021aqds"
623
	select CPU_V7
A
Alison Wang 已提交
624
	select SUPPORT_SPL
625
config TARGET_LS1021ATWR
626
	bool "Support ls1021atwr"
627
	select CPU_V7
A
Alison Wang 已提交
628
	select SUPPORT_SPL
629

630 631 632
config TARGET_LS1043ARDB
	bool "Support ls1043ardb"
	select ARM64
633
	select ARMV8_MULTIENTRY
634
	select SUPPORT_SPL
635 636 637
	help
	  Support for Freescale LS1043ARDB platform.

638 639
config TARGET_H2200
	bool "Support h2200"
640
	select CPU_PXA
641 642 643

config TARGET_COLIBRI_PXA270
	bool "Support colibri_pxa270"
644
	select CPU_PXA
645

646
config ARCH_UNIPHIER
647
	bool "Socionext UniPhier SoCs"
648
	select CPU_V7
M
Masahiro Yamada 已提交
649
	select SUPPORT_SPL
M
Masahiro Yamada 已提交
650
	select SPL
651
	select OF_CONTROL
652
	select SPL_OF_CONTROL
653
	select DM
654
	select SPL_DM
655 656
	select DM_SERIAL
	select DM_I2C
657 658 659
	help
	  Support for UniPhier SoC family developed by Socionext Inc.
	  (formerly, System LSI Business Division of Panasonic Corporation)
660

661 662 663 664
config TARGET_STM32F429_DISCOVERY
	bool "Support STM32F429 Discovery"
	select CPU_V7M

665 666 667 668 669 670 671 672
config ARCH_ROCKCHIP
	bool "Support Rockchip SoCs"
	select SUPPORT_SPL
	select SPL
	select OF_CONTROL
	select CPU_V7
	select DM

673 674
endchoice

675 676
source "arch/arm/mach-at91/Kconfig"

677
source "arch/arm/mach-bcm283x/Kconfig"
678

679
source "arch/arm/mach-davinci/Kconfig"
680

681
source "arch/arm/mach-exynos/Kconfig"
682

683
source "arch/arm/mach-highbank/Kconfig"
684

685 686
source "arch/arm/mach-integrator/Kconfig"

687
source "arch/arm/mach-keystone/Kconfig"
688

689
source "arch/arm/mach-kirkwood/Kconfig"
690

691 692
source "arch/arm/mach-mvebu/Kconfig"

693 694
source "arch/arm/cpu/armv7/mx7/Kconfig"

695 696
source "arch/arm/cpu/armv7/mx6/Kconfig"

697 698
source "arch/arm/cpu/armv7/mx5/Kconfig"

699 700
source "arch/arm/cpu/armv7/omap3/Kconfig"

701 702
source "arch/arm/cpu/armv7/omap4/Kconfig"

703 704
source "arch/arm/cpu/armv7/omap5/Kconfig"

705
source "arch/arm/mach-orion5x/Kconfig"
706

707 708
source "arch/arm/cpu/armv7/rmobile/Kconfig"

709 710
source "arch/arm/mach-rockchip/Kconfig"

711 712
source "arch/arm/cpu/armv7/s5pc1xx/Kconfig"

713 714
source "arch/arm/mach-socfpga/Kconfig"

715
source "arch/arm/mach-tegra/Kconfig"
716

717
source "arch/arm/mach-uniphier/Kconfig"
718

719
source "arch/arm/mach-zynq/Kconfig"
720

721 722
source "arch/arm/cpu/armv7/Kconfig"

723 724
source "arch/arm/cpu/armv8/zynqmp/Kconfig"

725 726
source "arch/arm/cpu/armv8/Kconfig"

727 728
source "arch/arm/imx-common/Kconfig"

729 730 731 732
source "board/BuR/kwb/Kconfig"
source "board/BuR/tseries/Kconfig"
source "board/CarMediaLab/flea3/Kconfig"
source "board/Marvell/aspenite/Kconfig"
733
source "board/Marvell/db-88f6820-gp/Kconfig"
734
source "board/Marvell/db-mv784mp-gp/Kconfig"
735 736 737 738 739 740
source "board/Marvell/gplugd/Kconfig"
source "board/armadeus/apf27/Kconfig"
source "board/armltd/vexpress/Kconfig"
source "board/armltd/vexpress64/Kconfig"
source "board/bluegiga/apx4devkit/Kconfig"
source "board/broadcom/bcm28155_ap/Kconfig"
S
Steve Rae 已提交
741 742
source "board/broadcom/bcmcygnus/Kconfig"
source "board/broadcom/bcmnsp/Kconfig"
743 744
source "board/cirrus/edb93xx/Kconfig"
source "board/compulab/cm_t335/Kconfig"
745
source "board/compulab/cm_t43/Kconfig"
746 747 748 749
source "board/creative/xfi3/Kconfig"
source "board/denx/m28evk/Kconfig"
source "board/denx/m53evk/Kconfig"
source "board/freescale/ls2085a/Kconfig"
750
source "board/freescale/ls2085aqds/Kconfig"
751
source "board/freescale/ls2085ardb/Kconfig"
752
source "board/freescale/ls1021aqds/Kconfig"
753
source "board/freescale/ls1021atwr/Kconfig"
754
source "board/freescale/ls1043ardb/Kconfig"
755 756 757 758 759 760 761 762 763 764 765 766 767 768
source "board/freescale/mx23evk/Kconfig"
source "board/freescale/mx25pdk/Kconfig"
source "board/freescale/mx28evk/Kconfig"
source "board/freescale/mx31ads/Kconfig"
source "board/freescale/mx31pdk/Kconfig"
source "board/freescale/mx35pdk/Kconfig"
source "board/freescale/mx51evk/Kconfig"
source "board/freescale/mx53ard/Kconfig"
source "board/freescale/mx53evk/Kconfig"
source "board/freescale/mx53loco/Kconfig"
source "board/freescale/mx53smd/Kconfig"
source "board/freescale/vf610twr/Kconfig"
source "board/gumstix/pepper/Kconfig"
source "board/h2200/Kconfig"
769
source "board/hisilicon/hikey/Kconfig"
770 771
source "board/imx31_phycore/Kconfig"
source "board/isee/igep0033/Kconfig"
772
source "board/maxbcm/Kconfig"
773 774 775
source "board/mpl/vcma9/Kconfig"
source "board/olimex/mx23_olinuxino/Kconfig"
source "board/phytec/pcm051/Kconfig"
776
source "board/phytec/pcm052/Kconfig"
777 778 779 780 781 782 783 784 785 786 787 788 789
source "board/ppcag/bg0900/Kconfig"
source "board/samsung/smdk2410/Kconfig"
source "board/sandisk/sansa_fuze_plus/Kconfig"
source "board/schulercontrol/sc_sps_1/Kconfig"
source "board/siemens/draco/Kconfig"
source "board/siemens/pxm2/Kconfig"
source "board/siemens/rut/Kconfig"
source "board/silica/pengwyn/Kconfig"
source "board/spear/spear300/Kconfig"
source "board/spear/spear310/Kconfig"
source "board/spear/spear320/Kconfig"
source "board/spear/spear600/Kconfig"
source "board/spear/x600/Kconfig"
790
source "board/st/stm32f429-discovery/Kconfig"
791
source "board/st/stv0991/Kconfig"
792 793
source "board/sunxi/Kconfig"
source "board/syteco/zmx25/Kconfig"
794
source "board/tcl/sl50/Kconfig"
795 796
source "board/ti/am335x/Kconfig"
source "board/ti/am43xx/Kconfig"
797
source "board/birdland/bav335x/Kconfig"
798 799 800 801
source "board/ti/ti814x/Kconfig"
source "board/ti/ti816x/Kconfig"
source "board/timll/devkit3250/Kconfig"
source "board/toradex/colibri_pxa270/Kconfig"
802
source "board/toradex/colibri_vf/Kconfig"
803
source "board/technologic/ts4800/Kconfig"
804
source "board/vscom/baltos/Kconfig"
805
source "board/woodburn/Kconfig"
806
source "board/work-microwave/work_92105/Kconfig"
807

808 809
source "arch/arm/Kconfig.debug"

810
endmenu