Message ID | 1549015841-33536-4-git-send-email-biju.das@bp.renesas.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | Add CMT/TMU support for RZ/G2E | expand |
Hi Biju, On Fri, Feb 1, 2019 at 11:16 AM Biju Das <biju.das@bp.renesas.com> wrote: > This patch adds TMU clock to the R8A774C0 SoC. > > Signed-off-by: Biju Das <biju.das@bp.renesas.com> Thanks for your patch! > --- a/drivers/clk/renesas/r8a774c0-cpg-mssr.c > +++ b/drivers/clk/renesas/r8a774c0-cpg-mssr.c > @@ -119,6 +119,11 @@ static const struct cpg_core_clk r8a774c0_core_clks[] __initconst = { > }; > > static const struct mssr_mod_clk r8a774c0_mod_clks[] __initconst = { > + DEF_MOD("tmu4", 121, R8A774C0_CLK_S0D6), RZ/G2 Hardware User's Manual rev. 0.61 says S0D6C? > + DEF_MOD("tmu3", 122, R8A774C0_CLK_S3D2), > + DEF_MOD("tmu2", 123, R8A774C0_CLK_S3D2), > + DEF_MOD("tmu1", 124, R8A774C0_CLK_S3D2), S3D2C? (all three) Since these are timers, it should be easy to verify the actual parent clock rates. > + DEF_MOD("tmu0", 125, R8A774C0_CLK_CP), > DEF_MOD("scif5", 202, R8A774C0_CLK_S3D4C), > DEF_MOD("scif4", 203, R8A774C0_CLK_S3D4C), > DEF_MOD("scif3", 204, R8A774C0_CLK_S3D4C), Gr{oetje,eeting}s, Geert
Hi Geert, Thanks for the feedback. Regards, Biju > Subject: Re: [PATCH 3/5] clk: renesas: r8a774c0: Add TMU clock > > Hi Biju, > > On Fri, Feb 1, 2019 at 11:16 AM Biju Das <biju.das@bp.renesas.com> wrote: > > This patch adds TMU clock to the R8A774C0 SoC. > > > > Signed-off-by: Biju Das <biju.das@bp.renesas.com> > > Thanks for your patch! > > > --- a/drivers/clk/renesas/r8a774c0-cpg-mssr.c > > +++ b/drivers/clk/renesas/r8a774c0-cpg-mssr.c > > @@ -119,6 +119,11 @@ static const struct cpg_core_clk > > r8a774c0_core_clks[] __initconst = { }; > > > > static const struct mssr_mod_clk r8a774c0_mod_clks[] __initconst = { > > + DEF_MOD("tmu4", 121, R8A774C0_CLK_S0D6), > > RZ/G2 Hardware User's Manual rev. 0.61 says S0D6C? > Yes you are correct, I missed it. > > + DEF_MOD("tmu3", 122, R8A774C0_CLK_S3D2), > > + DEF_MOD("tmu2", 123, R8A774C0_CLK_S3D2), > > + DEF_MOD("tmu1", 124, R8A774C0_CLK_S3D2), > > S3D2C? (all three) Yes you are correct. Will send v2. > Since these are timers, it should be easy to verify the actual parent clock > rates. Will check. > > + DEF_MOD("tmu0", 125, R8A774C0_CLK_CP), > > DEF_MOD("scif5", 202, R8A774C0_CLK_S3D4C), > > DEF_MOD("scif4", 203, R8A774C0_CLK_S3D4C), > > DEF_MOD("scif3", 204, R8A774C0_CLK_S3D4C), Regards, Biju Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.
diff --git a/drivers/clk/renesas/r8a774c0-cpg-mssr.c b/drivers/clk/renesas/r8a774c0-cpg-mssr.c index 10b9689..5953f5c 100644 --- a/drivers/clk/renesas/r8a774c0-cpg-mssr.c +++ b/drivers/clk/renesas/r8a774c0-cpg-mssr.c @@ -119,6 +119,11 @@ static const struct cpg_core_clk r8a774c0_core_clks[] __initconst = { }; static const struct mssr_mod_clk r8a774c0_mod_clks[] __initconst = { + DEF_MOD("tmu4", 121, R8A774C0_CLK_S0D6), + DEF_MOD("tmu3", 122, R8A774C0_CLK_S3D2), + DEF_MOD("tmu2", 123, R8A774C0_CLK_S3D2), + DEF_MOD("tmu1", 124, R8A774C0_CLK_S3D2), + DEF_MOD("tmu0", 125, R8A774C0_CLK_CP), DEF_MOD("scif5", 202, R8A774C0_CLK_S3D4C), DEF_MOD("scif4", 203, R8A774C0_CLK_S3D4C), DEF_MOD("scif3", 204, R8A774C0_CLK_S3D4C),
This patch adds TMU clock to the R8A774C0 SoC. Signed-off-by: Biju Das <biju.das@bp.renesas.com> --- drivers/clk/renesas/r8a774c0-cpg-mssr.c | 5 +++++ 1 file changed, 5 insertions(+)