Message ID | 20230518152334.514922-1-biju.das.jz@bp.renesas.com (mailing list archive) |
---|---|
State | Awaiting Upstream, archived |
Headers | show |
Series | clk: renesas: rzg2l: Fix CPG_SIPLL5_CLK1 register write | expand |
Hi Biju, On Thu, May 18, 2023 at 5:23 PM Biju Das <biju.das.jz@bp.renesas.com> wrote: > As per RZ/G2L HW(Rev.1.30 May2023) manual, there is no "write enable" > bits for CPG_SIPLL5_CLK1 register. So fix the CPG_SIPLL5_CLK register > write by removing "write enable" bits. > > Fixes: 1561380ee72f ("clk: renesas: rzg2l: Add FOUTPOSTDIV clk support") > Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Thanks for your patch! > --- a/drivers/clk/renesas/rzg2l-cpg.c > +++ b/drivers/clk/renesas/rzg2l-cpg.c > @@ -603,10 +603,8 @@ static int rzg2l_cpg_sipll5_set_rate(struct clk_hw *hw, > } > > /* Output clock setting 1 */ > - writel(CPG_SIPLL5_CLK1_POSTDIV1_WEN | CPG_SIPLL5_CLK1_POSTDIV2_WEN | > - CPG_SIPLL5_CLK1_REFDIV_WEN | (params.pl5_postdiv1 << 0) | > - (params.pl5_postdiv2 << 4) | (params.pl5_refdiv << 8), > - priv->base + CPG_SIPLL5_CLK1); > + writel((params.pl5_postdiv1 << 0) | (params.pl5_postdiv2 << 4) | > + (params.pl5_refdiv << 8), priv->base + CPG_SIPLL5_CLK1); > > /* Output clock setting, SSCG modulation value setting 3 */ > writel((params.pl5_fracin << 8), priv->base + CPG_SIPLL5_CLK3); Matches the documentation, so Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> But I guess the actual CPG_SIPLL5_CLK1_*_WEN bit definitions should be removed, too? I can do that while applying... Gr{oetje,eeting}s, Geert
Hi Geert, Thanks for the feedback. > Subject: Re: [PATCH] clk: renesas: rzg2l: Fix CPG_SIPLL5_CLK1 register > write > > Hi Biju, > > On Thu, May 18, 2023 at 5:23 PM Biju Das <biju.das.jz@bp.renesas.com> > wrote: > > As per RZ/G2L HW(Rev.1.30 May2023) manual, there is no "write enable" > > bits for CPG_SIPLL5_CLK1 register. So fix the CPG_SIPLL5_CLK register > > write by removing "write enable" bits. > > > > Fixes: 1561380ee72f ("clk: renesas: rzg2l: Add FOUTPOSTDIV clk > > support") > > Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> > > Thanks for your patch! > > > --- a/drivers/clk/renesas/rzg2l-cpg.c > > +++ b/drivers/clk/renesas/rzg2l-cpg.c > > @@ -603,10 +603,8 @@ static int rzg2l_cpg_sipll5_set_rate(struct > clk_hw *hw, > > } > > > > /* Output clock setting 1 */ > > - writel(CPG_SIPLL5_CLK1_POSTDIV1_WEN | > CPG_SIPLL5_CLK1_POSTDIV2_WEN | > > - CPG_SIPLL5_CLK1_REFDIV_WEN | (params.pl5_postdiv1 << > 0) | > > - (params.pl5_postdiv2 << 4) | (params.pl5_refdiv << 8), > > - priv->base + CPG_SIPLL5_CLK1); > > + writel((params.pl5_postdiv1 << 0) | (params.pl5_postdiv2 << 4) > | > > + (params.pl5_refdiv << 8), priv->base + > > + CPG_SIPLL5_CLK1); > > > > /* Output clock setting, SSCG modulation value setting 3 */ > > writel((params.pl5_fracin << 8), priv->base + > > CPG_SIPLL5_CLK3); > > Matches the documentation, so > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> > > But I guess the actual CPG_SIPLL5_CLK1_*_WEN bit definitions should be > removed, too? I can do that while applying... Yes, it is not required. Thanks, Biju
diff --git a/drivers/clk/renesas/rzg2l-cpg.c b/drivers/clk/renesas/rzg2l-cpg.c index 93b02cdc98c2..ca8b921c7762 100644 --- a/drivers/clk/renesas/rzg2l-cpg.c +++ b/drivers/clk/renesas/rzg2l-cpg.c @@ -603,10 +603,8 @@ static int rzg2l_cpg_sipll5_set_rate(struct clk_hw *hw, } /* Output clock setting 1 */ - writel(CPG_SIPLL5_CLK1_POSTDIV1_WEN | CPG_SIPLL5_CLK1_POSTDIV2_WEN | - CPG_SIPLL5_CLK1_REFDIV_WEN | (params.pl5_postdiv1 << 0) | - (params.pl5_postdiv2 << 4) | (params.pl5_refdiv << 8), - priv->base + CPG_SIPLL5_CLK1); + writel((params.pl5_postdiv1 << 0) | (params.pl5_postdiv2 << 4) | + (params.pl5_refdiv << 8), priv->base + CPG_SIPLL5_CLK1); /* Output clock setting, SSCG modulation value setting 3 */ writel((params.pl5_fracin << 8), priv->base + CPG_SIPLL5_CLK3);
As per RZ/G2L HW(Rev.1.30 May2023) manual, there is no "write enable" bits for CPG_SIPLL5_CLK1 register. So fix the CPG_SIPLL5_CLK register write by removing "write enable" bits. Fixes: 1561380ee72f ("clk: renesas: rzg2l: Add FOUTPOSTDIV clk support") Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> --- drivers/clk/renesas/rzg2l-cpg.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)