Merge branch 'mymd/for-next' into mymd/for-linus
[deliverable/linux.git] / drivers / clk / clk-fractional-divider.c
CommitLineData
e2d0e90f
HK
1/*
2 * Copyright (C) 2014 Intel Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Adjustable fractional divider clock implementation.
9 * Output rate = (m / n) * parent_rate.
0777591e 10 * Uses rational best approximation algorithm.
e2d0e90f
HK
11 */
12
13#include <linux/clk-provider.h>
14#include <linux/module.h>
15#include <linux/device.h>
16#include <linux/slab.h>
0777591e 17#include <linux/rational.h>
e2d0e90f
HK
18
19#define to_clk_fd(_hw) container_of(_hw, struct clk_fractional_divider, hw)
20
21static unsigned long clk_fd_recalc_rate(struct clk_hw *hw,
22 unsigned long parent_rate)
23{
24 struct clk_fractional_divider *fd = to_clk_fd(hw);
25 unsigned long flags = 0;
0777591e
AS
26 unsigned long m, n;
27 u32 val;
e2d0e90f
HK
28 u64 ret;
29
30 if (fd->lock)
31 spin_lock_irqsave(fd->lock, flags);
661e2180
SB
32 else
33 __acquire(fd->lock);
e2d0e90f
HK
34
35 val = clk_readl(fd->reg);
36
37 if (fd->lock)
38 spin_unlock_irqrestore(fd->lock, flags);
661e2180
SB
39 else
40 __release(fd->lock);
e2d0e90f
HK
41
42 m = (val & fd->mmask) >> fd->mshift;
43 n = (val & fd->nmask) >> fd->nshift;
44
6b547836
HK
45 if (!n || !m)
46 return parent_rate;
47
feaefa0e 48 ret = (u64)parent_rate * m;
e2d0e90f
HK
49 do_div(ret, n);
50
51 return ret;
52}
53
54static long clk_fd_round_rate(struct clk_hw *hw, unsigned long rate,
f7f087c2 55 unsigned long *parent_rate)
e2d0e90f
HK
56{
57 struct clk_fractional_divider *fd = to_clk_fd(hw);
0777591e
AS
58 unsigned long scale;
59 unsigned long m, n;
60 u64 ret;
e2d0e90f 61
f7f087c2
AS
62 if (!rate || rate >= *parent_rate)
63 return *parent_rate;
e2d0e90f 64
0777591e
AS
65 /*
66 * Get rate closer to *parent_rate to guarantee there is no overflow
67 * for m and n. In the result it will be the nearest rate left shifted
68 * by (scale - fd->nwidth) bits.
69 */
70 scale = fls_long(*parent_rate / rate - 1);
71 if (scale > fd->nwidth)
72 rate <<= scale - fd->nwidth;
e2d0e90f 73
0777591e
AS
74 rational_best_approximation(rate, *parent_rate,
75 GENMASK(fd->mwidth - 1, 0), GENMASK(fd->nwidth - 1, 0),
76 &m, &n);
e2d0e90f 77
0777591e
AS
78 ret = (u64)*parent_rate * m;
79 do_div(ret, n);
80
81 return ret;
e2d0e90f
HK
82}
83
84static int clk_fd_set_rate(struct clk_hw *hw, unsigned long rate,
85 unsigned long parent_rate)
86{
87 struct clk_fractional_divider *fd = to_clk_fd(hw);
88 unsigned long flags = 0;
0777591e 89 unsigned long m, n;
e2d0e90f
HK
90 u32 val;
91
0777591e
AS
92 rational_best_approximation(rate, parent_rate,
93 GENMASK(fd->mwidth - 1, 0), GENMASK(fd->nwidth - 1, 0),
94 &m, &n);
e2d0e90f
HK
95
96 if (fd->lock)
97 spin_lock_irqsave(fd->lock, flags);
661e2180
SB
98 else
99 __acquire(fd->lock);
e2d0e90f
HK
100
101 val = clk_readl(fd->reg);
102 val &= ~(fd->mmask | fd->nmask);
103 val |= (m << fd->mshift) | (n << fd->nshift);
104 clk_writel(val, fd->reg);
105
106 if (fd->lock)
107 spin_unlock_irqrestore(fd->lock, flags);
661e2180
SB
108 else
109 __release(fd->lock);
e2d0e90f
HK
110
111 return 0;
112}
113
114const struct clk_ops clk_fractional_divider_ops = {
115 .recalc_rate = clk_fd_recalc_rate,
116 .round_rate = clk_fd_round_rate,
117 .set_rate = clk_fd_set_rate,
118};
119EXPORT_SYMBOL_GPL(clk_fractional_divider_ops);
120
121struct clk *clk_register_fractional_divider(struct device *dev,
122 const char *name, const char *parent_name, unsigned long flags,
123 void __iomem *reg, u8 mshift, u8 mwidth, u8 nshift, u8 nwidth,
124 u8 clk_divider_flags, spinlock_t *lock)
125{
126 struct clk_fractional_divider *fd;
127 struct clk_init_data init;
128 struct clk *clk;
129
130 fd = kzalloc(sizeof(*fd), GFP_KERNEL);
d122db7e 131 if (!fd)
e2d0e90f 132 return ERR_PTR(-ENOMEM);
e2d0e90f
HK
133
134 init.name = name;
135 init.ops = &clk_fractional_divider_ops;
136 init.flags = flags | CLK_IS_BASIC;
137 init.parent_names = parent_name ? &parent_name : NULL;
138 init.num_parents = parent_name ? 1 : 0;
139
140 fd->reg = reg;
141 fd->mshift = mshift;
934e2536
AS
142 fd->mwidth = mwidth;
143 fd->mmask = GENMASK(mwidth - 1, 0) << mshift;
e2d0e90f 144 fd->nshift = nshift;
934e2536
AS
145 fd->nwidth = nwidth;
146 fd->nmask = GENMASK(nwidth - 1, 0) << nshift;
e2d0e90f
HK
147 fd->flags = clk_divider_flags;
148 fd->lock = lock;
149 fd->hw.init = &init;
150
151 clk = clk_register(dev, &fd->hw);
152 if (IS_ERR(clk))
153 kfree(fd);
154
155 return clk;
156}
157EXPORT_SYMBOL_GPL(clk_register_fractional_divider);
This page took 0.090701 seconds and 5 git commands to generate.