clk: starfive: pll: Fix to use postdiv1_mask 93/294893/1
authorHoegeun Kwon <hoegeun.kwon@samsung.com>
Wed, 28 Jun 2023 08:01:42 +0000 (17:01 +0900)
committerHoegeun Kwon <hoegeun.kwon@samsung.com>
Wed, 28 Jun 2023 08:01:42 +0000 (17:01 +0900)
There is a problem that the rates of PLL0 and PLL1 are set incorrectly
because the postdiv1_mask value is incorrectly entered when setting
the pll clk reg. Modify postdiv1's mask value to be put correctly.

Change-Id: Ic2dcc1776313e8185af3ba938e2a980777b85950
Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
drivers/clk/starfive/clk-jh7110-pll.c

index 02e6d90..7492b1f 100644 (file)
@@ -185,7 +185,7 @@ static void jh7110_pll_set_rate(struct clk_jh7110_pllx *pll,
        PLLX_SET(pll->offset->dsmpd, pll->offset->dsmpd_mask, 1);
        PLLX_SET(pll->offset->prediv, pll->offset->prediv_mask, rate->prediv);
        PLLX_SET(pll->offset->fbdiv, pll->offset->fbdiv_mask, rate->fbdiv);
-       PLLX_SET(pll->offset->postdiv1, pll->offset->postdiv1, 0);
+       PLLX_SET(pll->offset->postdiv1, pll->offset->postdiv1_mask, 0);
        PLLX_SET(pll->offset->pd, pll->offset->pd_mask, PLL_PD_ON);
 
        if (set) {