1 #include <linux/clk-provider.h>
3 #include <linux/slab.h>
4 #include <linux/kernel.h>
12 * @clk_hw clock source
13 * @parent the parent clock name
14 * @base base address of pll registers
16 * PLL clock version 1, found on i.MX1/21/25/27/31/35
20 #define MFN_SIGN (BIT(MFN_BITS - 1))
21 #define MFN_MASK (MFN_SIGN - 1)
26 enum imx_pllv1_type type
;
29 #define to_clk_pllv1(clk) (container_of(clk, struct clk_pllv1, clk))
31 static inline bool is_imx1_pllv1(struct clk_pllv1
*pll
)
33 return pll
->type
== IMX_PLLV1_IMX1
;
36 static inline bool is_imx21_pllv1(struct clk_pllv1
*pll
)
38 return pll
->type
== IMX_PLLV1_IMX21
;
41 static inline bool is_imx27_pllv1(struct clk_pllv1
*pll
)
43 return pll
->type
== IMX_PLLV1_IMX27
;
46 static inline bool mfn_is_negative(struct clk_pllv1
*pll
, unsigned int mfn
)
48 return !is_imx1_pllv1(pll
) && !is_imx21_pllv1(pll
) && (mfn
& MFN_SIGN
);
51 static unsigned long clk_pllv1_recalc_rate(struct clk_hw
*hw
,
52 unsigned long parent_rate
)
54 struct clk_pllv1
*pll
= to_clk_pllv1(hw
);
55 unsigned long long ull
;
57 unsigned int mfi
, mfn
, mfd
, pd
;
61 reg
= readl(pll
->base
);
64 * Get the resulting clock rate from a PLL register value and the input
65 * frequency. PLLs with this register layout can be found on i.MX1,
66 * i.MX21, i.MX27 and i,MX31
68 * mfi + mfn / (mfd + 1)
69 * f = 2 * f_ref * --------------------
73 mfi
= (reg
>> 10) & 0xf;
75 mfd
= (reg
>> 16) & 0x3ff;
76 pd
= (reg
>> 26) & 0xf;
78 mfi
= mfi
<= 5 ? 5 : mfi
;
83 * On all i.MXs except i.MX1 and i.MX21 mfn is a 10bit
84 * 2's complements number.
85 * On i.MX27 the bit 9 is the sign bit.
87 if (mfn_is_negative(pll
, mfn
)) {
88 if (is_imx27_pllv1(pll
))
89 mfn_abs
= mfn
& MFN_MASK
;
91 mfn_abs
= BIT(MFN_BITS
) - mfn
;
94 rate
= parent_rate
* 2;
97 ull
= (unsigned long long)rate
* mfn_abs
;
101 if (mfn_is_negative(pll
, mfn
))
102 ull
= (rate
* mfi
) - ull
;
104 ull
= (rate
* mfi
) + ull
;
109 static struct clk_ops clk_pllv1_ops
= {
110 .recalc_rate
= clk_pllv1_recalc_rate
,
113 struct clk
*imx_clk_pllv1(enum imx_pllv1_type type
, const char *name
,
114 const char *parent
, void __iomem
*base
)
116 struct clk_pllv1
*pll
;
118 struct clk_init_data init
;
120 pll
= kmalloc(sizeof(*pll
), GFP_KERNEL
);
122 return ERR_PTR(-ENOMEM
);
128 init
.ops
= &clk_pllv1_ops
;
130 init
.parent_names
= &parent
;
131 init
.num_parents
= 1;
133 pll
->hw
.init
= &init
;
135 clk
= clk_register(NULL
, &pll
->hw
);