xref: /openbmc/u-boot/arch/arm/mach-rmobile/Kconfig (revision 8bd19777)
1if ARCH_RMOBILE
2
3choice
4	prompt "Target Renesas SoC select"
5	default RCAR_32
6
7config RCAR_32
8	bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
9	select CPU_V7A
10
11config RCAR_GEN3
12	bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
13	select ARM64
14	select PHY
15	select CMD_CACHE
16
17endchoice
18
19source "arch/arm/mach-rmobile/Kconfig.32"
20source "arch/arm/mach-rmobile/Kconfig.64"
21
22endif
23