blob: c34ad8a611dd53e6f1465a82e8ad1c1f783b93f7 [file] [log] [blame]
Sascha Hauer2af9e6d2012-03-09 09:11:55 +01001#include <linux/clk.h>
2#include <linux/clk-provider.h>
3#include <linux/io.h>
4#include <linux/slab.h>
5#include <linux/kernel.h>
6#include <linux/err.h>
Sascha Hauer3a84d172012-09-11 08:50:00 +02007
Sascha Hauer2af9e6d2012-03-09 09:11:55 +01008#include "clk.h"
9
10/**
11 * pll v1
12 *
13 * @clk_hw clock source
14 * @parent the parent clock name
15 * @base base address of pll registers
16 *
17 * PLL clock version 1, found on i.MX1/21/25/27/31/35
18 */
Alexander Shiyana5947902013-11-10 13:34:49 +040019
20#define MFN_BITS (10)
21#define MFN_SIGN (BIT(MFN_BITS - 1))
22#define MFN_MASK (MFN_SIGN - 1)
23
Sascha Hauer2af9e6d2012-03-09 09:11:55 +010024struct clk_pllv1 {
25 struct clk_hw hw;
26 void __iomem *base;
Shawn Guo3bec5f82015-04-26 13:33:39 +080027 enum imx_pllv1_type type;
Sascha Hauer2af9e6d2012-03-09 09:11:55 +010028};
29
30#define to_clk_pllv1(clk) (container_of(clk, struct clk_pllv1, clk))
31
Shawn Guo3bec5f82015-04-26 13:33:39 +080032static inline bool is_imx1_pllv1(struct clk_pllv1 *pll)
Alexander Shiyana5947902013-11-10 13:34:49 +040033{
Shawn Guo3bec5f82015-04-26 13:33:39 +080034 return pll->type == IMX_PLLV1_IMX1;
35}
36
37static inline bool is_imx21_pllv1(struct clk_pllv1 *pll)
38{
39 return pll->type == IMX_PLLV1_IMX21;
40}
41
42static inline bool is_imx27_pllv1(struct clk_pllv1 *pll)
43{
44 return pll->type == IMX_PLLV1_IMX27;
45}
46
47static inline bool mfn_is_negative(struct clk_pllv1 *pll, unsigned int mfn)
48{
49 return !is_imx1_pllv1(pll) && !is_imx21_pllv1(pll) && (mfn & MFN_SIGN);
Alexander Shiyana5947902013-11-10 13:34:49 +040050}
51
Sascha Hauer2af9e6d2012-03-09 09:11:55 +010052static unsigned long clk_pllv1_recalc_rate(struct clk_hw *hw,
53 unsigned long parent_rate)
54{
55 struct clk_pllv1 *pll = to_clk_pllv1(hw);
Sascha Hauera6dd3c82012-09-11 08:40:38 +020056 long long ll;
57 int mfn_abs;
58 unsigned int mfi, mfn, mfd, pd;
59 u32 reg;
60 unsigned long rate;
Sascha Hauer2af9e6d2012-03-09 09:11:55 +010061
Sascha Hauera6dd3c82012-09-11 08:40:38 +020062 reg = readl(pll->base);
63
64 /*
65 * Get the resulting clock rate from a PLL register value and the input
66 * frequency. PLLs with this register layout can be found on i.MX1,
67 * i.MX21, i.MX27 and i,MX31
68 *
69 * mfi + mfn / (mfd + 1)
70 * f = 2 * f_ref * --------------------
71 * pd + 1
72 */
73
74 mfi = (reg >> 10) & 0xf;
75 mfn = reg & 0x3ff;
76 mfd = (reg >> 16) & 0x3ff;
77 pd = (reg >> 26) & 0xf;
78
79 mfi = mfi <= 5 ? 5 : mfi;
80
81 mfn_abs = mfn;
82
83 /*
84 * On all i.MXs except i.MX1 and i.MX21 mfn is a 10bit
Alexander Shiyana5947902013-11-10 13:34:49 +040085 * 2's complements number.
86 * On i.MX27 the bit 9 is the sign bit.
Sascha Hauera6dd3c82012-09-11 08:40:38 +020087 */
Shawn Guo3bec5f82015-04-26 13:33:39 +080088 if (mfn_is_negative(pll, mfn)) {
89 if (is_imx27_pllv1(pll))
Alexander Shiyana5947902013-11-10 13:34:49 +040090 mfn_abs = mfn & MFN_MASK;
91 else
92 mfn_abs = BIT(MFN_BITS) - mfn;
93 }
Sascha Hauera6dd3c82012-09-11 08:40:38 +020094
95 rate = parent_rate * 2;
96 rate /= pd + 1;
97
98 ll = (unsigned long long)rate * mfn_abs;
99
100 do_div(ll, mfd + 1);
101
Shawn Guo3bec5f82015-04-26 13:33:39 +0800102 if (mfn_is_negative(pll, mfn))
Sascha Hauera6dd3c82012-09-11 08:40:38 +0200103 ll = -ll;
104
105 ll = (rate * mfi) + ll;
106
107 return ll;
Sascha Hauer2af9e6d2012-03-09 09:11:55 +0100108}
109
Fabio Estevame9d8ab82013-03-25 09:20:33 -0300110static struct clk_ops clk_pllv1_ops = {
Sascha Hauer2af9e6d2012-03-09 09:11:55 +0100111 .recalc_rate = clk_pllv1_recalc_rate,
112};
113
Shawn Guo3bec5f82015-04-26 13:33:39 +0800114struct clk *imx_clk_pllv1(enum imx_pllv1_type type, const char *name,
115 const char *parent, void __iomem *base)
Sascha Hauer2af9e6d2012-03-09 09:11:55 +0100116{
117 struct clk_pllv1 *pll;
118 struct clk *clk;
119 struct clk_init_data init;
120
121 pll = kmalloc(sizeof(*pll), GFP_KERNEL);
122 if (!pll)
123 return ERR_PTR(-ENOMEM);
124
125 pll->base = base;
Shawn Guo3bec5f82015-04-26 13:33:39 +0800126 pll->type = type;
Sascha Hauer2af9e6d2012-03-09 09:11:55 +0100127
128 init.name = name;
129 init.ops = &clk_pllv1_ops;
130 init.flags = 0;
131 init.parent_names = &parent;
132 init.num_parents = 1;
133
134 pll->hw.init = &init;
135
136 clk = clk_register(NULL, &pll->hw);
137 if (IS_ERR(clk))
138 kfree(pll);
139
140 return clk;
141}