xref: /openbmc/u-boot/arch/arm/Kconfig (revision d10fc50f78ebae7c7f52469eced7c0d6d8a89f8c)
1dd84058dSMasahiro Yamadamenu "ARM architecture"
2dd84058dSMasahiro Yamada	depends on ARM
3dd84058dSMasahiro Yamada
4dd84058dSMasahiro Yamadaconfig SYS_ARCH
5dd84058dSMasahiro Yamada	default "arm"
6dd84058dSMasahiro Yamada
7016a954eSMasahiro Yamadaconfig ARM64
8016a954eSMasahiro Yamada	bool
9bb6b142fSMasahiro Yamada	select PHYS_64BIT
10067716baSTom Rini	select SYS_CACHE_SHIFT_6
11016a954eSMasahiro Yamada
1249e93875SStephen Warrenif ARM64
1349e93875SStephen Warrenconfig POSITION_INDEPENDENT
1449e93875SStephen Warren	bool "Generate position-independent pre-relocation code"
1549e93875SStephen Warren	help
1649e93875SStephen Warren	  U-Boot expects to be linked to a specific hard-coded address, and to
1749e93875SStephen Warren	  be loaded to and run from that address. This option lifts that
1849e93875SStephen Warren	  restriction, thus allowing the code to be loaded to and executed
1949e93875SStephen Warren	  from almost any address. This logic relies on the relocation
2049e93875SStephen Warren	  information that is embedded into the binary to support U-Boot
2149e93875SStephen Warren	  relocating itself to the top-of-RAM later during execution.
22e6c90448SStephen Warren
23e6c90448SStephen Warrenconfig SYS_INIT_SP_BSS_OFFSET
24e6c90448SStephen Warren	int
25e6c90448SStephen Warren	help
26e6c90448SStephen Warren	  U-Boot typically uses a hard-coded value for the stack pointer
27e6c90448SStephen Warren	  before relocation. Define this option to instead calculate the
28e6c90448SStephen Warren	  initial SP at run-time. This is useful to avoid hard-coding addresses
29e6c90448SStephen Warren	  into U-Boot, so that can be loaded and executed at arbitrary
30e6c90448SStephen Warren	  addresses and thus avoid using arbitrary addresses at runtime. This
31e6c90448SStephen Warren	  option's value is the offset added to &_bss_start in order to
32e6c90448SStephen Warren	  calculate the stack pointer. This offset should be large enough so
33e6c90448SStephen Warren	  that the early malloc region, global data (gd), and early stack usage
34e6c90448SStephen Warren	  do not overlap any appended DTB.
358163faf9SStephen Warren
368163faf9SStephen Warrenconfig LINUX_KERNEL_IMAGE_HEADER
378163faf9SStephen Warren	bool
388163faf9SStephen Warren	help
398163faf9SStephen Warren	  Place a Linux kernel image header at the start of the U-Boot binary.
408163faf9SStephen Warren	  The format of the header is described in the Linux kernel source at
418163faf9SStephen Warren	  Documentation/arm64/booting.txt. This feature is useful since the
428163faf9SStephen Warren	  image header reports the amount of memory (BSS and similar) that
438163faf9SStephen Warren	  U-Boot needs to use, but which isn't part of the binary.
448163faf9SStephen Warren
458163faf9SStephen Warrenif LINUX_KERNEL_IMAGE_HEADER
468163faf9SStephen Warrenconfig LNX_KRNL_IMG_TEXT_OFFSET_BASE
478163faf9SStephen Warren	hex
488163faf9SStephen Warren	help
498163faf9SStephen Warren	  The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the
508163faf9SStephen Warren	  TEXT_OFFSET value written in to the Linux kernel image header.
518163faf9SStephen Warrenendif
5249e93875SStephen Warrenendif
5349e93875SStephen Warren
5449e93875SStephen Warrenconfig STATIC_RELA
5549e93875SStephen Warren	bool
5649e93875SStephen Warren	default y if ARM64 && !POSITION_INDEPENDENT
5749e93875SStephen Warren
5837217f0eSLokesh Vutlaconfig DMA_ADDR_T_64BIT
5937217f0eSLokesh Vutla	bool
6037217f0eSLokesh Vutla	default y if ARM64
6137217f0eSLokesh Vutla
622e07c249SGeorges Savoundararadjconfig HAS_VBAR
632e07c249SGeorges Savoundararadj	bool
642e07c249SGeorges Savoundararadj
6562e92077SAlbert ARIBAUDconfig HAS_THUMB2
6662e92077SAlbert ARIBAUD	bool
6762e92077SAlbert ARIBAUD
68111a6af9SPhil Edworthy# Used for compatibility with asm files copied from the kernel
69111a6af9SPhil Edworthyconfig ARM_ASM_UNIFIED
70111a6af9SPhil Edworthy	bool
71111a6af9SPhil Edworthy	default y
72111a6af9SPhil Edworthy
73111a6af9SPhil Edworthy# Used for compatibility with asm files copied from the kernel
74111a6af9SPhil Edworthyconfig THUMB2_KERNEL
75111a6af9SPhil Edworthy	bool
76111a6af9SPhil Edworthy
778dda2e2fSTom Rini# If set, the workarounds for these ARM errata are applied early during U-Boot
788dda2e2fSTom Rini# startup. Note that in general these options force the workarounds to be
798dda2e2fSTom Rini# applied; no CPU-type/version detection exists, unlike the similar options in
808dda2e2fSTom Rini# the Linux kernel. Do not set these options unless they apply!  Also note that
818dda2e2fSTom Rini# the following can be machine specific errata. These do have ability to
828dda2e2fSTom Rini# provide rudimentary version and machine specific checks, but expect no
838dda2e2fSTom Rini# product checks:
848dda2e2fSTom Rini# CONFIG_ARM_ERRATA_430973
858dda2e2fSTom Rini# CONFIG_ARM_ERRATA_454179
868dda2e2fSTom Rini# CONFIG_ARM_ERRATA_621766
878dda2e2fSTom Rini# CONFIG_ARM_ERRATA_798870
888dda2e2fSTom Rini# CONFIG_ARM_ERRATA_801819
898dda2e2fSTom Riniconfig ARM_ERRATA_430973
908dda2e2fSTom Rini	bool
918dda2e2fSTom Rini
928dda2e2fSTom Riniconfig ARM_ERRATA_454179
938dda2e2fSTom Rini	bool
948dda2e2fSTom Rini
958dda2e2fSTom Riniconfig ARM_ERRATA_621766
968dda2e2fSTom Rini	bool
978dda2e2fSTom Rini
988dda2e2fSTom Riniconfig ARM_ERRATA_716044
998dda2e2fSTom Rini	bool
1008dda2e2fSTom Rini
10119a75b8cSSiarhei Siamashkaconfig ARM_ERRATA_725233
10219a75b8cSSiarhei Siamashka	bool
10319a75b8cSSiarhei Siamashka
1048dda2e2fSTom Riniconfig ARM_ERRATA_742230
1058dda2e2fSTom Rini	bool
1068dda2e2fSTom Rini
1078dda2e2fSTom Riniconfig ARM_ERRATA_743622
1088dda2e2fSTom Rini	bool
1098dda2e2fSTom Rini
1108dda2e2fSTom Riniconfig ARM_ERRATA_751472
1118dda2e2fSTom Rini	bool
1128dda2e2fSTom Rini
1138dda2e2fSTom Riniconfig ARM_ERRATA_761320
1148dda2e2fSTom Rini	bool
1158dda2e2fSTom Rini
1168dda2e2fSTom Riniconfig ARM_ERRATA_773022
1178dda2e2fSTom Rini	bool
1188dda2e2fSTom Rini
1198dda2e2fSTom Riniconfig ARM_ERRATA_774769
1208dda2e2fSTom Rini	bool
1218dda2e2fSTom Rini
1228dda2e2fSTom Riniconfig ARM_ERRATA_794072
1238dda2e2fSTom Rini	bool
1248dda2e2fSTom Rini
1258dda2e2fSTom Riniconfig ARM_ERRATA_798870
1268dda2e2fSTom Rini	bool
1278dda2e2fSTom Rini
1288dda2e2fSTom Riniconfig ARM_ERRATA_801819
1298dda2e2fSTom Rini	bool
1308dda2e2fSTom Rini
1318dda2e2fSTom Riniconfig ARM_ERRATA_826974
1328dda2e2fSTom Rini	bool
1338dda2e2fSTom Rini
1348dda2e2fSTom Riniconfig ARM_ERRATA_828024
1358dda2e2fSTom Rini	bool
1368dda2e2fSTom Rini
1378dda2e2fSTom Riniconfig ARM_ERRATA_829520
1388dda2e2fSTom Rini	bool
1398dda2e2fSTom Rini
1408dda2e2fSTom Riniconfig ARM_ERRATA_833069
1418dda2e2fSTom Rini	bool
1428dda2e2fSTom Rini
1438dda2e2fSTom Riniconfig ARM_ERRATA_833471
1448dda2e2fSTom Rini	bool
1458dda2e2fSTom Rini
14611d94319SPeng Fanconfig ARM_ERRATA_845369
14711d94319SPeng Fan       bool
14811d94319SPeng Fan
1498776350dSNisal Menukaconfig ARM_ERRATA_852421
1508776350dSNisal Menuka	bool
1518776350dSNisal Menuka
1528776350dSNisal Menukaconfig ARM_ERRATA_852423
1538776350dSNisal Menuka	bool
1548776350dSNisal Menuka
155ab0ab54eSAlison Wangconfig ARM_ERRATA_855873
156ab0ab54eSAlison Wang	bool
157ab0ab54eSAlison Wang
1582e07c249SGeorges Savoundararadjconfig CPU_ARM720T
1592e07c249SGeorges Savoundararadj	bool
160067716baSTom Rini	select SYS_CACHE_SHIFT_5
1612e07c249SGeorges Savoundararadj
1622e07c249SGeorges Savoundararadjconfig CPU_ARM920T
1632e07c249SGeorges Savoundararadj	bool
164067716baSTom Rini	select SYS_CACHE_SHIFT_5
1652e07c249SGeorges Savoundararadj
1662e07c249SGeorges Savoundararadjconfig CPU_ARM926EJS
1672e07c249SGeorges Savoundararadj	bool
168067716baSTom Rini	select SYS_CACHE_SHIFT_5
1692e07c249SGeorges Savoundararadj
1702e07c249SGeorges Savoundararadjconfig CPU_ARM946ES
1712e07c249SGeorges Savoundararadj	bool
172067716baSTom Rini	select SYS_CACHE_SHIFT_5
1732e07c249SGeorges Savoundararadj
1742e07c249SGeorges Savoundararadjconfig CPU_ARM1136
1752e07c249SGeorges Savoundararadj	bool
176067716baSTom Rini	select SYS_CACHE_SHIFT_5
1772e07c249SGeorges Savoundararadj
1782e07c249SGeorges Savoundararadjconfig CPU_ARM1176
1792e07c249SGeorges Savoundararadj	bool
1802e07c249SGeorges Savoundararadj	select HAS_VBAR
181067716baSTom Rini	select SYS_CACHE_SHIFT_5
1822e07c249SGeorges Savoundararadj
1832e07c249SGeorges Savoundararadjconfig CPU_V7
1842e07c249SGeorges Savoundararadj	bool
1852e07c249SGeorges Savoundararadj	select HAS_VBAR
18662e92077SAlbert ARIBAUD	select HAS_THUMB2
187067716baSTom Rini	select SYS_CACHE_SHIFT_6
1882e07c249SGeorges Savoundararadj
18912d8a729Srev13@wp.plconfig CPU_V7M
19012d8a729Srev13@wp.pl	bool
19162e92077SAlbert ARIBAUD	select HAS_THUMB2
192111a6af9SPhil Edworthy	select THUMB2_KERNEL
193067716baSTom Rini	select SYS_CACHE_SHIFT_5
19412d8a729Srev13@wp.pl
1952e07c249SGeorges Savoundararadjconfig CPU_PXA
1962e07c249SGeorges Savoundararadj	bool
197067716baSTom Rini	select SYS_CACHE_SHIFT_5
1982e07c249SGeorges Savoundararadj
1992e07c249SGeorges Savoundararadjconfig CPU_SA1100
2002e07c249SGeorges Savoundararadj	bool
201067716baSTom Rini	select SYS_CACHE_SHIFT_5
2022e07c249SGeorges Savoundararadj
2032e07c249SGeorges Savoundararadjconfig SYS_CPU
2042e07c249SGeorges Savoundararadj	default "arm720t" if CPU_ARM720T
2052e07c249SGeorges Savoundararadj	default "arm920t" if CPU_ARM920T
2062e07c249SGeorges Savoundararadj	default "arm926ejs" if CPU_ARM926EJS
2072e07c249SGeorges Savoundararadj	default "arm946es" if CPU_ARM946ES
2082e07c249SGeorges Savoundararadj	default "arm1136" if CPU_ARM1136
2092e07c249SGeorges Savoundararadj	default "arm1176" if CPU_ARM1176
2102e07c249SGeorges Savoundararadj	default "armv7" if CPU_V7
21112d8a729Srev13@wp.pl	default "armv7m" if CPU_V7M
2122e07c249SGeorges Savoundararadj	default "pxa" if CPU_PXA
2132e07c249SGeorges Savoundararadj	default "sa1100" if CPU_SA1100
21401541eecSMasahiro Yamada	default "armv8" if ARM64
2152e07c249SGeorges Savoundararadj
21666020a67SMarek Vasutconfig SYS_ARM_ARCH
21766020a67SMarek Vasut	int
21866020a67SMarek Vasut	default 4 if CPU_ARM720T
21966020a67SMarek Vasut	default 4 if CPU_ARM920T
22066020a67SMarek Vasut	default 5 if CPU_ARM926EJS
22166020a67SMarek Vasut	default 5 if CPU_ARM946ES
22266020a67SMarek Vasut	default 6 if CPU_ARM1136
22366020a67SMarek Vasut	default 6 if CPU_ARM1176
22466020a67SMarek Vasut	default 7 if CPU_V7
22566020a67SMarek Vasut	default 7 if CPU_V7M
22666020a67SMarek Vasut	default 5 if CPU_PXA
22766020a67SMarek Vasut	default 4 if CPU_SA1100
22866020a67SMarek Vasut	default 8 if ARM64
22966020a67SMarek Vasut
230067716baSTom Riniconfig SYS_CACHE_SHIFT_5
231067716baSTom Rini	bool
232067716baSTom Rini
233067716baSTom Riniconfig SYS_CACHE_SHIFT_6
234067716baSTom Rini	bool
235067716baSTom Rini
236067716baSTom Riniconfig SYS_CACHE_SHIFT_7
237067716baSTom Rini	bool
238067716baSTom Rini
239067716baSTom Riniconfig SYS_CACHELINE_SIZE
240067716baSTom Rini	int
241067716baSTom Rini	default 128 if SYS_CACHE_SHIFT_7
242067716baSTom Rini	default 64 if SYS_CACHE_SHIFT_6
243067716baSTom Rini	default 32 if SYS_CACHE_SHIFT_5
244067716baSTom Rini
245c54bcf68SMasahiro Yamadaconfig ARM_SMCCC
246c54bcf68SMasahiro Yamada	bool "Support for ARM SMC Calling Convention (SMCCC)"
247c54bcf68SMasahiro Yamada	depends on CPU_V7 || ARM64
248573a3811SMasahiro Yamada	select ARM_PSCI_FW
249c54bcf68SMasahiro Yamada	help
250c54bcf68SMasahiro Yamada	  Say Y here if you want to enable ARM SMC Calling Convention.
251c54bcf68SMasahiro Yamada	  This should be enabled if U-Boot needs to communicate with system
252c54bcf68SMasahiro Yamada	  firmware (for example, PSCI) according to SMCCC.
253c54bcf68SMasahiro Yamada
254f91afc4dSLinus Walleijconfig SEMIHOSTING
255f91afc4dSLinus Walleij	bool "support boot from semihosting"
256f91afc4dSLinus Walleij	help
257f91afc4dSLinus Walleij	  In emulated environments, semihosting is a way for
258f91afc4dSLinus Walleij	  the hosted environment to call out to the emulator to
259f91afc4dSLinus Walleij	  retrieve files from the host machine.
260f91afc4dSLinus Walleij
2613a649407STom Riniconfig SYS_THUMB_BUILD
2623a649407STom Rini	bool "Build U-Boot using the Thumb instruction set"
2633a649407STom Rini	depends on !ARM64
2643a649407STom Rini	help
2653a649407STom Rini	   Use this flag to build U-Boot using the Thumb instruction set for
2663a649407STom Rini	   ARM architectures. Thumb instruction set provides better code
2673a649407STom Rini	   density. For ARM architectures that support Thumb2 this flag will
2683a649407STom Rini	   result in Thumb2 code generated by GCC.
2693a649407STom Rini
2703a649407STom Riniconfig SPL_SYS_THUMB_BUILD
2713a649407STom Rini	bool "Build SPL using the Thumb instruction set"
2723a649407STom Rini	default y if SYS_THUMB_BUILD
2733a649407STom Rini	depends on !ARM64
2743a649407STom Rini	help
2753a649407STom Rini	   Use this flag to build SPL using the Thumb instruction set for
2763a649407STom Rini	   ARM architectures. Thumb instruction set provides better code
2773a649407STom Rini	   density. For ARM architectures that support Thumb2 this flag will
2783a649407STom Rini	   result in Thumb2 code generated by GCC.
2793a649407STom Rini
280f3e9bec8SPeng Fanconfig SYS_L2CACHE_OFF
281f3e9bec8SPeng Fan	bool "L2cache off"
282f3e9bec8SPeng Fan	help
283f3e9bec8SPeng Fan	  If SoC does not support L2CACHE or one do not want to enable
284f3e9bec8SPeng Fan	  L2CACHE, choose this option.
285f3e9bec8SPeng Fan
286cdaa633fSAndre Przywaraconfig ENABLE_ARM_SOC_BOOT0_HOOK
287cdaa633fSAndre Przywara	bool "prepare BOOT0 header"
288cdaa633fSAndre Przywara	help
289cdaa633fSAndre Przywara	  If the SoC's BOOT0 requires a header area filled with (magic)
290cdaa633fSAndre Przywara	  values, then choose this option, and create a define called
291cdaa633fSAndre Przywara	  ARM_SOC_BOOT0_HOOK which contains the required assembler
292cdaa633fSAndre Przywara	  preprocessor code.
293cdaa633fSAndre Przywara
29485db5831SAndre Przywaraconfig ARM_CORTEX_CPU_IS_UP
29585db5831SAndre Przywara	bool
29685db5831SAndre Przywara	default n
29785db5831SAndre Przywara
298be72591bSFabio Estevamconfig USE_ARCH_MEMCPY
299be72591bSFabio Estevam	bool "Use an assembly optimized implementation of memcpy"
30040d5534cSTom Rini	default y
30140d5534cSTom Rini	depends on !ARM64
30240d5534cSTom Rini	help
30340d5534cSTom Rini	  Enable the generation of an optimized version of memcpy.
30440d5534cSTom Rini	  Such implementation may be faster under some conditions
30540d5534cSTom Rini	  but may increase the binary size.
30640d5534cSTom Rini
30740d5534cSTom Riniconfig SPL_USE_ARCH_MEMCPY
308f8136e68SAndy Yan	bool "Use an assembly optimized implementation of memcpy for SPL"
30940d5534cSTom Rini	default y if USE_ARCH_MEMCPY
310085be482SMasahiro Yamada	depends on !ARM64
311be72591bSFabio Estevam	help
312be72591bSFabio Estevam	  Enable the generation of an optimized version of memcpy.
313be72591bSFabio Estevam	  Such implementation may be faster under some conditions
314be72591bSFabio Estevam	  but may increase the binary size.
315be72591bSFabio Estevam
316be72591bSFabio Estevamconfig USE_ARCH_MEMSET
317be72591bSFabio Estevam	bool "Use an assembly optimized implementation of memset"
31840d5534cSTom Rini	default y
31940d5534cSTom Rini	depends on !ARM64
32040d5534cSTom Rini	help
32140d5534cSTom Rini	  Enable the generation of an optimized version of memset.
32240d5534cSTom Rini	  Such implementation may be faster under some conditions
32340d5534cSTom Rini	  but may increase the binary size.
32440d5534cSTom Rini
32540d5534cSTom Riniconfig SPL_USE_ARCH_MEMSET
326f8136e68SAndy Yan	bool "Use an assembly optimized implementation of memset for SPL"
32740d5534cSTom Rini	default y if USE_ARCH_MEMSET
328085be482SMasahiro Yamada	depends on !ARM64
329be72591bSFabio Estevam	help
330be72591bSFabio Estevam	  Enable the generation of an optimized version of memset.
331be72591bSFabio Estevam	  Such implementation may be faster under some conditions
332be72591bSFabio Estevam	  but may increase the binary size.
333be72591bSFabio Estevam
334ec6617c3SAlison Wangconfig ARM64_SUPPORT_AARCH32
335ec6617c3SAlison Wang	bool "ARM64 system support AArch32 execution state"
336ec6617c3SAlison Wang	default y if ARM64 && !TARGET_THUNDERX_88XX
337ec6617c3SAlison Wang	help
338ec6617c3SAlison Wang	  This ARM64 system supports AArch32 execution state.
339ec6617c3SAlison Wang
340dd84058dSMasahiro Yamadachoice
341dd84058dSMasahiro Yamada	prompt "Target select"
342b928e658SSimon Glass	default TARGET_HIKEY
343dd84058dSMasahiro Yamada
3444614b891SMasahiro Yamadaconfig ARCH_AT91
3454614b891SMasahiro Yamada	bool "Atmel AT91"
3460680f1b1SLey Foon Tan	select SPL_BOARD_INIT if SPL
347dd84058dSMasahiro Yamada
348dd84058dSMasahiro Yamadaconfig TARGET_EDB93XX
349dd84058dSMasahiro Yamada	bool "Support edb93xx"
3502e07c249SGeorges Savoundararadj	select CPU_ARM920T
351884f9013SAlexander Graf	select PL010_SERIAL
352dd84058dSMasahiro Yamada
353dd84058dSMasahiro Yamadaconfig TARGET_ASPENITE
354dd84058dSMasahiro Yamada	bool "Support aspenite"
3552e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
356dd84058dSMasahiro Yamada
357dd84058dSMasahiro Yamadaconfig TARGET_GPLUGD
358dd84058dSMasahiro Yamada	bool "Support gplugd"
3592e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
360dd84058dSMasahiro Yamada
3613491ba63SMasahiro Yamadaconfig ARCH_DAVINCI
3623491ba63SMasahiro Yamada	bool "TI DaVinci"
3632e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
36415dc63d6SSimon Glass	imply CMD_SAVES
3653491ba63SMasahiro Yamada	help
3663491ba63SMasahiro Yamada	  Support for TI's DaVinci platform.
367dd84058dSMasahiro Yamada
36847539e23SMasahiro Yamadaconfig KIRKWOOD
36947539e23SMasahiro Yamada	bool "Marvell Kirkwood"
3702e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
371a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
3724585601aSSimon Glass	select ARCH_MISC_INIT
373dd84058dSMasahiro Yamada
374c3d89140SStefan Roeseconfig ARCH_MVEBU
37521b29fc6SStefan Roese	bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
3769cffb233SStefan Roese	select OF_CONTROL
3779cffb233SStefan Roese	select OF_SEPARATE
3789cffb233SStefan Roese	select DM
379e3b9c98aSStefan Roese	select DM_ETH
3801d51ea19SStefan Roese	select DM_SERIAL
38109a54c00SStefan Roese	select DM_SPI
38209a54c00SStefan Roese	select DM_SPI_FLASH
383a4884831SStefan Roese
384dd84058dSMasahiro Yamadaconfig TARGET_DEVKIT3250
385dd84058dSMasahiro Yamada	bool "Support devkit3250"
3862e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
387e9b3ce3fSVladimir Zapolskiy	select SUPPORT_SPL
388dd84058dSMasahiro Yamada
389412ae53aSAlbert ARIBAUD \(3ADEV\)config TARGET_WORK_92105
390412ae53aSAlbert ARIBAUD \(3ADEV\)	bool "Support work_92105"
391412ae53aSAlbert ARIBAUD \(3ADEV\)	select CPU_ARM926EJS
392412ae53aSAlbert ARIBAUD \(3ADEV\)	select SUPPORT_SPL
393412ae53aSAlbert ARIBAUD \(3ADEV\)
394dd84058dSMasahiro Yamadaconfig TARGET_APF27
395dd84058dSMasahiro Yamada	bool "Support apf27"
3962e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
39702627356SMasahiro Yamada	select SUPPORT_SPL
398dd84058dSMasahiro Yamada
399dd84058dSMasahiro Yamadaconfig TARGET_APX4DEVKIT
400dd84058dSMasahiro Yamada	bool "Support apx4devkit"
4012e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
40202627356SMasahiro Yamada	select SUPPORT_SPL
403*d10fc50fSAlexander Graf	select PL011_SERIAL
404dd84058dSMasahiro Yamada
405dd84058dSMasahiro Yamadaconfig TARGET_XFI3
406dd84058dSMasahiro Yamada	bool "Support xfi3"
4072e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
40802627356SMasahiro Yamada	select SUPPORT_SPL
409*d10fc50fSAlexander Graf	select PL011_SERIAL
410dd84058dSMasahiro Yamada
411dd84058dSMasahiro Yamadaconfig TARGET_M28EVK
412dd84058dSMasahiro Yamada	bool "Support m28evk"
4132e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
41402627356SMasahiro Yamada	select SUPPORT_SPL
415*d10fc50fSAlexander Graf	select PL011_SERIAL
416dd84058dSMasahiro Yamada
417dd84058dSMasahiro Yamadaconfig TARGET_MX23EVK
418dd84058dSMasahiro Yamada	bool "Support mx23evk"
4192e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
42002627356SMasahiro Yamada	select SUPPORT_SPL
421a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
422*d10fc50fSAlexander Graf	select PL011_SERIAL
423dd84058dSMasahiro Yamada
424dd84058dSMasahiro Yamadaconfig TARGET_MX28EVK
425dd84058dSMasahiro Yamada	bool "Support mx28evk"
4262e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
42702627356SMasahiro Yamada	select SUPPORT_SPL
428a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
429*d10fc50fSAlexander Graf	select PL011_SERIAL
430dd84058dSMasahiro Yamada
431dd84058dSMasahiro Yamadaconfig TARGET_MX23_OLINUXINO
432dd84058dSMasahiro Yamada	bool "Support mx23_olinuxino"
4332e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
43402627356SMasahiro Yamada	select SUPPORT_SPL
435a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
436*d10fc50fSAlexander Graf	select PL011_SERIAL
437dd84058dSMasahiro Yamada
438dd84058dSMasahiro Yamadaconfig TARGET_BG0900
439dd84058dSMasahiro Yamada	bool "Support bg0900"
4402e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
44102627356SMasahiro Yamada	select SUPPORT_SPL
442*d10fc50fSAlexander Graf	select PL011_SERIAL
443dd84058dSMasahiro Yamada
444dd84058dSMasahiro Yamadaconfig TARGET_SANSA_FUZE_PLUS
445dd84058dSMasahiro Yamada	bool "Support sansa_fuze_plus"
4462e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
44702627356SMasahiro Yamada	select SUPPORT_SPL
448*d10fc50fSAlexander Graf	select PL011_SERIAL
449dd84058dSMasahiro Yamada
450dd84058dSMasahiro Yamadaconfig TARGET_SC_SPS_1
451dd84058dSMasahiro Yamada	bool "Support sc_sps_1"
4522e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
45302627356SMasahiro Yamada	select SUPPORT_SPL
454*d10fc50fSAlexander Graf	select PL011_SERIAL
455dd84058dSMasahiro Yamada
45622f2be7aSMasahiro Yamadaconfig ORION5X
45722f2be7aSMasahiro Yamada	bool "Marvell Orion"
4582e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
459dd84058dSMasahiro Yamada
460dd84058dSMasahiro Yamadaconfig TARGET_SPEAR300
461dd84058dSMasahiro Yamada	bool "Support spear300"
4622e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
463a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
46415dc63d6SSimon Glass	imply CMD_SAVES
465*d10fc50fSAlexander Graf	select PL011_SERIAL
466dd84058dSMasahiro Yamada
467dd84058dSMasahiro Yamadaconfig TARGET_SPEAR310
468dd84058dSMasahiro Yamada	bool "Support spear310"
4692e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
470a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
47115dc63d6SSimon Glass	imply CMD_SAVES
472*d10fc50fSAlexander Graf	select PL011_SERIAL
473dd84058dSMasahiro Yamada
474dd84058dSMasahiro Yamadaconfig TARGET_SPEAR320
475dd84058dSMasahiro Yamada	bool "Support spear320"
4762e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
477a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
47815dc63d6SSimon Glass	imply CMD_SAVES
479*d10fc50fSAlexander Graf	select PL011_SERIAL
480dd84058dSMasahiro Yamada
481dd84058dSMasahiro Yamadaconfig TARGET_SPEAR600
482dd84058dSMasahiro Yamada	bool "Support spear600"
4832e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
484a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
48515dc63d6SSimon Glass	imply CMD_SAVES
486*d10fc50fSAlexander Graf	select PL011_SERIAL
487dd84058dSMasahiro Yamada
4889fa32b12SVikas Manochaconfig TARGET_STV0991
4899fa32b12SVikas Manocha	bool "Support stv0991"
4909fa32b12SVikas Manocha	select CPU_V7
491cac0ca76SMasahiro Yamada	select DM
492cac0ca76SMasahiro Yamada	select DM_SERIAL
493e67abcaaSVikas Manocha	select DM_SPI
494e67abcaaSVikas Manocha	select DM_SPI_FLASH
495e67abcaaSVikas Manocha	select SPI_FLASH
4969fa32b12SVikas Manocha
497dd84058dSMasahiro Yamadaconfig TARGET_X600
498dd84058dSMasahiro Yamada	bool "Support x600"
499e5ec4815STom Rini	select BOARD_LATE_INIT
5002e07c249SGeorges Savoundararadj	select CPU_ARM926EJS
50102627356SMasahiro Yamada	select SUPPORT_SPL
502*d10fc50fSAlexander Graf	select PL011_SERIAL
503dd84058dSMasahiro Yamada
504dd84058dSMasahiro Yamadaconfig TARGET_IMX31_PHYCORE
505f428268aSTom Rini	bool "Support imx31_phycore_eet"
506f428268aSTom Rini	select CPU_ARM1136
507a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
508f428268aSTom Rini
509f428268aSTom Riniconfig TARGET_IMX31_PHYCORE_EET
510f428268aSTom Rini	bool "Support imx31_phycore_eet"
511e5ec4815STom Rini	select BOARD_LATE_INIT
5122e07c249SGeorges Savoundararadj	select CPU_ARM1136
513a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
514dd84058dSMasahiro Yamada
515dd84058dSMasahiro Yamadaconfig TARGET_MX31ADS
516dd84058dSMasahiro Yamada	bool "Support mx31ads"
5172e07c249SGeorges Savoundararadj	select CPU_ARM1136
518a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
519dd84058dSMasahiro Yamada
520dd84058dSMasahiro Yamadaconfig TARGET_MX31PDK
521dd84058dSMasahiro Yamada	bool "Support mx31pdk"
522e5ec4815STom Rini	select BOARD_LATE_INIT
5232e07c249SGeorges Savoundararadj	select CPU_ARM1136
52402627356SMasahiro Yamada	select SUPPORT_SPL
525a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
526dd84058dSMasahiro Yamada
527dd84058dSMasahiro Yamadaconfig TARGET_WOODBURN
528dd84058dSMasahiro Yamada	bool "Support woodburn"
5292e07c249SGeorges Savoundararadj	select CPU_ARM1136
530dd84058dSMasahiro Yamada
531dd84058dSMasahiro Yamadaconfig TARGET_WOODBURN_SD
532dd84058dSMasahiro Yamada	bool "Support woodburn_sd"
5332e07c249SGeorges Savoundararadj	select CPU_ARM1136
53402627356SMasahiro Yamada	select SUPPORT_SPL
535dd84058dSMasahiro Yamada
536dd84058dSMasahiro Yamadaconfig TARGET_FLEA3
537dd84058dSMasahiro Yamada	bool "Support flea3"
5382e07c249SGeorges Savoundararadj	select CPU_ARM1136
539dd84058dSMasahiro Yamada
540dd84058dSMasahiro Yamadaconfig TARGET_MX35PDK
541dd84058dSMasahiro Yamada	bool "Support mx35pdk"
542e5ec4815STom Rini	select BOARD_LATE_INIT
5432e07c249SGeorges Savoundararadj	select CPU_ARM1136
544dd84058dSMasahiro Yamada
545ddf6bd48SMasahiro Yamadaconfig ARCH_BCM283X
546ddf6bd48SMasahiro Yamada	bool "Broadcom BCM283X family"
54758d423b8SMasahiro Yamada	select DM
54858d423b8SMasahiro Yamada	select DM_SERIAL
54958d423b8SMasahiro Yamada	select DM_GPIO
55076709096SFabian Vogt	select OF_CONTROL
55191d27a17STom Rini	imply FAT_WRITE
55246414296SStephen Warren
553dd84058dSMasahiro Yamadaconfig TARGET_VEXPRESS_CA15_TC2
554dd84058dSMasahiro Yamada	bool "Support vexpress_ca15_tc2"
5552e07c249SGeorges Savoundararadj	select CPU_V7
556ea624e19SHans de Goede	select CPU_V7_HAS_NONSEC
557ea624e19SHans de Goede	select CPU_V7_HAS_VIRT
558*d10fc50fSAlexander Graf	select PL011_SERIAL
559dd84058dSMasahiro Yamada
560dd84058dSMasahiro Yamadaconfig TARGET_VEXPRESS_CA5X2
561dd84058dSMasahiro Yamada	bool "Support vexpress_ca5x2"
5622e07c249SGeorges Savoundararadj	select CPU_V7
563*d10fc50fSAlexander Graf	select PL011_SERIAL
564dd84058dSMasahiro Yamada
565dd84058dSMasahiro Yamadaconfig TARGET_VEXPRESS_CA9X4
566dd84058dSMasahiro Yamada	bool "Support vexpress_ca9x4"
5672e07c249SGeorges Savoundararadj	select CPU_V7
568*d10fc50fSAlexander Graf	select PL011_SERIAL
569dd84058dSMasahiro Yamada
57043486e4cSSteve Raeconfig TARGET_BCM23550_W1D
57143486e4cSSteve Rae	bool "Support bcm23550_w1d"
57243486e4cSSteve Rae	select CPU_V7
573221a949eSDaniel Thompson	imply CRC32_VERIFY
57491d27a17STom Rini	imply FAT_WRITE
57543486e4cSSteve Rae
576dd84058dSMasahiro Yamadaconfig TARGET_BCM28155_AP
577dd84058dSMasahiro Yamada	bool "Support bcm28155_ap"
5782e07c249SGeorges Savoundararadj	select CPU_V7
579221a949eSDaniel Thompson	imply CRC32_VERIFY
58091d27a17STom Rini	imply FAT_WRITE
581dd84058dSMasahiro Yamada
582abb1678cSSteve Raeconfig TARGET_BCMCYGNUS
583abb1678cSSteve Rae	bool "Support bcmcygnus"
5842e07c249SGeorges Savoundararadj	select CPU_V7
585221a949eSDaniel Thompson	imply CRC32_VERIFY
586551c3934SSimon Glass	imply CMD_HASH
58791d27a17STom Rini	imply FAT_WRITE
588221a949eSDaniel Thompson	imply HASH_VERIFY
589c89782dcSSuji Velupillai	imply NETDEVICES
590c89782dcSSuji Velupillai	imply BCM_SF2_ETH
591c89782dcSSuji Velupillai	imply BCM_SF2_ETH_GMAC
5929dec5270SSteve Rae
593abb1678cSSteve Raeconfig TARGET_BCMNSP
594abb1678cSSteve Rae	bool "Support bcmnsp"
5952e07c249SGeorges Savoundararadj	select CPU_V7
5969dec5270SSteve Rae
597274bced8SJon Masonconfig TARGET_BCMNS2
598274bced8SJon Mason	bool "Support Broadcom Northstar2"
599274bced8SJon Mason	select ARM64
600274bced8SJon Mason	help
601274bced8SJon Mason	  Support for Broadcom Northstar 2 SoCs.  NS2 is a quad-core 64-bit
602274bced8SJon Mason	  ARMv8 Cortex-A57 processors targeting a broad range of networking
603274bced8SJon Mason	  applications
604274bced8SJon Mason
60572df68ccSMasahiro Yamadaconfig ARCH_EXYNOS
60672df68ccSMasahiro Yamada	bool "Samsung EXYNOS"
60758d423b8SMasahiro Yamada	select DM
608fc47cf9dSSimon Glass	select DM_I2C
60958d423b8SMasahiro Yamada	select DM_SPI_FLASH
61058d423b8SMasahiro Yamada	select DM_SERIAL
61158d423b8SMasahiro Yamada	select DM_SPI
61258d423b8SMasahiro Yamada	select DM_GPIO
6131fa4bfdeSSimon Glass	select DM_KEYBOARD
61491d27a17STom Rini	imply FAT_WRITE
615dd84058dSMasahiro Yamada
616311757beSSimon Glassconfig ARCH_S5PC1XX
617311757beSSimon Glass	bool "Samsung S5PC1XX"
6182e07c249SGeorges Savoundararadj	select CPU_V7
61958d423b8SMasahiro Yamada	select DM
62058d423b8SMasahiro Yamada	select DM_SERIAL
62158d423b8SMasahiro Yamada	select DM_GPIO
62208848e9cSSimon Glass	select DM_I2C
623311757beSSimon Glass
624ef2b694cSMasahiro Yamadaconfig ARCH_HIGHBANK
625ef2b694cSMasahiro Yamada	bool "Calxeda Highbank"
6262e07c249SGeorges Savoundararadj	select CPU_V7
627*d10fc50fSAlexander Graf	select PL011_SERIAL
628dd84058dSMasahiro Yamada
6295cbbd9bdSMasahiro Yamadaconfig ARCH_INTEGRATOR
6305cbbd9bdSMasahiro Yamada	bool "ARM Ltd. Integrator family"
6313f394e70SLinus Walleij	select DM
6323f394e70SLinus Walleij	select DM_SERIAL
6335cbbd9bdSMasahiro Yamada
634c338f09eSMasahiro Yamadaconfig ARCH_KEYSTONE
635c338f09eSMasahiro Yamada	bool "TI Keystone"
6362e07c249SGeorges Savoundararadj	select CPU_V7
63702627356SMasahiro Yamada	select SUPPORT_SPL
6383a649407STom Rini	select SYS_THUMB_BUILD
639534bc70eSTom Rini	select CMD_POWEROFF
640d56b4b19STom Rini	imply CMD_MTDPARTS
64146f9ef18SAndrew F. Davis	imply FIT
64215dc63d6SSimon Glass	imply CMD_SAVES
643dd84058dSMasahiro Yamada
644a93fbf4aSMasahiro Yamadaconfig ARCH_OMAP2PLUS
645a93fbf4aSMasahiro Yamada	bool "TI OMAP2+"
646a93fbf4aSMasahiro Yamada	select CPU_V7
6470680f1b1SLey Foon Tan	select SPL_BOARD_INIT if SPL
648ff6c3125STom Rini	select SPL_STACK_R if SPL
649a93fbf4aSMasahiro Yamada	select SUPPORT_SPL
650a93fbf4aSMasahiro Yamada	imply FIT
651a93fbf4aSMasahiro Yamada
652bfcef28aSBeniamino Galvaniconfig ARCH_MESON
653bfcef28aSBeniamino Galvani	bool "Amlogic Meson"
654bfcef28aSBeniamino Galvani	help
655bfcef28aSBeniamino Galvani	  Support for the Meson SoC family developed by Amlogic Inc.,
656bfcef28aSBeniamino Galvani	  targeted at media players and tablet computers. We currently
657bfcef28aSBeniamino Galvani	  support the S905 (GXBaby) 64-bit SoC.
658bfcef28aSBeniamino Galvani
65907df697eSFabio Estevamconfig ARCH_MX25
66007df697eSFabio Estevam	bool "NXP MX25"
66107df697eSFabio Estevam	select CPU_ARM926EJS
66207df697eSFabio Estevam
663e90a08daSPeng Fanconfig ARCH_MX7ULP
664e90a08daSPeng Fan        bool "NXP MX7ULP"
665e90a08daSPeng Fan        select CPU_V7
666e90a08daSPeng Fan	select ROM_UNIFIED_SECTIONS
667e90a08daSPeng Fan
6681a8150d4SAdrian Alonsoconfig ARCH_MX7
6691a8150d4SAdrian Alonso	bool "Freescale MX7"
6701a8150d4SAdrian Alonso	select CPU_V7
6712c2e2c9eSYork Sun	select SYS_FSL_HAS_SEC if SECURE_BOOT
6722c2e2c9eSYork Sun	select SYS_FSL_SEC_COMPAT_4
67390b80386SYork Sun	select SYS_FSL_SEC_LE
674a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
6754585601aSSimon Glass	select ARCH_MISC_INIT
6761a8150d4SAdrian Alonso
67789ebc821SBoris BREZILLONconfig ARCH_MX6
67889ebc821SBoris BREZILLON	bool "Freescale MX6"
67989ebc821SBoris BREZILLON	select CPU_V7
6802c2e2c9eSYork Sun	select SYS_FSL_HAS_SEC if SECURE_BOOT
6812c2e2c9eSYork Sun	select SYS_FSL_SEC_COMPAT_4
68290b80386SYork Sun	select SYS_FSL_SEC_LE
6833a649407STom Rini	select SYS_THUMB_BUILD if SPL
68489ebc821SBoris BREZILLON
685b529993eSPhilipp Tomsichif ARCH_MX6
686b529993eSPhilipp Tomsichconfig SPL_LDSCRIPT
687b529993eSPhilipp Tomsich        default "arch/arm/mach-omap2/u-boot-spl.lds"
688b529993eSPhilipp Tomsichendif
689b529993eSPhilipp Tomsich
690424ee3d1SAndrej Rosanoconfig ARCH_MX5
691424ee3d1SAndrej Rosano	bool "Freescale MX5"
692424ee3d1SAndrej Rosano	select CPU_V7
693a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
694424ee3d1SAndrej Rosano
69532f11829STuomas Tynkkynenconfig ARCH_QEMU
69632f11829STuomas Tynkkynen	bool "QEMU Virtual Platform"
69732f11829STuomas Tynkkynen	select DM
69832f11829STuomas Tynkkynen	select DM_SERIAL
69932f11829STuomas Tynkkynen	select OF_CONTROL
70032f11829STuomas Tynkkynen
7011cc95f6eSNobuhiro Iwamatsuconfig ARCH_RMOBILE
702f40b9898SMasahiro Yamada	bool "Renesas ARM SoCs"
7031cc95f6eSNobuhiro Iwamatsu	select DM
7041cc95f6eSNobuhiro Iwamatsu	select DM_SERIAL
705a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
70691d27a17STom Rini	imply FAT_WRITE
7073a649407STom Rini	imply SYS_THUMB_BUILD
708dd84058dSMasahiro Yamada
7099702ec00SEddy Petrișorconfig TARGET_S32V234EVB
7109702ec00SEddy Petrișor	bool "Support s32v234evb"
7119702ec00SEddy Petrișor	select ARM64
712c01e4a1aSYork Sun	select SYS_FSL_ERRATUM_ESDHC111
7139702ec00SEddy Petrișor
71408592136SMateusz Kulikowskiconfig ARCH_SNAPDRAGON
71508592136SMateusz Kulikowski	bool "Qualcomm Snapdragon SoCs"
71608592136SMateusz Kulikowski	select ARM64
71708592136SMateusz Kulikowski	select DM
71808592136SMateusz Kulikowski	select DM_GPIO
71908592136SMateusz Kulikowski	select DM_SERIAL
72008592136SMateusz Kulikowski	select SPMI
72108592136SMateusz Kulikowski	select OF_CONTROL
72208592136SMateusz Kulikowski	select OF_SEPARATE
72308592136SMateusz Kulikowski
7247865f4b0SMasahiro Yamadaconfig ARCH_SOCFPGA
7257865f4b0SMasahiro Yamada	bool "Altera SOCFPGA family"
7262e07c249SGeorges Savoundararadj	select CPU_V7
72702627356SMasahiro Yamada	select SUPPORT_SPL
728dfd3dff5SMarek Vasut	select OF_CONTROL
729dfd3dff5SMarek Vasut	select SPL_OF_CONTROL
7301d9aa3e5SMasahiro Yamada	select DM
7311d9aa3e5SMasahiro Yamada	select DM_SPI_FLASH
7321d9aa3e5SMasahiro Yamada	select DM_SPI
733beee6a30SMarek Vasut	select ENABLE_ARM_SOC_BOOT0_HOOK
734a421192fSSimon Glass	select ARCH_EARLY_INIT_R
7354585601aSSimon Glass	select ARCH_MISC_INIT
736949123e3SDalon Westergreen	select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
7373a649407STom Rini	select SYS_THUMB_BUILD
738d56b4b19STom Rini	imply CMD_MTDPARTS
739221a949eSDaniel Thompson	imply CRC32_VERIFY
74091d27a17STom Rini	imply FAT_WRITE
741dd84058dSMasahiro Yamada
7422c7e3b90SIan Campbellconfig ARCH_SUNXI
7432c7e3b90SIan Campbell	bool "Support sunxi (Allwinner) SoCs"
744d6a0c78aSMasahiro Yamada	select BINMAN
74588bb800dSHans de Goede	select CMD_GPIO
7460878a8a7SHans de Goede	select CMD_MMC if MMC
7472997ee50SYann E. MORIN	select CMD_USB if DISTRO_DEFAULTS
748b6006bafSHans de Goede	select DM
74945368827STom Rini	select DM_ETH
750211d57a4SHans de Goede	select DM_GPIO
751211d57a4SHans de Goede	select DM_KEYBOARD
75245368827STom Rini	select DM_SERIAL
7532997ee50SYann E. MORIN	select DM_USB if DISTRO_DEFAULTS
754d75111a7SHans de Goede	select OF_BOARD_SETUP
755b6006bafSHans de Goede	select OF_CONTROL
756b6006bafSHans de Goede	select OF_SEPARATE
757ab43de80STom Rini	select SPL_STACK_R if SPL
758ab43de80STom Rini	select SPL_SYS_MALLOC_SIMPLE if SPL
7596edf6a21SHans de Goede	select SYS_NS16550
7603a649407STom Rini	select SPL_SYS_THUMB_BUILD if !ARM64
761ce2e44d8SMaxime Ripard	select SYS_THUMB_BUILD if !ARM64
7622997ee50SYann E. MORIN	select USB if DISTRO_DEFAULTS
7632997ee50SYann E. MORIN	select USB_STORAGE if DISTRO_DEFAULTS
7642997ee50SYann E. MORIN	select USB_KEYBOARD if DISTRO_DEFAULTS
7658c7d2296SHans de Goede	select USE_TINY_PRINTF
766a12fb0e3SMaxime Ripard	imply CMD_GPT
76791d27a17STom Rini	imply FAT_WRITE
768eff264d7SAndre Heider	imply OF_LIBFDT_OVERLAY
769af83a604SMasahiro Yamada	imply PRE_CONSOLE_BUFFER
770af83a604SMasahiro Yamada	imply SPL_GPIO_SUPPORT
771af83a604SMasahiro Yamada	imply SPL_LIBCOMMON_SUPPORT
772af83a604SMasahiro Yamada	imply SPL_LIBDISK_SUPPORT
773af83a604SMasahiro Yamada	imply SPL_LIBGENERIC_SUPPORT
7744aa2ba3aSMasahiro Yamada	imply SPL_MMC_SUPPORT if MMC
775af83a604SMasahiro Yamada	imply SPL_POWER_SUPPORT
776af83a604SMasahiro Yamada	imply SPL_SERIAL_SUPPORT
777654b02b1SMaxime Ripard	imply USB_GADGET
7788ebe4f42SChen-Yu Tsai
779d9e268edSSebastien Bourdelinconfig TARGET_TS4600
780d9e268edSSebastien Bourdelin	bool "Support TS4600"
781d9e268edSSebastien Bourdelin	select CPU_ARM926EJS
782d9e268edSSebastien Bourdelin	select SUPPORT_SPL
783*d10fc50fSAlexander Graf	select PL011_SERIAL
784d9e268edSSebastien Bourdelin
7857966b437SStefan Agnerconfig ARCH_VF610
7867966b437SStefan Agner	bool "Freescale Vybrid"
7872e07c249SGeorges Savoundararadj	select CPU_V7
788c01e4a1aSYork Sun	select SYS_FSL_ERRATUM_ESDHC111
789d56b4b19STom Rini	imply CMD_MTDPARTS
7905bbc265bSAdam Ford	imply NAND
791dd84058dSMasahiro Yamada
7925ca269a4SMasahiro Yamadaconfig ARCH_ZYNQ
793b8d4497fSMichal Simek	bool "Xilinx Zynq based platform"
794e5ec4815STom Rini	select BOARD_LATE_INIT
7952e07c249SGeorges Savoundararadj	select CPU_V7
79602627356SMasahiro Yamada	select SUPPORT_SPL
797d065cfd9SJagan Teki	select OF_CONTROL
7980680f1b1SLey Foon Tan	select SPL_BOARD_INIT if SPL
799eb04ab34SMichal Simek	select SPL_OF_CONTROL if SPL
8008981f05cSMasahiro Yamada	select DM
8016889ca71SMichal Simek	select DM_ETH
8022978ae23SSiva Durga Prasad Paladugu	select DM_GPIO
803eb04ab34SMichal Simek	select SPL_DM if SPL
804d9ae52c8SMichal Simek	select DM_MMC
8059f7a4502SJagan Teki	select DM_SPI
80642800ffaSSimon Glass	select DM_SERIAL
8079f7a4502SJagan Teki	select DM_SPI_FLASH
808eb04ab34SMichal Simek	select SPL_SEPARATE_BSS if SPL
809dec49e86SSimon Glass	select DM_USB if USB
810329a449fSSimon Glass	select BLK
811781745bdSStefan Herbrechtsmeier	select CLK
812781745bdSStefan Herbrechtsmeier	select SPL_CLK
813781745bdSStefan Herbrechtsmeier	select CLK_ZYNQ
814d315628eSSimon Glass	imply CMD_CLK
81591d27a17STom Rini	imply FAT_WRITE
81672c3033fSSimon Glass	imply CMD_SPL
817dd84058dSMasahiro Yamada
8180b54a9ddSSiva Durga Prasad Paladuguconfig ARCH_ZYNQMP
819b8d4497fSMichal Simek	bool "Xilinx ZynqMP based platform"
82084c7204bSMichal Simek	select ARM64
821e5ec4815STom Rini	select BOARD_LATE_INIT
822c2490bf5SMichal Simek	select DM
823c2490bf5SMichal Simek	select OF_CONTROL
824c2490bf5SMichal Simek	select DM_SERIAL
825e6a9ed04SMichal Simek	select SUPPORT_SPL
8261f29738aSMichal Simek	select CLK
8270680f1b1SLey Foon Tan	select SPL_BOARD_INIT if SPL
8282f03968eSMichal Simek	select SPL_CLK if SPL
829dec49e86SSimon Glass	select DM_USB if USB
83091d27a17STom Rini	imply FAT_WRITE
83184c7204bSMichal Simek
832ddd960e6SMasahiro Yamadaconfig TEGRA
833ddd960e6SMasahiro Yamada	bool "NVIDIA Tegra"
83491d27a17STom Rini	imply FAT_WRITE
835dd84058dSMasahiro Yamada
836f91afc4dSLinus Walleijconfig TARGET_VEXPRESS64_AEMV8A
837dd84058dSMasahiro Yamada	bool "Support vexpress_aemv8a"
838016a954eSMasahiro Yamada	select ARM64
839dd84058dSMasahiro Yamada
840f91afc4dSLinus Walleijconfig TARGET_VEXPRESS64_BASE_FVP
841f91afc4dSLinus Walleij	bool "Support Versatile Express ARMv8a FVP BASE model"
842f91afc4dSLinus Walleij	select ARM64
843f91afc4dSLinus Walleij	select SEMIHOSTING
844f91afc4dSLinus Walleij
845fc04b923SRyan Harkinconfig TARGET_VEXPRESS64_BASE_FVP_DRAM
846fc04b923SRyan Harkin	bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
847fc04b923SRyan Harkin	select ARM64
848fc04b923SRyan Harkin	help
849fc04b923SRyan Harkin	  This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
850fc04b923SRyan Harkin	  the default config to allow the user to load the images directly into
851fc04b923SRyan Harkin	  DRAM using model parameters rather than by using semi-hosting to load
852fc04b923SRyan Harkin	  the files from the host filesystem.
853fc04b923SRyan Harkin
854ffc10373SLinus Walleijconfig TARGET_VEXPRESS64_JUNO
855ffc10373SLinus Walleij	bool "Support Versatile Express Juno Development Platform"
856ffc10373SLinus Walleij	select ARM64
857ffc10373SLinus Walleij
85844937214SPrabhakar Kushwahaconfig TARGET_LS2080A_EMU
85944937214SPrabhakar Kushwaha	bool "Support ls2080a_emu"
860fb2bf8c2SYork Sun	select ARCH_LS2080A
861016a954eSMasahiro Yamada	select ARM64
86223b5877cSLinus Walleij	select ARMV8_MULTIENTRY
8634585601aSSimon Glass	select ARCH_MISC_INIT
8647288c2c2SYork Sun	help
86544937214SPrabhakar Kushwaha	  Support for Freescale LS2080A_EMU platform
86644937214SPrabhakar Kushwaha	  The LS2080A Development System (EMULATOR) is a pre silicon
86744937214SPrabhakar Kushwaha	  development platform that supports the QorIQ LS2080A
8687288c2c2SYork Sun	  Layerscape Architecture processor.
8697288c2c2SYork Sun
87044937214SPrabhakar Kushwahaconfig TARGET_LS2080A_SIMU
87144937214SPrabhakar Kushwaha	bool "Support ls2080a_simu"
872fb2bf8c2SYork Sun	select ARCH_LS2080A
87344937214SPrabhakar Kushwaha	select ARM64
87444937214SPrabhakar Kushwaha	select ARMV8_MULTIENTRY
8754585601aSSimon Glass	select ARCH_MISC_INIT
87644937214SPrabhakar Kushwaha	help
87744937214SPrabhakar Kushwaha	  Support for Freescale LS2080A_SIMU platform
87844937214SPrabhakar Kushwaha	  The LS2080A Development System (QDS) is a pre silicon
87944937214SPrabhakar Kushwaha	  development platform that supports the QorIQ LS2080A
88044937214SPrabhakar Kushwaha	  Layerscape Architecture processor.
88144937214SPrabhakar Kushwaha
8827769776aSAshish Kumarconfig TARGET_LS1088AQDS
8837769776aSAshish Kumar	bool "Support ls1088aqds"
8847769776aSAshish Kumar	select ARCH_LS1088A
8857769776aSAshish Kumar	select ARM64
8867769776aSAshish Kumar	select ARMV8_MULTIENTRY
8877769776aSAshish Kumar	select ARCH_MISC_INIT
8887769776aSAshish Kumar	select BOARD_LATE_INIT
88991fded62SAshish Kumar	select SUPPORT_SPL
8907769776aSAshish Kumar	help
8917769776aSAshish Kumar	  Support for NXP LS1088AQDS platform
8927769776aSAshish Kumar	  The LS1088A Development System (QDS) is a high-performance
8937769776aSAshish Kumar	  development platform that supports the QorIQ LS1088A
8947769776aSAshish Kumar	  Layerscape Architecture processor.
8957769776aSAshish Kumar
89644937214SPrabhakar Kushwahaconfig TARGET_LS2080AQDS
89744937214SPrabhakar Kushwaha	bool "Support ls2080aqds"
898fb2bf8c2SYork Sun	select ARCH_LS2080A
899e2b65ea9SYork Sun	select ARM64
900e2b65ea9SYork Sun	select ARMV8_MULTIENTRY
901e5ec4815STom Rini	select BOARD_LATE_INIT
90232eda7ccSScott Wood	select SUPPORT_SPL
9034585601aSSimon Glass	select ARCH_MISC_INIT
904fedb428cSSimon Glass	imply SCSI
9059fd95ef0STuomas Tynkkynen	imply SCSI_AHCI
906e2b65ea9SYork Sun	help
90744937214SPrabhakar Kushwaha	  Support for Freescale LS2080AQDS platform
90844937214SPrabhakar Kushwaha	  The LS2080A Development System (QDS) is a high-performance
90944937214SPrabhakar Kushwaha	  development platform that supports the QorIQ LS2080A
91044937214SPrabhakar Kushwaha	  Layerscape Architecture processor.
91144937214SPrabhakar Kushwaha
91244937214SPrabhakar Kushwahaconfig TARGET_LS2080ARDB
91344937214SPrabhakar Kushwaha	bool "Support ls2080ardb"
914fb2bf8c2SYork Sun	select ARCH_LS2080A
91544937214SPrabhakar Kushwaha	select ARM64
91644937214SPrabhakar Kushwaha	select ARMV8_MULTIENTRY
917e5ec4815STom Rini	select BOARD_LATE_INIT
91844937214SPrabhakar Kushwaha	select SUPPORT_SPL
9194585601aSSimon Glass	select ARCH_MISC_INIT
920fedb428cSSimon Glass	imply SCSI
9219fd95ef0STuomas Tynkkynen	imply SCSI_AHCI
92244937214SPrabhakar Kushwaha	help
92344937214SPrabhakar Kushwaha	  Support for Freescale LS2080ARDB platform.
92444937214SPrabhakar Kushwaha	  The LS2080A Reference design board (RDB) is a high-performance
92544937214SPrabhakar Kushwaha	  development platform that supports the QorIQ LS2080A
926e2b65ea9SYork Sun	  Layerscape Architecture processor.
927e2b65ea9SYork Sun
9283049a583SPriyanka Jainconfig TARGET_LS2081ARDB
9293049a583SPriyanka Jain	bool "Support ls2081ardb"
9303049a583SPriyanka Jain	select ARCH_LS2080A
9313049a583SPriyanka Jain	select ARM64
9323049a583SPriyanka Jain	select ARMV8_MULTIENTRY
9333049a583SPriyanka Jain	select BOARD_LATE_INIT
9343049a583SPriyanka Jain	select SUPPORT_SPL
9353049a583SPriyanka Jain	select ARCH_MISC_INIT
9363049a583SPriyanka Jain	help
9373049a583SPriyanka Jain	  Support for Freescale LS2081ARDB platform.
9383049a583SPriyanka Jain	  The LS2081A Reference design board (RDB) is a high-performance
9393049a583SPriyanka Jain	  development platform that supports the QorIQ LS2081A/LS2041A
9403049a583SPriyanka Jain	  Layerscape Architecture processor.
9413049a583SPriyanka Jain
94211ac2363SPeter Griffinconfig TARGET_HIKEY
94311ac2363SPeter Griffin	bool "Support HiKey 96boards Consumer Edition Platform"
94411ac2363SPeter Griffin	select ARM64
945efd7b60aSPeter Griffin	select DM
946efd7b60aSPeter Griffin	select DM_GPIO
9479c71bcdcSPeter Griffin	select DM_SERIAL
948cd593ed6SPeter Griffin	select OF_CONTROL
94911ac2363SPeter Griffin	  help
95011ac2363SPeter Griffin	  Support for HiKey 96boards platform. It features a HI6220
95111ac2363SPeter Griffin	  SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
95211ac2363SPeter Griffin
953d754254fSJorge Ramirez-Ortizconfig TARGET_POPLAR
954d754254fSJorge Ramirez-Ortiz	bool "Support Poplar 96boards Enterprise Edition Platform"
955d754254fSJorge Ramirez-Ortiz	select ARM64
956d754254fSJorge Ramirez-Ortiz	select DM
957d754254fSJorge Ramirez-Ortiz	select OF_CONTROL
958d754254fSJorge Ramirez-Ortiz	select DM_SERIAL
959d754254fSJorge Ramirez-Ortiz	select DM_USB
960d754254fSJorge Ramirez-Ortiz	  help
961d754254fSJorge Ramirez-Ortiz	  Support for Poplar 96boards EE platform. It features a HI3798cv200
962d754254fSJorge Ramirez-Ortiz	  SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
963d754254fSJorge Ramirez-Ortiz	  making it capable of running any commercial set-top solution based on
964d754254fSJorge Ramirez-Ortiz	  Linux or Android.
965d754254fSJorge Ramirez-Ortiz
9669d044fcbSPrabhakar Kushwahaconfig TARGET_LS1012AQDS
9679d044fcbSPrabhakar Kushwaha	bool "Support ls1012aqds"
9689533acf3SYork Sun	select ARCH_LS1012A
9699d044fcbSPrabhakar Kushwaha	select ARM64
970e5ec4815STom Rini	select BOARD_LATE_INIT
9719d044fcbSPrabhakar Kushwaha	help
9729d044fcbSPrabhakar Kushwaha	  Support for Freescale LS1012AQDS platform.
9739d044fcbSPrabhakar Kushwaha	  The LS1012A Development System (QDS) is a high-performance
9749d044fcbSPrabhakar Kushwaha	  development platform that supports the QorIQ LS1012A
9759d044fcbSPrabhakar Kushwaha	  Layerscape Architecture processor.
9769d044fcbSPrabhakar Kushwaha
9773b6e3898SPrabhakar Kushwahaconfig TARGET_LS1012ARDB
9783b6e3898SPrabhakar Kushwaha	bool "Support ls1012ardb"
9799533acf3SYork Sun	select ARCH_LS1012A
9803b6e3898SPrabhakar Kushwaha	select ARM64
981e5ec4815STom Rini	select BOARD_LATE_INIT
982fedb428cSSimon Glass	imply SCSI
9839fd95ef0STuomas Tynkkynen	imply SCSI_AHCI
9843b6e3898SPrabhakar Kushwaha	help
9853b6e3898SPrabhakar Kushwaha	  Support for Freescale LS1012ARDB platform.
9863b6e3898SPrabhakar Kushwaha	  The LS1012A Reference design board (RDB) is a high-performance
9873b6e3898SPrabhakar Kushwaha	  development platform that supports the QorIQ LS1012A
9883b6e3898SPrabhakar Kushwaha	  Layerscape Architecture processor.
9893b6e3898SPrabhakar Kushwaha
990b0ce187bSBhaskar Upadhayaconfig TARGET_LS1012A2G5RDB
991b0ce187bSBhaskar Upadhaya	bool "Support ls1012a2g5rdb"
992b0ce187bSBhaskar Upadhaya	select ARCH_LS1012A
993b0ce187bSBhaskar Upadhaya	select ARM64
994b0ce187bSBhaskar Upadhaya	select BOARD_LATE_INIT
995b0ce187bSBhaskar Upadhaya	imply SCSI
996b0ce187bSBhaskar Upadhaya	help
997b0ce187bSBhaskar Upadhaya	  Support for Freescale LS1012A2G5RDB platform.
998b0ce187bSBhaskar Upadhaya	  The LS1012A 2G5 Reference design board (RDB) is a high-performance
999b0ce187bSBhaskar Upadhaya	  development platform that supports the QorIQ LS1012A
1000b0ce187bSBhaskar Upadhaya	  Layerscape Architecture processor.
1001b0ce187bSBhaskar Upadhaya
1002ff78aa2bSPrabhakar Kushwahaconfig TARGET_LS1012AFRDM
1003ff78aa2bSPrabhakar Kushwaha	bool "Support ls1012afrdm"
10049533acf3SYork Sun	select ARCH_LS1012A
1005ff78aa2bSPrabhakar Kushwaha	select ARM64
1006ff78aa2bSPrabhakar Kushwaha	help
1007ff78aa2bSPrabhakar Kushwaha	  Support for Freescale LS1012AFRDM platform.
1008ff78aa2bSPrabhakar Kushwaha	  The LS1012A Freedom  board (FRDM) is a high-performance
1009ff78aa2bSPrabhakar Kushwaha	  development platform that supports the QorIQ LS1012A
1010ff78aa2bSPrabhakar Kushwaha	  Layerscape Architecture processor.
1011ff78aa2bSPrabhakar Kushwaha
1012e84a324bSAshish Kumarconfig TARGET_LS1088ARDB
1013e84a324bSAshish Kumar	bool "Support ls1088ardb"
1014e84a324bSAshish Kumar	select ARCH_LS1088A
1015e84a324bSAshish Kumar	select ARM64
1016e84a324bSAshish Kumar	select ARMV8_MULTIENTRY
1017e84a324bSAshish Kumar	select ARCH_MISC_INIT
1018e84a324bSAshish Kumar	select BOARD_LATE_INIT
1019099f4093SAshish Kumar	select SUPPORT_SPL
1020e84a324bSAshish Kumar	help
1021e84a324bSAshish Kumar	  Support for NXP LS1088ARDB platform.
1022e84a324bSAshish Kumar	  The LS1088A Reference design board (RDB) is a high-performance
1023e84a324bSAshish Kumar	  development platform that supports the QorIQ LS1088A
1024e84a324bSAshish Kumar	  Layerscape Architecture processor.
1025e84a324bSAshish Kumar
1026550e3dc0SWang Huanconfig TARGET_LS1021AQDS
10270de15707SAlison Wang	bool "Support ls1021aqds"
1028e5ec4815STom Rini	select BOARD_LATE_INIT
10292e07c249SGeorges Savoundararadj	select CPU_V7
1030adee1d4cSHongbo Zhang	select CPU_V7_HAS_NONSEC
1031adee1d4cSHongbo Zhang	select CPU_V7_HAS_VIRT
103250f0c663SAlison Wang	select SUPPORT_SPL
10330a37cf8fSYork Sun	select ARCH_LS1021A
1034217f92bbSMasahiro Yamada	select ARCH_SUPPORT_PSCI
10355e8bd7e1SYork Sun	select LS1_DEEP_SLEEP
1036d26e34c4SYork Sun	select SYS_FSL_DDR
1037a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
1038fedb428cSSimon Glass	imply SCSI
1039217f92bbSMasahiro Yamada
1040c8a7d9daSWang Huanconfig TARGET_LS1021ATWR
10410de15707SAlison Wang	bool "Support ls1021atwr"
1042e5ec4815STom Rini	select BOARD_LATE_INIT
10432e07c249SGeorges Savoundararadj	select CPU_V7
1044adee1d4cSHongbo Zhang	select CPU_V7_HAS_NONSEC
1045adee1d4cSHongbo Zhang	select CPU_V7_HAS_VIRT
104650f0c663SAlison Wang	select SUPPORT_SPL
10470a37cf8fSYork Sun	select ARCH_LS1021A
1048217f92bbSMasahiro Yamada	select ARCH_SUPPORT_PSCI
10495e8bd7e1SYork Sun	select LS1_DEEP_SLEEP
1050a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
1051fedb428cSSimon Glass	imply SCSI
1052c8a7d9daSWang Huan
105320c700f8SFeng Liconfig TARGET_LS1021AIOT
105420c700f8SFeng Li	bool "Support ls1021aiot"
1055e5ec4815STom Rini	select BOARD_LATE_INIT
105620c700f8SFeng Li	select CPU_V7
105720c700f8SFeng Li	select CPU_V7_HAS_NONSEC
105820c700f8SFeng Li	select CPU_V7_HAS_VIRT
105920c700f8SFeng Li	select SUPPORT_SPL
106020c700f8SFeng Li	select ARCH_LS1021A
106120c700f8SFeng Li	select ARCH_SUPPORT_PSCI
1062fedb428cSSimon Glass	imply SCSI
106320c700f8SFeng Li	help
106420c700f8SFeng Li	  Support for Freescale LS1021AIOT platform.
106520c700f8SFeng Li	  The LS1021A Freescale board (IOT) is a high-performance
106620c700f8SFeng Li	  development platform that supports the QorIQ LS1021A
106720c700f8SFeng Li	  Layerscape Architecture processor.
106820c700f8SFeng Li
106902b5d2edSShaohui Xieconfig TARGET_LS1043AQDS
107002b5d2edSShaohui Xie	bool "Support ls1043aqds"
10710a37cf8fSYork Sun	select ARCH_LS1043A
107202b5d2edSShaohui Xie	select ARM64
107302b5d2edSShaohui Xie	select ARMV8_MULTIENTRY
1074e5ec4815STom Rini	select BOARD_LATE_INIT
107502b5d2edSShaohui Xie	select SUPPORT_SPL
1076a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
1077fedb428cSSimon Glass	imply SCSI
107802b5d2edSShaohui Xie	help
107902b5d2edSShaohui Xie	  Support for Freescale LS1043AQDS platform.
108002b5d2edSShaohui Xie
1081f3a8e2b7SMingkai Huconfig TARGET_LS1043ARDB
1082f3a8e2b7SMingkai Hu	bool "Support ls1043ardb"
10830a37cf8fSYork Sun	select ARCH_LS1043A
1084f3a8e2b7SMingkai Hu	select ARM64
1085831c068fSHou Zhiqiang	select ARMV8_MULTIENTRY
1086e5ec4815STom Rini	select BOARD_LATE_INIT
10873ad44729SGong Qianyu	select SUPPORT_SPL
1088a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
1089fedb428cSSimon Glass	imply SCSI
1090f3a8e2b7SMingkai Hu	help
1091f3a8e2b7SMingkai Hu	  Support for Freescale LS1043ARDB platform.
1092f3a8e2b7SMingkai Hu
1093126fe70dSShaohui Xieconfig TARGET_LS1046AQDS
1094126fe70dSShaohui Xie	bool "Support ls1046aqds"
1095da28e58aSYork Sun	select ARCH_LS1046A
1096126fe70dSShaohui Xie	select ARM64
1097126fe70dSShaohui Xie	select ARMV8_MULTIENTRY
1098e5ec4815STom Rini	select BOARD_LATE_INIT
1099126fe70dSShaohui Xie	select SUPPORT_SPL
1100126fe70dSShaohui Xie	select DM_SPI_FLASH if DM_SPI
1101a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
1102fedb428cSSimon Glass	imply SCSI
1103126fe70dSShaohui Xie	help
1104126fe70dSShaohui Xie	  Support for Freescale LS1046AQDS platform.
1105126fe70dSShaohui Xie	  The LS1046A Development System (QDS) is a high-performance
1106126fe70dSShaohui Xie	  development platform that supports the QorIQ LS1046A
1107126fe70dSShaohui Xie	  Layerscape Architecture processor.
1108126fe70dSShaohui Xie
1109dd02936fSMingkai Huconfig TARGET_LS1046ARDB
1110dd02936fSMingkai Hu	bool "Support ls1046ardb"
1111da28e58aSYork Sun	select ARCH_LS1046A
1112dd02936fSMingkai Hu	select ARM64
1113dd02936fSMingkai Hu	select ARMV8_MULTIENTRY
1114e5ec4815STom Rini	select BOARD_LATE_INIT
1115dd02936fSMingkai Hu	select SUPPORT_SPL
1116dd02936fSMingkai Hu	select DM_SPI_FLASH if DM_SPI
1117dccef2ecSHou Zhiqiang	select POWER_MC34VR500
1118a5d67547SSimon Glass	select BOARD_EARLY_INIT_F
1119fedb428cSSimon Glass	imply SCSI
1120dd02936fSMingkai Hu	help
1121dd02936fSMingkai Hu	  Support for Freescale LS1046ARDB platform.
1122dd02936fSMingkai Hu	  The LS1046A Reference Design Board (RDB) is a high-performance
1123dd02936fSMingkai Hu	  development platform that supports the QorIQ LS1046A
1124dd02936fSMingkai Hu	  Layerscape Architecture processor.
1125dd02936fSMingkai Hu
1126dd84058dSMasahiro Yamadaconfig TARGET_H2200
1127dd84058dSMasahiro Yamada	bool "Support h2200"
11282e07c249SGeorges Savoundararadj	select CPU_PXA
1129dd84058dSMasahiro Yamada
1130f19eb154SVasily Khoruzhickconfig TARGET_ZIPITZ2
1131f19eb154SVasily Khoruzhick	bool "Support zipitz2"
1132f19eb154SVasily Khoruzhick	select CPU_PXA
1133f19eb154SVasily Khoruzhick
1134dd84058dSMasahiro Yamadaconfig TARGET_COLIBRI_PXA270
1135dd84058dSMasahiro Yamada	bool "Support colibri_pxa270"
11362e07c249SGeorges Savoundararadj	select CPU_PXA
1137dd84058dSMasahiro Yamada
113866cba041SMasahiro Yamadaconfig ARCH_UNIPHIER
1139b6ef3a3fSMasahiro Yamada	bool "Socionext UniPhier SoCs"
1140e5ec4815STom Rini	select BOARD_LATE_INIT
11414e819950SMasahiro Yamada	select DM
1142b800cbdeSMasahiro Yamada	select DM_GPIO
11434e819950SMasahiro Yamada	select DM_I2C
11444aceb3f8SMasahiro Yamada	select DM_MMC
11454fb96c48SMasahiro Yamada	select DM_RESET
1146b5550e49SMasahiro Yamada	select DM_SERIAL
114747a79f65SMasahiro Yamada	select DM_USB
1148b5550e49SMasahiro Yamada	select OF_CONTROL
1149b5550e49SMasahiro Yamada	select OF_LIBFDT
115027350c92SMasahiro Yamada	select PINCTRL
11510680f1b1SLey Foon Tan	select SPL_BOARD_INIT if SPL
1152561ca649SMasahiro Yamada	select SPL_DM if SPL
1153561ca649SMasahiro Yamada	select SPL_LIBCOMMON_SUPPORT if SPL
1154561ca649SMasahiro Yamada	select SPL_LIBGENERIC_SUPPORT if SPL
1155561ca649SMasahiro Yamada	select SPL_OF_CONTROL if SPL
1156561ca649SMasahiro Yamada	select SPL_PINCTRL if SPL
1157b5550e49SMasahiro Yamada	select SUPPORT_SPL
115891d27a17STom Rini	imply FAT_WRITE
1159b6ef3a3fSMasahiro Yamada	help
1160b6ef3a3fSMasahiro Yamada	  Support for UniPhier SoC family developed by Socionext Inc.
1161b6ef3a3fSMasahiro Yamada	  (formerly, System LSI Business Division of Panasonic Corporation)
116266cba041SMasahiro Yamada
11630a61ee88SVikas Manochaconfig STM32
11640a61ee88SVikas Manocha	bool "Support STM32"
1165ed09a554Srev13@wp.pl	select CPU_V7M
116666562414SKamil Lulko	select DM
116766562414SKamil Lulko	select DM_SERIAL
11683a649407STom Rini	select SYS_THUMB_BUILD
1169ed09a554Srev13@wp.pl
117094e9a4efSPatrice Chotardconfig ARCH_STI
117194e9a4efSPatrice Chotard	bool "Support STMicrolectronics SoCs"
117294e9a4efSPatrice Chotard	select CPU_V7
1173214a17e6SPatrice Chotard	select DM
1174214a17e6SPatrice Chotard	select DM_SERIAL
1175eee20f81SPatrice Chotard	select BLK
1176eee20f81SPatrice Chotard	select DM_MMC
1177584861ffSPatrice Chotard	select DM_RESET
117894e9a4efSPatrice Chotard	help
117994e9a4efSPatrice Chotard	  Support for STMicroelectronics STiH407/10 SoC family.
118094e9a4efSPatrice Chotard	  This SoC is used on Linaro 96Board STiH410-B2260
118194e9a4efSPatrice Chotard
11822444dae5SSimon Glassconfig ARCH_ROCKCHIP
11832444dae5SSimon Glass	bool "Support Rockchip SoCs"
11842444dae5SSimon Glass	select OF_CONTROL
1185aa15038cSSimon Glass	select BLK
11862444dae5SSimon Glass	select DM
1187a381bcf5SKever Yang	select SPL_DM if SPL
1188aa15038cSSimon Glass	select SYS_MALLOC_F
11893a649407STom Rini	select SYS_THUMB_BUILD if !ARM64
1190a381bcf5SKever Yang	select SPL_SYS_MALLOC_SIMPLE if SPL
1191aa15038cSSimon Glass	select DM_GPIO
1192aa15038cSSimon Glass	select DM_I2C
1193aa15038cSSimon Glass	select DM_MMC
1194aa15038cSSimon Glass	select DM_SERIAL
1195aa15038cSSimon Glass	select DM_SPI
1196aa15038cSSimon Glass	select DM_SPI_FLASH
1197892742dfSMengDongyang	select DM_USB if USB
11988d29e3a4SKever Yang	select DM_PWM
11998d29e3a4SKever Yang	select DM_REGULATOR
120014ad6eb2SPhilipp Tomsich	select ENABLE_ARM_SOC_BOOT0_HOOK
120148f6232eSTom Rini	imply CMD_FASTBOOT
120248f6232eSTom Rini	imply FASTBOOT
120391d27a17STom Rini	imply FAT_WRITE
120448f6232eSTom Rini	imply USB_FUNCTION_FASTBOOT
12050532ceefSKever Yang	imply SPL_SYSRESET
1206e19fa89cSKever Yang	imply TPL_SYSRESET
12078e8bccccSPhilipp Tomsich	imply ADC
12088e8bccccSPhilipp Tomsich	imply SARADC_ROCKCHIP
12092444dae5SSimon Glass
1210746f985aSSergey Temerkhanovconfig TARGET_THUNDERX_88XX
1211746f985aSSergey Temerkhanov	bool "Support ThunderX 88xx"
1212b4ba1693SMarek Vasut	select ARM64
1213746f985aSSergey Temerkhanov	select OF_CONTROL
1214067716baSTom Rini	select SYS_CACHE_SHIFT_7
1215746f985aSSergey Temerkhanov
12164697abeaSmaxims@google.comconfig ARCH_ASPEED
12174697abeaSmaxims@google.com	bool "Support Aspeed SoCs"
12184697abeaSmaxims@google.com	select OF_CONTROL
12194697abeaSmaxims@google.com	select DM
12204697abeaSmaxims@google.com
1221dd84058dSMasahiro Yamadaendchoice
1222dd84058dSMasahiro Yamada
12234697abeaSmaxims@google.comsource "arch/arm/mach-aspeed/Kconfig"
12244697abeaSmaxims@google.com
12254614b891SMasahiro Yamadasource "arch/arm/mach-at91/Kconfig"
12264614b891SMasahiro Yamada
1227ddf6bd48SMasahiro Yamadasource "arch/arm/mach-bcm283x/Kconfig"
12283491ba63SMasahiro Yamada
1229ddf6bd48SMasahiro Yamadasource "arch/arm/mach-davinci/Kconfig"
123034e609caSSimon Glass
123177b55e8cSThomas Abrahamsource "arch/arm/mach-exynos/Kconfig"
123272df68ccSMasahiro Yamada
123372a8ff4bSMasahiro Yamadasource "arch/arm/mach-highbank/Kconfig"
1234ef2b694cSMasahiro Yamada
12355cbbd9bdSMasahiro Yamadasource "arch/arm/mach-integrator/Kconfig"
12365cbbd9bdSMasahiro Yamada
123739a72345SMasahiro Yamadasource "arch/arm/mach-keystone/Kconfig"
1238c338f09eSMasahiro Yamada
123956f86e39SMasahiro Yamadasource "arch/arm/mach-kirkwood/Kconfig"
124047539e23SMasahiro Yamada
1241c3d89140SStefan Roesesource "arch/arm/mach-mvebu/Kconfig"
1242c3d89140SStefan Roese
12430a37cf8fSYork Sunsource "arch/arm/cpu/armv7/ls102xa/Kconfig"
12440a37cf8fSYork Sun
124507df697eSFabio Estevamsource "arch/arm/mach-imx/mx2/Kconfig"
124607df697eSFabio Estevam
1247552a848eSStefano Babicsource "arch/arm/mach-imx/mx7ulp/Kconfig"
1248e90a08daSPeng Fan
1249552a848eSStefano Babicsource "arch/arm/mach-imx/mx7/Kconfig"
12501a8150d4SAdrian Alonso
1251552a848eSStefano Babicsource "arch/arm/mach-imx/mx6/Kconfig"
125289ebc821SBoris BREZILLON
1253552a848eSStefano Babicsource "arch/arm/mach-imx/mx5/Kconfig"
1254424ee3d1SAndrej Rosano
1255983e3700STom Rinisource "arch/arm/mach-omap2/Kconfig"
12566384726dSMadan Srinivas
1257da28e58aSYork Sunsource "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1258da28e58aSYork Sun
12593e93b4e6SMasahiro Yamadasource "arch/arm/mach-orion5x/Kconfig"
126022f2be7aSMasahiro Yamada
1261badbb63cSNobuhiro Iwamatsusource "arch/arm/mach-rmobile/Kconfig"
1262f40b9898SMasahiro Yamada
1263bfcef28aSBeniamino Galvanisource "arch/arm/mach-meson/Kconfig"
1264bfcef28aSBeniamino Galvani
126532f11829STuomas Tynkkynensource "arch/arm/mach-qemu/Kconfig"
126632f11829STuomas Tynkkynen
12672444dae5SSimon Glasssource "arch/arm/mach-rockchip/Kconfig"
12682444dae5SSimon Glass
1269225f5eecSMinkyu Kangsource "arch/arm/mach-s5pc1xx/Kconfig"
1270311757beSSimon Glass
127108592136SMateusz Kulikowskisource "arch/arm/mach-snapdragon/Kconfig"
127208592136SMateusz Kulikowski
12737865f4b0SMasahiro Yamadasource "arch/arm/mach-socfpga/Kconfig"
12747865f4b0SMasahiro Yamada
127594e9a4efSPatrice Chotardsource "arch/arm/mach-sti/Kconfig"
127694e9a4efSPatrice Chotard
12770a61ee88SVikas Manochasource "arch/arm/mach-stm32/Kconfig"
12780a61ee88SVikas Manocha
12793abfd887SMasahiro Yamadasource "arch/arm/mach-sunxi/Kconfig"
12803abfd887SMasahiro Yamada
128109f455dcSMasahiro Yamadasource "arch/arm/mach-tegra/Kconfig"
1282ddd960e6SMasahiro Yamada
12834c425570SMasahiro Yamadasource "arch/arm/mach-uniphier/Kconfig"
128466cba041SMasahiro Yamada
12857966b437SStefan Agnersource "arch/arm/cpu/armv7/vf610/Kconfig"
12867966b437SStefan Agner
12870107f240SMasahiro Yamadasource "arch/arm/mach-zynq/Kconfig"
1288ddd960e6SMasahiro Yamada
1289ea624e19SHans de Goedesource "arch/arm/cpu/armv7/Kconfig"
1290ea624e19SHans de Goede
129175580007SSiva Durga Prasad Paladugusource "arch/arm/cpu/armv8/zynqmp/Kconfig"
129275580007SSiva Durga Prasad Paladugu
129323b5877cSLinus Walleijsource "arch/arm/cpu/armv8/Kconfig"
129423b5877cSLinus Walleij
1295552a848eSStefano Babicsource "arch/arm/mach-imx/Kconfig"
1296a05a6045SBoris BREZILLON
1297fcea480dSMarek Vasutsource "board/aries/m28evk/Kconfig"
1298d8ccbe93SHeiko Schochersource "board/bosch/shc/Kconfig"
1299dd84058dSMasahiro Yamadasource "board/CarMediaLab/flea3/Kconfig"
1300dd84058dSMasahiro Yamadasource "board/Marvell/aspenite/Kconfig"
1301dd84058dSMasahiro Yamadasource "board/Marvell/gplugd/Kconfig"
1302dd84058dSMasahiro Yamadasource "board/armadeus/apf27/Kconfig"
1303dd84058dSMasahiro Yamadasource "board/armltd/vexpress/Kconfig"
1304dd84058dSMasahiro Yamadasource "board/armltd/vexpress64/Kconfig"
1305dd84058dSMasahiro Yamadasource "board/bluegiga/apx4devkit/Kconfig"
130643486e4cSSteve Raesource "board/broadcom/bcm23550_w1d/Kconfig"
1307dd84058dSMasahiro Yamadasource "board/broadcom/bcm28155_ap/Kconfig"
1308abb1678cSSteve Raesource "board/broadcom/bcmcygnus/Kconfig"
1309abb1678cSSteve Raesource "board/broadcom/bcmnsp/Kconfig"
1310274bced8SJon Masonsource "board/broadcom/bcmns2/Kconfig"
1311746f985aSSergey Temerkhanovsource "board/cavium/thunderx/Kconfig"
1312dd84058dSMasahiro Yamadasource "board/cirrus/edb93xx/Kconfig"
1313dd84058dSMasahiro Yamadasource "board/creative/xfi3/Kconfig"
131485ab0452SFelix Bracksource "board/eets/pdu001/Kconfig"
131544937214SPrabhakar Kushwahasource "board/freescale/ls2080a/Kconfig"
131644937214SPrabhakar Kushwahasource "board/freescale/ls2080aqds/Kconfig"
131744937214SPrabhakar Kushwahasource "board/freescale/ls2080ardb/Kconfig"
1318e84a324bSAshish Kumarsource "board/freescale/ls1088a/Kconfig"
1319550e3dc0SWang Huansource "board/freescale/ls1021aqds/Kconfig"
132002b5d2edSShaohui Xiesource "board/freescale/ls1043aqds/Kconfig"
1321c8a7d9daSWang Huansource "board/freescale/ls1021atwr/Kconfig"
132220c700f8SFeng Lisource "board/freescale/ls1021aiot/Kconfig"
1323126fe70dSShaohui Xiesource "board/freescale/ls1046aqds/Kconfig"
1324f3a8e2b7SMingkai Husource "board/freescale/ls1043ardb/Kconfig"
1325dd02936fSMingkai Husource "board/freescale/ls1046ardb/Kconfig"
13269d044fcbSPrabhakar Kushwahasource "board/freescale/ls1012aqds/Kconfig"
13273b6e3898SPrabhakar Kushwahasource "board/freescale/ls1012ardb/Kconfig"
1328ff78aa2bSPrabhakar Kushwahasource "board/freescale/ls1012afrdm/Kconfig"
1329dd84058dSMasahiro Yamadasource "board/freescale/mx23evk/Kconfig"
1330dd84058dSMasahiro Yamadasource "board/freescale/mx28evk/Kconfig"
1331dd84058dSMasahiro Yamadasource "board/freescale/mx31ads/Kconfig"
1332dd84058dSMasahiro Yamadasource "board/freescale/mx31pdk/Kconfig"
1333dd84058dSMasahiro Yamadasource "board/freescale/mx35pdk/Kconfig"
13349702ec00SEddy Petrișorsource "board/freescale/s32v234evb/Kconfig"
133560083261SDirk Eibachsource "board/gdsys/a38x/Kconfig"
1336ab38bf6aSMarcin Niestrojsource "board/grinn/chiliboard/Kconfig"
1337dd84058dSMasahiro Yamadasource "board/gumstix/pepper/Kconfig"
1338dd84058dSMasahiro Yamadasource "board/h2200/Kconfig"
1339345243edSTom Rinisource "board/hisilicon/hikey/Kconfig"
1340d754254fSJorge Ramirez-Ortizsource "board/hisilicon/poplar/Kconfig"
1341dd84058dSMasahiro Yamadasource "board/imx31_phycore/Kconfig"
1342a96c08f5SLadislav Michlsource "board/isee/igep003x/Kconfig"
1343dd84058dSMasahiro Yamadasource "board/olimex/mx23_olinuxino/Kconfig"
1344dd84058dSMasahiro Yamadasource "board/phytec/pcm051/Kconfig"
1345dd84058dSMasahiro Yamadasource "board/ppcag/bg0900/Kconfig"
1346dd84058dSMasahiro Yamadasource "board/sandisk/sansa_fuze_plus/Kconfig"
1347dd84058dSMasahiro Yamadasource "board/schulercontrol/sc_sps_1/Kconfig"
1348dd84058dSMasahiro Yamadasource "board/silica/pengwyn/Kconfig"
1349dd84058dSMasahiro Yamadasource "board/spear/spear300/Kconfig"
1350dd84058dSMasahiro Yamadasource "board/spear/spear310/Kconfig"
1351dd84058dSMasahiro Yamadasource "board/spear/spear320/Kconfig"
1352dd84058dSMasahiro Yamadasource "board/spear/spear600/Kconfig"
1353dd84058dSMasahiro Yamadasource "board/spear/x600/Kconfig"
13549fa32b12SVikas Manochasource "board/st/stv0991/Kconfig"
13559d1b2987SEnric Balletbò i Serrasource "board/tcl/sl50/Kconfig"
1356a2bc4321SGilles Gameirosource "board/birdland/bav335x/Kconfig"
1357dd84058dSMasahiro Yamadasource "board/timll/devkit3250/Kconfig"
1358dd84058dSMasahiro Yamadasource "board/toradex/colibri_pxa270/Kconfig"
1359d9e268edSSebastien Bourdelinsource "board/technologic/ts4600/Kconfig"
13606ce89324SYegor Yefremovsource "board/vscom/baltos/Kconfig"
1361dd84058dSMasahiro Yamadasource "board/woodburn/Kconfig"
1362412ae53aSAlbert ARIBAUD \(3ADEV\)source "board/work-microwave/work_92105/Kconfig"
1363f19eb154SVasily Khoruzhicksource "board/zipitz2/Kconfig"
1364dd84058dSMasahiro Yamada
136551b17d49SMasahiro Yamadasource "arch/arm/Kconfig.debug"
136651b17d49SMasahiro Yamada
1367dd84058dSMasahiro Yamadaendmenu
1368b529993eSPhilipp Tomsich
1369b529993eSPhilipp Tomsichconfig SPL_LDSCRIPT
1370b529993eSPhilipp Tomsich        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
1371b529993eSPhilipp Tomsich        default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
1372b529993eSPhilipp Tomsich	default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1373b529993eSPhilipp Tomsich
1374b529993eSPhilipp Tomsich
1375