Merge branch 'master' of git://git.denx.de/u-boot-socfpga
[platform/kernel/u-boot.git] / arch / arm / mach-rmobile / Kconfig
1 if ARCH_RMOBILE
2
3 choice
4         prompt "Target Renesas SoC select"
5         default RCAR_32
6
7 config RCAR_32
8         bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
9         select CPU_V7A
10
11 config RCAR_GEN3
12         bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
13         select ARM64
14         select PHY
15         select CMD_CACHE
16         select PINCTRL
17         select PINCONF
18         select PINCTRL_PFC
19         imply CMD_FS_UUID
20         imply CMD_GPT
21         imply CMD_UUID
22         imply CMD_MMC_SWRITE if MMC
23         imply SUPPORT_EMMC_RPMB if MMC
24
25 config RZA1
26         prompt "Renesas ARM SoCs RZ/A1 (32bit)"
27         select CPU_V7A
28
29 endchoice
30
31 source "arch/arm/mach-rmobile/Kconfig.32"
32 source "arch/arm/mach-rmobile/Kconfig.64"
33 source "arch/arm/mach-rmobile/Kconfig.rza1"
34
35 endif