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@xxxxxxxxxxxxxx> > 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@xxxxxxxxxxxxxx> > > 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@xxxxxxxxx> > > 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