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