bcma: move PCI IRQ control function to host specific code
[deliverable/linux.git] / drivers / clk / clk-divider.c
CommitLineData
9d9f78ed
MT
1/*
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>
1a3cd184 19#include <linux/log2.h>
9d9f78ed
MT
20
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
b11d282d 27 * rate - rate is adjustable. clk->rate = DIV_ROUND_UP(parent->rate / divisor)
9d9f78ed
MT
28 * parent - fixed parent. No clk_set_parent support
29 */
30
31#define to_clk_divider(_hw) container_of(_hw, struct clk_divider, hw)
32
bca9690b 33#define div_mask(width) ((1 << (width)) - 1)
6d9252bd 34
357c3f0a
RN
35static unsigned int _get_table_maxdiv(const struct clk_div_table *table)
36{
37 unsigned int maxdiv = 0;
38 const struct clk_div_table *clkt;
39
40 for (clkt = table; clkt->div; clkt++)
41 if (clkt->div > maxdiv)
42 maxdiv = clkt->div;
43 return maxdiv;
44}
45
774b5143
MC
46static unsigned int _get_table_mindiv(const struct clk_div_table *table)
47{
48 unsigned int mindiv = UINT_MAX;
49 const struct clk_div_table *clkt;
50
51 for (clkt = table; clkt->div; clkt++)
52 if (clkt->div < mindiv)
53 mindiv = clkt->div;
54 return mindiv;
55}
56
bca9690b
SB
57static unsigned int _get_maxdiv(const struct clk_div_table *table, u8 width,
58 unsigned long flags)
6d9252bd 59{
bca9690b
SB
60 if (flags & CLK_DIVIDER_ONE_BASED)
61 return div_mask(width);
62 if (flags & CLK_DIVIDER_POWER_OF_TWO)
63 return 1 << div_mask(width);
64 if (table)
65 return _get_table_maxdiv(table);
66 return div_mask(width) + 1;
6d9252bd
RN
67}
68
357c3f0a
RN
69static unsigned int _get_table_div(const struct clk_div_table *table,
70 unsigned int val)
71{
72 const struct clk_div_table *clkt;
73
74 for (clkt = table; clkt->div; clkt++)
75 if (clkt->val == val)
76 return clkt->div;
77 return 0;
78}
79
bca9690b
SB
80static unsigned int _get_div(const struct clk_div_table *table,
81 unsigned int val, unsigned long flags)
6d9252bd 82{
bca9690b 83 if (flags & CLK_DIVIDER_ONE_BASED)
6d9252bd 84 return val;
bca9690b 85 if (flags & CLK_DIVIDER_POWER_OF_TWO)
6d9252bd 86 return 1 << val;
bca9690b
SB
87 if (table)
88 return _get_table_div(table, val);
6d9252bd
RN
89 return val + 1;
90}
91
357c3f0a
RN
92static unsigned int _get_table_val(const struct clk_div_table *table,
93 unsigned int div)
94{
95 const struct clk_div_table *clkt;
96
97 for (clkt = table; clkt->div; clkt++)
98 if (clkt->div == div)
99 return clkt->val;
100 return 0;
101}
102
bca9690b
SB
103static unsigned int _get_val(const struct clk_div_table *table,
104 unsigned int div, unsigned long flags)
6d9252bd 105{
bca9690b 106 if (flags & CLK_DIVIDER_ONE_BASED)
6d9252bd 107 return div;
bca9690b 108 if (flags & CLK_DIVIDER_POWER_OF_TWO)
6d9252bd 109 return __ffs(div);
bca9690b
SB
110 if (table)
111 return _get_table_val(table, div);
6d9252bd
RN
112 return div - 1;
113}
9d9f78ed 114
bca9690b
SB
115unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate,
116 unsigned int val,
117 const struct clk_div_table *table,
118 unsigned long flags)
9d9f78ed 119{
bca9690b 120 unsigned int div;
9d9f78ed 121
bca9690b 122 div = _get_div(table, val, flags);
6d9252bd 123 if (!div) {
bca9690b 124 WARN(!(flags & CLK_DIVIDER_ALLOW_ZERO),
056b2053
SB
125 "%s: Zero divisor and CLK_DIVIDER_ALLOW_ZERO not set\n",
126 __clk_get_name(hw->clk));
6d9252bd
RN
127 return parent_rate;
128 }
9d9f78ed 129
b11d282d 130 return DIV_ROUND_UP(parent_rate, div);
9d9f78ed 131}
bca9690b
SB
132EXPORT_SYMBOL_GPL(divider_recalc_rate);
133
134static unsigned long clk_divider_recalc_rate(struct clk_hw *hw,
135 unsigned long parent_rate)
136{
137 struct clk_divider *divider = to_clk_divider(hw);
138 unsigned int val;
139
140 val = clk_readl(divider->reg) >> divider->shift;
141 val &= div_mask(divider->width);
142
143 return divider_recalc_rate(hw, parent_rate, val, divider->table,
144 divider->flags);
145}
9d9f78ed
MT
146
147/*
148 * The reverse of DIV_ROUND_UP: The maximum number which
149 * divided by m is r
150 */
151#define MULT_ROUND_UP(r, m) ((r) * (m) + (m) - 1)
152
357c3f0a
RN
153static bool _is_valid_table_div(const struct clk_div_table *table,
154 unsigned int div)
155{
156 const struct clk_div_table *clkt;
157
158 for (clkt = table; clkt->div; clkt++)
159 if (clkt->div == div)
160 return true;
161 return false;
162}
163
bca9690b
SB
164static bool _is_valid_div(const struct clk_div_table *table, unsigned int div,
165 unsigned long flags)
357c3f0a 166{
bca9690b 167 if (flags & CLK_DIVIDER_POWER_OF_TWO)
1a3cd184 168 return is_power_of_2(div);
bca9690b
SB
169 if (table)
170 return _is_valid_table_div(table, div);
357c3f0a
RN
171 return true;
172}
173
dd23c2cd
MC
174static int _round_up_table(const struct clk_div_table *table, int div)
175{
176 const struct clk_div_table *clkt;
fe52e750 177 int up = INT_MAX;
dd23c2cd
MC
178
179 for (clkt = table; clkt->div; clkt++) {
180 if (clkt->div == div)
181 return clkt->div;
182 else if (clkt->div < div)
183 continue;
184
185 if ((clkt->div - div) < (up - div))
186 up = clkt->div;
187 }
188
189 return up;
190}
191
774b5143
MC
192static int _round_down_table(const struct clk_div_table *table, int div)
193{
194 const struct clk_div_table *clkt;
195 int down = _get_table_mindiv(table);
196
197 for (clkt = table; clkt->div; clkt++) {
198 if (clkt->div == div)
199 return clkt->div;
200 else if (clkt->div > div)
201 continue;
202
203 if ((div - clkt->div) < (div - down))
204 down = clkt->div;
205 }
206
207 return down;
208}
209
bca9690b
SB
210static int _div_round_up(const struct clk_div_table *table,
211 unsigned long parent_rate, unsigned long rate,
212 unsigned long flags)
dd23c2cd
MC
213{
214 int div = DIV_ROUND_UP(parent_rate, rate);
215
bca9690b 216 if (flags & CLK_DIVIDER_POWER_OF_TWO)
dd23c2cd 217 div = __roundup_pow_of_two(div);
bca9690b
SB
218 if (table)
219 div = _round_up_table(table, div);
dd23c2cd
MC
220
221 return div;
222}
223
bca9690b
SB
224static int _div_round_closest(const struct clk_div_table *table,
225 unsigned long parent_rate, unsigned long rate,
226 unsigned long flags)
774b5143
MC
227{
228 int up, down, div;
229
230 up = down = div = DIV_ROUND_CLOSEST(parent_rate, rate);
231
bca9690b 232 if (flags & CLK_DIVIDER_POWER_OF_TWO) {
774b5143
MC
233 up = __roundup_pow_of_two(div);
234 down = __rounddown_pow_of_two(div);
bca9690b
SB
235 } else if (table) {
236 up = _round_up_table(table, div);
237 down = _round_down_table(table, div);
774b5143
MC
238 }
239
240 return (up - div) <= (div - down) ? up : down;
241}
242
bca9690b
SB
243static int _div_round(const struct clk_div_table *table,
244 unsigned long parent_rate, unsigned long rate,
245 unsigned long flags)
774b5143 246{
bca9690b
SB
247 if (flags & CLK_DIVIDER_ROUND_CLOSEST)
248 return _div_round_closest(table, parent_rate, rate, flags);
774b5143 249
bca9690b 250 return _div_round_up(table, parent_rate, rate, flags);
774b5143
MC
251}
252
bca9690b
SB
253static bool _is_best_div(unsigned long rate, unsigned long now,
254 unsigned long best, unsigned long flags)
774b5143 255{
bca9690b 256 if (flags & CLK_DIVIDER_ROUND_CLOSEST)
774b5143
MC
257 return abs(rate - now) < abs(rate - best);
258
259 return now <= rate && now > best;
260}
261
bca9690b
SB
262static int _next_div(const struct clk_div_table *table, int div,
263 unsigned long flags)
0e2de78e
MC
264{
265 div++;
266
bca9690b 267 if (flags & CLK_DIVIDER_POWER_OF_TWO)
0e2de78e 268 return __roundup_pow_of_two(div);
bca9690b
SB
269 if (table)
270 return _round_up_table(table, div);
0e2de78e
MC
271
272 return div;
273}
274
9d9f78ed 275static int clk_divider_bestdiv(struct clk_hw *hw, unsigned long rate,
bca9690b
SB
276 unsigned long *best_parent_rate,
277 const struct clk_div_table *table, u8 width,
278 unsigned long flags)
9d9f78ed 279{
9d9f78ed
MT
280 int i, bestdiv = 0;
281 unsigned long parent_rate, best = 0, now, maxdiv;
081c9025 282 unsigned long parent_rate_saved = *best_parent_rate;
9d9f78ed
MT
283
284 if (!rate)
285 rate = 1;
286
bca9690b 287 maxdiv = _get_maxdiv(table, width, flags);
9d9f78ed 288
81536e07
SG
289 if (!(__clk_get_flags(hw->clk) & CLK_SET_RATE_PARENT)) {
290 parent_rate = *best_parent_rate;
bca9690b 291 bestdiv = _div_round(table, parent_rate, rate, flags);
9d9f78ed
MT
292 bestdiv = bestdiv == 0 ? 1 : bestdiv;
293 bestdiv = bestdiv > maxdiv ? maxdiv : bestdiv;
294 return bestdiv;
295 }
296
297 /*
298 * The maximum divider we can use without overflowing
299 * unsigned long in rate * i below
300 */
301 maxdiv = min(ULONG_MAX / rate, maxdiv);
302
bca9690b
SB
303 for (i = 1; i <= maxdiv; i = _next_div(table, i, flags)) {
304 if (!_is_valid_div(table, i, flags))
6d9252bd 305 continue;
081c9025
SG
306 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 }
9d9f78ed
MT
315 parent_rate = __clk_round_rate(__clk_get_parent(hw->clk),
316 MULT_ROUND_UP(rate, i));
b11d282d 317 now = DIV_ROUND_UP(parent_rate, i);
bca9690b 318 if (_is_best_div(rate, now, best, flags)) {
9d9f78ed
MT
319 bestdiv = i;
320 best = now;
321 *best_parent_rate = parent_rate;
322 }
323 }
324
325 if (!bestdiv) {
bca9690b 326 bestdiv = _get_maxdiv(table, width, flags);
9d9f78ed
MT
327 *best_parent_rate = __clk_round_rate(__clk_get_parent(hw->clk), 1);
328 }
329
330 return bestdiv;
331}
332
bca9690b
SB
333long divider_round_rate(struct clk_hw *hw, unsigned long rate,
334 unsigned long *prate, const struct clk_div_table *table,
335 u8 width, unsigned long flags)
9d9f78ed
MT
336{
337 int div;
bca9690b
SB
338
339 div = clk_divider_bestdiv(hw, rate, prate, table, width, flags);
9d9f78ed 340
b11d282d 341 return DIV_ROUND_UP(*prate, div);
9d9f78ed 342}
bca9690b 343EXPORT_SYMBOL_GPL(divider_round_rate);
9d9f78ed 344
bca9690b
SB
345static long clk_divider_round_rate(struct clk_hw *hw, unsigned long rate,
346 unsigned long *prate)
9d9f78ed
MT
347{
348 struct clk_divider *divider = to_clk_divider(hw);
bca9690b
SB
349 int bestdiv;
350
351 /* if read only, just return current value */
352 if (divider->flags & CLK_DIVIDER_READ_ONLY) {
353 bestdiv = readl(divider->reg) >> divider->shift;
354 bestdiv &= div_mask(divider->width);
355 bestdiv = _get_div(divider->table, bestdiv, divider->flags);
356 return bestdiv;
357 }
358
359 return divider_round_rate(hw, rate, prate, divider->table,
360 divider->width, divider->flags);
361}
362
363int divider_get_val(unsigned long rate, unsigned long parent_rate,
364 const struct clk_div_table *table, u8 width,
365 unsigned long flags)
366{
6d9252bd 367 unsigned int div, value;
9d9f78ed 368
b11d282d 369 div = DIV_ROUND_UP(parent_rate, rate);
dd23c2cd 370
bca9690b 371 if (!_is_valid_div(table, div, flags))
dd23c2cd
MC
372 return -EINVAL;
373
bca9690b
SB
374 value = _get_val(table, div, flags);
375
376 return min_t(unsigned int, value, div_mask(width));
377}
378EXPORT_SYMBOL_GPL(divider_get_val);
379
380static int clk_divider_set_rate(struct clk_hw *hw, unsigned long rate,
381 unsigned long parent_rate)
382{
383 struct clk_divider *divider = to_clk_divider(hw);
384 unsigned int value;
385 unsigned long flags = 0;
386 u32 val;
9d9f78ed 387
bca9690b
SB
388 value = divider_get_val(rate, parent_rate, divider->table,
389 divider->width, divider->flags);
9d9f78ed
MT
390
391 if (divider->lock)
392 spin_lock_irqsave(divider->lock, flags);
393
d57dfe75 394 if (divider->flags & CLK_DIVIDER_HIWORD_MASK) {
bca9690b 395 val = div_mask(divider->width) << (divider->shift + 16);
d57dfe75 396 } else {
aa514ce3 397 val = clk_readl(divider->reg);
bca9690b 398 val &= ~(div_mask(divider->width) << divider->shift);
d57dfe75 399 }
6d9252bd 400 val |= value << divider->shift;
aa514ce3 401 clk_writel(val, divider->reg);
9d9f78ed
MT
402
403 if (divider->lock)
404 spin_unlock_irqrestore(divider->lock, flags);
405
406 return 0;
407}
9d9f78ed 408
822c250e 409const struct clk_ops clk_divider_ops = {
9d9f78ed
MT
410 .recalc_rate = clk_divider_recalc_rate,
411 .round_rate = clk_divider_round_rate,
412 .set_rate = clk_divider_set_rate,
413};
414EXPORT_SYMBOL_GPL(clk_divider_ops);
415
357c3f0a 416static struct clk *_register_divider(struct device *dev, const char *name,
9d9f78ed
MT
417 const char *parent_name, unsigned long flags,
418 void __iomem *reg, u8 shift, u8 width,
357c3f0a
RN
419 u8 clk_divider_flags, const struct clk_div_table *table,
420 spinlock_t *lock)
9d9f78ed
MT
421{
422 struct clk_divider *div;
423 struct clk *clk;
0197b3ea 424 struct clk_init_data init;
9d9f78ed 425
d57dfe75
HZ
426 if (clk_divider_flags & CLK_DIVIDER_HIWORD_MASK) {
427 if (width + shift > 16) {
428 pr_warn("divider value exceeds LOWORD field\n");
429 return ERR_PTR(-EINVAL);
430 }
431 }
432
27d54591 433 /* allocate the divider */
9d9f78ed 434 div = kzalloc(sizeof(struct clk_divider), GFP_KERNEL);
9d9f78ed
MT
435 if (!div) {
436 pr_err("%s: could not allocate divider clk\n", __func__);
27d54591 437 return ERR_PTR(-ENOMEM);
9d9f78ed
MT
438 }
439
0197b3ea 440 init.name = name;
e6d5e7d9 441 init.ops = &clk_divider_ops;
f7d8caad 442 init.flags = flags | CLK_IS_BASIC;
0197b3ea
SK
443 init.parent_names = (parent_name ? &parent_name: NULL);
444 init.num_parents = (parent_name ? 1 : 0);
445
9d9f78ed
MT
446 /* struct clk_divider assignments */
447 div->reg = reg;
448 div->shift = shift;
449 div->width = width;
450 div->flags = clk_divider_flags;
451 div->lock = lock;
0197b3ea 452 div->hw.init = &init;
357c3f0a 453 div->table = table;
9d9f78ed 454
27d54591 455 /* register the clock */
0197b3ea 456 clk = clk_register(dev, &div->hw);
9d9f78ed 457
27d54591
MT
458 if (IS_ERR(clk))
459 kfree(div);
9d9f78ed 460
27d54591 461 return clk;
9d9f78ed 462}
357c3f0a
RN
463
464/**
465 * clk_register_divider - register a divider clock with the clock framework
466 * @dev: device registering this clock
467 * @name: name of this clock
468 * @parent_name: name of clock's parent
469 * @flags: framework-specific flags
470 * @reg: register address to adjust divider
471 * @shift: number of bits to shift the bitfield
472 * @width: width of the bitfield
473 * @clk_divider_flags: divider-specific flags for this clock
474 * @lock: shared register lock for this clock
475 */
476struct clk *clk_register_divider(struct device *dev, const char *name,
477 const char *parent_name, unsigned long flags,
478 void __iomem *reg, u8 shift, u8 width,
479 u8 clk_divider_flags, spinlock_t *lock)
480{
481 return _register_divider(dev, name, parent_name, flags, reg, shift,
482 width, clk_divider_flags, NULL, lock);
483}
4c5eeea9 484EXPORT_SYMBOL_GPL(clk_register_divider);
357c3f0a
RN
485
486/**
487 * clk_register_divider_table - register a table based divider clock with
488 * the clock framework
489 * @dev: device registering this clock
490 * @name: name of this clock
491 * @parent_name: name of clock's parent
492 * @flags: framework-specific flags
493 * @reg: register address to adjust divider
494 * @shift: number of bits to shift the bitfield
495 * @width: width of the bitfield
496 * @clk_divider_flags: divider-specific flags for this clock
497 * @table: array of divider/value pairs ending with a div set to 0
498 * @lock: shared register lock for this clock
499 */
500struct clk *clk_register_divider_table(struct device *dev, const char *name,
501 const char *parent_name, unsigned long flags,
502 void __iomem *reg, u8 shift, u8 width,
503 u8 clk_divider_flags, const struct clk_div_table *table,
504 spinlock_t *lock)
505{
506 return _register_divider(dev, name, parent_name, flags, reg, shift,
507 width, clk_divider_flags, table, lock);
508}
4c5eeea9 509EXPORT_SYMBOL_GPL(clk_register_divider_table);
4e3c021f
KK
510
511void clk_unregister_divider(struct clk *clk)
512{
513 struct clk_divider *div;
514 struct clk_hw *hw;
515
516 hw = __clk_get_hw(clk);
517 if (!hw)
518 return;
519
520 div = to_clk_divider(hw);
521
522 clk_unregister(clk);
523 kfree(div);
524}
525EXPORT_SYMBOL_GPL(clk_unregister_divider);
This page took 0.178303 seconds and 5 git commands to generate.