summaryrefslogtreecommitdiff
path: root/arch/arm/mach-rmobile/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-rmobile/Kconfig')
-rw-r--r--arch/arm/mach-rmobile/Kconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/mach-rmobile/Kconfig b/arch/arm/mach-rmobile/Kconfig
new file mode 100644
index 0000000..4b05d78
--- /dev/null
+++ b/arch/arm/mach-rmobile/Kconfig
@@ -0,0 +1,20 @@
+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_V7
+
+config RCAR_GEN3
+ bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
+ select ARM64
+
+endchoice
+
+source "arch/arm/mach-rmobile/Kconfig.32"
+source "arch/arm/mach-rmobile/Kconfig.64"
+
+endif