blob: 4ed516cb72764a18a29f8cd77efcc81aa7087c47 [file] [log] [blame]
Mike Turquette9d9f78e2012-03-15 23:11:20 -07001/*
2 * Copyright (C) 2011 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
3 * Copyright (C) 2011 Richard Zhao, Linaro <richard.zhao@linaro.org>
4 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Adjustable divider clock implementation
11 */
12
13#include <linux/clk-provider.h>
14#include <linux/module.h>
15#include <linux/slab.h>
16#include <linux/io.h>
17#include <linux/err.h>
18#include <linux/string.h>
James Hogan1a3cd182013-01-15 10:28:05 +000019#include <linux/log2.h>
Mike Turquette9d9f78e2012-03-15 23:11:20 -070020
21/*
22 * DOC: basic adjustable divider clock that cannot gate
23 *
24 * Traits of this clock:
25 * prepare - clk_prepare only ensures that parents are prepared
26 * enable - clk_enable only ensures that parents are enabled
Brian Norris9556f9d2015-04-13 16:03:21 -070027 * rate - rate is adjustable. clk->rate = ceiling(parent->rate / divisor)
Mike Turquette9d9f78e2012-03-15 23:11:20 -070028 * parent - fixed parent. No clk_set_parent support
29 */
30
Stephen Boydbca96902015-01-19 18:05:29 -080031#define div_mask(width) ((1 << (width)) - 1)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053032
Stephen Boydfab88ca2015-11-30 17:31:38 -080033static unsigned int _get_table_maxdiv(const struct clk_div_table *table,
34 u8 width)
Rajendra Nayak357c3f02012-06-29 19:06:32 +053035{
Stephen Boydfab88ca2015-11-30 17:31:38 -080036 unsigned int maxdiv = 0, mask = div_mask(width);
Rajendra Nayak357c3f02012-06-29 19:06:32 +053037 const struct clk_div_table *clkt;
38
39 for (clkt = table; clkt->div; clkt++)
Stephen Boydfab88ca2015-11-30 17:31:38 -080040 if (clkt->div > maxdiv && clkt->val <= mask)
Rajendra Nayak357c3f02012-06-29 19:06:32 +053041 maxdiv = clkt->div;
42 return maxdiv;
43}
44
Maxime COQUELIN774b5142014-01-29 17:24:07 +010045static unsigned int _get_table_mindiv(const struct clk_div_table *table)
46{
47 unsigned int mindiv = UINT_MAX;
48 const struct clk_div_table *clkt;
49
50 for (clkt = table; clkt->div; clkt++)
51 if (clkt->div < mindiv)
52 mindiv = clkt->div;
53 return mindiv;
54}
55
Stephen Boydbca96902015-01-19 18:05:29 -080056static unsigned int _get_maxdiv(const struct clk_div_table *table, u8 width,
57 unsigned long flags)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053058{
Stephen Boydbca96902015-01-19 18:05:29 -080059 if (flags & CLK_DIVIDER_ONE_BASED)
60 return div_mask(width);
61 if (flags & CLK_DIVIDER_POWER_OF_TWO)
62 return 1 << div_mask(width);
63 if (table)
Stephen Boydfab88ca2015-11-30 17:31:38 -080064 return _get_table_maxdiv(table, width);
Stephen Boydbca96902015-01-19 18:05:29 -080065 return div_mask(width) + 1;
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053066}
67
Rajendra Nayak357c3f02012-06-29 19:06:32 +053068static unsigned int _get_table_div(const struct clk_div_table *table,
69 unsigned int val)
70{
71 const struct clk_div_table *clkt;
72
73 for (clkt = table; clkt->div; clkt++)
74 if (clkt->val == val)
75 return clkt->div;
76 return 0;
77}
78
Stephen Boydbca96902015-01-19 18:05:29 -080079static unsigned int _get_div(const struct clk_div_table *table,
Jim Quinlanafe76c8f2015-05-15 15:45:47 -040080 unsigned int val, unsigned long flags, u8 width)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053081{
Stephen Boydbca96902015-01-19 18:05:29 -080082 if (flags & CLK_DIVIDER_ONE_BASED)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053083 return val;
Stephen Boydbca96902015-01-19 18:05:29 -080084 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053085 return 1 << val;
Jim Quinlanafe76c8f2015-05-15 15:45:47 -040086 if (flags & CLK_DIVIDER_MAX_AT_ZERO)
87 return val ? val : div_mask(width) + 1;
Stephen Boydbca96902015-01-19 18:05:29 -080088 if (table)
89 return _get_table_div(table, val);
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053090 return val + 1;
91}
92
Rajendra Nayak357c3f02012-06-29 19:06:32 +053093static unsigned int _get_table_val(const struct clk_div_table *table,
94 unsigned int div)
95{
96 const struct clk_div_table *clkt;
97
98 for (clkt = table; clkt->div; clkt++)
99 if (clkt->div == div)
100 return clkt->val;
101 return 0;
102}
103
Stephen Boydbca96902015-01-19 18:05:29 -0800104static unsigned int _get_val(const struct clk_div_table *table,
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400105 unsigned int div, unsigned long flags, u8 width)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530106{
Stephen Boydbca96902015-01-19 18:05:29 -0800107 if (flags & CLK_DIVIDER_ONE_BASED)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530108 return div;
Stephen Boydbca96902015-01-19 18:05:29 -0800109 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530110 return __ffs(div);
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400111 if (flags & CLK_DIVIDER_MAX_AT_ZERO)
112 return (div == div_mask(width) + 1) ? 0 : div;
Stephen Boydbca96902015-01-19 18:05:29 -0800113 if (table)
114 return _get_table_val(table, div);
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530115 return div - 1;
116}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700117
Stephen Boydbca96902015-01-19 18:05:29 -0800118unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate,
119 unsigned int val,
120 const struct clk_div_table *table,
121 unsigned long flags)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700122{
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400123 struct clk_divider *divider = to_clk_divider(hw);
Stephen Boydbca96902015-01-19 18:05:29 -0800124 unsigned int div;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700125
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400126 div = _get_div(table, val, flags, divider->width);
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530127 if (!div) {
Stephen Boydbca96902015-01-19 18:05:29 -0800128 WARN(!(flags & CLK_DIVIDER_ALLOW_ZERO),
Soren Brinkmann056b20532013-04-02 15:36:56 -0700129 "%s: Zero divisor and CLK_DIVIDER_ALLOW_ZERO not set\n",
Stephen Boyd2f508a92015-07-30 17:20:57 -0700130 clk_hw_get_name(hw));
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530131 return parent_rate;
132 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700133
Brian Norris9556f9d2015-04-13 16:03:21 -0700134 return DIV_ROUND_UP_ULL((u64)parent_rate, div);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700135}
Stephen Boydbca96902015-01-19 18:05:29 -0800136EXPORT_SYMBOL_GPL(divider_recalc_rate);
137
138static unsigned long clk_divider_recalc_rate(struct clk_hw *hw,
139 unsigned long parent_rate)
140{
141 struct clk_divider *divider = to_clk_divider(hw);
142 unsigned int val;
143
144 val = clk_readl(divider->reg) >> divider->shift;
145 val &= div_mask(divider->width);
146
147 return divider_recalc_rate(hw, parent_rate, val, divider->table,
148 divider->flags);
149}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700150
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530151static bool _is_valid_table_div(const struct clk_div_table *table,
152 unsigned int div)
153{
154 const struct clk_div_table *clkt;
155
156 for (clkt = table; clkt->div; clkt++)
157 if (clkt->div == div)
158 return true;
159 return false;
160}
161
Stephen Boydbca96902015-01-19 18:05:29 -0800162static bool _is_valid_div(const struct clk_div_table *table, unsigned int div,
163 unsigned long flags)
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530164{
Stephen Boydbca96902015-01-19 18:05:29 -0800165 if (flags & CLK_DIVIDER_POWER_OF_TWO)
James Hogan1a3cd182013-01-15 10:28:05 +0000166 return is_power_of_2(div);
Stephen Boydbca96902015-01-19 18:05:29 -0800167 if (table)
168 return _is_valid_table_div(table, div);
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530169 return true;
170}
171
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100172static int _round_up_table(const struct clk_div_table *table, int div)
173{
174 const struct clk_div_table *clkt;
Maxime COQUELINfe52e752014-05-07 18:48:52 +0200175 int up = INT_MAX;
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100176
177 for (clkt = table; clkt->div; clkt++) {
178 if (clkt->div == div)
179 return clkt->div;
180 else if (clkt->div < div)
181 continue;
182
183 if ((clkt->div - div) < (up - div))
184 up = clkt->div;
185 }
186
187 return up;
188}
189
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100190static int _round_down_table(const struct clk_div_table *table, int div)
191{
192 const struct clk_div_table *clkt;
193 int down = _get_table_mindiv(table);
194
195 for (clkt = table; clkt->div; clkt++) {
196 if (clkt->div == div)
197 return clkt->div;
198 else if (clkt->div > div)
199 continue;
200
201 if ((div - clkt->div) < (div - down))
202 down = clkt->div;
203 }
204
205 return down;
206}
207
Stephen Boydbca96902015-01-19 18:05:29 -0800208static int _div_round_up(const struct clk_div_table *table,
209 unsigned long parent_rate, unsigned long rate,
210 unsigned long flags)
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100211{
Brian Norris9556f9d2015-04-13 16:03:21 -0700212 int div = DIV_ROUND_UP_ULL((u64)parent_rate, rate);
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100213
Stephen Boydbca96902015-01-19 18:05:29 -0800214 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100215 div = __roundup_pow_of_two(div);
Stephen Boydbca96902015-01-19 18:05:29 -0800216 if (table)
217 div = _round_up_table(table, div);
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100218
219 return div;
220}
221
Stephen Boydbca96902015-01-19 18:05:29 -0800222static int _div_round_closest(const struct clk_div_table *table,
223 unsigned long parent_rate, unsigned long rate,
224 unsigned long flags)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100225{
Uwe Kleine-König93155142015-02-21 11:40:25 +0100226 int up, down;
Uwe Kleine-König26bac952015-02-21 11:40:24 +0100227 unsigned long up_rate, down_rate;
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100228
Brian Norris9556f9d2015-04-13 16:03:21 -0700229 up = DIV_ROUND_UP_ULL((u64)parent_rate, rate);
Uwe Kleine-König93155142015-02-21 11:40:25 +0100230 down = parent_rate / rate;
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100231
Stephen Boydbca96902015-01-19 18:05:29 -0800232 if (flags & CLK_DIVIDER_POWER_OF_TWO) {
Uwe Kleine-König93155142015-02-21 11:40:25 +0100233 up = __roundup_pow_of_two(up);
234 down = __rounddown_pow_of_two(down);
Stephen Boydbca96902015-01-19 18:05:29 -0800235 } else if (table) {
Uwe Kleine-König93155142015-02-21 11:40:25 +0100236 up = _round_up_table(table, up);
237 down = _round_down_table(table, down);
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100238 }
239
Brian Norris9556f9d2015-04-13 16:03:21 -0700240 up_rate = DIV_ROUND_UP_ULL((u64)parent_rate, up);
241 down_rate = DIV_ROUND_UP_ULL((u64)parent_rate, down);
Uwe Kleine-König26bac952015-02-21 11:40:24 +0100242
243 return (rate - up_rate) <= (down_rate - rate) ? up : down;
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100244}
245
Stephen Boydbca96902015-01-19 18:05:29 -0800246static int _div_round(const struct clk_div_table *table,
247 unsigned long parent_rate, unsigned long rate,
248 unsigned long flags)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100249{
Stephen Boydbca96902015-01-19 18:05:29 -0800250 if (flags & CLK_DIVIDER_ROUND_CLOSEST)
251 return _div_round_closest(table, parent_rate, rate, flags);
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100252
Stephen Boydbca96902015-01-19 18:05:29 -0800253 return _div_round_up(table, parent_rate, rate, flags);
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100254}
255
Stephen Boydbca96902015-01-19 18:05:29 -0800256static bool _is_best_div(unsigned long rate, unsigned long now,
257 unsigned long best, unsigned long flags)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100258{
Stephen Boydbca96902015-01-19 18:05:29 -0800259 if (flags & CLK_DIVIDER_ROUND_CLOSEST)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100260 return abs(rate - now) < abs(rate - best);
261
262 return now <= rate && now > best;
263}
264
Stephen Boydbca96902015-01-19 18:05:29 -0800265static int _next_div(const struct clk_div_table *table, int div,
266 unsigned long flags)
Maxime COQUELIN0e2de782014-01-29 17:24:08 +0100267{
268 div++;
269
Stephen Boydbca96902015-01-19 18:05:29 -0800270 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Maxime COQUELIN0e2de782014-01-29 17:24:08 +0100271 return __roundup_pow_of_two(div);
Stephen Boydbca96902015-01-19 18:05:29 -0800272 if (table)
273 return _round_up_table(table, div);
Maxime COQUELIN0e2de782014-01-29 17:24:08 +0100274
275 return div;
276}
277
Maxime Ripard22833a92017-05-17 09:40:30 +0200278static int clk_divider_bestdiv(struct clk_hw *hw, struct clk_hw *parent,
279 unsigned long rate,
Stephen Boydbca96902015-01-19 18:05:29 -0800280 unsigned long *best_parent_rate,
281 const struct clk_div_table *table, u8 width,
282 unsigned long flags)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700283{
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700284 int i, bestdiv = 0;
285 unsigned long parent_rate, best = 0, now, maxdiv;
Shawn Guo081c9022013-06-02 22:20:55 +0800286 unsigned long parent_rate_saved = *best_parent_rate;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700287
288 if (!rate)
289 rate = 1;
290
Stephen Boydbca96902015-01-19 18:05:29 -0800291 maxdiv = _get_maxdiv(table, width, flags);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700292
Stephen Boyd98d8a602015-06-29 16:56:30 -0700293 if (!(clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT)) {
Shawn Guo81536e02012-04-12 20:50:17 +0800294 parent_rate = *best_parent_rate;
Stephen Boydbca96902015-01-19 18:05:29 -0800295 bestdiv = _div_round(table, parent_rate, rate, flags);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700296 bestdiv = bestdiv == 0 ? 1 : bestdiv;
297 bestdiv = bestdiv > maxdiv ? maxdiv : bestdiv;
298 return bestdiv;
299 }
300
301 /*
302 * The maximum divider we can use without overflowing
303 * unsigned long in rate * i below
304 */
305 maxdiv = min(ULONG_MAX / rate, maxdiv);
306
Masahiro Yamada653d1452016-01-05 12:43:41 +0900307 for (i = _next_div(table, 0, flags); i <= maxdiv;
308 i = _next_div(table, i, flags)) {
Shawn Guo081c9022013-06-02 22:20:55 +0800309 if (rate * i == parent_rate_saved) {
310 /*
311 * It's the most ideal case if the requested rate can be
312 * divided from parent clock without needing to change
313 * parent rate, so return the divider immediately.
314 */
315 *best_parent_rate = parent_rate_saved;
316 return i;
317 }
Maxime Ripard22833a92017-05-17 09:40:30 +0200318 parent_rate = clk_hw_round_rate(parent, rate * i);
Brian Norris9556f9d2015-04-13 16:03:21 -0700319 now = DIV_ROUND_UP_ULL((u64)parent_rate, i);
Stephen Boydbca96902015-01-19 18:05:29 -0800320 if (_is_best_div(rate, now, best, flags)) {
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700321 bestdiv = i;
322 best = now;
323 *best_parent_rate = parent_rate;
324 }
325 }
326
327 if (!bestdiv) {
Stephen Boydbca96902015-01-19 18:05:29 -0800328 bestdiv = _get_maxdiv(table, width, flags);
Maxime Ripard22833a92017-05-17 09:40:30 +0200329 *best_parent_rate = clk_hw_round_rate(parent, 1);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700330 }
331
332 return bestdiv;
333}
334
Maxime Ripard22833a92017-05-17 09:40:30 +0200335long divider_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
336 unsigned long rate, unsigned long *prate,
337 const struct clk_div_table *table,
338 u8 width, unsigned long flags)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700339{
340 int div;
Stephen Boydbca96902015-01-19 18:05:29 -0800341
Maxime Ripard22833a92017-05-17 09:40:30 +0200342 div = clk_divider_bestdiv(hw, parent, rate, prate, table, width, flags);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700343
Brian Norris9556f9d2015-04-13 16:03:21 -0700344 return DIV_ROUND_UP_ULL((u64)*prate, div);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700345}
Maxime Ripard22833a92017-05-17 09:40:30 +0200346EXPORT_SYMBOL_GPL(divider_round_rate_parent);
Stephen Boydbca96902015-01-19 18:05:29 -0800347
348static long clk_divider_round_rate(struct clk_hw *hw, unsigned long rate,
349 unsigned long *prate)
350{
351 struct clk_divider *divider = to_clk_divider(hw);
352 int bestdiv;
353
354 /* if read only, just return current value */
355 if (divider->flags & CLK_DIVIDER_READ_ONLY) {
Geert Uytterhoeven2cf9a572016-08-12 14:37:54 +0200356 bestdiv = clk_readl(divider->reg) >> divider->shift;
Stephen Boydbca96902015-01-19 18:05:29 -0800357 bestdiv &= div_mask(divider->width);
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400358 bestdiv = _get_div(divider->table, bestdiv, divider->flags,
359 divider->width);
Brian Norris9556f9d2015-04-13 16:03:21 -0700360 return DIV_ROUND_UP_ULL((u64)*prate, bestdiv);
Stephen Boydbca96902015-01-19 18:05:29 -0800361 }
362
363 return divider_round_rate(hw, rate, prate, divider->table,
364 divider->width, divider->flags);
365}
366
367int divider_get_val(unsigned long rate, unsigned long parent_rate,
368 const struct clk_div_table *table, u8 width,
369 unsigned long flags)
370{
371 unsigned int div, value;
372
Brian Norris9556f9d2015-04-13 16:03:21 -0700373 div = DIV_ROUND_UP_ULL((u64)parent_rate, rate);
Stephen Boydbca96902015-01-19 18:05:29 -0800374
375 if (!_is_valid_div(table, div, flags))
376 return -EINVAL;
377
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400378 value = _get_val(table, div, flags, width);
Stephen Boydbca96902015-01-19 18:05:29 -0800379
380 return min_t(unsigned int, value, div_mask(width));
381}
382EXPORT_SYMBOL_GPL(divider_get_val);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700383
Shawn Guo1c0035d2012-04-12 20:50:18 +0800384static int clk_divider_set_rate(struct clk_hw *hw, unsigned long rate,
385 unsigned long parent_rate)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700386{
387 struct clk_divider *divider = to_clk_divider(hw);
Alex Frid2316a7a2017-07-25 13:18:40 +0300388 int value;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700389 unsigned long flags = 0;
390 u32 val;
391
Stephen Boydbca96902015-01-19 18:05:29 -0800392 value = divider_get_val(rate, parent_rate, divider->table,
393 divider->width, divider->flags);
Alex Frid2316a7a2017-07-25 13:18:40 +0300394 if (value < 0)
395 return value;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700396
397 if (divider->lock)
398 spin_lock_irqsave(divider->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -0700399 else
400 __acquire(divider->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700401
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800402 if (divider->flags & CLK_DIVIDER_HIWORD_MASK) {
Stephen Boydbca96902015-01-19 18:05:29 -0800403 val = div_mask(divider->width) << (divider->shift + 16);
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800404 } else {
Gerhard Sittigaa514ce2013-07-22 14:14:40 +0200405 val = clk_readl(divider->reg);
Stephen Boydbca96902015-01-19 18:05:29 -0800406 val &= ~(div_mask(divider->width) << divider->shift);
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800407 }
Alex Frid2316a7a2017-07-25 13:18:40 +0300408 val |= (u32)value << divider->shift;
Gerhard Sittigaa514ce2013-07-22 14:14:40 +0200409 clk_writel(val, divider->reg);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700410
411 if (divider->lock)
412 spin_unlock_irqrestore(divider->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -0700413 else
414 __release(divider->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700415
416 return 0;
417}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700418
Shawn Guo822c2502012-03-27 15:23:22 +0800419const struct clk_ops clk_divider_ops = {
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700420 .recalc_rate = clk_divider_recalc_rate,
421 .round_rate = clk_divider_round_rate,
422 .set_rate = clk_divider_set_rate,
423};
424EXPORT_SYMBOL_GPL(clk_divider_ops);
425
Heiko Stuebner50359812016-01-21 21:53:09 +0100426const struct clk_ops clk_divider_ro_ops = {
427 .recalc_rate = clk_divider_recalc_rate,
428 .round_rate = clk_divider_round_rate,
429};
430EXPORT_SYMBOL_GPL(clk_divider_ro_ops);
431
Stephen Boydeb7d2642016-02-06 23:26:37 -0800432static struct clk_hw *_register_divider(struct device *dev, const char *name,
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700433 const char *parent_name, unsigned long flags,
434 void __iomem *reg, u8 shift, u8 width,
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530435 u8 clk_divider_flags, const struct clk_div_table *table,
436 spinlock_t *lock)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700437{
438 struct clk_divider *div;
Stephen Boydeb7d2642016-02-06 23:26:37 -0800439 struct clk_hw *hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700440 struct clk_init_data init;
Stephen Boydeb7d2642016-02-06 23:26:37 -0800441 int ret;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700442
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800443 if (clk_divider_flags & CLK_DIVIDER_HIWORD_MASK) {
444 if (width + shift > 16) {
445 pr_warn("divider value exceeds LOWORD field\n");
446 return ERR_PTR(-EINVAL);
447 }
448 }
449
Mike Turquette27d54592012-03-26 17:51:03 -0700450 /* allocate the divider */
Stephen Boydd122db72015-05-14 16:47:10 -0700451 div = kzalloc(sizeof(*div), GFP_KERNEL);
452 if (!div)
Mike Turquette27d54592012-03-26 17:51:03 -0700453 return ERR_PTR(-ENOMEM);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700454
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700455 init.name = name;
Heiko Stuebner50359812016-01-21 21:53:09 +0100456 if (clk_divider_flags & CLK_DIVIDER_READ_ONLY)
457 init.ops = &clk_divider_ro_ops;
458 else
459 init.ops = &clk_divider_ops;
Rajendra Nayakf7d8caa2012-06-01 14:02:47 +0530460 init.flags = flags | CLK_IS_BASIC;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700461 init.parent_names = (parent_name ? &parent_name: NULL);
462 init.num_parents = (parent_name ? 1 : 0);
463
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700464 /* struct clk_divider assignments */
465 div->reg = reg;
466 div->shift = shift;
467 div->width = width;
468 div->flags = clk_divider_flags;
469 div->lock = lock;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700470 div->hw.init = &init;
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530471 div->table = table;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700472
Mike Turquette27d54592012-03-26 17:51:03 -0700473 /* register the clock */
Stephen Boydeb7d2642016-02-06 23:26:37 -0800474 hw = &div->hw;
475 ret = clk_hw_register(dev, hw);
476 if (ret) {
Mike Turquette27d54592012-03-26 17:51:03 -0700477 kfree(div);
Stephen Boydeb7d2642016-02-06 23:26:37 -0800478 hw = ERR_PTR(ret);
479 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700480
Stephen Boydeb7d2642016-02-06 23:26:37 -0800481 return hw;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700482}
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530483
484/**
485 * clk_register_divider - register a divider clock with the clock framework
486 * @dev: device registering this clock
487 * @name: name of this clock
488 * @parent_name: name of clock's parent
489 * @flags: framework-specific flags
490 * @reg: register address to adjust divider
491 * @shift: number of bits to shift the bitfield
492 * @width: width of the bitfield
493 * @clk_divider_flags: divider-specific flags for this clock
494 * @lock: shared register lock for this clock
495 */
496struct clk *clk_register_divider(struct device *dev, const char *name,
497 const char *parent_name, unsigned long flags,
498 void __iomem *reg, u8 shift, u8 width,
499 u8 clk_divider_flags, spinlock_t *lock)
500{
Stephen Boydeb7d2642016-02-06 23:26:37 -0800501 struct clk_hw *hw;
502
503 hw = _register_divider(dev, name, parent_name, flags, reg, shift,
504 width, clk_divider_flags, NULL, lock);
505 if (IS_ERR(hw))
506 return ERR_CAST(hw);
507 return hw->clk;
508}
509EXPORT_SYMBOL_GPL(clk_register_divider);
510
511/**
512 * clk_hw_register_divider - register a divider clock with the clock framework
513 * @dev: device registering this clock
514 * @name: name of this clock
515 * @parent_name: name of clock's parent
516 * @flags: framework-specific flags
517 * @reg: register address to adjust divider
518 * @shift: number of bits to shift the bitfield
519 * @width: width of the bitfield
520 * @clk_divider_flags: divider-specific flags for this clock
521 * @lock: shared register lock for this clock
522 */
523struct clk_hw *clk_hw_register_divider(struct device *dev, const char *name,
524 const char *parent_name, unsigned long flags,
525 void __iomem *reg, u8 shift, u8 width,
526 u8 clk_divider_flags, spinlock_t *lock)
527{
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530528 return _register_divider(dev, name, parent_name, flags, reg, shift,
529 width, clk_divider_flags, NULL, lock);
530}
Stephen Boydeb7d2642016-02-06 23:26:37 -0800531EXPORT_SYMBOL_GPL(clk_hw_register_divider);
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530532
533/**
534 * clk_register_divider_table - register a table based divider clock with
535 * the clock framework
536 * @dev: device registering this clock
537 * @name: name of this clock
538 * @parent_name: name of clock's parent
539 * @flags: framework-specific flags
540 * @reg: register address to adjust divider
541 * @shift: number of bits to shift the bitfield
542 * @width: width of the bitfield
543 * @clk_divider_flags: divider-specific flags for this clock
544 * @table: array of divider/value pairs ending with a div set to 0
545 * @lock: shared register lock for this clock
546 */
547struct clk *clk_register_divider_table(struct device *dev, const char *name,
548 const char *parent_name, unsigned long flags,
549 void __iomem *reg, u8 shift, u8 width,
550 u8 clk_divider_flags, const struct clk_div_table *table,
551 spinlock_t *lock)
552{
Stephen Boydeb7d2642016-02-06 23:26:37 -0800553 struct clk_hw *hw;
554
555 hw = _register_divider(dev, name, parent_name, flags, reg, shift,
556 width, clk_divider_flags, table, lock);
557 if (IS_ERR(hw))
558 return ERR_CAST(hw);
559 return hw->clk;
560}
561EXPORT_SYMBOL_GPL(clk_register_divider_table);
562
563/**
564 * clk_hw_register_divider_table - register a table based divider clock with
565 * the clock framework
566 * @dev: device registering this clock
567 * @name: name of this clock
568 * @parent_name: name of clock's parent
569 * @flags: framework-specific flags
570 * @reg: register address to adjust divider
571 * @shift: number of bits to shift the bitfield
572 * @width: width of the bitfield
573 * @clk_divider_flags: divider-specific flags for this clock
574 * @table: array of divider/value pairs ending with a div set to 0
575 * @lock: shared register lock for this clock
576 */
577struct clk_hw *clk_hw_register_divider_table(struct device *dev,
578 const char *name, const char *parent_name, unsigned long flags,
579 void __iomem *reg, u8 shift, u8 width,
580 u8 clk_divider_flags, const struct clk_div_table *table,
581 spinlock_t *lock)
582{
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530583 return _register_divider(dev, name, parent_name, flags, reg, shift,
584 width, clk_divider_flags, table, lock);
585}
Stephen Boydeb7d2642016-02-06 23:26:37 -0800586EXPORT_SYMBOL_GPL(clk_hw_register_divider_table);
Krzysztof Kozlowski4e3c0212015-01-05 10:52:40 +0100587
588void clk_unregister_divider(struct clk *clk)
589{
590 struct clk_divider *div;
591 struct clk_hw *hw;
592
593 hw = __clk_get_hw(clk);
594 if (!hw)
595 return;
596
597 div = to_clk_divider(hw);
598
599 clk_unregister(clk);
600 kfree(div);
601}
602EXPORT_SYMBOL_GPL(clk_unregister_divider);
Stephen Boydeb7d2642016-02-06 23:26:37 -0800603
604/**
605 * clk_hw_unregister_divider - unregister a clk divider
606 * @hw: hardware-specific clock data to unregister
607 */
608void clk_hw_unregister_divider(struct clk_hw *hw)
609{
610 struct clk_divider *div;
611
612 div = to_clk_divider(hw);
613
614 clk_hw_unregister(hw);
615 kfree(div);
616}
617EXPORT_SYMBOL_GPL(clk_hw_unregister_divider);