diff options
Diffstat (limited to 'arch/arm/mach-imx/clk-pllv1.c')
| -rw-r--r-- | arch/arm/mach-imx/clk-pllv1.c | 49 |
1 files changed, 47 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/clk-pllv1.c b/arch/arm/mach-imx/clk-pllv1.c index 2d856f9ccf59..02be73178912 100644 --- a/arch/arm/mach-imx/clk-pllv1.c +++ b/arch/arm/mach-imx/clk-pllv1.c | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | #include <linux/err.h> | 6 | #include <linux/err.h> |
| 7 | #include <mach/common.h> | 7 | #include <mach/common.h> |
| 8 | #include <mach/hardware.h> | 8 | #include <mach/hardware.h> |
| 9 | #include <mach/clock.h> | 9 | |
| 10 | #include "clk.h" | 10 | #include "clk.h" |
| 11 | 11 | ||
| 12 | /** | 12 | /** |
| @@ -29,8 +29,53 @@ static unsigned long clk_pllv1_recalc_rate(struct clk_hw *hw, | |||
| 29 | unsigned long parent_rate) | 29 | unsigned long parent_rate) |
| 30 | { | 30 | { |
| 31 | struct clk_pllv1 *pll = to_clk_pllv1(hw); | 31 | struct clk_pllv1 *pll = to_clk_pllv1(hw); |
| 32 | long long ll; | ||
| 33 | int mfn_abs; | ||
| 34 | unsigned int mfi, mfn, mfd, pd; | ||
| 35 | u32 reg; | ||
| 36 | unsigned long rate; | ||
| 37 | |||
| 38 | reg = readl(pll->base); | ||
| 39 | |||
| 40 | /* | ||
| 41 | * Get the resulting clock rate from a PLL register value and the input | ||
| 42 | * frequency. PLLs with this register layout can be found on i.MX1, | ||
| 43 | * i.MX21, i.MX27 and i,MX31 | ||
| 44 | * | ||
| 45 | * mfi + mfn / (mfd + 1) | ||
| 46 | * f = 2 * f_ref * -------------------- | ||
| 47 | * pd + 1 | ||
| 48 | */ | ||
| 49 | |||
| 50 | mfi = (reg >> 10) & 0xf; | ||
| 51 | mfn = reg & 0x3ff; | ||
| 52 | mfd = (reg >> 16) & 0x3ff; | ||
| 53 | pd = (reg >> 26) & 0xf; | ||
| 54 | |||
| 55 | mfi = mfi <= 5 ? 5 : mfi; | ||
| 56 | |||
| 57 | mfn_abs = mfn; | ||
| 58 | |||
| 59 | /* | ||
| 60 | * On all i.MXs except i.MX1 and i.MX21 mfn is a 10bit | ||
| 61 | * 2's complements number | ||
| 62 | */ | ||
| 63 | if (!cpu_is_mx1() && !cpu_is_mx21() && mfn >= 0x200) | ||
| 64 | mfn_abs = 0x400 - mfn; | ||
| 65 | |||
| 66 | rate = parent_rate * 2; | ||
| 67 | rate /= pd + 1; | ||
| 68 | |||
| 69 | ll = (unsigned long long)rate * mfn_abs; | ||
| 70 | |||
| 71 | do_div(ll, mfd + 1); | ||
| 72 | |||
| 73 | if (!cpu_is_mx1() && !cpu_is_mx21() && mfn >= 0x200) | ||
| 74 | ll = -ll; | ||
| 75 | |||
| 76 | ll = (rate * mfi) + ll; | ||
| 32 | 77 | ||
| 33 | return mxc_decode_pll(readl(pll->base), parent_rate); | 78 | return ll; |
| 34 | } | 79 | } |
| 35 | 80 | ||
| 36 | struct clk_ops clk_pllv1_ops = { | 81 | struct clk_ops clk_pllv1_ops = { |
