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"
344 config TARGET_MX25PDK
345 bool "Support mx25pdk"
346 select BOARD_LATE_INIT
348 select BOARD_EARLY_INIT_F
352 select BOARD_LATE_INIT
360 config TARGET_APX4DEVKIT
361 bool "Support apx4devkit"
371 bool "Support m28evk"
375 config TARGET_MX23EVK
376 bool "Support mx23evk"
379 select BOARD_EARLY_INIT_F
381 config TARGET_MX28EVK
382 bool "Support mx28evk"
385 select BOARD_EARLY_INIT_F
387 config TARGET_MX23_OLINUXINO
388 bool "Support mx23_olinuxino"
391 select BOARD_EARLY_INIT_F
394 bool "Support bg0900"
398 config TARGET_SANSA_FUZE_PLUS
399 bool "Support sansa_fuze_plus"
403 config TARGET_SC_SPS_1
404 bool "Support sc_sps_1"
412 config TARGET_SPEAR300
413 bool "Support spear300"
415 select BOARD_EARLY_INIT_F
418 config TARGET_SPEAR310
419 bool "Support spear310"
421 select BOARD_EARLY_INIT_F
424 config TARGET_SPEAR320
425 bool "Support spear320"
427 select BOARD_EARLY_INIT_F
430 config TARGET_SPEAR600
431 bool "Support spear600"
433 select BOARD_EARLY_INIT_F
436 config TARGET_STV0991
437 bool "Support stv0991"
447 select BOARD_LATE_INIT
451 config TARGET_IMX31_PHYCORE
452 bool "Support imx31_phycore_eet"
454 select BOARD_EARLY_INIT_F
456 config TARGET_IMX31_PHYCORE_EET
457 bool "Support imx31_phycore_eet"
458 select BOARD_LATE_INIT
460 select BOARD_EARLY_INIT_F
462 config TARGET_MX31ADS
463 bool "Support mx31ads"
465 select BOARD_EARLY_INIT_F
467 config TARGET_MX31PDK
468 bool "Support mx31pdk"
469 select BOARD_LATE_INIT
472 select BOARD_EARLY_INIT_F
474 config TARGET_WOODBURN
475 bool "Support woodburn"
478 config TARGET_WOODBURN_SD
479 bool "Support woodburn_sd"
487 config TARGET_MX35PDK
488 bool "Support mx35pdk"
489 select BOARD_LATE_INIT
493 bool "Broadcom BCM283X family"
500 config TARGET_VEXPRESS_CA15_TC2
501 bool "Support vexpress_ca15_tc2"
503 select CPU_V7_HAS_NONSEC
504 select CPU_V7_HAS_VIRT
506 config TARGET_VEXPRESS_CA5X2
507 bool "Support vexpress_ca5x2"
510 config TARGET_VEXPRESS_CA9X4
511 bool "Support vexpress_ca9x4"
514 config TARGET_BCM23550_W1D
515 bool "Support bcm23550_w1d"
520 config TARGET_BCM28155_AP
521 bool "Support bcm28155_ap"
526 config TARGET_BCMCYGNUS
527 bool "Support bcmcygnus"
535 imply BCM_SF2_ETH_GMAC
538 bool "Support bcmnsp"
542 bool "Support Broadcom Northstar2"
545 Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit
546 ARMv8 Cortex-A57 processors targeting a broad range of networking
550 bool "Samsung EXYNOS"
561 bool "Samsung S5PC1XX"
569 bool "Calxeda Highbank"
572 config ARCH_INTEGRATOR
573 bool "ARM Ltd. Integrator family"
581 select SYS_THUMB_BUILD
587 config ARCH_OMAP2PLUS
590 select SPL_BOARD_INIT if SPL
597 Support for the Meson SoC family developed by Amlogic Inc.,
598 targeted at media players and tablet computers. We currently
599 support the S905 (GXBaby) 64-bit SoC.
604 select ROM_UNIFIED_SECTIONS
609 select SYS_FSL_HAS_SEC if SECURE_BOOT
610 select SYS_FSL_SEC_COMPAT_4
611 select SYS_FSL_SEC_LE
612 select BOARD_EARLY_INIT_F
613 select ARCH_MISC_INIT
618 select SYS_FSL_HAS_SEC if SECURE_BOOT
619 select SYS_FSL_SEC_COMPAT_4
620 select SYS_FSL_SEC_LE
621 select SYS_THUMB_BUILD if SPL
625 default "arch/arm/mach-omap2/u-boot-spl.lds"
631 select BOARD_EARLY_INIT_F
634 bool "Renesas ARM SoCs"
637 select BOARD_EARLY_INIT_F
639 imply SYS_THUMB_BUILD
641 config TARGET_S32V234EVB
642 bool "Support s32v234evb"
644 select SYS_FSL_ERRATUM_ESDHC111
646 config ARCH_SNAPDRAGON
647 bool "Qualcomm Snapdragon SoCs"
657 bool "Altera SOCFPGA family"
661 select SPL_OF_CONTROL
665 select ENABLE_ARM_SOC_BOOT0_HOOK
666 select ARCH_EARLY_INIT_R
667 select ARCH_MISC_INIT
668 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
669 select SYS_THUMB_BUILD
675 bool "Support sunxi (Allwinner) SoCs"
677 select CMD_MMC if MMC
678 select CMD_USB if DISTRO_DEFAULTS
684 select DM_USB if DISTRO_DEFAULTS
685 select OF_BOARD_SETUP
688 select SPL_STACK_R if SPL
689 select SPL_SYS_MALLOC_SIMPLE if SPL
691 select SPL_SYS_THUMB_BUILD if !ARM64
692 select USB if DISTRO_DEFAULTS
693 select USB_STORAGE if DISTRO_DEFAULTS
694 select USB_KEYBOARD if DISTRO_DEFAULTS
695 select USE_TINY_PRINTF
697 imply PRE_CONSOLE_BUFFER
698 imply SPL_GPIO_SUPPORT
699 imply SPL_LIBCOMMON_SUPPORT
700 imply SPL_LIBDISK_SUPPORT
701 imply SPL_LIBGENERIC_SUPPORT
702 imply SPL_MMC_SUPPORT if MMC
703 imply SPL_POWER_SUPPORT
704 imply SPL_SERIAL_SUPPORT
707 bool "Support TS4600"
712 bool "Freescale Vybrid"
714 select SYS_FSL_ERRATUM_ESDHC111
719 bool "Xilinx Zynq Platform"
720 select BOARD_LATE_INIT
724 select SPL_BOARD_INIT if SPL
725 select SPL_OF_CONTROL if SPL
734 select SPL_SEPARATE_BSS if SPL
745 bool "Support Xilinx ZynqMP Platform"
747 select BOARD_LATE_INIT
753 select SPL_BOARD_INIT if SPL
762 config TARGET_VEXPRESS64_AEMV8A
763 bool "Support vexpress_aemv8a"
766 config TARGET_VEXPRESS64_BASE_FVP
767 bool "Support Versatile Express ARMv8a FVP BASE model"
771 config TARGET_VEXPRESS64_BASE_FVP_DRAM
772 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
775 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
776 the default config to allow the user to load the images directly into
777 DRAM using model parameters rather than by using semi-hosting to load
778 the files from the host filesystem.
780 config TARGET_VEXPRESS64_JUNO
781 bool "Support Versatile Express Juno Development Platform"
784 config TARGET_LS2080A_EMU
785 bool "Support ls2080a_emu"
788 select ARMV8_MULTIENTRY
789 select ARCH_MISC_INIT
791 Support for Freescale LS2080A_EMU platform
792 The LS2080A Development System (EMULATOR) is a pre silicon
793 development platform that supports the QorIQ LS2080A
794 Layerscape Architecture processor.
796 config TARGET_LS2080A_SIMU
797 bool "Support ls2080a_simu"
800 select ARMV8_MULTIENTRY
801 select ARCH_MISC_INIT
803 Support for Freescale LS2080A_SIMU platform
804 The LS2080A Development System (QDS) is a pre silicon
805 development platform that supports the QorIQ LS2080A
806 Layerscape Architecture processor.
808 config TARGET_LS2080AQDS
809 bool "Support ls2080aqds"
812 select ARMV8_MULTIENTRY
813 select BOARD_LATE_INIT
815 select ARCH_MISC_INIT
818 Support for Freescale LS2080AQDS platform
819 The LS2080A Development System (QDS) is a high-performance
820 development platform that supports the QorIQ LS2080A
821 Layerscape Architecture processor.
823 config TARGET_LS2080ARDB
824 bool "Support ls2080ardb"
827 select ARMV8_MULTIENTRY
828 select BOARD_LATE_INIT
830 select ARCH_MISC_INIT
833 Support for Freescale LS2080ARDB platform.
834 The LS2080A Reference design board (RDB) is a high-performance
835 development platform that supports the QorIQ LS2080A
836 Layerscape Architecture processor.
838 config TARGET_LS2081ARDB
839 bool "Support ls2081ardb"
842 select ARMV8_MULTIENTRY
843 select BOARD_LATE_INIT
845 select ARCH_MISC_INIT
847 Support for Freescale LS2081ARDB platform.
848 The LS2081A Reference design board (RDB) is a high-performance
849 development platform that supports the QorIQ LS2081A/LS2041A
850 Layerscape Architecture processor.
853 bool "Support HiKey 96boards Consumer Edition Platform"
860 Support for HiKey 96boards platform. It features a HI6220
861 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
864 bool "Support Poplar 96boards Enterprise Edition Platform"
871 Support for Poplar 96boards EE platform. It features a HI3798cv200
872 SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
873 making it capable of running any commercial set-top solution based on
876 config TARGET_LS1012AQDS
877 bool "Support ls1012aqds"
880 select BOARD_LATE_INIT
882 Support for Freescale LS1012AQDS platform.
883 The LS1012A Development System (QDS) is a high-performance
884 development platform that supports the QorIQ LS1012A
885 Layerscape Architecture processor.
887 config TARGET_LS1012ARDB
888 bool "Support ls1012ardb"
891 select BOARD_LATE_INIT
894 Support for Freescale LS1012ARDB platform.
895 The LS1012A Reference design board (RDB) is a high-performance
896 development platform that supports the QorIQ LS1012A
897 Layerscape Architecture processor.
899 config TARGET_LS1012AFRDM
900 bool "Support ls1012afrdm"
904 Support for Freescale LS1012AFRDM platform.
905 The LS1012A Freedom board (FRDM) is a high-performance
906 development platform that supports the QorIQ LS1012A
907 Layerscape Architecture processor.
909 config TARGET_LS1021AQDS
910 bool "Support ls1021aqds"
911 select BOARD_LATE_INIT
913 select CPU_V7_HAS_NONSEC
914 select CPU_V7_HAS_VIRT
917 select ARCH_SUPPORT_PSCI
918 select LS1_DEEP_SLEEP
920 select BOARD_EARLY_INIT_F
923 config TARGET_LS1021ATWR
924 bool "Support ls1021atwr"
925 select BOARD_LATE_INIT
927 select CPU_V7_HAS_NONSEC
928 select CPU_V7_HAS_VIRT
931 select ARCH_SUPPORT_PSCI
932 select LS1_DEEP_SLEEP
933 select BOARD_EARLY_INIT_F
936 config TARGET_LS1021AIOT
937 bool "Support ls1021aiot"
938 select BOARD_LATE_INIT
940 select CPU_V7_HAS_NONSEC
941 select CPU_V7_HAS_VIRT
944 select ARCH_SUPPORT_PSCI
947 Support for Freescale LS1021AIOT platform.
948 The LS1021A Freescale board (IOT) is a high-performance
949 development platform that supports the QorIQ LS1021A
950 Layerscape Architecture processor.
952 config TARGET_LS1043AQDS
953 bool "Support ls1043aqds"
956 select ARMV8_MULTIENTRY
957 select BOARD_LATE_INIT
959 select BOARD_EARLY_INIT_F
962 Support for Freescale LS1043AQDS platform.
964 config TARGET_LS1043ARDB
965 bool "Support ls1043ardb"
968 select ARMV8_MULTIENTRY
969 select BOARD_LATE_INIT
971 select BOARD_EARLY_INIT_F
974 Support for Freescale LS1043ARDB platform.
976 config TARGET_LS1046AQDS
977 bool "Support ls1046aqds"
980 select ARMV8_MULTIENTRY
981 select BOARD_LATE_INIT
983 select DM_SPI_FLASH if DM_SPI
984 select BOARD_EARLY_INIT_F
987 Support for Freescale LS1046AQDS platform.
988 The LS1046A Development System (QDS) is a high-performance
989 development platform that supports the QorIQ LS1046A
990 Layerscape Architecture processor.
992 config TARGET_LS1046ARDB
993 bool "Support ls1046ardb"
996 select ARMV8_MULTIENTRY
997 select BOARD_LATE_INIT
999 select DM_SPI_FLASH if DM_SPI
1000 select POWER_MC34VR500
1001 select BOARD_EARLY_INIT_F
1004 Support for Freescale LS1046ARDB platform.
1005 The LS1046A Reference Design Board (RDB) is a high-performance
1006 development platform that supports the QorIQ LS1046A
1007 Layerscape Architecture processor.
1010 bool "Support h2200"
1013 config TARGET_ZIPITZ2
1014 bool "Support zipitz2"
1017 config TARGET_COLIBRI_PXA270
1018 bool "Support colibri_pxa270"
1021 config ARCH_UNIPHIER
1022 bool "Socionext UniPhier SoCs"
1023 select BOARD_LATE_INIT
1035 select SPL_BOARD_INIT if SPL
1036 select SPL_DM if SPL
1037 select SPL_LIBCOMMON_SUPPORT if SPL
1038 select SPL_LIBGENERIC_SUPPORT if SPL
1039 select SPL_OF_CONTROL if SPL
1040 select SPL_PINCTRL if SPL
1044 Support for UniPhier SoC family developed by Socionext Inc.
1045 (formerly, System LSI Business Division of Panasonic Corporation)
1048 bool "Support STM32"
1052 select SYS_THUMB_BUILD
1055 bool "Support STMicrolectronics SoCs"
1063 Support for STMicroelectronics STiH407/10 SoC family.
1064 This SoC is used on Linaro 96Board STiH410-B2260
1066 config ARCH_ROCKCHIP
1067 bool "Support Rockchip SoCs"
1071 select SPL_DM if SPL
1073 select SYS_THUMB_BUILD if !ARM64
1074 select SPL_SYS_MALLOC_SIMPLE if SPL
1081 select DM_USB if USB
1086 config TARGET_THUNDERX_88XX
1087 bool "Support ThunderX 88xx"
1090 select SYS_CACHE_SHIFT_7
1093 bool "Support Aspeed SoCs"
1099 source "arch/arm/mach-aspeed/Kconfig"
1101 source "arch/arm/mach-at91/Kconfig"
1103 source "arch/arm/mach-bcm283x/Kconfig"
1105 source "arch/arm/mach-davinci/Kconfig"
1107 source "arch/arm/mach-exynos/Kconfig"
1109 source "arch/arm/mach-highbank/Kconfig"
1111 source "arch/arm/mach-integrator/Kconfig"
1113 source "arch/arm/mach-keystone/Kconfig"
1115 source "arch/arm/mach-kirkwood/Kconfig"
1117 source "arch/arm/mach-mvebu/Kconfig"
1119 source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1121 source "arch/arm/mach-imx/mx7ulp/Kconfig"
1123 source "arch/arm/mach-imx/mx7/Kconfig"
1125 source "arch/arm/mach-imx/mx6/Kconfig"
1127 source "arch/arm/mach-imx/mx5/Kconfig"
1129 source "arch/arm/mach-omap2/Kconfig"
1131 source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1133 source "arch/arm/mach-orion5x/Kconfig"
1135 source "arch/arm/mach-rmobile/Kconfig"
1137 source "arch/arm/mach-meson/Kconfig"
1139 source "arch/arm/mach-rockchip/Kconfig"
1141 source "arch/arm/mach-s5pc1xx/Kconfig"
1143 source "arch/arm/mach-snapdragon/Kconfig"
1145 source "arch/arm/mach-socfpga/Kconfig"
1147 source "arch/arm/mach-sti/Kconfig"
1149 source "arch/arm/mach-stm32/Kconfig"
1151 source "arch/arm/mach-sunxi/Kconfig"
1153 source "arch/arm/mach-tegra/Kconfig"
1155 source "arch/arm/mach-uniphier/Kconfig"
1157 source "arch/arm/cpu/armv7/vf610/Kconfig"
1159 source "arch/arm/mach-zynq/Kconfig"
1161 source "arch/arm/cpu/armv7/Kconfig"
1163 source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1165 source "arch/arm/cpu/armv8/Kconfig"
1167 source "arch/arm/mach-imx/Kconfig"
1169 source "board/aries/m28evk/Kconfig"
1170 source "board/bosch/shc/Kconfig"
1171 source "board/CarMediaLab/flea3/Kconfig"
1172 source "board/Marvell/aspenite/Kconfig"
1173 source "board/Marvell/gplugd/Kconfig"
1174 source "board/armadeus/apf27/Kconfig"
1175 source "board/armltd/vexpress/Kconfig"
1176 source "board/armltd/vexpress64/Kconfig"
1177 source "board/bluegiga/apx4devkit/Kconfig"
1178 source "board/broadcom/bcm23550_w1d/Kconfig"
1179 source "board/broadcom/bcm28155_ap/Kconfig"
1180 source "board/broadcom/bcmcygnus/Kconfig"
1181 source "board/broadcom/bcmnsp/Kconfig"
1182 source "board/broadcom/bcmns2/Kconfig"
1183 source "board/cavium/thunderx/Kconfig"
1184 source "board/cirrus/edb93xx/Kconfig"
1185 source "board/creative/xfi3/Kconfig"
1186 source "board/freescale/ls2080a/Kconfig"
1187 source "board/freescale/ls2080aqds/Kconfig"
1188 source "board/freescale/ls2080ardb/Kconfig"
1189 source "board/freescale/ls1021aqds/Kconfig"
1190 source "board/freescale/ls1043aqds/Kconfig"
1191 source "board/freescale/ls1021atwr/Kconfig"
1192 source "board/freescale/ls1021aiot/Kconfig"
1193 source "board/freescale/ls1046aqds/Kconfig"
1194 source "board/freescale/ls1043ardb/Kconfig"
1195 source "board/freescale/ls1046ardb/Kconfig"
1196 source "board/freescale/ls1012aqds/Kconfig"
1197 source "board/freescale/ls1012ardb/Kconfig"
1198 source "board/freescale/ls1012afrdm/Kconfig"
1199 source "board/freescale/mx23evk/Kconfig"
1200 source "board/freescale/mx25pdk/Kconfig"
1201 source "board/freescale/mx28evk/Kconfig"
1202 source "board/freescale/mx31ads/Kconfig"
1203 source "board/freescale/mx31pdk/Kconfig"
1204 source "board/freescale/mx35pdk/Kconfig"
1205 source "board/freescale/s32v234evb/Kconfig"
1206 source "board/gdsys/a38x/Kconfig"
1207 source "board/grinn/chiliboard/Kconfig"
1208 source "board/gumstix/pepper/Kconfig"
1209 source "board/h2200/Kconfig"
1210 source "board/hisilicon/hikey/Kconfig"
1211 source "board/hisilicon/poplar/Kconfig"
1212 source "board/imx31_phycore/Kconfig"
1213 source "board/isee/igep003x/Kconfig"
1214 source "board/olimex/mx23_olinuxino/Kconfig"
1215 source "board/phytec/pcm051/Kconfig"
1216 source "board/ppcag/bg0900/Kconfig"
1217 source "board/sandisk/sansa_fuze_plus/Kconfig"
1218 source "board/schulercontrol/sc_sps_1/Kconfig"
1219 source "board/silica/pengwyn/Kconfig"
1220 source "board/spear/spear300/Kconfig"
1221 source "board/spear/spear310/Kconfig"
1222 source "board/spear/spear320/Kconfig"
1223 source "board/spear/spear600/Kconfig"
1224 source "board/spear/x600/Kconfig"
1225 source "board/st/stv0991/Kconfig"
1226 source "board/syteco/zmx25/Kconfig"
1227 source "board/tcl/sl50/Kconfig"
1228 source "board/birdland/bav335x/Kconfig"
1229 source "board/timll/devkit3250/Kconfig"
1230 source "board/toradex/colibri_pxa270/Kconfig"
1231 source "board/technologic/ts4600/Kconfig"
1232 source "board/vscom/baltos/Kconfig"
1233 source "board/woodburn/Kconfig"
1234 source "board/work-microwave/work_92105/Kconfig"
1235 source "board/zipitz2/Kconfig"
1237 source "arch/arm/Kconfig.debug"
1242 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
1243 default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
1244 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64