1menu "ARM architecture" 2 depends on ARM 3 4config SYS_ARCH 5 default "arm" 6 7config ARM64 8 bool 9 10config HAS_VBAR 11 bool 12 13config HAS_THUMB2 14 bool 15 16config CPU_ARM720T 17 bool 18 19config CPU_ARM920T 20 bool 21 22config CPU_ARM926EJS 23 bool 24 25config CPU_ARM946ES 26 bool 27 28config CPU_ARM1136 29 bool 30 31config CPU_ARM1176 32 bool 33 select HAS_VBAR 34 35config CPU_V7 36 bool 37 select HAS_VBAR 38 select HAS_THUMB2 39 40config CPU_V7M 41 bool 42 select HAS_THUMB2 43 44config CPU_PXA 45 bool 46 47config CPU_SA1100 48 bool 49 50config SYS_CPU 51 default "arm720t" if CPU_ARM720T 52 default "arm920t" if CPU_ARM920T 53 default "arm926ejs" if CPU_ARM926EJS 54 default "arm946es" if CPU_ARM946ES 55 default "arm1136" if CPU_ARM1136 56 default "arm1176" if CPU_ARM1176 57 default "armv7" if CPU_V7 58 default "armv7m" if CPU_V7M 59 default "pxa" if CPU_PXA 60 default "sa1100" if CPU_SA1100 61 default "armv8" if ARM64 62 63config SEMIHOSTING 64 bool "support boot from semihosting" 65 help 66 In emulated environments, semihosting is a way for 67 the hosted environment to call out to the emulator to 68 retrieve files from the host machine. 69 70config SYS_L2CACHE_OFF 71 bool "L2cache off" 72 help 73 If SoC does not support L2CACHE or one do not want to enable 74 L2CACHE, choose this option. 75 76choice 77 prompt "Target select" 78 default TARGET_HIKEY 79 80config ARCH_AT91 81 bool "Atmel AT91" 82 83config TARGET_EDB93XX 84 bool "Support edb93xx" 85 select CPU_ARM920T 86 87config TARGET_VCMA9 88 bool "Support VCMA9" 89 select CPU_ARM920T 90 91config TARGET_SMDK2410 92 bool "Support smdk2410" 93 select CPU_ARM920T 94 95config TARGET_ASPENITE 96 bool "Support aspenite" 97 select CPU_ARM926EJS 98 99config TARGET_GPLUGD 100 bool "Support gplugd" 101 select CPU_ARM926EJS 102 103config ARCH_DAVINCI 104 bool "TI DaVinci" 105 select CPU_ARM926EJS 106 help 107 Support for TI's DaVinci platform. 108 109config KIRKWOOD 110 bool "Marvell Kirkwood" 111 select CPU_ARM926EJS 112 113config ARCH_MVEBU 114 bool "Marvell MVEBU family (Armada XP/38x)" 115 select CPU_V7 116 select SUPPORT_SPL 117 select OF_CONTROL 118 select OF_SEPARATE 119 select DM 120 select DM_ETH 121 select DM_SERIAL 122 select DM_SPI 123 select DM_SPI_FLASH 124 select SPL_DM 125 select SPL_DM_SEQ_ALIAS 126 select SPL_OF_CONTROL 127 select SPL_SIMPLE_BUS 128 129config TARGET_DEVKIT3250 130 bool "Support devkit3250" 131 select CPU_ARM926EJS 132 select SUPPORT_SPL 133 134config TARGET_WORK_92105 135 bool "Support work_92105" 136 select CPU_ARM926EJS 137 select SUPPORT_SPL 138 139config TARGET_MX25PDK 140 bool "Support mx25pdk" 141 select CPU_ARM926EJS 142 143config TARGET_ZMX25 144 bool "Support zmx25" 145 select CPU_ARM926EJS 146 147config TARGET_APF27 148 bool "Support apf27" 149 select CPU_ARM926EJS 150 select SUPPORT_SPL 151 152config TARGET_APX4DEVKIT 153 bool "Support apx4devkit" 154 select CPU_ARM926EJS 155 select SUPPORT_SPL 156 157config TARGET_XFI3 158 bool "Support xfi3" 159 select CPU_ARM926EJS 160 select SUPPORT_SPL 161 162config TARGET_M28EVK 163 bool "Support m28evk" 164 select CPU_ARM926EJS 165 select SUPPORT_SPL 166 167config TARGET_MX23EVK 168 bool "Support mx23evk" 169 select CPU_ARM926EJS 170 select SUPPORT_SPL 171 172config TARGET_MX28EVK 173 bool "Support mx28evk" 174 select CPU_ARM926EJS 175 select SUPPORT_SPL 176 177config TARGET_MX23_OLINUXINO 178 bool "Support mx23_olinuxino" 179 select CPU_ARM926EJS 180 select SUPPORT_SPL 181 182config TARGET_BG0900 183 bool "Support bg0900" 184 select CPU_ARM926EJS 185 select SUPPORT_SPL 186 187config TARGET_SANSA_FUZE_PLUS 188 bool "Support sansa_fuze_plus" 189 select CPU_ARM926EJS 190 select SUPPORT_SPL 191 192config TARGET_SC_SPS_1 193 bool "Support sc_sps_1" 194 select CPU_ARM926EJS 195 select SUPPORT_SPL 196 197config ORION5X 198 bool "Marvell Orion" 199 select CPU_ARM926EJS 200 201config TARGET_SPEAR300 202 bool "Support spear300" 203 select CPU_ARM926EJS 204 205config TARGET_SPEAR310 206 bool "Support spear310" 207 select CPU_ARM926EJS 208 209config TARGET_SPEAR320 210 bool "Support spear320" 211 select CPU_ARM926EJS 212 213config TARGET_SPEAR600 214 bool "Support spear600" 215 select CPU_ARM926EJS 216 217config TARGET_STV0991 218 bool "Support stv0991" 219 select CPU_V7 220 select DM 221 select DM_SERIAL 222 select DM_SPI 223 select DM_SPI_FLASH 224 select SPI_FLASH 225 226config TARGET_X600 227 bool "Support x600" 228 select CPU_ARM926EJS 229 select SUPPORT_SPL 230 231config TARGET_IMX31_PHYCORE 232 bool "Support imx31_phycore" 233 select CPU_ARM1136 234 235config TARGET_MX31ADS 236 bool "Support mx31ads" 237 select CPU_ARM1136 238 239config TARGET_MX31PDK 240 bool "Support mx31pdk" 241 select CPU_ARM1136 242 select SUPPORT_SPL 243 244config TARGET_WOODBURN 245 bool "Support woodburn" 246 select CPU_ARM1136 247 248config TARGET_WOODBURN_SD 249 bool "Support woodburn_sd" 250 select CPU_ARM1136 251 select SUPPORT_SPL 252 253config TARGET_FLEA3 254 bool "Support flea3" 255 select CPU_ARM1136 256 257config TARGET_MX35PDK 258 bool "Support mx35pdk" 259 select CPU_ARM1136 260 261config ARCH_BCM283X 262 bool "Broadcom BCM283X family" 263 select DM 264 select DM_SERIAL 265 select DM_GPIO 266 267config TARGET_VEXPRESS_CA15_TC2 268 bool "Support vexpress_ca15_tc2" 269 select CPU_V7 270 select CPU_V7_HAS_NONSEC 271 select CPU_V7_HAS_VIRT 272 273config TARGET_VEXPRESS_CA5X2 274 bool "Support vexpress_ca5x2" 275 select CPU_V7 276 277config TARGET_VEXPRESS_CA9X4 278 bool "Support vexpress_ca9x4" 279 select CPU_V7 280 281config TARGET_KWB 282 bool "Support kwb" 283 select CPU_V7 284 select SUPPORT_SPL 285 286config TARGET_TSERIES 287 bool "Support tseries" 288 select CPU_V7 289 select SUPPORT_SPL 290 291config TARGET_CM_T335 292 bool "Support cm_t335" 293 select CPU_V7 294 select SUPPORT_SPL 295 select DM 296 select DM_SERIAL 297 select DM_GPIO 298 299config TARGET_PEPPER 300 bool "Support pepper" 301 select CPU_V7 302 select SUPPORT_SPL 303 select DM 304 select DM_SERIAL 305 select DM_GPIO 306 307config TARGET_AM335X_IGEP0033 308 bool "Support am335x_igep0033" 309 select CPU_V7 310 select SUPPORT_SPL 311 select DM 312 select DM_SERIAL 313 select DM_GPIO 314 315config TARGET_PCM051 316 bool "Support pcm051" 317 select CPU_V7 318 select SUPPORT_SPL 319 select DM 320 select DM_SERIAL 321 select DM_GPIO 322 323config TARGET_DRACO 324 bool "Support draco" 325 select CPU_V7 326 select SUPPORT_SPL 327 328config TARGET_THUBAN 329 bool "Support thuban" 330 select CPU_V7 331 select SUPPORT_SPL 332 333config TARGET_RASTABAN 334 bool "Support rastaban" 335 select CPU_V7 336 select SUPPORT_SPL 337 338config TARGET_PXM2 339 bool "Support pxm2" 340 select CPU_V7 341 select SUPPORT_SPL 342 343config TARGET_RUT 344 bool "Support rut" 345 select CPU_V7 346 select SUPPORT_SPL 347 348config TARGET_PENGWYN 349 bool "Support pengwyn" 350 select CPU_V7 351 select SUPPORT_SPL 352 select DM 353 select DM_SERIAL 354 select DM_GPIO 355 356config TARGET_AM335X_BALTOS 357 bool "Support am335x_baltos" 358 select CPU_V7 359 select SUPPORT_SPL 360 select DM 361 select DM_SERIAL 362 select DM_GPIO 363 364config TARGET_AM335X_EVM 365 bool "Support am335x_evm" 366 select CPU_V7 367 select SUPPORT_SPL 368 select DM 369 select DM_SERIAL 370 select DM_GPIO 371 select TI_I2C_BOARD_DETECT 372 373config TARGET_AM335X_SL50 374 bool "Support am335x_sl50" 375 select CPU_V7 376 select SUPPORT_SPL 377 select DM 378 select DM_SERIAL 379 380config TARGET_AM43XX_EVM 381 bool "Support am43xx_evm" 382 select CPU_V7 383 select SUPPORT_SPL 384 select TI_I2C_BOARD_DETECT 385 386config TARGET_BAV335X 387 bool "Support bav335x" 388 select CPU_V7 389 select SUPPORT_SPL 390 select DM 391 select DM_SERIAL 392 help 393 The BAV335x OEM Network Processor integrates all the functions of an 394 embedded network computer in a small, easy to use SODIMM module which 395 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8 396 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit 397 ethernet with simple connection to external connectors. 398 399 For more information, visit: http://birdland.com/oem 400 401config TARGET_TI814X_EVM 402 bool "Support ti814x_evm" 403 select CPU_V7 404 select SUPPORT_SPL 405 406config TARGET_TI816X_EVM 407 bool "Support ti816x_evm" 408 select CPU_V7 409 select SUPPORT_SPL 410 411config TARGET_BCM28155_AP 412 bool "Support bcm28155_ap" 413 select CPU_V7 414 415config TARGET_BCMCYGNUS 416 bool "Support bcmcygnus" 417 select CPU_V7 418 419config TARGET_BCMNSP 420 bool "Support bcmnsp" 421 select CPU_V7 422 423config ARCH_EXYNOS 424 bool "Samsung EXYNOS" 425 select CPU_V7 426 select DM 427 select DM_SPI_FLASH 428 select DM_SERIAL 429 select DM_SPI 430 select DM_GPIO 431 select DM_KEYBOARD 432 433config ARCH_S5PC1XX 434 bool "Samsung S5PC1XX" 435 select CPU_V7 436 select DM 437 select DM_SERIAL 438 select DM_GPIO 439 440config ARCH_HIGHBANK 441 bool "Calxeda Highbank" 442 select CPU_V7 443 444config ARCH_INTEGRATOR 445 bool "ARM Ltd. Integrator family" 446 select DM 447 select DM_SERIAL 448 449config ARCH_KEYSTONE 450 bool "TI Keystone" 451 select CPU_V7 452 select SUPPORT_SPL 453 454config ARCH_MX7 455 bool "Freescale MX7" 456 select CPU_V7 457 458config ARCH_MX6 459 bool "Freescale MX6" 460 select CPU_V7 461 462config ARCH_MX5 463 bool "Freescale MX5" 464 select CPU_V7 465 466config TARGET_M53EVK 467 bool "Support m53evk" 468 select CPU_V7 469 select SUPPORT_SPL 470 471config TARGET_MX51EVK 472 bool "Support mx51evk" 473 select CPU_V7 474 475config TARGET_MX53ARD 476 bool "Support mx53ard" 477 select CPU_V7 478 479config TARGET_MX53EVK 480 bool "Support mx53evk" 481 select CPU_V7 482 483config TARGET_MX53LOCO 484 bool "Support mx53loco" 485 select CPU_V7 486 487config TARGET_MX53SMD 488 bool "Support mx53smd" 489 select CPU_V7 490 491config OMAP34XX 492 bool "OMAP34XX SoC" 493 select CPU_V7 494 495config OMAP44XX 496 bool "OMAP44XX SoC" 497 select CPU_V7 498 select SUPPORT_SPL 499 500config OMAP54XX 501 bool "OMAP54XX SoC" 502 select CPU_V7 503 select SUPPORT_SPL 504 505config RMOBILE 506 bool "Renesas ARM SoCs" 507 select CPU_V7 508 509config ARCH_SOCFPGA 510 bool "Altera SOCFPGA family" 511 select CPU_V7 512 select SUPPORT_SPL 513 select OF_CONTROL 514 select SPL_OF_CONTROL 515 select DM 516 select DM_SPI_FLASH 517 select DM_SPI 518 519config TARGET_CM_T43 520 bool "Support cm_t43" 521 select CPU_V7 522 select SUPPORT_SPL 523 524config ARCH_SUNXI 525 bool "Support sunxi (Allwinner) SoCs" 526 select CMD_USB 527 select DM 528 select DM_ETH 529 select DM_GPIO 530 select DM_KEYBOARD 531 select DM_SERIAL 532 select DM_USB 533 select OF_CONTROL 534 select OF_SEPARATE 535 select SPL_STACK_R if !MACH_SUN9I 536 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I 537 select SYS_NS16550 538 select USB 539 select USB_STORAGE 540 select USB_KEYBOARD 541 542config TARGET_TS4800 543 bool "Support TS4800" 544 select CPU_V7 545 546config TARGET_VF610TWR 547 bool "Support vf610twr" 548 select CPU_V7 549 550config TARGET_COLIBRI_VF 551 bool "Support Colibri VF50/61" 552 select CPU_V7 553 554config TARGET_PCM052 555 bool "Support pcm-052" 556 select CPU_V7 557 558config ARCH_ZYNQ 559 bool "Xilinx Zynq Platform" 560 select CPU_V7 561 select SUPPORT_SPL 562 select OF_CONTROL 563 select SPL_OF_CONTROL if SPL 564 select DM 565 select DM_ETH 566 select SPL_DM if SPL 567 select DM_MMC 568 select DM_SPI 569 select DM_SERIAL 570 select DM_SPI_FLASH 571 select SPL_SEPARATE_BSS if SPL 572 573config ARCH_ZYNQMP 574 bool "Support Xilinx ZynqMP Platform" 575 select ARM64 576 select DM 577 select OF_CONTROL 578 select DM_ETH 579 select DM_MMC 580 select DM_SERIAL 581 582config TEGRA 583 bool "NVIDIA Tegra" 584 585config TARGET_VEXPRESS64_AEMV8A 586 bool "Support vexpress_aemv8a" 587 select ARM64 588 589config TARGET_VEXPRESS64_BASE_FVP 590 bool "Support Versatile Express ARMv8a FVP BASE model" 591 select ARM64 592 select SEMIHOSTING 593 594config TARGET_VEXPRESS64_BASE_FVP_DRAM 595 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM" 596 select ARM64 597 help 598 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides 599 the default config to allow the user to load the images directly into 600 DRAM using model parameters rather than by using semi-hosting to load 601 the files from the host filesystem. 602 603config TARGET_VEXPRESS64_JUNO 604 bool "Support Versatile Express Juno Development Platform" 605 select ARM64 606 607config TARGET_LS2080A_EMU 608 bool "Support ls2080a_emu" 609 select ARM64 610 select ARMV8_MULTIENTRY 611 help 612 Support for Freescale LS2080A_EMU platform 613 The LS2080A Development System (EMULATOR) is a pre silicon 614 development platform that supports the QorIQ LS2080A 615 Layerscape Architecture processor. 616 617config TARGET_LS2080A_SIMU 618 bool "Support ls2080a_simu" 619 select ARM64 620 select ARMV8_MULTIENTRY 621 help 622 Support for Freescale LS2080A_SIMU platform 623 The LS2080A Development System (QDS) is a pre silicon 624 development platform that supports the QorIQ LS2080A 625 Layerscape Architecture processor. 626 627config TARGET_LS2080AQDS 628 bool "Support ls2080aqds" 629 select ARM64 630 select ARMV8_MULTIENTRY 631 select SUPPORT_SPL 632 help 633 Support for Freescale LS2080AQDS platform 634 The LS2080A Development System (QDS) is a high-performance 635 development platform that supports the QorIQ LS2080A 636 Layerscape Architecture processor. 637 638config TARGET_LS2080ARDB 639 bool "Support ls2080ardb" 640 select ARM64 641 select ARMV8_MULTIENTRY 642 select SUPPORT_SPL 643 help 644 Support for Freescale LS2080ARDB platform. 645 The LS2080A Reference design board (RDB) is a high-performance 646 development platform that supports the QorIQ LS2080A 647 Layerscape Architecture processor. 648 649config TARGET_HIKEY 650 bool "Support HiKey 96boards Consumer Edition Platform" 651 select ARM64 652 select DM 653 select DM_GPIO 654 select DM_SERIAL 655 help 656 Support for HiKey 96boards platform. It features a HI6220 657 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. 658 659config TARGET_LS1021AQDS 660 bool "Support ls1021aqds" 661 select CPU_V7 662 select SUPPORT_SPL 663config TARGET_LS1021ATWR 664 bool "Support ls1021atwr" 665 select CPU_V7 666 select SUPPORT_SPL 667 668config TARGET_LS1043AQDS 669 bool "Support ls1043aqds" 670 select ARM64 671 select ARMV8_MULTIENTRY 672 select SUPPORT_SPL 673 help 674 Support for Freescale LS1043AQDS platform. 675 676config TARGET_LS1043ARDB 677 bool "Support ls1043ardb" 678 select ARM64 679 select ARMV8_MULTIENTRY 680 select SUPPORT_SPL 681 help 682 Support for Freescale LS1043ARDB platform. 683 684config TARGET_H2200 685 bool "Support h2200" 686 select CPU_PXA 687 688config TARGET_COLIBRI_PXA270 689 bool "Support colibri_pxa270" 690 select CPU_PXA 691 692config ARCH_UNIPHIER 693 bool "Socionext UniPhier SoCs" 694 select CLK_UNIPHIER 695 select SUPPORT_SPL 696 select SPL 697 select OF_CONTROL 698 select SPL_OF_CONTROL 699 select DM 700 select SPL_DM 701 select DM_GPIO 702 select DM_SERIAL 703 select DM_I2C 704 select DM_MMC 705 help 706 Support for UniPhier SoC family developed by Socionext Inc. 707 (formerly, System LSI Business Division of Panasonic Corporation) 708 709config STM32 710 bool "Support STM32" 711 select CPU_V7M 712 select DM 713 select DM_SERIAL 714 715config ARCH_ROCKCHIP 716 bool "Support Rockchip SoCs" 717 select SUPPORT_SPL 718 select SPL 719 select OF_CONTROL 720 select CPU_V7 721 select DM 722 723config TARGET_THUNDERX_88XX 724 bool "Support ThunderX 88xx" 725 select OF_CONTROL 726 727endchoice 728 729source "arch/arm/mach-at91/Kconfig" 730 731source "arch/arm/mach-bcm283x/Kconfig" 732 733source "arch/arm/mach-davinci/Kconfig" 734 735source "arch/arm/mach-exynos/Kconfig" 736 737source "arch/arm/mach-highbank/Kconfig" 738 739source "arch/arm/mach-integrator/Kconfig" 740 741source "arch/arm/mach-keystone/Kconfig" 742 743source "arch/arm/mach-kirkwood/Kconfig" 744 745source "arch/arm/mach-mvebu/Kconfig" 746 747source "arch/arm/cpu/armv7/mx7/Kconfig" 748 749source "arch/arm/cpu/armv7/mx6/Kconfig" 750 751source "arch/arm/cpu/armv7/mx5/Kconfig" 752 753source "arch/arm/cpu/armv7/omap3/Kconfig" 754 755source "arch/arm/cpu/armv7/omap4/Kconfig" 756 757source "arch/arm/cpu/armv7/omap5/Kconfig" 758 759source "arch/arm/mach-orion5x/Kconfig" 760 761source "arch/arm/cpu/armv7/rmobile/Kconfig" 762 763source "arch/arm/mach-rockchip/Kconfig" 764 765source "arch/arm/mach-s5pc1xx/Kconfig" 766 767source "arch/arm/mach-socfpga/Kconfig" 768 769source "arch/arm/mach-stm32/Kconfig" 770 771source "arch/arm/mach-tegra/Kconfig" 772 773source "arch/arm/mach-uniphier/Kconfig" 774 775source "arch/arm/mach-zynq/Kconfig" 776 777source "arch/arm/cpu/armv7/Kconfig" 778 779source "arch/arm/cpu/armv8/zynqmp/Kconfig" 780 781source "arch/arm/cpu/armv8/Kconfig" 782 783source "arch/arm/imx-common/Kconfig" 784 785source "board/BuR/kwb/Kconfig" 786source "board/BuR/tseries/Kconfig" 787source "board/CarMediaLab/flea3/Kconfig" 788source "board/Marvell/aspenite/Kconfig" 789source "board/Marvell/gplugd/Kconfig" 790source "board/armadeus/apf27/Kconfig" 791source "board/armltd/vexpress/Kconfig" 792source "board/armltd/vexpress64/Kconfig" 793source "board/bluegiga/apx4devkit/Kconfig" 794source "board/broadcom/bcm28155_ap/Kconfig" 795source "board/broadcom/bcmcygnus/Kconfig" 796source "board/broadcom/bcmnsp/Kconfig" 797source "board/cavium/thunderx/Kconfig" 798source "board/cirrus/edb93xx/Kconfig" 799source "board/compulab/cm_t335/Kconfig" 800source "board/compulab/cm_t43/Kconfig" 801source "board/creative/xfi3/Kconfig" 802source "board/denx/m28evk/Kconfig" 803source "board/denx/m53evk/Kconfig" 804source "board/freescale/ls2080a/Kconfig" 805source "board/freescale/ls2080aqds/Kconfig" 806source "board/freescale/ls2080ardb/Kconfig" 807source "board/freescale/ls1021aqds/Kconfig" 808source "board/freescale/ls1043aqds/Kconfig" 809source "board/freescale/ls1021atwr/Kconfig" 810source "board/freescale/ls1043ardb/Kconfig" 811source "board/freescale/mx23evk/Kconfig" 812source "board/freescale/mx25pdk/Kconfig" 813source "board/freescale/mx28evk/Kconfig" 814source "board/freescale/mx31ads/Kconfig" 815source "board/freescale/mx31pdk/Kconfig" 816source "board/freescale/mx35pdk/Kconfig" 817source "board/freescale/mx51evk/Kconfig" 818source "board/freescale/mx53ard/Kconfig" 819source "board/freescale/mx53evk/Kconfig" 820source "board/freescale/mx53loco/Kconfig" 821source "board/freescale/mx53smd/Kconfig" 822source "board/freescale/vf610twr/Kconfig" 823source "board/gumstix/pepper/Kconfig" 824source "board/h2200/Kconfig" 825source "board/hisilicon/hikey/Kconfig" 826source "board/imx31_phycore/Kconfig" 827source "board/isee/igep0033/Kconfig" 828source "board/mpl/vcma9/Kconfig" 829source "board/olimex/mx23_olinuxino/Kconfig" 830source "board/phytec/pcm051/Kconfig" 831source "board/phytec/pcm052/Kconfig" 832source "board/ppcag/bg0900/Kconfig" 833source "board/samsung/smdk2410/Kconfig" 834source "board/sandisk/sansa_fuze_plus/Kconfig" 835source "board/schulercontrol/sc_sps_1/Kconfig" 836source "board/siemens/draco/Kconfig" 837source "board/siemens/pxm2/Kconfig" 838source "board/siemens/rut/Kconfig" 839source "board/silica/pengwyn/Kconfig" 840source "board/spear/spear300/Kconfig" 841source "board/spear/spear310/Kconfig" 842source "board/spear/spear320/Kconfig" 843source "board/spear/spear600/Kconfig" 844source "board/spear/x600/Kconfig" 845source "board/st/stv0991/Kconfig" 846source "board/sunxi/Kconfig" 847source "board/syteco/zmx25/Kconfig" 848source "board/tcl/sl50/Kconfig" 849source "board/ti/am335x/Kconfig" 850source "board/ti/am43xx/Kconfig" 851source "board/birdland/bav335x/Kconfig" 852source "board/ti/ti814x/Kconfig" 853source "board/ti/ti816x/Kconfig" 854source "board/timll/devkit3250/Kconfig" 855source "board/toradex/colibri_pxa270/Kconfig" 856source "board/toradex/colibri_vf/Kconfig" 857source "board/technologic/ts4800/Kconfig" 858source "board/vscom/baltos/Kconfig" 859source "board/woodburn/Kconfig" 860source "board/work-microwave/work_92105/Kconfig" 861 862source "arch/arm/Kconfig.debug" 863 864endmenu 865