clk: meson: add od3 to the pll driver
authorJerome Brunet <jbrunet@baylibre.com>
Fri, 19 Jan 2018 15:55:25 +0000 (16:55 +0100)
committerJerome Brunet <jbrunet@baylibre.com>
Mon, 12 Feb 2018 08:49:23 +0000 (09:49 +0100)
Some meson plls, such as the hdmi pll, are using a 3rd od parameter,
which is yet another "power of 2" post divider. Add it to fix the
calculation of the hdmi_pll rate

Fixes: 738f66d3211d ("clk: gxbb: add AmLogic GXBB clk controller driver")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
drivers/clk/meson/clk-pll.c
drivers/clk/meson/clkc.h
drivers/clk/meson/gxbb.c

index 50923d004d96e61a33952b838977acf3830885e5..1595f02f610fc0fafdf6f500647100a8153c30e7 100644 (file)
@@ -53,7 +53,7 @@ static unsigned long meson_clk_pll_recalc_rate(struct clk_hw *hw,
        struct meson_clk_pll *pll = to_meson_clk_pll(hw);
        struct parm *p;
        u64 rate;
-       u16 n, m, frac = 0, od, od2 = 0;
+       u16 n, m, frac = 0, od, od2 = 0, od3 = 0;
        u32 reg;
 
        p = &pll->n;
@@ -74,7 +74,13 @@ static unsigned long meson_clk_pll_recalc_rate(struct clk_hw *hw,
                od2 = PARM_GET(p->width, p->shift, reg);
        }
 
-       rate = (u64)parent_rate * m;
+       p = &pll->od3;
+       if (p->width) {
+               reg = readl(pll->base + p->reg_off);
+               od3 = PARM_GET(p->width, p->shift, reg);
+       }
+
+       rate = (u64)m * parent_rate;
 
        p = &pll->frac;
        if (p->width) {
@@ -85,7 +91,7 @@ static unsigned long meson_clk_pll_recalc_rate(struct clk_hw *hw,
                rate *= 2;
        }
 
-       return div_u64(rate, n) >> od >> od2;
+       return div_u64(rate, n) >> od >> od2 >> od3;
 }
 
 static long meson_clk_pll_round_rate(struct clk_hw *hw, unsigned long rate,
@@ -226,6 +232,13 @@ static int meson_clk_pll_set_rate(struct clk_hw *hw, unsigned long rate,
                writel(reg, pll->base + p->reg_off);
        }
 
+       p = &pll->od3;
+       if (p->width) {
+               reg = readl(pll->base + p->reg_off);
+               reg = PARM_SET(p->width, p->shift, reg, rate_set->od3);
+               writel(reg, pll->base + p->reg_off);
+       }
+
        p = &pll->frac;
        if (p->width) {
                reg = readl(pll->base + p->reg_off);
index c2ff0520ce533f7633b46b0b9f56a3a4827fcba9..4acb35bda669965670d03f267a49fbd32cfea233 100644 (file)
@@ -41,6 +41,7 @@ struct pll_rate_table {
        u16             n;
        u16             od;
        u16             od2;
+       u16             od3;
        u16             frac;
 };
 
@@ -92,6 +93,7 @@ struct meson_clk_pll {
        struct parm frac;
        struct parm od;
        struct parm od2;
+       struct parm od3;
        const struct pll_setup_params params;
        const struct pll_rate_table *rate_table;
        unsigned int rate_count;
index 4b5229f656e333a3e7ac24653fbd0b89c8a8e859..e83573b457fcb0d818ac7b5c06c355cdf26f3021 100644 (file)
@@ -238,6 +238,11 @@ static struct meson_clk_pll gxbb_hdmi_pll = {
                .shift   = 22,
                .width   = 2,
        },
+       .od3 = {
+               .reg_off = HHI_HDMI_PLL_CNTL2,
+               .shift   = 18,
+               .width   = 2,
+       },
        .lock = &meson_clk_lock,
        .hw.init = &(struct clk_init_data){
                .name = "hdmi_pll",