Re: [PATCH] clk: renesas: r8a77970: add RPC clock

2018-11-05 Thread Geert Uytterhoeven
On Fri, Nov 2, 2018 at 8:25 PM Sergei Shtylyov
 wrote:
> On R-Car V3M (R8A77970), the RPC/RPCD2 clocks are output by the common
> divider. Describe them, as well as the RPC-IF module clock.
>
> Signed-off-by: Sergei Shtylyov 

Reviewed-by: Geert Uytterhoeven 
i.e. will queue in clk-renesas-for-v4.21, with s/add/Add/ and s/clock/clocks/.

Gr{oetje,eeting}s,

Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds


Re: [PATCH] clk: renesas: r8a77970: add RPC clock

2018-11-04 Thread Sergei Shtylyov

Oops, the subject should have "clocks", not "clock".


[PATCH] clk: renesas: r8a77970: add RPC clock

2018-11-02 Thread Sergei Shtylyov
On R-Car V3M (R8A77970), the RPC/RPCD2 clocks are output by the common
divider. Describe them, as well as the RPC-IF module clock.

Signed-off-by: Sergei Shtylyov 

---
This patch is against the 'clk-renesas' branch of Geert Uytterhoeven's
'renesas-drivers.git' repo.

 drivers/clk/renesas/r8a77970-cpg-mssr.c |4 
 1 file changed, 4 insertions(+)

Index: renesas/drivers/clk/renesas/r8a77970-cpg-mssr.c
===
--- renesas.orig/drivers/clk/renesas/r8a77970-cpg-mssr.c
+++ renesas/drivers/clk/renesas/r8a77970-cpg-mssr.c
@@ -94,6 +94,9 @@ static const struct cpg_core_clk r8a7797
 CLK_PLL1_DIV2),
DEF_BASE("sd0", R8A77970_CLK_SD0, CLK_TYPE_R8A77970_SD0, CLK_PLL1_DIV2),
 
+   DEF_FIXED("rpc",R8A77970_CLK_RPC,   CLK_PLL1_DIV2,  5, 1),
+   DEF_FIXED("rpcd2",  R8A77970_CLK_RPCD2, CLK_PLL1_DIV2, 10, 1),
+
DEF_FIXED("cl", R8A77970_CLK_CL,CLK_PLL1_DIV2, 48, 1),
DEF_FIXED("cp", R8A77970_CLK_CP,CLK_EXTAL,  2, 1),
 
@@ -155,6 +158,7 @@ static const struct mssr_mod_clk r8a7797
DEF_MOD("gpio1", 911,   R8A77970_CLK_CP),
DEF_MOD("gpio0", 912,   R8A77970_CLK_CP),
DEF_MOD("can-fd",914,   R8A77970_CLK_S2D2),
+   DEF_MOD("rpc-if",917,   R8A77970_CLK_RPC),
DEF_MOD("i2c4",  927,   R8A77970_CLK_S2D2),
DEF_MOD("i2c3",  928,   R8A77970_CLK_S2D2),
DEF_MOD("i2c2",  929,   R8A77970_CLK_S2D2),