1 menu "ARM architecture"
10 select SYS_CACHE_SHIFT_6
13 config POSITION_INDEPENDENT
14 bool "Generate position-independent pre-relocation code"
16 U-Boot expects to be linked to a specific hard-coded address, and to
17 be loaded to and run from that address. This option lifts that
18 restriction, thus allowing the code to be loaded to and executed
19 from almost any address. This logic relies on the relocation
20 information that is embedded into the binary to support U-Boot
21 relocating itself to the top-of-RAM later during execution.
23 config SYS_INIT_SP_BSS_OFFSET
26 U-Boot typically uses a hard-coded value for the stack pointer
27 before relocation. Define this option to instead calculate the
28 initial SP at run-time. This is useful to avoid hard-coding addresses
29 into U-Boot, so that can be loaded and executed at arbitrary
30 addresses and thus avoid using arbitrary addresses at runtime. This
31 option's value is the offset added to &_bss_start in order to
32 calculate the stack pointer. This offset should be large enough so
33 that the early malloc region, global data (gd), and early stack usage
34 do not overlap any appended DTB.
36 config LINUX_KERNEL_IMAGE_HEADER
39 Place a Linux kernel image header at the start of the U-Boot binary.
40 The format of the header is described in the Linux kernel source at
41 Documentation/arm64/booting.txt. This feature is useful since the
42 image header reports the amount of memory (BSS and similar) that
43 U-Boot needs to use, but which isn't part of the binary.
45 if LINUX_KERNEL_IMAGE_HEADER
46 config LNX_KRNL_IMG_TEXT_OFFSET_BASE
49 The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the
50 TEXT_OFFSET value written in to the Linux kernel image header.
56 default y if ARM64 && !POSITION_INDEPENDENT
58 config DMA_ADDR_T_64BIT
68 # Used for compatibility with asm files copied from the kernel
69 config ARM_ASM_UNIFIED
73 # Used for compatibility with asm files copied from the kernel
77 # If set, the workarounds for these ARM errata are applied early during U-Boot
78 # startup. Note that in general these options force the workarounds to be
79 # applied; no CPU-type/version detection exists, unlike the similar options in
80 # the Linux kernel. Do not set these options unless they apply! Also note that
81 # the following can be machine specific errata. These do have ability to
82 # provide rudimentary version and machine specific checks, but expect no
84 # CONFIG_ARM_ERRATA_430973
85 # CONFIG_ARM_ERRATA_454179
86 # CONFIG_ARM_ERRATA_621766
87 # CONFIG_ARM_ERRATA_798870
88 # CONFIG_ARM_ERRATA_801819
89 config ARM_ERRATA_430973
92 config ARM_ERRATA_454179
95 config ARM_ERRATA_621766
98 config ARM_ERRATA_716044
101 config ARM_ERRATA_725233
104 config ARM_ERRATA_742230
107 config ARM_ERRATA_743622
110 config ARM_ERRATA_751472
113 config ARM_ERRATA_761320
116 config ARM_ERRATA_773022
119 config ARM_ERRATA_774769
122 config ARM_ERRATA_794072
125 config ARM_ERRATA_798870
128 config ARM_ERRATA_801819
131 config ARM_ERRATA_826974
134 config ARM_ERRATA_828024
137 config ARM_ERRATA_829520
140 config ARM_ERRATA_833069
143 config ARM_ERRATA_833471
146 config ARM_ERRATA_845369
149 config ARM_ERRATA_852421
152 config ARM_ERRATA_852423
155 config ARM_ERRATA_855873
160 select SYS_CACHE_SHIFT_5
164 select SYS_CACHE_SHIFT_5
168 select SYS_CACHE_SHIFT_5
172 select SYS_CACHE_SHIFT_5
176 select SYS_CACHE_SHIFT_5
181 select SYS_CACHE_SHIFT_5
187 select SYS_CACHE_SHIFT_6
193 select SYS_CACHE_SHIFT_5
197 select SYS_CACHE_SHIFT_5
201 select SYS_CACHE_SHIFT_5
204 default "arm720t" if CPU_ARM720T
205 default "arm920t" if CPU_ARM920T
206 default "arm926ejs" if CPU_ARM926EJS
207 default "arm946es" if CPU_ARM946ES
208 default "arm1136" if CPU_ARM1136
209 default "arm1176" if CPU_ARM1176
210 default "armv7" if CPU_V7
211 default "armv7m" if CPU_V7M
212 default "pxa" if CPU_PXA
213 default "sa1100" if CPU_SA1100
214 default "armv8" if ARM64
218 default 4 if CPU_ARM720T
219 default 4 if CPU_ARM920T
220 default 5 if CPU_ARM926EJS
221 default 5 if CPU_ARM946ES
222 default 6 if CPU_ARM1136
223 default 6 if CPU_ARM1176
227 default 4 if CPU_SA1100
230 config SYS_CACHE_SHIFT_5
233 config SYS_CACHE_SHIFT_6
236 config SYS_CACHE_SHIFT_7
239 config SYS_CACHELINE_SIZE
241 default 128 if SYS_CACHE_SHIFT_7
242 default 64 if SYS_CACHE_SHIFT_6
243 default 32 if SYS_CACHE_SHIFT_5
246 bool "Support for ARM SMC Calling Convention (SMCCC)"
247 depends on CPU_V7 || ARM64
250 Say Y here if you want to enable ARM SMC Calling Convention.
251 This should be enabled if U-Boot needs to communicate with system
252 firmware (for example, PSCI) according to SMCCC.
255 bool "support boot from semihosting"
257 In emulated environments, semihosting is a way for
258 the hosted environment to call out to the emulator to
259 retrieve files from the host machine.
261 config SYS_THUMB_BUILD
262 bool "Build U-Boot using the Thumb instruction set"
265 Use this flag to build U-Boot using the Thumb instruction set for
266 ARM architectures. Thumb instruction set provides better code
267 density. For ARM architectures that support Thumb2 this flag will
268 result in Thumb2 code generated by GCC.
270 config SPL_SYS_THUMB_BUILD
271 bool "Build SPL using the Thumb instruction set"
272 default y if SYS_THUMB_BUILD
275 Use this flag to build SPL using the Thumb instruction set for
276 ARM architectures. Thumb instruction set provides better code
277 density. For ARM architectures that support Thumb2 this flag will
278 result in Thumb2 code generated by GCC.
280 config SYS_L2CACHE_OFF
283 If SoC does not support L2CACHE or one do not want to enable
284 L2CACHE, choose this option.
286 config ENABLE_ARM_SOC_BOOT0_HOOK
287 bool "prepare BOOT0 header"
289 If the SoC's BOOT0 requires a header area filled with (magic)
290 values, then choose this option, and create a define called
291 ARM_SOC_BOOT0_HOOK which contains the required assembler
294 config ARM_CORTEX_CPU_IS_UP
298 config USE_ARCH_MEMCPY
299 bool "Use an assembly optimized implementation of memcpy"
303 Enable the generation of an optimized version of memcpy.
304 Such implementation may be faster under some conditions
305 but may increase the binary size.
307 config SPL_USE_ARCH_MEMCPY
308 bool "Use an assembly optimized implementation of memcpy for SPL"
309 default y if USE_ARCH_MEMCPY
312 Enable the generation of an optimized version of memcpy.
313 Such implementation may be faster under some conditions
314 but may increase the binary size.
316 config USE_ARCH_MEMSET
317 bool "Use an assembly optimized implementation of memset"
321 Enable the generation of an optimized version of memset.
322 Such implementation may be faster under some conditions
323 but may increase the binary size.
325 config SPL_USE_ARCH_MEMSET
326 bool "Use an assembly optimized implementation of memset for SPL"
327 default y if USE_ARCH_MEMSET
330 Enable the generation of an optimized version of memset.
331 Such implementation may be faster under some conditions
332 but may increase the binary size.
334 config ARM64_SUPPORT_AARCH32
335 bool "ARM64 system support AArch32 execution state"
336 default y if ARM64 && !TARGET_THUNDERX_88XX
338 This ARM64 system supports AArch32 execution state.
341 prompt "Target select"
346 select SPL_BOARD_INIT if SPL
348 config TARGET_EDB93XX
349 bool "Support edb93xx"
353 config TARGET_ASPENITE
354 bool "Support aspenite"
358 bool "Support gplugd"
366 Support for TI's DaVinci platform.
369 bool "Marvell Kirkwood"
371 select BOARD_EARLY_INIT_F
372 select ARCH_MISC_INIT
375 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
384 config TARGET_DEVKIT3250
385 bool "Support devkit3250"
389 config TARGET_WORK_92105
390 bool "Support work_92105"
399 config TARGET_APX4DEVKIT
400 bool "Support apx4devkit"
412 bool "Support m28evk"
417 config TARGET_MX23EVK
418 bool "Support mx23evk"
421 select BOARD_EARLY_INIT_F
424 config TARGET_MX28EVK
425 bool "Support mx28evk"
428 select BOARD_EARLY_INIT_F
431 config TARGET_MX23_OLINUXINO
432 bool "Support mx23_olinuxino"
435 select BOARD_EARLY_INIT_F
439 bool "Support bg0900"
444 config TARGET_SANSA_FUZE_PLUS
445 bool "Support sansa_fuze_plus"
450 config TARGET_SC_SPS_1
451 bool "Support sc_sps_1"
460 config TARGET_SPEAR300
461 bool "Support spear300"
463 select BOARD_EARLY_INIT_F
467 config TARGET_SPEAR310
468 bool "Support spear310"
470 select BOARD_EARLY_INIT_F
474 config TARGET_SPEAR320
475 bool "Support spear320"
477 select BOARD_EARLY_INIT_F
481 config TARGET_SPEAR600
482 bool "Support spear600"
484 select BOARD_EARLY_INIT_F
488 config TARGET_STV0991
489 bool "Support stv0991"
500 select BOARD_LATE_INIT
505 config TARGET_IMX31_PHYCORE
506 bool "Support imx31_phycore_eet"
508 select BOARD_EARLY_INIT_F
510 config TARGET_IMX31_PHYCORE_EET
511 bool "Support imx31_phycore_eet"
512 select BOARD_LATE_INIT
514 select BOARD_EARLY_INIT_F
516 config TARGET_MX31ADS
517 bool "Support mx31ads"
519 select BOARD_EARLY_INIT_F
521 config TARGET_MX31PDK
522 bool "Support mx31pdk"
523 select BOARD_LATE_INIT
526 select BOARD_EARLY_INIT_F
528 config TARGET_WOODBURN
529 bool "Support woodburn"
532 config TARGET_WOODBURN_SD
533 bool "Support woodburn_sd"
541 config TARGET_MX35PDK
542 bool "Support mx35pdk"
543 select BOARD_LATE_INIT
547 bool "Broadcom BCM283X family"
555 config TARGET_VEXPRESS_CA15_TC2
556 bool "Support vexpress_ca15_tc2"
558 select CPU_V7_HAS_NONSEC
559 select CPU_V7_HAS_VIRT
562 config TARGET_VEXPRESS_CA5X2
563 bool "Support vexpress_ca5x2"
567 config TARGET_VEXPRESS_CA9X4
568 bool "Support vexpress_ca9x4"
572 config TARGET_BCM23550_W1D
573 bool "Support bcm23550_w1d"
578 config TARGET_BCM28155_AP
579 bool "Support bcm28155_ap"
584 config TARGET_BCMCYGNUS
585 bool "Support bcmcygnus"
593 imply BCM_SF2_ETH_GMAC
596 bool "Support bcmnsp"
600 bool "Support Broadcom Northstar2"
603 Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit
604 ARMv8 Cortex-A57 processors targeting a broad range of networking
608 bool "Samsung EXYNOS"
619 bool "Samsung S5PC1XX"
627 bool "Calxeda Highbank"
631 config ARCH_INTEGRATOR
632 bool "ARM Ltd. Integrator family"
641 select SYS_THUMB_BUILD
647 config ARCH_OMAP2PLUS
650 select SPL_BOARD_INIT if SPL
651 select SPL_STACK_R if SPL
658 Support for the Meson SoC family developed by Amlogic Inc.,
659 targeted at media players and tablet computers. We currently
660 support the S905 (GXBaby) 64-bit SoC.
669 select ROM_UNIFIED_SECTIONS
674 select SYS_FSL_HAS_SEC if SECURE_BOOT
675 select SYS_FSL_SEC_COMPAT_4
676 select SYS_FSL_SEC_LE
677 select BOARD_EARLY_INIT_F
678 select ARCH_MISC_INIT
683 select SYS_FSL_HAS_SEC if SECURE_BOOT
684 select SYS_FSL_SEC_COMPAT_4
685 select SYS_FSL_SEC_LE
686 select SYS_THUMB_BUILD if SPL
690 default "arch/arm/mach-omap2/u-boot-spl.lds"
696 select BOARD_EARLY_INIT_F
699 bool "QEMU Virtual Platform"
706 bool "Renesas ARM SoCs"
709 select BOARD_EARLY_INIT_F
711 imply SYS_THUMB_BUILD
713 config TARGET_S32V234EVB
714 bool "Support s32v234evb"
716 select SYS_FSL_ERRATUM_ESDHC111
718 config ARCH_SNAPDRAGON
719 bool "Qualcomm Snapdragon SoCs"
729 bool "Altera SOCFPGA family"
733 select SPL_OF_CONTROL
737 select ENABLE_ARM_SOC_BOOT0_HOOK
738 select ARCH_EARLY_INIT_R
739 select ARCH_MISC_INIT
740 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
741 select SYS_THUMB_BUILD
747 bool "Support sunxi (Allwinner) SoCs"
750 select CMD_MMC if MMC
751 select CMD_USB if DISTRO_DEFAULTS
757 select DM_USB if DISTRO_DEFAULTS
758 select OF_BOARD_SETUP
761 select SPL_STACK_R if SPL
762 select SPL_SYS_MALLOC_SIMPLE if SPL
764 select SPL_SYS_THUMB_BUILD if !ARM64
765 select SYS_THUMB_BUILD if !ARM64
766 select USB if DISTRO_DEFAULTS
767 select USB_STORAGE if DISTRO_DEFAULTS
768 select USB_KEYBOARD if DISTRO_DEFAULTS
769 select USE_TINY_PRINTF
772 imply OF_LIBFDT_OVERLAY
773 imply PRE_CONSOLE_BUFFER
774 imply SPL_GPIO_SUPPORT
775 imply SPL_LIBCOMMON_SUPPORT
776 imply SPL_LIBDISK_SUPPORT
777 imply SPL_LIBGENERIC_SUPPORT
778 imply SPL_MMC_SUPPORT if MMC
779 imply SPL_POWER_SUPPORT
780 imply SPL_SERIAL_SUPPORT
784 bool "Support TS4600"
790 bool "Freescale Vybrid"
792 select SYS_FSL_ERRATUM_ESDHC111
797 bool "Xilinx Zynq based platform"
798 select BOARD_LATE_INIT
802 select SPL_BOARD_INIT if SPL
803 select SPL_OF_CONTROL if SPL
812 select SPL_SEPARATE_BSS if SPL
823 bool "Xilinx ZynqMP based platform"
825 select BOARD_LATE_INIT
831 select SPL_BOARD_INIT if SPL
832 select SPL_CLK if SPL
840 config TARGET_VEXPRESS64_AEMV8A
841 bool "Support vexpress_aemv8a"
845 config TARGET_VEXPRESS64_BASE_FVP
846 bool "Support Versatile Express ARMv8a FVP BASE model"
851 config TARGET_VEXPRESS64_BASE_FVP_DRAM
852 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
856 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
857 the default config to allow the user to load the images directly into
858 DRAM using model parameters rather than by using semi-hosting to load
859 the files from the host filesystem.
861 config TARGET_VEXPRESS64_JUNO
862 bool "Support Versatile Express Juno Development Platform"
866 config TARGET_LS2080A_EMU
867 bool "Support ls2080a_emu"
870 select ARMV8_MULTIENTRY
871 select ARCH_MISC_INIT
873 Support for Freescale LS2080A_EMU platform
874 The LS2080A Development System (EMULATOR) is a pre silicon
875 development platform that supports the QorIQ LS2080A
876 Layerscape Architecture processor.
878 config TARGET_LS2080A_SIMU
879 bool "Support ls2080a_simu"
882 select ARMV8_MULTIENTRY
883 select ARCH_MISC_INIT
885 Support for Freescale LS2080A_SIMU platform
886 The LS2080A Development System (QDS) is a pre silicon
887 development platform that supports the QorIQ LS2080A
888 Layerscape Architecture processor.
890 config TARGET_LS1088AQDS
891 bool "Support ls1088aqds"
894 select ARMV8_MULTIENTRY
895 select ARCH_MISC_INIT
896 select BOARD_LATE_INIT
899 Support for NXP LS1088AQDS platform
900 The LS1088A Development System (QDS) is a high-performance
901 development platform that supports the QorIQ LS1088A
902 Layerscape Architecture processor.
904 config TARGET_LS2080AQDS
905 bool "Support ls2080aqds"
908 select ARMV8_MULTIENTRY
909 select BOARD_LATE_INIT
911 select ARCH_MISC_INIT
915 Support for Freescale LS2080AQDS platform
916 The LS2080A Development System (QDS) is a high-performance
917 development platform that supports the QorIQ LS2080A
918 Layerscape Architecture processor.
920 config TARGET_LS2080ARDB
921 bool "Support ls2080ardb"
924 select ARMV8_MULTIENTRY
925 select BOARD_LATE_INIT
927 select ARCH_MISC_INIT
931 Support for Freescale LS2080ARDB platform.
932 The LS2080A Reference design board (RDB) is a high-performance
933 development platform that supports the QorIQ LS2080A
934 Layerscape Architecture processor.
936 config TARGET_LS2081ARDB
937 bool "Support ls2081ardb"
940 select ARMV8_MULTIENTRY
941 select BOARD_LATE_INIT
943 select ARCH_MISC_INIT
945 Support for Freescale LS2081ARDB platform.
946 The LS2081A Reference design board (RDB) is a high-performance
947 development platform that supports the QorIQ LS2081A/LS2041A
948 Layerscape Architecture processor.
951 bool "Support HiKey 96boards Consumer Edition Platform"
959 Support for HiKey 96boards platform. It features a HI6220
960 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
963 bool "Support Poplar 96boards Enterprise Edition Platform"
971 Support for Poplar 96boards EE platform. It features a HI3798cv200
972 SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
973 making it capable of running any commercial set-top solution based on
976 config TARGET_LS1012AQDS
977 bool "Support ls1012aqds"
980 select BOARD_LATE_INIT
982 Support for Freescale LS1012AQDS platform.
983 The LS1012A Development System (QDS) is a high-performance
984 development platform that supports the QorIQ LS1012A
985 Layerscape Architecture processor.
987 config TARGET_LS1012ARDB
988 bool "Support ls1012ardb"
991 select BOARD_LATE_INIT
995 Support for Freescale LS1012ARDB platform.
996 The LS1012A Reference design board (RDB) is a high-performance
997 development platform that supports the QorIQ LS1012A
998 Layerscape Architecture processor.
1000 config TARGET_LS1012A2G5RDB
1001 bool "Support ls1012a2g5rdb"
1004 select BOARD_LATE_INIT
1007 Support for Freescale LS1012A2G5RDB platform.
1008 The LS1012A 2G5 Reference design board (RDB) is a high-performance
1009 development platform that supports the QorIQ LS1012A
1010 Layerscape Architecture processor.
1012 config TARGET_LS1012AFRDM
1013 bool "Support ls1012afrdm"
1017 Support for Freescale LS1012AFRDM platform.
1018 The LS1012A Freedom board (FRDM) is a high-performance
1019 development platform that supports the QorIQ LS1012A
1020 Layerscape Architecture processor.
1022 config TARGET_LS1088ARDB
1023 bool "Support ls1088ardb"
1026 select ARMV8_MULTIENTRY
1027 select ARCH_MISC_INIT
1028 select BOARD_LATE_INIT
1031 Support for NXP LS1088ARDB platform.
1032 The LS1088A Reference design board (RDB) is a high-performance
1033 development platform that supports the QorIQ LS1088A
1034 Layerscape Architecture processor.
1036 config TARGET_LS1021AQDS
1037 bool "Support ls1021aqds"
1038 select BOARD_LATE_INIT
1040 select CPU_V7_HAS_NONSEC
1041 select CPU_V7_HAS_VIRT
1044 select ARCH_SUPPORT_PSCI
1045 select LS1_DEEP_SLEEP
1047 select BOARD_EARLY_INIT_F
1050 config TARGET_LS1021ATWR
1051 bool "Support ls1021atwr"
1052 select BOARD_LATE_INIT
1054 select CPU_V7_HAS_NONSEC
1055 select CPU_V7_HAS_VIRT
1058 select ARCH_SUPPORT_PSCI
1059 select LS1_DEEP_SLEEP
1060 select BOARD_EARLY_INIT_F
1063 config TARGET_LS1021AIOT
1064 bool "Support ls1021aiot"
1065 select BOARD_LATE_INIT
1067 select CPU_V7_HAS_NONSEC
1068 select CPU_V7_HAS_VIRT
1071 select ARCH_SUPPORT_PSCI
1074 Support for Freescale LS1021AIOT platform.
1075 The LS1021A Freescale board (IOT) is a high-performance
1076 development platform that supports the QorIQ LS1021A
1077 Layerscape Architecture processor.
1079 config TARGET_LS1043AQDS
1080 bool "Support ls1043aqds"
1083 select ARMV8_MULTIENTRY
1084 select BOARD_LATE_INIT
1086 select BOARD_EARLY_INIT_F
1089 Support for Freescale LS1043AQDS platform.
1091 config TARGET_LS1043ARDB
1092 bool "Support ls1043ardb"
1095 select ARMV8_MULTIENTRY
1096 select BOARD_LATE_INIT
1098 select BOARD_EARLY_INIT_F
1101 Support for Freescale LS1043ARDB platform.
1103 config TARGET_LS1046AQDS
1104 bool "Support ls1046aqds"
1107 select ARMV8_MULTIENTRY
1108 select BOARD_LATE_INIT
1110 select DM_SPI_FLASH if DM_SPI
1111 select BOARD_EARLY_INIT_F
1114 Support for Freescale LS1046AQDS platform.
1115 The LS1046A Development System (QDS) is a high-performance
1116 development platform that supports the QorIQ LS1046A
1117 Layerscape Architecture processor.
1119 config TARGET_LS1046ARDB
1120 bool "Support ls1046ardb"
1123 select ARMV8_MULTIENTRY
1124 select BOARD_LATE_INIT
1126 select DM_SPI_FLASH if DM_SPI
1127 select POWER_MC34VR500
1128 select BOARD_EARLY_INIT_F
1131 Support for Freescale LS1046ARDB platform.
1132 The LS1046A Reference Design Board (RDB) is a high-performance
1133 development platform that supports the QorIQ LS1046A
1134 Layerscape Architecture processor.
1137 bool "Support h2200"
1140 config TARGET_ZIPITZ2
1141 bool "Support zipitz2"
1144 config TARGET_COLIBRI_PXA270
1145 bool "Support colibri_pxa270"
1148 config ARCH_UNIPHIER
1149 bool "Socionext UniPhier SoCs"
1150 select BOARD_LATE_INIT
1161 select SPL_BOARD_INIT if SPL
1162 select SPL_DM if SPL
1163 select SPL_LIBCOMMON_SUPPORT if SPL
1164 select SPL_LIBGENERIC_SUPPORT if SPL
1165 select SPL_OF_CONTROL if SPL
1166 select SPL_PINCTRL if SPL
1170 Support for UniPhier SoC family developed by Socionext Inc.
1171 (formerly, System LSI Business Division of Panasonic Corporation)
1174 bool "Support STM32"
1178 select SYS_THUMB_BUILD
1181 bool "Support STMicrolectronics SoCs"
1189 Support for STMicroelectronics STiH407/10 SoC family.
1190 This SoC is used on Linaro 96Board STiH410-B2260
1192 config ARCH_ROCKCHIP
1193 bool "Support Rockchip SoCs"
1197 select SPL_DM if SPL
1199 select SYS_THUMB_BUILD if !ARM64
1200 select SPL_SYS_MALLOC_SIMPLE if SPL
1207 select DM_USB if USB
1210 select ENABLE_ARM_SOC_BOOT0_HOOK
1214 imply USB_FUNCTION_FASTBOOT
1218 imply SARADC_ROCKCHIP
1220 config TARGET_THUNDERX_88XX
1221 bool "Support ThunderX 88xx"
1224 select SYS_CACHE_SHIFT_7
1228 bool "Support Aspeed SoCs"
1234 source "arch/arm/mach-aspeed/Kconfig"
1236 source "arch/arm/mach-at91/Kconfig"
1238 source "arch/arm/mach-bcm283x/Kconfig"
1240 source "arch/arm/mach-davinci/Kconfig"
1242 source "arch/arm/mach-exynos/Kconfig"
1244 source "arch/arm/mach-highbank/Kconfig"
1246 source "arch/arm/mach-integrator/Kconfig"
1248 source "arch/arm/mach-keystone/Kconfig"
1250 source "arch/arm/mach-kirkwood/Kconfig"
1252 source "arch/arm/mach-mvebu/Kconfig"
1254 source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1256 source "arch/arm/mach-imx/mx2/Kconfig"
1258 source "arch/arm/mach-imx/mx7ulp/Kconfig"
1260 source "arch/arm/mach-imx/mx7/Kconfig"
1262 source "arch/arm/mach-imx/mx6/Kconfig"
1264 source "arch/arm/mach-imx/mx5/Kconfig"
1266 source "arch/arm/mach-omap2/Kconfig"
1268 source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1270 source "arch/arm/mach-orion5x/Kconfig"
1272 source "arch/arm/mach-rmobile/Kconfig"
1274 source "arch/arm/mach-meson/Kconfig"
1276 source "arch/arm/mach-qemu/Kconfig"
1278 source "arch/arm/mach-rockchip/Kconfig"
1280 source "arch/arm/mach-s5pc1xx/Kconfig"
1282 source "arch/arm/mach-snapdragon/Kconfig"
1284 source "arch/arm/mach-socfpga/Kconfig"
1286 source "arch/arm/mach-sti/Kconfig"
1288 source "arch/arm/mach-stm32/Kconfig"
1290 source "arch/arm/mach-sunxi/Kconfig"
1292 source "arch/arm/mach-tegra/Kconfig"
1294 source "arch/arm/mach-uniphier/Kconfig"
1296 source "arch/arm/cpu/armv7/vf610/Kconfig"
1298 source "arch/arm/mach-zynq/Kconfig"
1300 source "arch/arm/cpu/armv7/Kconfig"
1302 source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1304 source "arch/arm/cpu/armv8/Kconfig"
1306 source "arch/arm/mach-imx/Kconfig"
1308 source "board/aries/m28evk/Kconfig"
1309 source "board/bosch/shc/Kconfig"
1310 source "board/CarMediaLab/flea3/Kconfig"
1311 source "board/Marvell/aspenite/Kconfig"
1312 source "board/Marvell/gplugd/Kconfig"
1313 source "board/armadeus/apf27/Kconfig"
1314 source "board/armltd/vexpress/Kconfig"
1315 source "board/armltd/vexpress64/Kconfig"
1316 source "board/bluegiga/apx4devkit/Kconfig"
1317 source "board/broadcom/bcm23550_w1d/Kconfig"
1318 source "board/broadcom/bcm28155_ap/Kconfig"
1319 source "board/broadcom/bcmcygnus/Kconfig"
1320 source "board/broadcom/bcmnsp/Kconfig"
1321 source "board/broadcom/bcmns2/Kconfig"
1322 source "board/cavium/thunderx/Kconfig"
1323 source "board/cirrus/edb93xx/Kconfig"
1324 source "board/creative/xfi3/Kconfig"
1325 source "board/eets/pdu001/Kconfig"
1326 source "board/freescale/ls2080a/Kconfig"
1327 source "board/freescale/ls2080aqds/Kconfig"
1328 source "board/freescale/ls2080ardb/Kconfig"
1329 source "board/freescale/ls1088a/Kconfig"
1330 source "board/freescale/ls1021aqds/Kconfig"
1331 source "board/freescale/ls1043aqds/Kconfig"
1332 source "board/freescale/ls1021atwr/Kconfig"
1333 source "board/freescale/ls1021aiot/Kconfig"
1334 source "board/freescale/ls1046aqds/Kconfig"
1335 source "board/freescale/ls1043ardb/Kconfig"
1336 source "board/freescale/ls1046ardb/Kconfig"
1337 source "board/freescale/ls1012aqds/Kconfig"
1338 source "board/freescale/ls1012ardb/Kconfig"
1339 source "board/freescale/ls1012afrdm/Kconfig"
1340 source "board/freescale/mx23evk/Kconfig"
1341 source "board/freescale/mx28evk/Kconfig"
1342 source "board/freescale/mx31ads/Kconfig"
1343 source "board/freescale/mx31pdk/Kconfig"
1344 source "board/freescale/mx35pdk/Kconfig"
1345 source "board/freescale/s32v234evb/Kconfig"
1346 source "board/gdsys/a38x/Kconfig"
1347 source "board/grinn/chiliboard/Kconfig"
1348 source "board/gumstix/pepper/Kconfig"
1349 source "board/h2200/Kconfig"
1350 source "board/hisilicon/hikey/Kconfig"
1351 source "board/hisilicon/poplar/Kconfig"
1352 source "board/imx31_phycore/Kconfig"
1353 source "board/isee/igep003x/Kconfig"
1354 source "board/olimex/mx23_olinuxino/Kconfig"
1355 source "board/phytec/pcm051/Kconfig"
1356 source "board/ppcag/bg0900/Kconfig"
1357 source "board/sandisk/sansa_fuze_plus/Kconfig"
1358 source "board/schulercontrol/sc_sps_1/Kconfig"
1359 source "board/silica/pengwyn/Kconfig"
1360 source "board/spear/spear300/Kconfig"
1361 source "board/spear/spear310/Kconfig"
1362 source "board/spear/spear320/Kconfig"
1363 source "board/spear/spear600/Kconfig"
1364 source "board/spear/x600/Kconfig"
1365 source "board/st/stv0991/Kconfig"
1366 source "board/tcl/sl50/Kconfig"
1367 source "board/birdland/bav335x/Kconfig"
1368 source "board/timll/devkit3250/Kconfig"
1369 source "board/toradex/colibri_pxa270/Kconfig"
1370 source "board/technologic/ts4600/Kconfig"
1371 source "board/vscom/baltos/Kconfig"
1372 source "board/woodburn/Kconfig"
1373 source "board/work-microwave/work_92105/Kconfig"
1374 source "board/zipitz2/Kconfig"
1376 source "arch/arm/Kconfig.debug"
1381 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
1382 default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
1383 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64