Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Yoshihiro Shimoda and committed by
Geert Uytterhoeven
8e9529f5 090e87e7

+6
+6
drivers/soc/renesas/rcar-rst.c
··· 37 37 .modemr = 0x60, 38 38 }; 39 39 40 + static const struct rst_config rcar_rst_r8a779a0 __initconst = { 41 + .modemr = 0x00, /* MODEMR0 and it has CPG related bits */ 42 + }; 43 + 40 44 static const struct of_device_id rcar_rst_matches[] __initconst = { 41 45 /* RZ/G1 is handled like R-Car Gen2 */ 42 46 { .compatible = "renesas,r8a7742-rst", .data = &rcar_rst_gen2 }, ··· 71 67 { .compatible = "renesas,r8a77980-rst", .data = &rcar_rst_gen3 }, 72 68 { .compatible = "renesas,r8a77990-rst", .data = &rcar_rst_gen3 }, 73 69 { .compatible = "renesas,r8a77995-rst", .data = &rcar_rst_gen3 }, 70 + /* R-Car V3U */ 71 + { .compatible = "renesas,r8a779a0-rst", .data = &rcar_rst_r8a779a0 }, 74 72 { /* sentinel */ } 75 73 }; 76 74