summaryrefslogtreecommitdiff
path: root/arch/arm/mach-rmobile/Kconfig
blob: a74f16d3484b01734eb28df56ea25367d4f2e6c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
if ARCH_RMOBILE

choice
	prompt "Target Renesas SoC select"
	default RCAR_32

config RCAR_32
	bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
	select CPU_V7A

config RCAR_GEN3
	bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
	select ARM64
	select PHY
	select CMD_CACHE
	select PINCTRL
	select PINCONF
	select PINCTRL_PFC
	imply CMD_FS_UUID
	imply CMD_GPT
	imply CMD_UUID
	imply CMD_MMC_SWRITE if MMC
	imply SUPPORT_EMMC_RPMB if MMC

config RZA1
	prompt "Renesas ARM SoCs RZ/A1 (32bit)"
	select CPU_V7A

endchoice

source "arch/arm/mach-rmobile/Kconfig.32"
source "arch/arm/mach-rmobile/Kconfig.64"
source "arch/arm/mach-rmobile/Kconfig.rza1"

endif