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>
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.
10 * Adjustable divider clock implementation
13 #include <linux/clk-provider.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
17 #include <linux/err.h>
18 #include <linux/string.h>
19 #include <linux/log2.h>
22 * DOC: basic adjustable divider clock that cannot gate
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
27 * rate - rate is adjustable. clk->rate = ceiling(parent->rate / divisor)
28 * parent - fixed parent. No clk_set_parent support
31 #define div_mask(width) ((1 << (width)) - 1)
33 static unsigned int _get_table_maxdiv(const struct clk_div_table
*table
,
36 unsigned int maxdiv
= 0, mask
= div_mask(width
);
37 const struct clk_div_table
*clkt
;
39 for (clkt
= table
; clkt
->div
; clkt
++)
40 if (clkt
->div
> maxdiv
&& clkt
->val
<= mask
)
45 static unsigned int _get_table_mindiv(const struct clk_div_table
*table
)
47 unsigned int mindiv
= UINT_MAX
;
48 const struct clk_div_table
*clkt
;
50 for (clkt
= table
; clkt
->div
; clkt
++)
51 if (clkt
->div
< mindiv
)
56 static unsigned int _get_maxdiv(const struct clk_div_table
*table
, u8 width
,
59 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
);
64 return _get_table_maxdiv(table
, width
);
65 return div_mask(width
) + 1;
68 static unsigned int _get_table_div(const struct clk_div_table
*table
,
71 const struct clk_div_table
*clkt
;
73 for (clkt
= table
; clkt
->div
; clkt
++)
79 static unsigned int _get_div(const struct clk_div_table
*table
,
80 unsigned int val
, unsigned long flags
, u8 width
)
82 if (flags
& CLK_DIVIDER_ONE_BASED
)
84 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
86 if (flags
& CLK_DIVIDER_MAX_AT_ZERO
)
87 return val
? val
: div_mask(width
) + 1;
89 return _get_table_div(table
, val
);
93 static unsigned int _get_table_val(const struct clk_div_table
*table
,
96 const struct clk_div_table
*clkt
;
98 for (clkt
= table
; clkt
->div
; clkt
++)
104 static unsigned int _get_val(const struct clk_div_table
*table
,
105 unsigned int div
, unsigned long flags
, u8 width
)
107 if (flags
& CLK_DIVIDER_ONE_BASED
)
109 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
111 if (flags
& CLK_DIVIDER_MAX_AT_ZERO
)
112 return (div
== div_mask(width
) + 1) ? 0 : div
;
114 return _get_table_val(table
, div
);
118 unsigned long divider_recalc_rate(struct clk_hw
*hw
, unsigned long parent_rate
,
120 const struct clk_div_table
*table
,
121 unsigned long flags
, unsigned long width
)
125 div
= _get_div(table
, val
, flags
, width
);
127 WARN(!(flags
& CLK_DIVIDER_ALLOW_ZERO
),
128 "%s: Zero divisor and CLK_DIVIDER_ALLOW_ZERO not set\n",
129 clk_hw_get_name(hw
));
133 return DIV_ROUND_UP_ULL((u64
)parent_rate
, div
);
135 EXPORT_SYMBOL_GPL(divider_recalc_rate
);
137 static unsigned long clk_divider_recalc_rate(struct clk_hw
*hw
,
138 unsigned long parent_rate
)
140 struct clk_divider
*divider
= to_clk_divider(hw
);
143 val
= clk_readl(divider
->reg
) >> divider
->shift
;
144 val
&= div_mask(divider
->width
);
146 return divider_recalc_rate(hw
, parent_rate
, val
, divider
->table
,
147 divider
->flags
, divider
->width
);
150 static bool _is_valid_table_div(const struct clk_div_table
*table
,
153 const struct clk_div_table
*clkt
;
155 for (clkt
= table
; clkt
->div
; clkt
++)
156 if (clkt
->div
== div
)
161 static bool _is_valid_div(const struct clk_div_table
*table
, unsigned int div
,
164 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
165 return is_power_of_2(div
);
167 return _is_valid_table_div(table
, div
);
171 static int _round_up_table(const struct clk_div_table
*table
, int div
)
173 const struct clk_div_table
*clkt
;
176 for (clkt
= table
; clkt
->div
; clkt
++) {
177 if (clkt
->div
== div
)
179 else if (clkt
->div
< div
)
182 if ((clkt
->div
- div
) < (up
- div
))
189 static int _round_down_table(const struct clk_div_table
*table
, int div
)
191 const struct clk_div_table
*clkt
;
192 int down
= _get_table_mindiv(table
);
194 for (clkt
= table
; clkt
->div
; clkt
++) {
195 if (clkt
->div
== div
)
197 else if (clkt
->div
> div
)
200 if ((div
- clkt
->div
) < (div
- down
))
207 static int _div_round_up(const struct clk_div_table
*table
,
208 unsigned long parent_rate
, unsigned long rate
,
211 int div
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
213 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
214 div
= __roundup_pow_of_two(div
);
216 div
= _round_up_table(table
, div
);
221 static int _div_round_closest(const struct clk_div_table
*table
,
222 unsigned long parent_rate
, unsigned long rate
,
226 unsigned long up_rate
, down_rate
;
228 up
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
229 down
= parent_rate
/ rate
;
231 if (flags
& CLK_DIVIDER_POWER_OF_TWO
) {
232 up
= __roundup_pow_of_two(up
);
233 down
= __rounddown_pow_of_two(down
);
235 up
= _round_up_table(table
, up
);
236 down
= _round_down_table(table
, down
);
239 up_rate
= DIV_ROUND_UP_ULL((u64
)parent_rate
, up
);
240 down_rate
= DIV_ROUND_UP_ULL((u64
)parent_rate
, down
);
242 return (rate
- up_rate
) <= (down_rate
- rate
) ? up
: down
;
245 static int _div_round(const struct clk_div_table
*table
,
246 unsigned long parent_rate
, unsigned long rate
,
249 if (flags
& CLK_DIVIDER_ROUND_CLOSEST
)
250 return _div_round_closest(table
, parent_rate
, rate
, flags
);
252 return _div_round_up(table
, parent_rate
, rate
, flags
);
255 static bool _is_best_div(unsigned long rate
, unsigned long now
,
256 unsigned long best
, unsigned long flags
)
258 if (flags
& CLK_DIVIDER_ROUND_CLOSEST
)
259 return abs(rate
- now
) < abs(rate
- best
);
261 return now
<= rate
&& now
> best
;
264 static int _next_div(const struct clk_div_table
*table
, int div
,
269 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
270 return __roundup_pow_of_two(div
);
272 return _round_up_table(table
, div
);
277 static int clk_divider_bestdiv(struct clk_hw
*hw
, struct clk_hw
*parent
,
279 unsigned long *best_parent_rate
,
280 const struct clk_div_table
*table
, u8 width
,
284 unsigned long parent_rate
, best
= 0, now
, maxdiv
;
285 unsigned long parent_rate_saved
= *best_parent_rate
;
290 maxdiv
= _get_maxdiv(table
, width
, flags
);
292 if (!(clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
)) {
293 parent_rate
= *best_parent_rate
;
294 bestdiv
= _div_round(table
, parent_rate
, rate
, flags
);
295 bestdiv
= bestdiv
== 0 ? 1 : bestdiv
;
296 bestdiv
= bestdiv
> maxdiv
? maxdiv
: bestdiv
;
301 * The maximum divider we can use without overflowing
302 * unsigned long in rate * i below
304 maxdiv
= min(ULONG_MAX
/ rate
, maxdiv
);
306 for (i
= _next_div(table
, 0, flags
); i
<= maxdiv
;
307 i
= _next_div(table
, i
, flags
)) {
308 if (rate
* i
== parent_rate_saved
) {
310 * It's the most ideal case if the requested rate can be
311 * divided from parent clock without needing to change
312 * parent rate, so return the divider immediately.
314 *best_parent_rate
= parent_rate_saved
;
317 parent_rate
= clk_hw_round_rate(parent
, rate
* i
);
318 now
= DIV_ROUND_UP_ULL((u64
)parent_rate
, i
);
319 if (_is_best_div(rate
, now
, best
, flags
)) {
322 *best_parent_rate
= parent_rate
;
327 bestdiv
= _get_maxdiv(table
, width
, flags
);
328 *best_parent_rate
= clk_hw_round_rate(parent
, 1);
334 long divider_round_rate_parent(struct clk_hw
*hw
, struct clk_hw
*parent
,
335 unsigned long rate
, unsigned long *prate
,
336 const struct clk_div_table
*table
,
337 u8 width
, unsigned long flags
)
341 div
= clk_divider_bestdiv(hw
, parent
, rate
, prate
, table
, width
, flags
);
343 return DIV_ROUND_UP_ULL((u64
)*prate
, div
);
345 EXPORT_SYMBOL_GPL(divider_round_rate_parent
);
347 static long clk_divider_round_rate(struct clk_hw
*hw
, unsigned long rate
,
348 unsigned long *prate
)
350 struct clk_divider
*divider
= to_clk_divider(hw
);
353 /* if read only, just return current value */
354 if (divider
->flags
& CLK_DIVIDER_READ_ONLY
) {
355 bestdiv
= clk_readl(divider
->reg
) >> divider
->shift
;
356 bestdiv
&= div_mask(divider
->width
);
357 bestdiv
= _get_div(divider
->table
, bestdiv
, divider
->flags
,
359 return DIV_ROUND_UP_ULL((u64
)*prate
, bestdiv
);
362 return divider_round_rate(hw
, rate
, prate
, divider
->table
,
363 divider
->width
, divider
->flags
);
366 int divider_get_val(unsigned long rate
, unsigned long parent_rate
,
367 const struct clk_div_table
*table
, u8 width
,
370 unsigned int div
, value
;
372 div
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
374 if (!_is_valid_div(table
, div
, flags
))
377 value
= _get_val(table
, div
, flags
, width
);
379 return min_t(unsigned int, value
, div_mask(width
));
381 EXPORT_SYMBOL_GPL(divider_get_val
);
383 static int clk_divider_set_rate(struct clk_hw
*hw
, unsigned long rate
,
384 unsigned long parent_rate
)
386 struct clk_divider
*divider
= to_clk_divider(hw
);
388 unsigned long flags
= 0;
391 value
= divider_get_val(rate
, parent_rate
, divider
->table
,
392 divider
->width
, divider
->flags
);
397 spin_lock_irqsave(divider
->lock
, flags
);
399 __acquire(divider
->lock
);
401 if (divider
->flags
& CLK_DIVIDER_HIWORD_MASK
) {
402 val
= div_mask(divider
->width
) << (divider
->shift
+ 16);
404 val
= clk_readl(divider
->reg
);
405 val
&= ~(div_mask(divider
->width
) << divider
->shift
);
407 val
|= (u32
)value
<< divider
->shift
;
408 clk_writel(val
, divider
->reg
);
411 spin_unlock_irqrestore(divider
->lock
, flags
);
413 __release(divider
->lock
);
418 const struct clk_ops clk_divider_ops
= {
419 .recalc_rate
= clk_divider_recalc_rate
,
420 .round_rate
= clk_divider_round_rate
,
421 .set_rate
= clk_divider_set_rate
,
423 EXPORT_SYMBOL_GPL(clk_divider_ops
);
425 const struct clk_ops clk_divider_ro_ops
= {
426 .recalc_rate
= clk_divider_recalc_rate
,
427 .round_rate
= clk_divider_round_rate
,
429 EXPORT_SYMBOL_GPL(clk_divider_ro_ops
);
431 static struct clk_hw
*_register_divider(struct device
*dev
, const char *name
,
432 const char *parent_name
, unsigned long flags
,
433 void __iomem
*reg
, u8 shift
, u8 width
,
434 u8 clk_divider_flags
, const struct clk_div_table
*table
,
437 struct clk_divider
*div
;
439 struct clk_init_data init
;
442 if (clk_divider_flags
& CLK_DIVIDER_HIWORD_MASK
) {
443 if (width
+ shift
> 16) {
444 pr_warn("divider value exceeds LOWORD field\n");
445 return ERR_PTR(-EINVAL
);
449 /* allocate the divider */
450 div
= kzalloc(sizeof(*div
), GFP_KERNEL
);
452 return ERR_PTR(-ENOMEM
);
455 if (clk_divider_flags
& CLK_DIVIDER_READ_ONLY
)
456 init
.ops
= &clk_divider_ro_ops
;
458 init
.ops
= &clk_divider_ops
;
459 init
.flags
= flags
| CLK_IS_BASIC
;
460 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
461 init
.num_parents
= (parent_name
? 1 : 0);
463 /* struct clk_divider assignments */
467 div
->flags
= clk_divider_flags
;
469 div
->hw
.init
= &init
;
472 /* register the clock */
474 ret
= clk_hw_register(dev
, hw
);
484 * clk_register_divider - register a divider clock with the clock framework
485 * @dev: device registering this clock
486 * @name: name of this clock
487 * @parent_name: name of clock's parent
488 * @flags: framework-specific flags
489 * @reg: register address to adjust divider
490 * @shift: number of bits to shift the bitfield
491 * @width: width of the bitfield
492 * @clk_divider_flags: divider-specific flags for this clock
493 * @lock: shared register lock for this clock
495 struct clk
*clk_register_divider(struct device
*dev
, const char *name
,
496 const char *parent_name
, unsigned long flags
,
497 void __iomem
*reg
, u8 shift
, u8 width
,
498 u8 clk_divider_flags
, spinlock_t
*lock
)
502 hw
= _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
503 width
, clk_divider_flags
, NULL
, lock
);
508 EXPORT_SYMBOL_GPL(clk_register_divider
);
511 * clk_hw_register_divider - register a divider clock with the clock framework
512 * @dev: device registering this clock
513 * @name: name of this clock
514 * @parent_name: name of clock's parent
515 * @flags: framework-specific flags
516 * @reg: register address to adjust divider
517 * @shift: number of bits to shift the bitfield
518 * @width: width of the bitfield
519 * @clk_divider_flags: divider-specific flags for this clock
520 * @lock: shared register lock for this clock
522 struct clk_hw
*clk_hw_register_divider(struct device
*dev
, const char *name
,
523 const char *parent_name
, unsigned long flags
,
524 void __iomem
*reg
, u8 shift
, u8 width
,
525 u8 clk_divider_flags
, spinlock_t
*lock
)
527 return _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
528 width
, clk_divider_flags
, NULL
, lock
);
530 EXPORT_SYMBOL_GPL(clk_hw_register_divider
);
533 * clk_register_divider_table - register a table based divider clock with
534 * the clock framework
535 * @dev: device registering this clock
536 * @name: name of this clock
537 * @parent_name: name of clock's parent
538 * @flags: framework-specific flags
539 * @reg: register address to adjust divider
540 * @shift: number of bits to shift the bitfield
541 * @width: width of the bitfield
542 * @clk_divider_flags: divider-specific flags for this clock
543 * @table: array of divider/value pairs ending with a div set to 0
544 * @lock: shared register lock for this clock
546 struct clk
*clk_register_divider_table(struct device
*dev
, const char *name
,
547 const char *parent_name
, unsigned long flags
,
548 void __iomem
*reg
, u8 shift
, u8 width
,
549 u8 clk_divider_flags
, const struct clk_div_table
*table
,
554 hw
= _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
555 width
, clk_divider_flags
, table
, lock
);
560 EXPORT_SYMBOL_GPL(clk_register_divider_table
);
563 * clk_hw_register_divider_table - register a table based divider clock with
564 * the clock framework
565 * @dev: device registering this clock
566 * @name: name of this clock
567 * @parent_name: name of clock's parent
568 * @flags: framework-specific flags
569 * @reg: register address to adjust divider
570 * @shift: number of bits to shift the bitfield
571 * @width: width of the bitfield
572 * @clk_divider_flags: divider-specific flags for this clock
573 * @table: array of divider/value pairs ending with a div set to 0
574 * @lock: shared register lock for this clock
576 struct clk_hw
*clk_hw_register_divider_table(struct device
*dev
,
577 const char *name
, const char *parent_name
, unsigned long flags
,
578 void __iomem
*reg
, u8 shift
, u8 width
,
579 u8 clk_divider_flags
, const struct clk_div_table
*table
,
582 return _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
583 width
, clk_divider_flags
, table
, lock
);
585 EXPORT_SYMBOL_GPL(clk_hw_register_divider_table
);
587 void clk_unregister_divider(struct clk
*clk
)
589 struct clk_divider
*div
;
592 hw
= __clk_get_hw(clk
);
596 div
= to_clk_divider(hw
);
601 EXPORT_SYMBOL_GPL(clk_unregister_divider
);
604 * clk_hw_unregister_divider - unregister a clk divider
605 * @hw: hardware-specific clock data to unregister
607 void clk_hw_unregister_divider(struct clk_hw
*hw
)
609 struct clk_divider
*div
;
611 div
= to_clk_divider(hw
);
613 clk_hw_unregister(hw
);
616 EXPORT_SYMBOL_GPL(clk_hw_unregister_divider
);