clk: ingenic: Make PLL clock "od" field optional
authorAidan MacDonald <aidanmacdonald.0x0@gmail.com>
Wed, 26 Oct 2022 19:43:40 +0000 (20:43 +0100)
committerStephen Boyd <sboyd@kernel.org>
Thu, 27 Oct 2022 18:59:02 +0000 (11:59 -0700)
Add support for defining PLL clocks with od_bits = 0, meaning that
OD is fixed to 1 and there is no OD field in the register. In this
case od_max must also be 0, which is enforced with BUG_ON().

Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
Link: https://lore.kernel.org/r/20221026194345.243007-2-aidanmacdonald.0x0@gmail.com
Reviewed-by: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/ingenic/cgu.c
drivers/clk/ingenic/cgu.h

index 861c50d6cb244bce0cebdae84f4380f406b6fa18..0324576f5e62d10b5a9ec464427be1f65d4a143d 100644 (file)
@@ -83,7 +83,7 @@ ingenic_pll_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
        const struct ingenic_cgu_clk_info *clk_info = to_clk_info(ingenic_clk);
        struct ingenic_cgu *cgu = ingenic_clk->cgu;
        const struct ingenic_cgu_pll_info *pll_info;
-       unsigned m, n, od_enc, od;
+       unsigned m, n, od, od_enc = 0;
        bool bypass;
        u32 ctl;
 
@@ -96,8 +96,11 @@ ingenic_pll_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
        m += pll_info->m_offset;
        n = (ctl >> pll_info->n_shift) & GENMASK(pll_info->n_bits - 1, 0);
        n += pll_info->n_offset;
-       od_enc = ctl >> pll_info->od_shift;
-       od_enc &= GENMASK(pll_info->od_bits - 1, 0);
+
+       if (pll_info->od_bits > 0) {
+               od_enc = ctl >> pll_info->od_shift;
+               od_enc &= GENMASK(pll_info->od_bits - 1, 0);
+       }
 
        if (pll_info->bypass_bit >= 0) {
                ctl = readl(cgu->base + pll_info->bypass_reg);
@@ -108,11 +111,15 @@ ingenic_pll_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
                        return parent_rate;
        }
 
-       for (od = 0; od < pll_info->od_max; od++) {
+       for (od = 0; od < pll_info->od_max; od++)
                if (pll_info->od_encoding[od] == od_enc)
                        break;
-       }
-       BUG_ON(od == pll_info->od_max);
+
+       /* if od_max = 0, od_bits should be 0 and od is fixed to 1. */
+       if (pll_info->od_max == 0)
+               BUG_ON(pll_info->od_bits != 0);
+       else
+               BUG_ON(od == pll_info->od_max);
        od++;
 
        return div_u64((u64)parent_rate * m * pll_info->rate_multiplier,
@@ -215,8 +222,10 @@ ingenic_pll_set_rate(struct clk_hw *hw, unsigned long req_rate,
        ctl &= ~(GENMASK(pll_info->n_bits - 1, 0) << pll_info->n_shift);
        ctl |= (n - pll_info->n_offset) << pll_info->n_shift;
 
-       ctl &= ~(GENMASK(pll_info->od_bits - 1, 0) << pll_info->od_shift);
-       ctl |= pll_info->od_encoding[od - 1] << pll_info->od_shift;
+       if (pll_info->od_bits > 0) {
+               ctl &= ~(GENMASK(pll_info->od_bits - 1, 0) << pll_info->od_shift);
+               ctl |= pll_info->od_encoding[od - 1] << pll_info->od_shift;
+       }
 
        writel(ctl, cgu->base + pll_info->reg);
 
index 147b7df0d657377bca62af28c810ebd36fd16efa..567142b584bb321d62844a253e010c5a82886f00 100644 (file)
@@ -33,7 +33,8 @@
  * @od_shift: the number of bits to shift the post-VCO divider value by (ie.
  *            the index of the lowest bit of the post-VCO divider value in
  *            the PLL's control register)
- * @od_bits: the size of the post-VCO divider field in bits
+ * @od_bits: the size of the post-VCO divider field in bits, or 0 if no
+ *          OD field exists (then the OD is fixed to 1)
  * @od_max: the maximum post-VCO divider value
  * @od_encoding: a pointer to an array mapping post-VCO divider values to
  *               their encoded values in the PLL control register, or -1 for