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_ETAMIN 365 bool "Support etamin" 366 select CPU_V7 367 select SUPPORT_SPL 368 369config TARGET_PXM2 370 bool "Support pxm2" 371 select CPU_V7 372 select SUPPORT_SPL 373 374config TARGET_RUT 375 bool "Support rut" 376 select CPU_V7 377 select SUPPORT_SPL 378 379config TARGET_PENGWYN 380 bool "Support pengwyn" 381 select CPU_V7 382 select SUPPORT_SPL 383 select DM 384 select DM_SERIAL 385 select DM_GPIO 386 387config TARGET_AM335X_BALTOS 388 bool "Support am335x_baltos" 389 select CPU_V7 390 select SUPPORT_SPL 391 select DM 392 select DM_SERIAL 393 select DM_GPIO 394 395config TARGET_AM335X_EVM 396 bool "Support am335x_evm" 397 select CPU_V7 398 select SUPPORT_SPL 399 select DM 400 select DM_SERIAL 401 select DM_GPIO 402 select TI_I2C_BOARD_DETECT 403 404config TARGET_AM335X_SHC 405 bool "Support am335x based shc board from bosch" 406 select CPU_V7 407 select SUPPORT_SPL 408 select DM 409 select DM_SERIAL 410 select DM_GPIO 411 412config TARGET_AM335X_SL50 413 bool "Support am335x_sl50" 414 select CPU_V7 415 select SUPPORT_SPL 416 select DM 417 select DM_SERIAL 418 419config TARGET_BAV335X 420 bool "Support bav335x" 421 select CPU_V7 422 select SUPPORT_SPL 423 select DM 424 select DM_SERIAL 425 help 426 The BAV335x OEM Network Processor integrates all the functions of an 427 embedded network computer in a small, easy to use SODIMM module which 428 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8 429 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit 430 ethernet with simple connection to external connectors. 431 432 For more information, visit: http://birdland.com/oem 433 434config TARGET_TI814X_EVM 435 bool "Support ti814x_evm" 436 select CPU_V7 437 select SUPPORT_SPL 438 439config TARGET_TI816X_EVM 440 bool "Support ti816x_evm" 441 select CPU_V7 442 select SUPPORT_SPL 443 444config TARGET_BCM23550_W1D 445 bool "Support bcm23550_w1d" 446 select CPU_V7 447 448config TARGET_BCM28155_AP 449 bool "Support bcm28155_ap" 450 select CPU_V7 451 452config TARGET_BCMCYGNUS 453 bool "Support bcmcygnus" 454 select CPU_V7 455 456config TARGET_BCMNSP 457 bool "Support bcmnsp" 458 select CPU_V7 459 460config ARCH_EXYNOS 461 bool "Samsung EXYNOS" 462 select DM 463 select DM_SPI_FLASH 464 select DM_SERIAL 465 select DM_SPI 466 select DM_GPIO 467 select DM_KEYBOARD 468 469config ARCH_S5PC1XX 470 bool "Samsung S5PC1XX" 471 select CPU_V7 472 select DM 473 select DM_SERIAL 474 select DM_GPIO 475 476config ARCH_HIGHBANK 477 bool "Calxeda Highbank" 478 select CPU_V7 479 480config ARCH_INTEGRATOR 481 bool "ARM Ltd. Integrator family" 482 select DM 483 select DM_SERIAL 484 485config ARCH_KEYSTONE 486 bool "TI Keystone" 487 select CPU_V7 488 select SUPPORT_SPL 489 select CMD_POWEROFF 490 491config ARCH_MESON 492 bool "Amlogic Meson" 493 help 494 Support for the Meson SoC family developed by Amlogic Inc., 495 targeted at media players and tablet computers. We currently 496 support the S905 (GXBaby) 64-bit SoC. 497 498config ARCH_MX7 499 bool "Freescale MX7" 500 select CPU_V7 501 502config ARCH_MX6 503 bool "Freescale MX6" 504 select CPU_V7 505 506config ARCH_MX5 507 bool "Freescale MX5" 508 select CPU_V7 509 510config TARGET_M53EVK 511 bool "Support m53evk" 512 select CPU_V7 513 select SUPPORT_SPL 514 515config TARGET_MX51EVK 516 bool "Support mx51evk" 517 select CPU_V7 518 519config TARGET_MX53ARD 520 bool "Support mx53ard" 521 select CPU_V7 522 523config TARGET_MX53EVK 524 bool "Support mx53evk" 525 select CPU_V7 526 527config TARGET_MX53LOCO 528 bool "Support mx53loco" 529 select CPU_V7 530 531config TARGET_MX53SMD 532 bool "Support mx53smd" 533 select CPU_V7 534 535config OMAP34XX 536 bool "OMAP34XX SoC" 537 select CPU_V7 538 539config OMAP44XX 540 bool "OMAP44XX SoC" 541 select CPU_V7 542 select SUPPORT_SPL 543 544config OMAP54XX 545 bool "OMAP54XX SoC" 546 select CPU_V7 547 select SUPPORT_SPL 548 549config AM43XX 550 bool "AM43XX SoC" 551 select CPU_V7 552 select SUPPORT_SPL 553 help 554 Support for AM43xx SOC from Texas Instruments. 555 The AM43xx high performance SOC features a Cortex-A9 556 ARM core, a quad core PRU-ICSS for industrial Ethernet 557 protocols, dual camera support, optional 3D graphics 558 and an optional customer programmable secure boot. 559 560config RMOBILE 561 bool "Renesas ARM SoCs" 562 select CPU_V7 563 564config TARGET_S32V234EVB 565 bool "Support s32v234evb" 566 select ARM64 567 568config ARCH_SNAPDRAGON 569 bool "Qualcomm Snapdragon SoCs" 570 select ARM64 571 select DM 572 select DM_GPIO 573 select DM_SERIAL 574 select SPMI 575 select OF_CONTROL 576 select OF_SEPARATE 577 578config ARCH_SOCFPGA 579 bool "Altera SOCFPGA family" 580 select CPU_V7 581 select SUPPORT_SPL 582 select OF_CONTROL 583 select SPL_OF_CONTROL 584 select DM 585 select DM_SPI_FLASH 586 select DM_SPI 587 588config TARGET_CM_T43 589 bool "Support cm_t43" 590 select CPU_V7 591 select SUPPORT_SPL 592 593config ARCH_SUNXI 594 bool "Support sunxi (Allwinner) SoCs" 595 select CMD_BOOTZ 596 select CMD_DHCP 597 select CMD_EXT2 598 select CMD_EXT4 599 select CMD_FAT 600 select CMD_FS_GENERIC 601 select CMD_GPIO 602 select CMD_MII 603 select CMD_MMC if MMC 604 select CMD_PING 605 select CMD_USB 606 select DM 607 select DM_ETH 608 select DM_GPIO 609 select DM_KEYBOARD 610 select DM_SERIAL 611 select DM_USB 612 select HUSH_PARSER 613 select OF_BOARD_SETUP 614 select OF_CONTROL 615 select OF_SEPARATE 616 select SPL_STACK_R if SUPPORT_SPL 617 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL 618 select SYS_NS16550 619 select USB 620 select USB_STORAGE 621 select USB_KEYBOARD 622 623config TARGET_TS4800 624 bool "Support TS4800" 625 select CPU_V7 626 627config TARGET_VF610TWR 628 bool "Support vf610twr" 629 select CPU_V7 630 631config TARGET_COLIBRI_VF 632 bool "Support Colibri VF50/61" 633 select CPU_V7 634 635config TARGET_PCM052 636 bool "Support pcm-052" 637 select CPU_V7 638 639config ARCH_ZYNQ 640 bool "Xilinx Zynq Platform" 641 select CPU_V7 642 select SUPPORT_SPL 643 select OF_CONTROL 644 select SPL_OF_CONTROL if SPL 645 select DM 646 select DM_ETH 647 select DM_GPIO 648 select SPL_DM if SPL 649 select DM_MMC 650 select DM_SPI 651 select DM_SERIAL 652 select DM_SPI_FLASH 653 select SPL_SEPARATE_BSS if SPL 654 655config ARCH_ZYNQMP 656 bool "Support Xilinx ZynqMP Platform" 657 select ARM64 658 select DM 659 select OF_CONTROL 660 select DM_SERIAL 661 select SUPPORT_SPL 662 663config TEGRA 664 bool "NVIDIA Tegra" 665 666config TARGET_VEXPRESS64_AEMV8A 667 bool "Support vexpress_aemv8a" 668 select ARM64 669 670config TARGET_VEXPRESS64_BASE_FVP 671 bool "Support Versatile Express ARMv8a FVP BASE model" 672 select ARM64 673 select SEMIHOSTING 674 675config TARGET_VEXPRESS64_BASE_FVP_DRAM 676 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM" 677 select ARM64 678 help 679 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides 680 the default config to allow the user to load the images directly into 681 DRAM using model parameters rather than by using semi-hosting to load 682 the files from the host filesystem. 683 684config TARGET_VEXPRESS64_JUNO 685 bool "Support Versatile Express Juno Development Platform" 686 select ARM64 687 688config TARGET_LS2080A_EMU 689 bool "Support ls2080a_emu" 690 select ARM64 691 select ARMV8_MULTIENTRY 692 help 693 Support for Freescale LS2080A_EMU platform 694 The LS2080A Development System (EMULATOR) is a pre silicon 695 development platform that supports the QorIQ LS2080A 696 Layerscape Architecture processor. 697 698config TARGET_LS2080A_SIMU 699 bool "Support ls2080a_simu" 700 select ARM64 701 select ARMV8_MULTIENTRY 702 help 703 Support for Freescale LS2080A_SIMU platform 704 The LS2080A Development System (QDS) is a pre silicon 705 development platform that supports the QorIQ LS2080A 706 Layerscape Architecture processor. 707 708config TARGET_LS2080AQDS 709 bool "Support ls2080aqds" 710 select ARM64 711 select ARMV8_MULTIENTRY 712 select SUPPORT_SPL 713 help 714 Support for Freescale LS2080AQDS platform 715 The LS2080A Development System (QDS) is a high-performance 716 development platform that supports the QorIQ LS2080A 717 Layerscape Architecture processor. 718 719config TARGET_LS2080ARDB 720 bool "Support ls2080ardb" 721 select ARM64 722 select ARMV8_MULTIENTRY 723 select SUPPORT_SPL 724 help 725 Support for Freescale LS2080ARDB platform. 726 The LS2080A Reference design board (RDB) is a high-performance 727 development platform that supports the QorIQ LS2080A 728 Layerscape Architecture processor. 729 730config TARGET_HIKEY 731 bool "Support HiKey 96boards Consumer Edition Platform" 732 select ARM64 733 select DM 734 select DM_GPIO 735 select DM_SERIAL 736 select OF_CONTROL 737 help 738 Support for HiKey 96boards platform. It features a HI6220 739 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. 740 741config TARGET_LS1012AQDS 742 bool "Support ls1012aqds" 743 select ARM64 744 help 745 Support for Freescale LS1012AQDS platform. 746 The LS1012A Development System (QDS) is a high-performance 747 development platform that supports the QorIQ LS1012A 748 Layerscape Architecture processor. 749 750config TARGET_LS1012ARDB 751 bool "Support ls1012ardb" 752 select ARM64 753 help 754 Support for Freescale LS1012ARDB platform. 755 The LS1012A Reference design board (RDB) is a high-performance 756 development platform that supports the QorIQ LS1012A 757 Layerscape Architecture processor. 758 759config TARGET_LS1012AFRDM 760 bool "Support ls1012afrdm" 761 select ARM64 762 help 763 Support for Freescale LS1012AFRDM platform. 764 The LS1012A Freedom board (FRDM) is a high-performance 765 development platform that supports the QorIQ LS1012A 766 Layerscape Architecture processor. 767 768config TARGET_LS1021AQDS 769 bool "Support ls1021aqds" 770 select CPU_V7 771 select SUPPORT_SPL 772config TARGET_LS1021ATWR 773 bool "Support ls1021atwr" 774 select CPU_V7 775 select SUPPORT_SPL 776 777config TARGET_LS1043AQDS 778 bool "Support ls1043aqds" 779 select ARM64 780 select ARMV8_MULTIENTRY 781 select SUPPORT_SPL 782 help 783 Support for Freescale LS1043AQDS platform. 784 785config TARGET_LS1043ARDB 786 bool "Support ls1043ardb" 787 select ARM64 788 select ARMV8_MULTIENTRY 789 select SUPPORT_SPL 790 help 791 Support for Freescale LS1043ARDB platform. 792 793config TARGET_H2200 794 bool "Support h2200" 795 select CPU_PXA 796 797config TARGET_ZIPITZ2 798 bool "Support zipitz2" 799 select CPU_PXA 800 801config TARGET_COLIBRI_PXA270 802 bool "Support colibri_pxa270" 803 select CPU_PXA 804 805config ARCH_UNIPHIER 806 bool "Socionext UniPhier SoCs" 807 select CLK_UNIPHIER 808 select SUPPORT_SPL 809 select SPL 810 select OF_CONTROL 811 select SPL_OF_CONTROL 812 select DM 813 select SPL_DM 814 select DM_GPIO 815 select DM_SERIAL 816 select DM_I2C 817 select DM_MMC 818 help 819 Support for UniPhier SoC family developed by Socionext Inc. 820 (formerly, System LSI Business Division of Panasonic Corporation) 821 822config STM32 823 bool "Support STM32" 824 select CPU_V7M 825 select DM 826 select DM_SERIAL 827 828config ARCH_ROCKCHIP 829 bool "Support Rockchip SoCs" 830 select SUPPORT_SPL 831 select SPL 832 select OF_CONTROL 833 select CPU_V7 834 select DM 835 836config TARGET_THUNDERX_88XX 837 bool "Support ThunderX 88xx" 838 select ARM64 839 select OF_CONTROL 840 841endchoice 842 843source "arch/arm/mach-at91/Kconfig" 844 845source "arch/arm/mach-bcm283x/Kconfig" 846 847source "arch/arm/mach-davinci/Kconfig" 848 849source "arch/arm/mach-exynos/Kconfig" 850 851source "arch/arm/mach-highbank/Kconfig" 852 853source "arch/arm/mach-integrator/Kconfig" 854 855source "arch/arm/mach-keystone/Kconfig" 856 857source "arch/arm/mach-kirkwood/Kconfig" 858 859source "arch/arm/mach-mvebu/Kconfig" 860 861source "arch/arm/cpu/armv7/mx7/Kconfig" 862 863source "arch/arm/cpu/armv7/mx6/Kconfig" 864 865source "arch/arm/cpu/armv7/mx5/Kconfig" 866 867source "arch/arm/cpu/armv7/omap-common/Kconfig" 868 869source "arch/arm/mach-orion5x/Kconfig" 870 871source "arch/arm/cpu/armv7/rmobile/Kconfig" 872 873source "arch/arm/mach-meson/Kconfig" 874 875source "arch/arm/mach-rockchip/Kconfig" 876 877source "arch/arm/mach-s5pc1xx/Kconfig" 878 879source "arch/arm/mach-snapdragon/Kconfig" 880 881source "arch/arm/mach-socfpga/Kconfig" 882 883source "arch/arm/mach-stm32/Kconfig" 884 885source "arch/arm/mach-tegra/Kconfig" 886 887source "arch/arm/mach-uniphier/Kconfig" 888 889source "arch/arm/mach-zynq/Kconfig" 890 891source "arch/arm/cpu/armv7/Kconfig" 892 893source "arch/arm/cpu/armv8/zynqmp/Kconfig" 894 895source "arch/arm/cpu/armv8/Kconfig" 896 897source "arch/arm/imx-common/Kconfig" 898 899source "board/bosch/shc/Kconfig" 900source "board/BuR/kwb/Kconfig" 901source "board/BuR/tseries/Kconfig" 902source "board/CarMediaLab/flea3/Kconfig" 903source "board/Marvell/aspenite/Kconfig" 904source "board/Marvell/gplugd/Kconfig" 905source "board/armadeus/apf27/Kconfig" 906source "board/armltd/vexpress/Kconfig" 907source "board/armltd/vexpress64/Kconfig" 908source "board/bluegiga/apx4devkit/Kconfig" 909source "board/broadcom/bcm23550_w1d/Kconfig" 910source "board/broadcom/bcm28155_ap/Kconfig" 911source "board/broadcom/bcmcygnus/Kconfig" 912source "board/broadcom/bcmnsp/Kconfig" 913source "board/cavium/thunderx/Kconfig" 914source "board/cirrus/edb93xx/Kconfig" 915source "board/compulab/cm_t335/Kconfig" 916source "board/compulab/cm_t43/Kconfig" 917source "board/creative/xfi3/Kconfig" 918source "board/denx/m28evk/Kconfig" 919source "board/denx/m53evk/Kconfig" 920source "board/freescale/ls2080a/Kconfig" 921source "board/freescale/ls2080aqds/Kconfig" 922source "board/freescale/ls2080ardb/Kconfig" 923source "board/freescale/ls1021aqds/Kconfig" 924source "board/freescale/ls1043aqds/Kconfig" 925source "board/freescale/ls1021atwr/Kconfig" 926source "board/freescale/ls1043ardb/Kconfig" 927source "board/freescale/ls1012aqds/Kconfig" 928source "board/freescale/ls1012ardb/Kconfig" 929source "board/freescale/ls1012afrdm/Kconfig" 930source "board/freescale/mx23evk/Kconfig" 931source "board/freescale/mx25pdk/Kconfig" 932source "board/freescale/mx28evk/Kconfig" 933source "board/freescale/mx31ads/Kconfig" 934source "board/freescale/mx31pdk/Kconfig" 935source "board/freescale/mx35pdk/Kconfig" 936source "board/freescale/mx51evk/Kconfig" 937source "board/freescale/mx53ard/Kconfig" 938source "board/freescale/mx53evk/Kconfig" 939source "board/freescale/mx53loco/Kconfig" 940source "board/freescale/mx53smd/Kconfig" 941source "board/freescale/s32v234evb/Kconfig" 942source "board/freescale/vf610twr/Kconfig" 943source "board/gumstix/pepper/Kconfig" 944source "board/h2200/Kconfig" 945source "board/hisilicon/hikey/Kconfig" 946source "board/imx31_phycore/Kconfig" 947source "board/isee/igep0033/Kconfig" 948source "board/mpl/vcma9/Kconfig" 949source "board/olimex/mx23_olinuxino/Kconfig" 950source "board/phytec/pcm051/Kconfig" 951source "board/phytec/pcm052/Kconfig" 952source "board/ppcag/bg0900/Kconfig" 953source "board/samsung/smdk2410/Kconfig" 954source "board/sandisk/sansa_fuze_plus/Kconfig" 955source "board/schulercontrol/sc_sps_1/Kconfig" 956source "board/siemens/draco/Kconfig" 957source "board/siemens/pxm2/Kconfig" 958source "board/siemens/rut/Kconfig" 959source "board/silica/pengwyn/Kconfig" 960source "board/spear/spear300/Kconfig" 961source "board/spear/spear310/Kconfig" 962source "board/spear/spear320/Kconfig" 963source "board/spear/spear600/Kconfig" 964source "board/spear/x600/Kconfig" 965source "board/st/stv0991/Kconfig" 966source "board/sunxi/Kconfig" 967source "board/syteco/zmx25/Kconfig" 968source "board/tcl/sl50/Kconfig" 969source "board/ti/am335x/Kconfig" 970source "board/ti/am43xx/Kconfig" 971source "board/birdland/bav335x/Kconfig" 972source "board/ti/ti814x/Kconfig" 973source "board/ti/ti816x/Kconfig" 974source "board/timll/devkit3250/Kconfig" 975source "board/toradex/colibri_pxa270/Kconfig" 976source "board/toradex/colibri_vf/Kconfig" 977source "board/technologic/ts4800/Kconfig" 978source "board/vscom/baltos/Kconfig" 979source "board/woodburn/Kconfig" 980source "board/work-microwave/work_92105/Kconfig" 981source "board/zipitz2/Kconfig" 982 983source "arch/arm/Kconfig.debug" 984 985endmenu 986