1 menu "ARM architecture"
10 select SYS_CACHE_SHIFT_6
12 config DMA_ADDR_T_64BIT
22 # Used for compatibility with asm files copied from the kernel
23 config ARM_ASM_UNIFIED
27 # Used for compatibility with asm files copied from the kernel
31 # If set, the workarounds for these ARM errata are applied early during U-Boot
32 # startup. Note that in general these options force the workarounds to be
33 # applied; no CPU-type/version detection exists, unlike the similar options in
34 # the Linux kernel. Do not set these options unless they apply! Also note that
35 # the following can be machine specific errata. These do have ability to
36 # provide rudimentary version and machine specific checks, but expect no
38 # CONFIG_ARM_ERRATA_430973
39 # CONFIG_ARM_ERRATA_454179
40 # CONFIG_ARM_ERRATA_621766
41 # CONFIG_ARM_ERRATA_798870
42 # CONFIG_ARM_ERRATA_801819
43 config ARM_ERRATA_430973
46 config ARM_ERRATA_454179
49 config ARM_ERRATA_621766
52 config ARM_ERRATA_716044
55 config ARM_ERRATA_725233
58 config ARM_ERRATA_742230
61 config ARM_ERRATA_743622
64 config ARM_ERRATA_751472
67 config ARM_ERRATA_761320
70 config ARM_ERRATA_773022
73 config ARM_ERRATA_774769
76 config ARM_ERRATA_794072
79 config ARM_ERRATA_798870
82 config ARM_ERRATA_801819
85 config ARM_ERRATA_826974
88 config ARM_ERRATA_828024
91 config ARM_ERRATA_829520
94 config ARM_ERRATA_833069
97 config ARM_ERRATA_833471
100 config ARM_ERRATA_845369
103 config ARM_ERRATA_852421
106 config ARM_ERRATA_852423
111 select SYS_CACHE_SHIFT_5
115 select SYS_CACHE_SHIFT_5
119 select SYS_CACHE_SHIFT_5
123 select SYS_CACHE_SHIFT_5
127 select SYS_CACHE_SHIFT_5
132 select SYS_CACHE_SHIFT_5
138 select SYS_CACHE_SHIFT_6
144 select SYS_CACHE_SHIFT_5
148 select SYS_CACHE_SHIFT_5
152 select SYS_CACHE_SHIFT_5
155 default "arm720t" if CPU_ARM720T
156 default "arm920t" if CPU_ARM920T
157 default "arm926ejs" if CPU_ARM926EJS
158 default "arm946es" if CPU_ARM946ES
159 default "arm1136" if CPU_ARM1136
160 default "arm1176" if CPU_ARM1176
161 default "armv7" if CPU_V7
162 default "armv7m" if CPU_V7M
163 default "pxa" if CPU_PXA
164 default "sa1100" if CPU_SA1100
165 default "armv8" if ARM64
169 default 4 if CPU_ARM720T
170 default 4 if CPU_ARM920T
171 default 5 if CPU_ARM926EJS
172 default 5 if CPU_ARM946ES
173 default 6 if CPU_ARM1136
174 default 6 if CPU_ARM1176
178 default 4 if CPU_SA1100
181 config SYS_CACHE_SHIFT_5
184 config SYS_CACHE_SHIFT_6
187 config SYS_CACHE_SHIFT_7
190 config SYS_CACHELINE_SIZE
192 default 128 if SYS_CACHE_SHIFT_7
193 default 64 if SYS_CACHE_SHIFT_6
194 default 32 if SYS_CACHE_SHIFT_5
197 bool "Support for ARM SMC Calling Convention (SMCCC)"
198 depends on CPU_V7 || ARM64
201 Say Y here if you want to enable ARM SMC Calling Convention.
202 This should be enabled if U-Boot needs to communicate with system
203 firmware (for example, PSCI) according to SMCCC.
206 bool "support boot from semihosting"
208 In emulated environments, semihosting is a way for
209 the hosted environment to call out to the emulator to
210 retrieve files from the host machine.
212 config SYS_THUMB_BUILD
213 bool "Build U-Boot using the Thumb instruction set"
216 Use this flag to build U-Boot using the Thumb instruction set for
217 ARM architectures. Thumb instruction set provides better code
218 density. For ARM architectures that support Thumb2 this flag will
219 result in Thumb2 code generated by GCC.
221 config SPL_SYS_THUMB_BUILD
222 bool "Build SPL using the Thumb instruction set"
223 default y if SYS_THUMB_BUILD
226 Use this flag to build SPL using the Thumb instruction set for
227 ARM architectures. Thumb instruction set provides better code
228 density. For ARM architectures that support Thumb2 this flag will
229 result in Thumb2 code generated by GCC.
231 config SYS_L2CACHE_OFF
234 If SoC does not support L2CACHE or one do not want to enable
235 L2CACHE, choose this option.
237 config ENABLE_ARM_SOC_BOOT0_HOOK
238 bool "prepare BOOT0 header"
240 If the SoC's BOOT0 requires a header area filled with (magic)
241 values, then choose this option, and create a define called
242 ARM_SOC_BOOT0_HOOK which contains the required assembler
245 config ARM_CORTEX_CPU_IS_UP
249 config USE_ARCH_MEMCPY
250 bool "Use an assembly optimized implementation of memcpy"
254 Enable the generation of an optimized version of memcpy.
255 Such implementation may be faster under some conditions
256 but may increase the binary size.
258 config SPL_USE_ARCH_MEMCPY
259 bool "Use an assembly optimized implementation of memcpy for SPL"
260 default y if USE_ARCH_MEMCPY
263 Enable the generation of an optimized version of memcpy.
264 Such implementation may be faster under some conditions
265 but may increase the binary size.
267 config USE_ARCH_MEMSET
268 bool "Use an assembly optimized implementation of memset"
272 Enable the generation of an optimized version of memset.
273 Such implementation may be faster under some conditions
274 but may increase the binary size.
276 config SPL_USE_ARCH_MEMSET
277 bool "Use an assembly optimized implementation of memset for SPL"
278 default y if USE_ARCH_MEMSET
281 Enable the generation of an optimized version of memset.
282 Such implementation may be faster under some conditions
283 but may increase the binary size.
285 config ARM64_SUPPORT_AARCH32
286 bool "ARM64 system support AArch32 execution state"
287 default y if ARM64 && !TARGET_THUNDERX_88XX
289 This ARM64 system supports AArch32 execution state.
292 prompt "Target select"
297 select SPL_BOARD_INIT if SPL
299 config TARGET_EDB93XX
300 bool "Support edb93xx"
303 config TARGET_ASPENITE
304 bool "Support aspenite"
308 bool "Support gplugd"
316 Support for TI's DaVinci platform.
319 bool "Marvell Kirkwood"
321 select BOARD_EARLY_INIT_F
322 select ARCH_MISC_INIT
325 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
334 config TARGET_DEVKIT3250
335 bool "Support devkit3250"
339 config TARGET_WORK_92105
340 bool "Support work_92105"
349 config TARGET_APX4DEVKIT
350 bool "Support apx4devkit"
360 bool "Support m28evk"
364 config TARGET_MX23EVK
365 bool "Support mx23evk"
368 select BOARD_EARLY_INIT_F
370 config TARGET_MX28EVK
371 bool "Support mx28evk"
374 select BOARD_EARLY_INIT_F
376 config TARGET_MX23_OLINUXINO
377 bool "Support mx23_olinuxino"
380 select BOARD_EARLY_INIT_F
383 bool "Support bg0900"
387 config TARGET_SANSA_FUZE_PLUS
388 bool "Support sansa_fuze_plus"
392 config TARGET_SC_SPS_1
393 bool "Support sc_sps_1"
401 config TARGET_SPEAR300
402 bool "Support spear300"
404 select BOARD_EARLY_INIT_F
407 config TARGET_SPEAR310
408 bool "Support spear310"
410 select BOARD_EARLY_INIT_F
413 config TARGET_SPEAR320
414 bool "Support spear320"
416 select BOARD_EARLY_INIT_F
419 config TARGET_SPEAR600
420 bool "Support spear600"
422 select BOARD_EARLY_INIT_F
425 config TARGET_STV0991
426 bool "Support stv0991"
436 select BOARD_LATE_INIT
440 config TARGET_IMX31_PHYCORE
441 bool "Support imx31_phycore_eet"
443 select BOARD_EARLY_INIT_F
445 config TARGET_IMX31_PHYCORE_EET
446 bool "Support imx31_phycore_eet"
447 select BOARD_LATE_INIT
449 select BOARD_EARLY_INIT_F
451 config TARGET_MX31ADS
452 bool "Support mx31ads"
454 select BOARD_EARLY_INIT_F
456 config TARGET_MX31PDK
457 bool "Support mx31pdk"
458 select BOARD_LATE_INIT
461 select BOARD_EARLY_INIT_F
463 config TARGET_WOODBURN
464 bool "Support woodburn"
467 config TARGET_WOODBURN_SD
468 bool "Support woodburn_sd"
476 config TARGET_MX35PDK
477 bool "Support mx35pdk"
478 select BOARD_LATE_INIT
482 bool "Broadcom BCM283X family"
489 config TARGET_VEXPRESS_CA15_TC2
490 bool "Support vexpress_ca15_tc2"
492 select CPU_V7_HAS_NONSEC
493 select CPU_V7_HAS_VIRT
495 config TARGET_VEXPRESS_CA5X2
496 bool "Support vexpress_ca5x2"
499 config TARGET_VEXPRESS_CA9X4
500 bool "Support vexpress_ca9x4"
503 config TARGET_BCM23550_W1D
504 bool "Support bcm23550_w1d"
509 config TARGET_BCM28155_AP
510 bool "Support bcm28155_ap"
515 config TARGET_BCMCYGNUS
516 bool "Support bcmcygnus"
524 imply BCM_SF2_ETH_GMAC
527 bool "Support bcmnsp"
531 bool "Support Broadcom Northstar2"
534 Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit
535 ARMv8 Cortex-A57 processors targeting a broad range of networking
539 bool "Samsung EXYNOS"
550 bool "Samsung S5PC1XX"
558 bool "Calxeda Highbank"
561 config ARCH_INTEGRATOR
562 bool "ARM Ltd. Integrator family"
570 select SYS_THUMB_BUILD
576 config ARCH_OMAP2PLUS
579 select SPL_BOARD_INIT if SPL
580 select SPL_STACK_R if SPL
587 Support for the Meson SoC family developed by Amlogic Inc.,
588 targeted at media players and tablet computers. We currently
589 support the S905 (GXBaby) 64-bit SoC.
598 select ROM_UNIFIED_SECTIONS
603 select SYS_FSL_HAS_SEC if SECURE_BOOT
604 select SYS_FSL_SEC_COMPAT_4
605 select SYS_FSL_SEC_LE
606 select BOARD_EARLY_INIT_F
607 select ARCH_MISC_INIT
612 select SYS_FSL_HAS_SEC if SECURE_BOOT
613 select SYS_FSL_SEC_COMPAT_4
614 select SYS_FSL_SEC_LE
615 select SYS_THUMB_BUILD if SPL
619 default "arch/arm/mach-omap2/u-boot-spl.lds"
625 select BOARD_EARLY_INIT_F
628 bool "QEMU Virtual Platform"
630 select ARCH_SUPPORT_PSCI
636 bool "Renesas ARM SoCs"
639 select BOARD_EARLY_INIT_F
641 imply SYS_THUMB_BUILD
643 config TARGET_S32V234EVB
644 bool "Support s32v234evb"
646 select SYS_FSL_ERRATUM_ESDHC111
648 config ARCH_SNAPDRAGON
649 bool "Qualcomm Snapdragon SoCs"
659 bool "Altera SOCFPGA family"
663 select SPL_OF_CONTROL
667 select ENABLE_ARM_SOC_BOOT0_HOOK
668 select ARCH_EARLY_INIT_R
669 select ARCH_MISC_INIT
670 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
671 select SYS_THUMB_BUILD
677 bool "Support sunxi (Allwinner) SoCs"
680 select CMD_MMC if MMC
681 select CMD_USB if DISTRO_DEFAULTS
687 select DM_USB if DISTRO_DEFAULTS
688 select OF_BOARD_SETUP
691 select SPL_STACK_R if SPL
692 select SPL_SYS_MALLOC_SIMPLE if SPL
694 select SPL_SYS_THUMB_BUILD if !ARM64
695 select SYS_THUMB_BUILD if !ARM64
696 select USB if DISTRO_DEFAULTS
697 select USB_STORAGE if DISTRO_DEFAULTS
698 select USB_KEYBOARD if DISTRO_DEFAULTS
699 select USE_TINY_PRINTF
702 imply PRE_CONSOLE_BUFFER
703 imply SPL_GPIO_SUPPORT
704 imply SPL_LIBCOMMON_SUPPORT
705 imply SPL_LIBDISK_SUPPORT
706 imply SPL_LIBGENERIC_SUPPORT
707 imply SPL_MMC_SUPPORT if MMC
708 imply SPL_POWER_SUPPORT
709 imply SPL_SERIAL_SUPPORT
713 bool "Support TS4600"
718 bool "Freescale Vybrid"
720 select SYS_FSL_ERRATUM_ESDHC111
725 bool "Xilinx Zynq Platform"
726 select BOARD_LATE_INIT
730 select SPL_BOARD_INIT if SPL
731 select SPL_OF_CONTROL if SPL
740 select SPL_SEPARATE_BSS if SPL
751 bool "Support Xilinx ZynqMP Platform"
753 select BOARD_LATE_INIT
759 select SPL_BOARD_INIT if SPL
768 config TARGET_VEXPRESS64_AEMV8A
769 bool "Support vexpress_aemv8a"
772 config TARGET_VEXPRESS64_BASE_FVP
773 bool "Support Versatile Express ARMv8a FVP BASE model"
777 config TARGET_VEXPRESS64_BASE_FVP_DRAM
778 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
781 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
782 the default config to allow the user to load the images directly into
783 DRAM using model parameters rather than by using semi-hosting to load
784 the files from the host filesystem.
786 config TARGET_VEXPRESS64_JUNO
787 bool "Support Versatile Express Juno Development Platform"
790 config TARGET_LS2080A_EMU
791 bool "Support ls2080a_emu"
794 select ARMV8_MULTIENTRY
795 select ARCH_MISC_INIT
797 Support for Freescale LS2080A_EMU platform
798 The LS2080A Development System (EMULATOR) is a pre silicon
799 development platform that supports the QorIQ LS2080A
800 Layerscape Architecture processor.
802 config TARGET_LS2080A_SIMU
803 bool "Support ls2080a_simu"
806 select ARMV8_MULTIENTRY
807 select ARCH_MISC_INIT
809 Support for Freescale LS2080A_SIMU platform
810 The LS2080A Development System (QDS) is a pre silicon
811 development platform that supports the QorIQ LS2080A
812 Layerscape Architecture processor.
814 config TARGET_LS1088AQDS
815 bool "Support ls1088aqds"
818 select ARMV8_MULTIENTRY
819 select ARCH_MISC_INIT
820 select BOARD_LATE_INIT
823 Support for NXP LS1088AQDS platform
824 The LS1088A Development System (QDS) is a high-performance
825 development platform that supports the QorIQ LS1088A
826 Layerscape Architecture processor.
828 config TARGET_LS2080AQDS
829 bool "Support ls2080aqds"
832 select ARMV8_MULTIENTRY
833 select BOARD_LATE_INIT
835 select ARCH_MISC_INIT
838 Support for Freescale LS2080AQDS platform
839 The LS2080A Development System (QDS) is a high-performance
840 development platform that supports the QorIQ LS2080A
841 Layerscape Architecture processor.
843 config TARGET_LS2080ARDB
844 bool "Support ls2080ardb"
847 select ARMV8_MULTIENTRY
848 select BOARD_LATE_INIT
850 select ARCH_MISC_INIT
853 Support for Freescale LS2080ARDB platform.
854 The LS2080A Reference design board (RDB) is a high-performance
855 development platform that supports the QorIQ LS2080A
856 Layerscape Architecture processor.
858 config TARGET_LS2081ARDB
859 bool "Support ls2081ardb"
862 select ARMV8_MULTIENTRY
863 select BOARD_LATE_INIT
865 select ARCH_MISC_INIT
867 Support for Freescale LS2081ARDB platform.
868 The LS2081A Reference design board (RDB) is a high-performance
869 development platform that supports the QorIQ LS2081A/LS2041A
870 Layerscape Architecture processor.
873 bool "Support HiKey 96boards Consumer Edition Platform"
880 Support for HiKey 96boards platform. It features a HI6220
881 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
884 bool "Support Poplar 96boards Enterprise Edition Platform"
891 Support for Poplar 96boards EE platform. It features a HI3798cv200
892 SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
893 making it capable of running any commercial set-top solution based on
896 config TARGET_LS1012AQDS
897 bool "Support ls1012aqds"
900 select BOARD_LATE_INIT
902 Support for Freescale LS1012AQDS platform.
903 The LS1012A Development System (QDS) is a high-performance
904 development platform that supports the QorIQ LS1012A
905 Layerscape Architecture processor.
907 config TARGET_LS1012ARDB
908 bool "Support ls1012ardb"
911 select BOARD_LATE_INIT
914 Support for Freescale LS1012ARDB platform.
915 The LS1012A Reference design board (RDB) is a high-performance
916 development platform that supports the QorIQ LS1012A
917 Layerscape Architecture processor.
919 config TARGET_LS1012AFRDM
920 bool "Support ls1012afrdm"
924 Support for Freescale LS1012AFRDM platform.
925 The LS1012A Freedom board (FRDM) is a high-performance
926 development platform that supports the QorIQ LS1012A
927 Layerscape Architecture processor.
929 config TARGET_LS1088ARDB
930 bool "Support ls1088ardb"
933 select ARMV8_MULTIENTRY
934 select ARCH_MISC_INIT
935 select BOARD_LATE_INIT
938 Support for NXP LS1088ARDB platform.
939 The LS1088A Reference design board (RDB) is a high-performance
940 development platform that supports the QorIQ LS1088A
941 Layerscape Architecture processor.
943 config TARGET_LS1021AQDS
944 bool "Support ls1021aqds"
945 select BOARD_LATE_INIT
947 select CPU_V7_HAS_NONSEC
948 select CPU_V7_HAS_VIRT
951 select ARCH_SUPPORT_PSCI
952 select LS1_DEEP_SLEEP
954 select BOARD_EARLY_INIT_F
957 config TARGET_LS1021ATWR
958 bool "Support ls1021atwr"
959 select BOARD_LATE_INIT
961 select CPU_V7_HAS_NONSEC
962 select CPU_V7_HAS_VIRT
965 select ARCH_SUPPORT_PSCI
966 select LS1_DEEP_SLEEP
967 select BOARD_EARLY_INIT_F
970 config TARGET_LS1021AIOT
971 bool "Support ls1021aiot"
972 select BOARD_LATE_INIT
974 select CPU_V7_HAS_NONSEC
975 select CPU_V7_HAS_VIRT
978 select ARCH_SUPPORT_PSCI
981 Support for Freescale LS1021AIOT platform.
982 The LS1021A Freescale board (IOT) is a high-performance
983 development platform that supports the QorIQ LS1021A
984 Layerscape Architecture processor.
986 config TARGET_LS1043AQDS
987 bool "Support ls1043aqds"
990 select ARMV8_MULTIENTRY
991 select BOARD_LATE_INIT
993 select BOARD_EARLY_INIT_F
996 Support for Freescale LS1043AQDS platform.
998 config TARGET_LS1043ARDB
999 bool "Support ls1043ardb"
1002 select ARMV8_MULTIENTRY
1003 select BOARD_LATE_INIT
1005 select BOARD_EARLY_INIT_F
1008 Support for Freescale LS1043ARDB platform.
1010 config TARGET_LS1046AQDS
1011 bool "Support ls1046aqds"
1014 select ARMV8_MULTIENTRY
1015 select BOARD_LATE_INIT
1017 select DM_SPI_FLASH if DM_SPI
1018 select BOARD_EARLY_INIT_F
1021 Support for Freescale LS1046AQDS platform.
1022 The LS1046A Development System (QDS) is a high-performance
1023 development platform that supports the QorIQ LS1046A
1024 Layerscape Architecture processor.
1026 config TARGET_LS1046ARDB
1027 bool "Support ls1046ardb"
1030 select ARMV8_MULTIENTRY
1031 select BOARD_LATE_INIT
1033 select DM_SPI_FLASH if DM_SPI
1034 select POWER_MC34VR500
1035 select BOARD_EARLY_INIT_F
1038 Support for Freescale LS1046ARDB platform.
1039 The LS1046A Reference Design Board (RDB) is a high-performance
1040 development platform that supports the QorIQ LS1046A
1041 Layerscape Architecture processor.
1044 bool "Support h2200"
1047 config TARGET_ZIPITZ2
1048 bool "Support zipitz2"
1051 config TARGET_COLIBRI_PXA270
1052 bool "Support colibri_pxa270"
1055 config ARCH_UNIPHIER
1056 bool "Socionext UniPhier SoCs"
1057 select BOARD_LATE_INIT
1068 select SPL_BOARD_INIT if SPL
1069 select SPL_DM if SPL
1070 select SPL_LIBCOMMON_SUPPORT if SPL
1071 select SPL_LIBGENERIC_SUPPORT if SPL
1072 select SPL_OF_CONTROL if SPL
1073 select SPL_PINCTRL if SPL
1077 Support for UniPhier SoC family developed by Socionext Inc.
1078 (formerly, System LSI Business Division of Panasonic Corporation)
1081 bool "Support STM32"
1085 select SYS_THUMB_BUILD
1088 bool "Support STMicrolectronics SoCs"
1096 Support for STMicroelectronics STiH407/10 SoC family.
1097 This SoC is used on Linaro 96Board STiH410-B2260
1099 config ARCH_ROCKCHIP
1100 bool "Support Rockchip SoCs"
1104 select SPL_DM if SPL
1106 select SYS_THUMB_BUILD if !ARM64
1107 select SPL_SYS_MALLOC_SIMPLE if SPL
1114 select DM_USB if USB
1120 imply USB_FUNCTION_FASTBOOT
1124 imply SARADC_ROCKCHIP
1126 config TARGET_THUNDERX_88XX
1127 bool "Support ThunderX 88xx"
1130 select SYS_CACHE_SHIFT_7
1133 bool "Support Aspeed SoCs"
1139 source "arch/arm/mach-aspeed/Kconfig"
1141 source "arch/arm/mach-at91/Kconfig"
1143 source "arch/arm/mach-bcm283x/Kconfig"
1145 source "arch/arm/mach-davinci/Kconfig"
1147 source "arch/arm/mach-exynos/Kconfig"
1149 source "arch/arm/mach-highbank/Kconfig"
1151 source "arch/arm/mach-integrator/Kconfig"
1153 source "arch/arm/mach-keystone/Kconfig"
1155 source "arch/arm/mach-kirkwood/Kconfig"
1157 source "arch/arm/mach-mvebu/Kconfig"
1159 source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1161 source "arch/arm/mach-imx/mx2/Kconfig"
1163 source "arch/arm/mach-imx/mx7ulp/Kconfig"
1165 source "arch/arm/mach-imx/mx7/Kconfig"
1167 source "arch/arm/mach-imx/mx6/Kconfig"
1169 source "arch/arm/mach-imx/mx5/Kconfig"
1171 source "arch/arm/mach-omap2/Kconfig"
1173 source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1175 source "arch/arm/mach-orion5x/Kconfig"
1177 source "arch/arm/mach-rmobile/Kconfig"
1179 source "arch/arm/mach-meson/Kconfig"
1181 source "arch/arm/mach-qemu/Kconfig"
1183 source "arch/arm/mach-rockchip/Kconfig"
1185 source "arch/arm/mach-s5pc1xx/Kconfig"
1187 source "arch/arm/mach-snapdragon/Kconfig"
1189 source "arch/arm/mach-socfpga/Kconfig"
1191 source "arch/arm/mach-sti/Kconfig"
1193 source "arch/arm/mach-stm32/Kconfig"
1195 source "arch/arm/mach-sunxi/Kconfig"
1197 source "arch/arm/mach-tegra/Kconfig"
1199 source "arch/arm/mach-uniphier/Kconfig"
1201 source "arch/arm/cpu/armv7/vf610/Kconfig"
1203 source "arch/arm/mach-zynq/Kconfig"
1205 source "arch/arm/cpu/armv7/Kconfig"
1207 source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1209 source "arch/arm/cpu/armv8/Kconfig"
1211 source "arch/arm/mach-imx/Kconfig"
1213 source "board/aries/m28evk/Kconfig"
1214 source "board/bosch/shc/Kconfig"
1215 source "board/CarMediaLab/flea3/Kconfig"
1216 source "board/Marvell/aspenite/Kconfig"
1217 source "board/Marvell/gplugd/Kconfig"
1218 source "board/armadeus/apf27/Kconfig"
1219 source "board/armltd/vexpress/Kconfig"
1220 source "board/armltd/vexpress64/Kconfig"
1221 source "board/bluegiga/apx4devkit/Kconfig"
1222 source "board/broadcom/bcm23550_w1d/Kconfig"
1223 source "board/broadcom/bcm28155_ap/Kconfig"
1224 source "board/broadcom/bcmcygnus/Kconfig"
1225 source "board/broadcom/bcmnsp/Kconfig"
1226 source "board/broadcom/bcmns2/Kconfig"
1227 source "board/cavium/thunderx/Kconfig"
1228 source "board/cirrus/edb93xx/Kconfig"
1229 source "board/creative/xfi3/Kconfig"
1230 source "board/freescale/ls2080a/Kconfig"
1231 source "board/freescale/ls2080aqds/Kconfig"
1232 source "board/freescale/ls2080ardb/Kconfig"
1233 source "board/freescale/ls1088a/Kconfig"
1234 source "board/freescale/ls1021aqds/Kconfig"
1235 source "board/freescale/ls1043aqds/Kconfig"
1236 source "board/freescale/ls1021atwr/Kconfig"
1237 source "board/freescale/ls1021aiot/Kconfig"
1238 source "board/freescale/ls1046aqds/Kconfig"
1239 source "board/freescale/ls1043ardb/Kconfig"
1240 source "board/freescale/ls1046ardb/Kconfig"
1241 source "board/freescale/ls1012aqds/Kconfig"
1242 source "board/freescale/ls1012ardb/Kconfig"
1243 source "board/freescale/ls1012afrdm/Kconfig"
1244 source "board/freescale/mx23evk/Kconfig"
1245 source "board/freescale/mx28evk/Kconfig"
1246 source "board/freescale/mx31ads/Kconfig"
1247 source "board/freescale/mx31pdk/Kconfig"
1248 source "board/freescale/mx35pdk/Kconfig"
1249 source "board/freescale/s32v234evb/Kconfig"
1250 source "board/gdsys/a38x/Kconfig"
1251 source "board/grinn/chiliboard/Kconfig"
1252 source "board/gumstix/pepper/Kconfig"
1253 source "board/h2200/Kconfig"
1254 source "board/hisilicon/hikey/Kconfig"
1255 source "board/hisilicon/poplar/Kconfig"
1256 source "board/imx31_phycore/Kconfig"
1257 source "board/isee/igep003x/Kconfig"
1258 source "board/olimex/mx23_olinuxino/Kconfig"
1259 source "board/phytec/pcm051/Kconfig"
1260 source "board/ppcag/bg0900/Kconfig"
1261 source "board/sandisk/sansa_fuze_plus/Kconfig"
1262 source "board/schulercontrol/sc_sps_1/Kconfig"
1263 source "board/silica/pengwyn/Kconfig"
1264 source "board/spear/spear300/Kconfig"
1265 source "board/spear/spear310/Kconfig"
1266 source "board/spear/spear320/Kconfig"
1267 source "board/spear/spear600/Kconfig"
1268 source "board/spear/x600/Kconfig"
1269 source "board/st/stv0991/Kconfig"
1270 source "board/tcl/sl50/Kconfig"
1271 source "board/birdland/bav335x/Kconfig"
1272 source "board/timll/devkit3250/Kconfig"
1273 source "board/toradex/colibri_pxa270/Kconfig"
1274 source "board/technologic/ts4600/Kconfig"
1275 source "board/vscom/baltos/Kconfig"
1276 source "board/woodburn/Kconfig"
1277 source "board/work-microwave/work_92105/Kconfig"
1278 source "board/zipitz2/Kconfig"
1280 source "arch/arm/Kconfig.debug"
1285 default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if TARGET_APX4DEVKIT || TARGET_BG0900 || TARGET_M28EVK || TARGET_MX23_OLINUXINO || TARGET_MX23EVK || TARGET_MX28EVK || TARGET_SANSA_FUZE_PLUS || TARGET_SC_SPS_1 || TARGET_TS4600 || TARGET_XFI3
1286 default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
1287 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64