Skip to content

Commit 8e9529f

Browse files
shimodaygeertu
authored andcommitted
soc: renesas: rcar-rst: Add support for R-Car V3U
Add support for R-Car V3U (R8A779A0) to the R-Car RST driver. Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Link: https://lore.kernel.org/r/1599470390-29719-12-git-send-email-yoshihiro.shimoda.uh@renesas.com Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
1 parent 090e87e commit 8e9529f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

drivers/soc/renesas/rcar-rst.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ static const struct rst_config rcar_rst_gen3 __initconst = {
3737
.modemr = 0x60,
3838
};
3939

40+
static const struct rst_config rcar_rst_r8a779a0 __initconst = {
41+
.modemr = 0x00, /* MODEMR0 and it has CPG related bits */
42+
};
43+
4044
static const struct of_device_id rcar_rst_matches[] __initconst = {
4145
/* RZ/G1 is handled like R-Car Gen2 */
4246
{ .compatible = "renesas,r8a7742-rst", .data = &rcar_rst_gen2 },
@@ -67,6 +71,8 @@ static const struct of_device_id rcar_rst_matches[] __initconst = {
6771
{ .compatible = "renesas,r8a77980-rst", .data = &rcar_rst_gen3 },
6872
{ .compatible = "renesas,r8a77990-rst", .data = &rcar_rst_gen3 },
6973
{ .compatible = "renesas,r8a77995-rst", .data = &rcar_rst_gen3 },
74+
/* R-Car V3U */
75+
{ .compatible = "renesas,r8a779a0-rst", .data = &rcar_rst_r8a779a0 },
7076
{ /* sentinel */ }
7177
};
7278

0 commit comments

Comments
 (0)