Commit 87ab58e1 authored by Yoshihiro Shimoda's avatar Yoshihiro Shimoda Committed by Geert Uytterhoeven

soc: renesas: Identify R-Car V4H

Add support for identifying the R-Car V4H (R8A779G0) SoC.
Signed-off-by: default avatarYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Link: https://lore.kernel.org/r/20220420084255.375700-11-yoshihiro.shimoda.uh@renesas.comSigned-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
parent 11a5ebb4
...@@ -268,6 +268,13 @@ config ARCH_R8A779A0 ...@@ -268,6 +268,13 @@ config ARCH_R8A779A0
help help
This enables support for the Renesas R-Car V3U SoC. This enables support for the Renesas R-Car V3U SoC.
config ARCH_R8A779G0
bool "ARM64 Platform support for R-Car V4H"
select ARCH_RCAR_GEN3
select SYSC_R8A779G0
help
This enables support for the Renesas R-Car V4H SoC.
config ARCH_R8A774C0 config ARCH_R8A774C0
bool "ARM64 Platform support for RZ/G2E" bool "ARM64 Platform support for RZ/G2E"
select ARCH_RCAR_GEN3 select ARCH_RCAR_GEN3
......
...@@ -241,6 +241,11 @@ static const struct renesas_soc soc_rcar_s4 __initconst __maybe_unused = { ...@@ -241,6 +241,11 @@ static const struct renesas_soc soc_rcar_s4 __initconst __maybe_unused = {
.id = 0x5a, .id = 0x5a,
}; };
static const struct renesas_soc soc_rcar_v4h __initconst __maybe_unused = {
.family = &fam_rcar_gen4,
.id = 0x5c,
};
static const struct renesas_soc soc_shmobile_ag5 __initconst __maybe_unused = { static const struct renesas_soc soc_shmobile_ag5 __initconst __maybe_unused = {
.family = &fam_shmobile, .family = &fam_shmobile,
.id = 0x37, .id = 0x37,
...@@ -349,6 +354,9 @@ static const struct of_device_id renesas_socs[] __initconst = { ...@@ -349,6 +354,9 @@ static const struct of_device_id renesas_socs[] __initconst = {
#ifdef CONFIG_ARCH_R8A779F0 #ifdef CONFIG_ARCH_R8A779F0
{ .compatible = "renesas,r8a779f0", .data = &soc_rcar_s4 }, { .compatible = "renesas,r8a779f0", .data = &soc_rcar_s4 },
#endif #endif
#ifdef CONFIG_ARCH_R8A779G0
{ .compatible = "renesas,r8a779g0", .data = &soc_rcar_v4h },
#endif
#if defined(CONFIG_ARCH_R9A07G043) #if defined(CONFIG_ARCH_R9A07G043)
{ .compatible = "renesas,r9a07g043", .data = &soc_rz_g2ul }, { .compatible = "renesas,r9a07g043", .data = &soc_rz_g2ul },
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment