Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 1 | #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 Hauer | 3a84d17 | 2012-09-11 08:50:00 +0200 | [diff] [blame] | 7 | |
Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 8 | #include "clk.h" |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 9 | #include "common.h" |
Shawn Guo | 50f2de6 | 2012-09-14 14:14:45 +0800 | [diff] [blame] | 10 | #include "hardware.h" |
Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 11 | |
| 12 | /** |
| 13 | * pll v1 |
| 14 | * |
| 15 | * @clk_hw clock source |
| 16 | * @parent the parent clock name |
| 17 | * @base base address of pll registers |
| 18 | * |
| 19 | * PLL clock version 1, found on i.MX1/21/25/27/31/35 |
| 20 | */ |
Alexander Shiyan | a594790 | 2013-11-10 13:34:49 +0400 | [diff] [blame] | 21 | |
| 22 | #define MFN_BITS (10) |
| 23 | #define MFN_SIGN (BIT(MFN_BITS - 1)) |
| 24 | #define MFN_MASK (MFN_SIGN - 1) |
| 25 | |
Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 26 | struct clk_pllv1 { |
| 27 | struct clk_hw hw; |
| 28 | void __iomem *base; |
| 29 | }; |
| 30 | |
| 31 | #define to_clk_pllv1(clk) (container_of(clk, struct clk_pllv1, clk)) |
| 32 | |
Alexander Shiyan | a594790 | 2013-11-10 13:34:49 +0400 | [diff] [blame] | 33 | static inline bool mfn_is_negative(unsigned int mfn) |
| 34 | { |
| 35 | return !cpu_is_mx1() && !cpu_is_mx21() && (mfn & MFN_SIGN); |
| 36 | } |
| 37 | |
Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 38 | static unsigned long clk_pllv1_recalc_rate(struct clk_hw *hw, |
| 39 | unsigned long parent_rate) |
| 40 | { |
| 41 | struct clk_pllv1 *pll = to_clk_pllv1(hw); |
Sascha Hauer | a6dd3c8 | 2012-09-11 08:40:38 +0200 | [diff] [blame] | 42 | long long ll; |
| 43 | int mfn_abs; |
| 44 | unsigned int mfi, mfn, mfd, pd; |
| 45 | u32 reg; |
| 46 | unsigned long rate; |
Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 47 | |
Sascha Hauer | a6dd3c8 | 2012-09-11 08:40:38 +0200 | [diff] [blame] | 48 | reg = readl(pll->base); |
| 49 | |
| 50 | /* |
| 51 | * Get the resulting clock rate from a PLL register value and the input |
| 52 | * frequency. PLLs with this register layout can be found on i.MX1, |
| 53 | * i.MX21, i.MX27 and i,MX31 |
| 54 | * |
| 55 | * mfi + mfn / (mfd + 1) |
| 56 | * f = 2 * f_ref * -------------------- |
| 57 | * pd + 1 |
| 58 | */ |
| 59 | |
| 60 | mfi = (reg >> 10) & 0xf; |
| 61 | mfn = reg & 0x3ff; |
| 62 | mfd = (reg >> 16) & 0x3ff; |
| 63 | pd = (reg >> 26) & 0xf; |
| 64 | |
| 65 | mfi = mfi <= 5 ? 5 : mfi; |
| 66 | |
| 67 | mfn_abs = mfn; |
| 68 | |
| 69 | /* |
| 70 | * On all i.MXs except i.MX1 and i.MX21 mfn is a 10bit |
Alexander Shiyan | a594790 | 2013-11-10 13:34:49 +0400 | [diff] [blame] | 71 | * 2's complements number. |
| 72 | * On i.MX27 the bit 9 is the sign bit. |
Sascha Hauer | a6dd3c8 | 2012-09-11 08:40:38 +0200 | [diff] [blame] | 73 | */ |
Alexander Shiyan | a594790 | 2013-11-10 13:34:49 +0400 | [diff] [blame] | 74 | if (mfn_is_negative(mfn)) { |
| 75 | if (cpu_is_mx27()) |
| 76 | mfn_abs = mfn & MFN_MASK; |
| 77 | else |
| 78 | mfn_abs = BIT(MFN_BITS) - mfn; |
| 79 | } |
Sascha Hauer | a6dd3c8 | 2012-09-11 08:40:38 +0200 | [diff] [blame] | 80 | |
| 81 | rate = parent_rate * 2; |
| 82 | rate /= pd + 1; |
| 83 | |
| 84 | ll = (unsigned long long)rate * mfn_abs; |
| 85 | |
| 86 | do_div(ll, mfd + 1); |
| 87 | |
Alexander Shiyan | a594790 | 2013-11-10 13:34:49 +0400 | [diff] [blame] | 88 | if (mfn_is_negative(mfn)) |
Sascha Hauer | a6dd3c8 | 2012-09-11 08:40:38 +0200 | [diff] [blame] | 89 | ll = -ll; |
| 90 | |
| 91 | ll = (rate * mfi) + ll; |
| 92 | |
| 93 | return ll; |
Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 94 | } |
| 95 | |
Fabio Estevam | e9d8ab8 | 2013-03-25 09:20:33 -0300 | [diff] [blame] | 96 | static struct clk_ops clk_pllv1_ops = { |
Sascha Hauer | 2af9e6d | 2012-03-09 09:11:55 +0100 | [diff] [blame] | 97 | .recalc_rate = clk_pllv1_recalc_rate, |
| 98 | }; |
| 99 | |
| 100 | struct clk *imx_clk_pllv1(const char *name, const char *parent, |
| 101 | void __iomem *base) |
| 102 | { |
| 103 | struct clk_pllv1 *pll; |
| 104 | struct clk *clk; |
| 105 | struct clk_init_data init; |
| 106 | |
| 107 | pll = kmalloc(sizeof(*pll), GFP_KERNEL); |
| 108 | if (!pll) |
| 109 | return ERR_PTR(-ENOMEM); |
| 110 | |
| 111 | pll->base = base; |
| 112 | |
| 113 | init.name = name; |
| 114 | init.ops = &clk_pllv1_ops; |
| 115 | init.flags = 0; |
| 116 | init.parent_names = &parent; |
| 117 | init.num_parents = 1; |
| 118 | |
| 119 | pll->hw.init = &init; |
| 120 | |
| 121 | clk = clk_register(NULL, &pll->hw); |
| 122 | if (IS_ERR(clk)) |
| 123 | kfree(pll); |
| 124 | |
| 125 | return clk; |
| 126 | } |