diff mbox series

clk: renesas: rzg2l: Fix CPG_SIPLL5_CLK1 register write

Message ID 20230518152334.514922-1-biju.das.jz@bp.renesas.com (mailing list archive)
State Accepted
Delegated to: Geert Uytterhoeven
Headers show
Series clk: renesas: rzg2l: Fix CPG_SIPLL5_CLK1 register write | expand

Commit Message

Biju Das May 18, 2023, 3:23 p.m. UTC
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(-)

Comments

Geert Uytterhoeven May 22, 2023, 12:52 p.m. UTC | #1
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
Biju Das May 22, 2023, 1:03 p.m. UTC | #2
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 mbox series

Patch

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);