diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2018-02-16 19:28:02 +0100 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2018-02-19 20:50:44 +0100 |
commit | 41d6d8bd8ae94ca9ee53720cd530168aca557db7 (patch) | |
tree | 03cac34457bd056b515aab7c8e69d5abb3290259 /drivers/soc/renesas/rcar-sysc.c | |
parent | dt-bindings: power: add R8A77980 SYSC power domain definitions (diff) | |
download | linux-41d6d8bd8ae94ca9ee53720cd530168aca557db7.tar.xz linux-41d6d8bd8ae94ca9ee53720cd530168aca557db7.zip |
soc: renesas: rcar-sysc: add R8A77980 support
Add support for R-Car V3H (R8A77980) SoC power areas to the R-Car SYSC
driver.
Based on the original (and large) patch by Vladimir Barinov.
Signed-off-by: Vladimir Barinov <vladimir.barinov@cogentembedded.com>
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'drivers/soc/renesas/rcar-sysc.c')
-rw-r--r-- | drivers/soc/renesas/rcar-sysc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/soc/renesas/rcar-sysc.c b/drivers/soc/renesas/rcar-sysc.c index 636872bc2416..72b0f4a9ad4e 100644 --- a/drivers/soc/renesas/rcar-sysc.c +++ b/drivers/soc/renesas/rcar-sysc.c @@ -287,6 +287,9 @@ static const struct of_device_id rcar_sysc_matches[] __initconst = { #ifdef CONFIG_SYSC_R8A77970 { .compatible = "renesas,r8a77970-sysc", .data = &r8a77970_sysc_info }, #endif +#ifdef CONFIG_SYSC_R8A77980 + { .compatible = "renesas,r8a77980-sysc", .data = &r8a77980_sysc_info }, +#endif #ifdef CONFIG_SYSC_R8A77995 { .compatible = "renesas,r8a77995-sysc", .data = &r8a77995_sysc_info }, #endif |