blob: b6234a5da12d19e4b88b55796b71304526b59bde [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 Boydfab88ca2015-11-30 17:31:38 -080031static unsigned int _get_table_maxdiv(const struct clk_div_table *table,
32 u8 width)
Rajendra Nayak357c3f02012-06-29 19:06:32 +053033{
Jerome Brunete6d3cc72018-02-14 14:43:33 +010034 unsigned int maxdiv = 0, mask = clk_div_mask(width);
Rajendra Nayak357c3f02012-06-29 19:06:32 +053035 const struct clk_div_table *clkt;
36
37 for (clkt = table; clkt->div; clkt++)
Stephen Boydfab88ca2015-11-30 17:31:38 -080038 if (clkt->div > maxdiv && clkt->val <= mask)
Rajendra Nayak357c3f02012-06-29 19:06:32 +053039 maxdiv = clkt->div;
40 return maxdiv;
41}
42
Maxime COQUELIN774b5142014-01-29 17:24:07 +010043static unsigned int _get_table_mindiv(const struct clk_div_table *table)
44{
45 unsigned int mindiv = UINT_MAX;
46 const struct clk_div_table *clkt;
47
48 for (clkt = table; clkt->div; clkt++)
49 if (clkt->div < mindiv)
50 mindiv = clkt->div;
51 return mindiv;
52}
53
Stephen Boydbca96902015-01-19 18:05:29 -080054static unsigned int _get_maxdiv(const struct clk_div_table *table, u8 width,
55 unsigned long flags)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053056{
Stephen Boydbca96902015-01-19 18:05:29 -080057 if (flags & CLK_DIVIDER_ONE_BASED)
Jerome Brunete6d3cc72018-02-14 14:43:33 +010058 return clk_div_mask(width);
Stephen Boydbca96902015-01-19 18:05:29 -080059 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Jerome Brunete6d3cc72018-02-14 14:43:33 +010060 return 1 << clk_div_mask(width);
Stephen Boydbca96902015-01-19 18:05:29 -080061 if (table)
Stephen Boydfab88ca2015-11-30 17:31:38 -080062 return _get_table_maxdiv(table, width);
Jerome Brunete6d3cc72018-02-14 14:43:33 +010063 return clk_div_mask(width) + 1;
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053064}
65
Rajendra Nayak357c3f02012-06-29 19:06:32 +053066static unsigned int _get_table_div(const struct clk_div_table *table,
67 unsigned int val)
68{
69 const struct clk_div_table *clkt;
70
71 for (clkt = table; clkt->div; clkt++)
72 if (clkt->val == val)
73 return clkt->div;
74 return 0;
75}
76
Stephen Boydbca96902015-01-19 18:05:29 -080077static unsigned int _get_div(const struct clk_div_table *table,
Jim Quinlanafe76c8f2015-05-15 15:45:47 -040078 unsigned int val, unsigned long flags, u8 width)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053079{
Stephen Boydbca96902015-01-19 18:05:29 -080080 if (flags & CLK_DIVIDER_ONE_BASED)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053081 return val;
Stephen Boydbca96902015-01-19 18:05:29 -080082 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053083 return 1 << val;
Jim Quinlanafe76c8f2015-05-15 15:45:47 -040084 if (flags & CLK_DIVIDER_MAX_AT_ZERO)
Jerome Brunete6d3cc72018-02-14 14:43:33 +010085 return val ? val : clk_div_mask(width) + 1;
Stephen Boydbca96902015-01-19 18:05:29 -080086 if (table)
87 return _get_table_div(table, val);
Rajendra Nayak6d9252b2012-05-17 15:52:13 +053088 return val + 1;
89}
90
Rajendra Nayak357c3f02012-06-29 19:06:32 +053091static unsigned int _get_table_val(const struct clk_div_table *table,
92 unsigned int div)
93{
94 const struct clk_div_table *clkt;
95
96 for (clkt = table; clkt->div; clkt++)
97 if (clkt->div == div)
98 return clkt->val;
99 return 0;
100}
101
Stephen Boydbca96902015-01-19 18:05:29 -0800102static unsigned int _get_val(const struct clk_div_table *table,
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400103 unsigned int div, unsigned long flags, u8 width)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530104{
Stephen Boydbca96902015-01-19 18:05:29 -0800105 if (flags & CLK_DIVIDER_ONE_BASED)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530106 return div;
Stephen Boydbca96902015-01-19 18:05:29 -0800107 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530108 return __ffs(div);
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400109 if (flags & CLK_DIVIDER_MAX_AT_ZERO)
Jerome Brunete6d3cc72018-02-14 14:43:33 +0100110 return (div == clk_div_mask(width) + 1) ? 0 : div;
Stephen Boydbca96902015-01-19 18:05:29 -0800111 if (table)
112 return _get_table_val(table, div);
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530113 return div - 1;
114}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700115
Stephen Boydbca96902015-01-19 18:05:29 -0800116unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate,
117 unsigned int val,
118 const struct clk_div_table *table,
Jerome Brunet12a26c22017-12-21 17:30:54 +0100119 unsigned long flags, unsigned long width)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700120{
Stephen Boydbca96902015-01-19 18:05:29 -0800121 unsigned int div;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700122
Jerome Brunet12a26c22017-12-21 17:30:54 +0100123 div = _get_div(table, val, flags, width);
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530124 if (!div) {
Stephen Boydbca96902015-01-19 18:05:29 -0800125 WARN(!(flags & CLK_DIVIDER_ALLOW_ZERO),
Soren Brinkmann056b20532013-04-02 15:36:56 -0700126 "%s: Zero divisor and CLK_DIVIDER_ALLOW_ZERO not set\n",
Stephen Boyd2f508a92015-07-30 17:20:57 -0700127 clk_hw_get_name(hw));
Rajendra Nayak6d9252b2012-05-17 15:52:13 +0530128 return parent_rate;
129 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700130
Brian Norris9556f9d2015-04-13 16:03:21 -0700131 return DIV_ROUND_UP_ULL((u64)parent_rate, div);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700132}
Stephen Boydbca96902015-01-19 18:05:29 -0800133EXPORT_SYMBOL_GPL(divider_recalc_rate);
134
135static unsigned long clk_divider_recalc_rate(struct clk_hw *hw,
136 unsigned long parent_rate)
137{
138 struct clk_divider *divider = to_clk_divider(hw);
139 unsigned int val;
140
141 val = clk_readl(divider->reg) >> divider->shift;
Jerome Brunete6d3cc72018-02-14 14:43:33 +0100142 val &= clk_div_mask(divider->width);
Stephen Boydbca96902015-01-19 18:05:29 -0800143
144 return divider_recalc_rate(hw, parent_rate, val, divider->table,
Jerome Brunet12a26c22017-12-21 17:30:54 +0100145 divider->flags, divider->width);
Stephen Boydbca96902015-01-19 18:05:29 -0800146}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700147
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530148static bool _is_valid_table_div(const struct clk_div_table *table,
149 unsigned int div)
150{
151 const struct clk_div_table *clkt;
152
153 for (clkt = table; clkt->div; clkt++)
154 if (clkt->div == div)
155 return true;
156 return false;
157}
158
Stephen Boydbca96902015-01-19 18:05:29 -0800159static bool _is_valid_div(const struct clk_div_table *table, unsigned int div,
160 unsigned long flags)
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530161{
Stephen Boydbca96902015-01-19 18:05:29 -0800162 if (flags & CLK_DIVIDER_POWER_OF_TWO)
James Hogan1a3cd182013-01-15 10:28:05 +0000163 return is_power_of_2(div);
Stephen Boydbca96902015-01-19 18:05:29 -0800164 if (table)
165 return _is_valid_table_div(table, div);
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530166 return true;
167}
168
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100169static int _round_up_table(const struct clk_div_table *table, int div)
170{
171 const struct clk_div_table *clkt;
Maxime COQUELINfe52e752014-05-07 18:48:52 +0200172 int up = INT_MAX;
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100173
174 for (clkt = table; clkt->div; clkt++) {
175 if (clkt->div == div)
176 return clkt->div;
177 else if (clkt->div < div)
178 continue;
179
180 if ((clkt->div - div) < (up - div))
181 up = clkt->div;
182 }
183
184 return up;
185}
186
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100187static int _round_down_table(const struct clk_div_table *table, int div)
188{
189 const struct clk_div_table *clkt;
190 int down = _get_table_mindiv(table);
191
192 for (clkt = table; clkt->div; clkt++) {
193 if (clkt->div == div)
194 return clkt->div;
195 else if (clkt->div > div)
196 continue;
197
198 if ((div - clkt->div) < (div - down))
199 down = clkt->div;
200 }
201
202 return down;
203}
204
Stephen Boydbca96902015-01-19 18:05:29 -0800205static int _div_round_up(const struct clk_div_table *table,
206 unsigned long parent_rate, unsigned long rate,
207 unsigned long flags)
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100208{
Brian Norris9556f9d2015-04-13 16:03:21 -0700209 int div = DIV_ROUND_UP_ULL((u64)parent_rate, rate);
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100210
Stephen Boydbca96902015-01-19 18:05:29 -0800211 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100212 div = __roundup_pow_of_two(div);
Stephen Boydbca96902015-01-19 18:05:29 -0800213 if (table)
214 div = _round_up_table(table, div);
Maxime COQUELINdd23c2c2014-01-29 17:24:06 +0100215
216 return div;
217}
218
Stephen Boydbca96902015-01-19 18:05:29 -0800219static int _div_round_closest(const struct clk_div_table *table,
220 unsigned long parent_rate, unsigned long rate,
221 unsigned long flags)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100222{
Uwe Kleine-König93155142015-02-21 11:40:25 +0100223 int up, down;
Uwe Kleine-König26bac952015-02-21 11:40:24 +0100224 unsigned long up_rate, down_rate;
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100225
Brian Norris9556f9d2015-04-13 16:03:21 -0700226 up = DIV_ROUND_UP_ULL((u64)parent_rate, rate);
Uwe Kleine-König93155142015-02-21 11:40:25 +0100227 down = parent_rate / rate;
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100228
Stephen Boydbca96902015-01-19 18:05:29 -0800229 if (flags & CLK_DIVIDER_POWER_OF_TWO) {
Uwe Kleine-König93155142015-02-21 11:40:25 +0100230 up = __roundup_pow_of_two(up);
231 down = __rounddown_pow_of_two(down);
Stephen Boydbca96902015-01-19 18:05:29 -0800232 } else if (table) {
Uwe Kleine-König93155142015-02-21 11:40:25 +0100233 up = _round_up_table(table, up);
234 down = _round_down_table(table, down);
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100235 }
236
Brian Norris9556f9d2015-04-13 16:03:21 -0700237 up_rate = DIV_ROUND_UP_ULL((u64)parent_rate, up);
238 down_rate = DIV_ROUND_UP_ULL((u64)parent_rate, down);
Uwe Kleine-König26bac952015-02-21 11:40:24 +0100239
240 return (rate - up_rate) <= (down_rate - rate) ? up : down;
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100241}
242
Stephen Boydbca96902015-01-19 18:05:29 -0800243static int _div_round(const struct clk_div_table *table,
244 unsigned long parent_rate, unsigned long rate,
245 unsigned long flags)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100246{
Stephen Boydbca96902015-01-19 18:05:29 -0800247 if (flags & CLK_DIVIDER_ROUND_CLOSEST)
248 return _div_round_closest(table, parent_rate, rate, flags);
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100249
Stephen Boydbca96902015-01-19 18:05:29 -0800250 return _div_round_up(table, parent_rate, rate, flags);
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100251}
252
Stephen Boydbca96902015-01-19 18:05:29 -0800253static bool _is_best_div(unsigned long rate, unsigned long now,
254 unsigned long best, unsigned long flags)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100255{
Stephen Boydbca96902015-01-19 18:05:29 -0800256 if (flags & CLK_DIVIDER_ROUND_CLOSEST)
Maxime COQUELIN774b5142014-01-29 17:24:07 +0100257 return abs(rate - now) < abs(rate - best);
258
259 return now <= rate && now > best;
260}
261
Stephen Boydbca96902015-01-19 18:05:29 -0800262static int _next_div(const struct clk_div_table *table, int div,
263 unsigned long flags)
Maxime COQUELIN0e2de782014-01-29 17:24:08 +0100264{
265 div++;
266
Stephen Boydbca96902015-01-19 18:05:29 -0800267 if (flags & CLK_DIVIDER_POWER_OF_TWO)
Maxime COQUELIN0e2de782014-01-29 17:24:08 +0100268 return __roundup_pow_of_two(div);
Stephen Boydbca96902015-01-19 18:05:29 -0800269 if (table)
270 return _round_up_table(table, div);
Maxime COQUELIN0e2de782014-01-29 17:24:08 +0100271
272 return div;
273}
274
Maxime Ripard22833a92017-05-17 09:40:30 +0200275static int clk_divider_bestdiv(struct clk_hw *hw, struct clk_hw *parent,
276 unsigned long rate,
Stephen Boydbca96902015-01-19 18:05:29 -0800277 unsigned long *best_parent_rate,
278 const struct clk_div_table *table, u8 width,
279 unsigned long flags)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700280{
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700281 int i, bestdiv = 0;
282 unsigned long parent_rate, best = 0, now, maxdiv;
Shawn Guo081c9022013-06-02 22:20:55 +0800283 unsigned long parent_rate_saved = *best_parent_rate;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700284
285 if (!rate)
286 rate = 1;
287
Stephen Boydbca96902015-01-19 18:05:29 -0800288 maxdiv = _get_maxdiv(table, width, flags);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700289
Stephen Boyd98d8a602015-06-29 16:56:30 -0700290 if (!(clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT)) {
Shawn Guo81536e02012-04-12 20:50:17 +0800291 parent_rate = *best_parent_rate;
Stephen Boydbca96902015-01-19 18:05:29 -0800292 bestdiv = _div_round(table, parent_rate, rate, flags);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700293 bestdiv = bestdiv == 0 ? 1 : bestdiv;
294 bestdiv = bestdiv > maxdiv ? maxdiv : bestdiv;
295 return bestdiv;
296 }
297
298 /*
299 * The maximum divider we can use without overflowing
300 * unsigned long in rate * i below
301 */
302 maxdiv = min(ULONG_MAX / rate, maxdiv);
303
Masahiro Yamada653d1452016-01-05 12:43:41 +0900304 for (i = _next_div(table, 0, flags); i <= maxdiv;
305 i = _next_div(table, i, flags)) {
Shawn Guo081c9022013-06-02 22:20:55 +0800306 if (rate * i == parent_rate_saved) {
307 /*
308 * It's the most ideal case if the requested rate can be
309 * divided from parent clock without needing to change
310 * parent rate, so return the divider immediately.
311 */
312 *best_parent_rate = parent_rate_saved;
313 return i;
314 }
Maxime Ripard22833a92017-05-17 09:40:30 +0200315 parent_rate = clk_hw_round_rate(parent, rate * i);
Brian Norris9556f9d2015-04-13 16:03:21 -0700316 now = DIV_ROUND_UP_ULL((u64)parent_rate, i);
Stephen Boydbca96902015-01-19 18:05:29 -0800317 if (_is_best_div(rate, now, best, flags)) {
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700318 bestdiv = i;
319 best = now;
320 *best_parent_rate = parent_rate;
321 }
322 }
323
324 if (!bestdiv) {
Stephen Boydbca96902015-01-19 18:05:29 -0800325 bestdiv = _get_maxdiv(table, width, flags);
Maxime Ripard22833a92017-05-17 09:40:30 +0200326 *best_parent_rate = clk_hw_round_rate(parent, 1);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700327 }
328
329 return bestdiv;
330}
331
Maxime Ripard22833a92017-05-17 09:40:30 +0200332long divider_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
333 unsigned long rate, unsigned long *prate,
334 const struct clk_div_table *table,
335 u8 width, unsigned long flags)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700336{
337 int div;
Stephen Boydbca96902015-01-19 18:05:29 -0800338
Maxime Ripard22833a92017-05-17 09:40:30 +0200339 div = clk_divider_bestdiv(hw, parent, rate, prate, table, width, flags);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700340
Brian Norris9556f9d2015-04-13 16:03:21 -0700341 return DIV_ROUND_UP_ULL((u64)*prate, div);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700342}
Maxime Ripard22833a92017-05-17 09:40:30 +0200343EXPORT_SYMBOL_GPL(divider_round_rate_parent);
Stephen Boydbca96902015-01-19 18:05:29 -0800344
Jerome Brunetb15ee492018-02-14 14:43:39 +0100345long divider_ro_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
346 unsigned long rate, unsigned long *prate,
347 const struct clk_div_table *table, u8 width,
348 unsigned long flags, unsigned int val)
349{
350 int div;
351
352 div = _get_div(table, val, flags, width);
353
354 /* Even a read-only clock can propagate a rate change */
355 if (clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT) {
356 if (!parent)
357 return -EINVAL;
358
359 *prate = clk_hw_round_rate(parent, rate * div);
360 }
361
362 return DIV_ROUND_UP_ULL((u64)*prate, div);
363}
364EXPORT_SYMBOL_GPL(divider_ro_round_rate_parent);
365
366
Stephen Boydbca96902015-01-19 18:05:29 -0800367static long clk_divider_round_rate(struct clk_hw *hw, unsigned long rate,
368 unsigned long *prate)
369{
370 struct clk_divider *divider = to_clk_divider(hw);
Stephen Boydbca96902015-01-19 18:05:29 -0800371
372 /* if read only, just return current value */
373 if (divider->flags & CLK_DIVIDER_READ_ONLY) {
Jerome Brunetb15ee492018-02-14 14:43:39 +0100374 u32 val;
375
376 val = clk_readl(divider->reg) >> divider->shift;
377 val &= clk_div_mask(divider->width);
378
379 return divider_ro_round_rate(hw, rate, prate, divider->table,
380 divider->width, divider->flags,
381 val);
Stephen Boydbca96902015-01-19 18:05:29 -0800382 }
383
384 return divider_round_rate(hw, rate, prate, divider->table,
385 divider->width, divider->flags);
386}
387
388int divider_get_val(unsigned long rate, unsigned long parent_rate,
389 const struct clk_div_table *table, u8 width,
390 unsigned long flags)
391{
392 unsigned int div, value;
393
Brian Norris9556f9d2015-04-13 16:03:21 -0700394 div = DIV_ROUND_UP_ULL((u64)parent_rate, rate);
Stephen Boydbca96902015-01-19 18:05:29 -0800395
396 if (!_is_valid_div(table, div, flags))
397 return -EINVAL;
398
Jim Quinlanafe76c8f2015-05-15 15:45:47 -0400399 value = _get_val(table, div, flags, width);
Stephen Boydbca96902015-01-19 18:05:29 -0800400
Jerome Brunete6d3cc72018-02-14 14:43:33 +0100401 return min_t(unsigned int, value, clk_div_mask(width));
Stephen Boydbca96902015-01-19 18:05:29 -0800402}
403EXPORT_SYMBOL_GPL(divider_get_val);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700404
Shawn Guo1c0035d2012-04-12 20:50:18 +0800405static int clk_divider_set_rate(struct clk_hw *hw, unsigned long rate,
406 unsigned long parent_rate)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700407{
408 struct clk_divider *divider = to_clk_divider(hw);
Alex Frid2316a7a2017-07-25 13:18:40 +0300409 int value;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700410 unsigned long flags = 0;
411 u32 val;
412
Stephen Boydbca96902015-01-19 18:05:29 -0800413 value = divider_get_val(rate, parent_rate, divider->table,
414 divider->width, divider->flags);
Alex Frid2316a7a2017-07-25 13:18:40 +0300415 if (value < 0)
416 return value;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700417
418 if (divider->lock)
419 spin_lock_irqsave(divider->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -0700420 else
421 __acquire(divider->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700422
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800423 if (divider->flags & CLK_DIVIDER_HIWORD_MASK) {
Jerome Brunete6d3cc72018-02-14 14:43:33 +0100424 val = clk_div_mask(divider->width) << (divider->shift + 16);
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800425 } else {
Gerhard Sittigaa514ce2013-07-22 14:14:40 +0200426 val = clk_readl(divider->reg);
Jerome Brunete6d3cc72018-02-14 14:43:33 +0100427 val &= ~(clk_div_mask(divider->width) << divider->shift);
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800428 }
Alex Frid2316a7a2017-07-25 13:18:40 +0300429 val |= (u32)value << divider->shift;
Gerhard Sittigaa514ce2013-07-22 14:14:40 +0200430 clk_writel(val, divider->reg);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700431
432 if (divider->lock)
433 spin_unlock_irqrestore(divider->lock, flags);
Stephen Boyd661e2182015-07-24 12:21:12 -0700434 else
435 __release(divider->lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700436
437 return 0;
438}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700439
Shawn Guo822c2502012-03-27 15:23:22 +0800440const struct clk_ops clk_divider_ops = {
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700441 .recalc_rate = clk_divider_recalc_rate,
442 .round_rate = clk_divider_round_rate,
443 .set_rate = clk_divider_set_rate,
444};
445EXPORT_SYMBOL_GPL(clk_divider_ops);
446
Heiko Stuebner50359812016-01-21 21:53:09 +0100447const struct clk_ops clk_divider_ro_ops = {
448 .recalc_rate = clk_divider_recalc_rate,
449 .round_rate = clk_divider_round_rate,
450};
451EXPORT_SYMBOL_GPL(clk_divider_ro_ops);
452
Stephen Boydeb7d2642016-02-06 23:26:37 -0800453static struct clk_hw *_register_divider(struct device *dev, const char *name,
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700454 const char *parent_name, unsigned long flags,
455 void __iomem *reg, u8 shift, u8 width,
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530456 u8 clk_divider_flags, const struct clk_div_table *table,
457 spinlock_t *lock)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700458{
459 struct clk_divider *div;
Stephen Boydeb7d2642016-02-06 23:26:37 -0800460 struct clk_hw *hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700461 struct clk_init_data init;
Stephen Boydeb7d2642016-02-06 23:26:37 -0800462 int ret;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700463
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800464 if (clk_divider_flags & CLK_DIVIDER_HIWORD_MASK) {
465 if (width + shift > 16) {
466 pr_warn("divider value exceeds LOWORD field\n");
467 return ERR_PTR(-EINVAL);
468 }
469 }
470
Mike Turquette27d54592012-03-26 17:51:03 -0700471 /* allocate the divider */
Stephen Boydd122db72015-05-14 16:47:10 -0700472 div = kzalloc(sizeof(*div), GFP_KERNEL);
473 if (!div)
Mike Turquette27d54592012-03-26 17:51:03 -0700474 return ERR_PTR(-ENOMEM);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700475
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700476 init.name = name;
Heiko Stuebner50359812016-01-21 21:53:09 +0100477 if (clk_divider_flags & CLK_DIVIDER_READ_ONLY)
478 init.ops = &clk_divider_ro_ops;
479 else
480 init.ops = &clk_divider_ops;
Rajendra Nayakf7d8caa2012-06-01 14:02:47 +0530481 init.flags = flags | CLK_IS_BASIC;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700482 init.parent_names = (parent_name ? &parent_name: NULL);
483 init.num_parents = (parent_name ? 1 : 0);
484
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700485 /* struct clk_divider assignments */
486 div->reg = reg;
487 div->shift = shift;
488 div->width = width;
489 div->flags = clk_divider_flags;
490 div->lock = lock;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700491 div->hw.init = &init;
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530492 div->table = table;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700493
Mike Turquette27d54592012-03-26 17:51:03 -0700494 /* register the clock */
Stephen Boydeb7d2642016-02-06 23:26:37 -0800495 hw = &div->hw;
496 ret = clk_hw_register(dev, hw);
497 if (ret) {
Mike Turquette27d54592012-03-26 17:51:03 -0700498 kfree(div);
Stephen Boydeb7d2642016-02-06 23:26:37 -0800499 hw = ERR_PTR(ret);
500 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700501
Stephen Boydeb7d2642016-02-06 23:26:37 -0800502 return hw;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700503}
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530504
505/**
506 * clk_register_divider - register a divider clock with the clock framework
507 * @dev: device registering this clock
508 * @name: name of this clock
509 * @parent_name: name of clock's parent
510 * @flags: framework-specific flags
511 * @reg: register address to adjust divider
512 * @shift: number of bits to shift the bitfield
513 * @width: width of the bitfield
514 * @clk_divider_flags: divider-specific flags for this clock
515 * @lock: shared register lock for this clock
516 */
517struct clk *clk_register_divider(struct device *dev, const char *name,
518 const char *parent_name, unsigned long flags,
519 void __iomem *reg, u8 shift, u8 width,
520 u8 clk_divider_flags, spinlock_t *lock)
521{
Stephen Boydeb7d2642016-02-06 23:26:37 -0800522 struct clk_hw *hw;
523
524 hw = _register_divider(dev, name, parent_name, flags, reg, shift,
525 width, clk_divider_flags, NULL, lock);
526 if (IS_ERR(hw))
527 return ERR_CAST(hw);
528 return hw->clk;
529}
530EXPORT_SYMBOL_GPL(clk_register_divider);
531
532/**
533 * clk_hw_register_divider - register a divider clock with the clock framework
534 * @dev: device registering this clock
535 * @name: name of this clock
536 * @parent_name: name of clock's parent
537 * @flags: framework-specific flags
538 * @reg: register address to adjust divider
539 * @shift: number of bits to shift the bitfield
540 * @width: width of the bitfield
541 * @clk_divider_flags: divider-specific flags for this clock
542 * @lock: shared register lock for this clock
543 */
544struct clk_hw *clk_hw_register_divider(struct device *dev, const char *name,
545 const char *parent_name, unsigned long flags,
546 void __iomem *reg, u8 shift, u8 width,
547 u8 clk_divider_flags, spinlock_t *lock)
548{
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530549 return _register_divider(dev, name, parent_name, flags, reg, shift,
550 width, clk_divider_flags, NULL, lock);
551}
Stephen Boydeb7d2642016-02-06 23:26:37 -0800552EXPORT_SYMBOL_GPL(clk_hw_register_divider);
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530553
554/**
555 * clk_register_divider_table - register a table based divider clock with
556 * the clock framework
557 * @dev: device registering this clock
558 * @name: name of this clock
559 * @parent_name: name of clock's parent
560 * @flags: framework-specific flags
561 * @reg: register address to adjust divider
562 * @shift: number of bits to shift the bitfield
563 * @width: width of the bitfield
564 * @clk_divider_flags: divider-specific flags for this clock
565 * @table: array of divider/value pairs ending with a div set to 0
566 * @lock: shared register lock for this clock
567 */
568struct clk *clk_register_divider_table(struct device *dev, const char *name,
569 const char *parent_name, unsigned long flags,
570 void __iomem *reg, u8 shift, u8 width,
571 u8 clk_divider_flags, const struct clk_div_table *table,
572 spinlock_t *lock)
573{
Stephen Boydeb7d2642016-02-06 23:26:37 -0800574 struct clk_hw *hw;
575
576 hw = _register_divider(dev, name, parent_name, flags, reg, shift,
577 width, clk_divider_flags, table, lock);
578 if (IS_ERR(hw))
579 return ERR_CAST(hw);
580 return hw->clk;
581}
582EXPORT_SYMBOL_GPL(clk_register_divider_table);
583
584/**
585 * clk_hw_register_divider_table - register a table based divider clock with
586 * the clock framework
587 * @dev: device registering this clock
588 * @name: name of this clock
589 * @parent_name: name of clock's parent
590 * @flags: framework-specific flags
591 * @reg: register address to adjust divider
592 * @shift: number of bits to shift the bitfield
593 * @width: width of the bitfield
594 * @clk_divider_flags: divider-specific flags for this clock
595 * @table: array of divider/value pairs ending with a div set to 0
596 * @lock: shared register lock for this clock
597 */
598struct clk_hw *clk_hw_register_divider_table(struct device *dev,
599 const char *name, const char *parent_name, unsigned long flags,
600 void __iomem *reg, u8 shift, u8 width,
601 u8 clk_divider_flags, const struct clk_div_table *table,
602 spinlock_t *lock)
603{
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530604 return _register_divider(dev, name, parent_name, flags, reg, shift,
605 width, clk_divider_flags, table, lock);
606}
Stephen Boydeb7d2642016-02-06 23:26:37 -0800607EXPORT_SYMBOL_GPL(clk_hw_register_divider_table);
Krzysztof Kozlowski4e3c0212015-01-05 10:52:40 +0100608
609void clk_unregister_divider(struct clk *clk)
610{
611 struct clk_divider *div;
612 struct clk_hw *hw;
613
614 hw = __clk_get_hw(clk);
615 if (!hw)
616 return;
617
618 div = to_clk_divider(hw);
619
620 clk_unregister(clk);
621 kfree(div);
622}
623EXPORT_SYMBOL_GPL(clk_unregister_divider);
Stephen Boydeb7d2642016-02-06 23:26:37 -0800624
625/**
626 * clk_hw_unregister_divider - unregister a clk divider
627 * @hw: hardware-specific clock data to unregister
628 */
629void clk_hw_unregister_divider(struct clk_hw *hw)
630{
631 struct clk_divider *div;
632
633 div = to_clk_divider(hw);
634
635 clk_hw_unregister(hw);
636 kfree(div);
637}
638EXPORT_SYMBOL_GPL(clk_hw_unregister_divider);