Skip to content

Commit 090e87e

Browse files
shimodaygeertu
authored andcommitted
soc: renesas: Identify R-Car V3U
Add support for identifying the R-Car V3U (R8A779A0) SoC. Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Link: https://lore.kernel.org/r/1599470390-29719-10-git-send-email-yoshihiro.shimoda.uh@renesas.com Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
1 parent 6d5aded commit 090e87e

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

drivers/soc/renesas/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,12 @@ config ARCH_R8A77970
244244
help
245245
This enables support for the Renesas R-Car V3M SoC.
246246

247+
config ARCH_R8A779A0
248+
bool "ARM64 Platform support for R-Car V3U"
249+
select ARCH_RCAR_GEN3
250+
help
251+
This enables support for the Renesas R-Car V3U SoC.
252+
247253
config ARCH_R8A774C0
248254
bool "ARM64 Platform support for RZ/G2E"
249255
select ARCH_RCAR_GEN3

drivers/soc/renesas/renesas-soc.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ static const struct renesas_soc soc_rcar_d3 __initconst __maybe_unused = {
200200
.id = 0x58,
201201
};
202202

203+
static const struct renesas_soc soc_rcar_v3u __initconst __maybe_unused = {
204+
.family = &fam_rcar_gen3,
205+
.id = 0x59,
206+
};
207+
203208
static const struct renesas_soc soc_shmobile_ag5 __initconst __maybe_unused = {
204209
.family = &fam_shmobile,
205210
.id = 0x37,
@@ -291,6 +296,9 @@ static const struct of_device_id renesas_socs[] __initconst = {
291296
#ifdef CONFIG_ARCH_R8A77995
292297
{ .compatible = "renesas,r8a77995", .data = &soc_rcar_d3 },
293298
#endif
299+
#ifdef CONFIG_ARCH_R8A779A0
300+
{ .compatible = "renesas,r8a779a0", .data = &soc_rcar_v3u },
301+
#endif
294302
#ifdef CONFIG_ARCH_SH73A0
295303
{ .compatible = "renesas,sh73a0", .data = &soc_shmobile_ag5 },
296304
#endif

0 commit comments

Comments
 (0)