1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2011 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
4 * Copyright (C) 2011 Richard Zhao, Linaro <richard.zhao@linaro.org>
5 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
7 * Adjustable divider clock implementation
10 #include <linux/clk-provider.h>
11 #include <linux/module.h>
12 #include <linux/slab.h>
14 #include <linux/err.h>
15 #include <linux/string.h>
16 #include <linux/log2.h>
19 * DOC: basic adjustable divider clock that cannot gate
21 * Traits of this clock:
22 * prepare - clk_prepare only ensures that parents are prepared
23 * enable - clk_enable only ensures that parents are enabled
24 * rate - rate is adjustable. clk->rate = ceiling(parent->rate / divisor)
25 * parent - fixed parent. No clk_set_parent support
28 static inline u32
clk_div_readl(struct clk_divider
*divider
)
30 if (divider
->flags
& CLK_DIVIDER_BIG_ENDIAN
)
31 return ioread32be(divider
->reg
);
33 return readl(divider
->reg
);
36 static inline void clk_div_writel(struct clk_divider
*divider
, u32 val
)
38 if (divider
->flags
& CLK_DIVIDER_BIG_ENDIAN
)
39 iowrite32be(val
, divider
->reg
);
41 writel(val
, divider
->reg
);
44 static unsigned int _get_table_maxdiv(const struct clk_div_table
*table
,
47 unsigned int maxdiv
= 0, mask
= clk_div_mask(width
);
48 const struct clk_div_table
*clkt
;
50 for (clkt
= table
; clkt
->div
; clkt
++)
51 if (clkt
->div
> maxdiv
&& clkt
->val
<= mask
)
56 static unsigned int _get_table_mindiv(const struct clk_div_table
*table
)
58 unsigned int mindiv
= UINT_MAX
;
59 const struct clk_div_table
*clkt
;
61 for (clkt
= table
; clkt
->div
; clkt
++)
62 if (clkt
->div
< mindiv
)
67 static unsigned int _get_maxdiv(const struct clk_div_table
*table
, u8 width
,
70 if (flags
& CLK_DIVIDER_ONE_BASED
)
71 return clk_div_mask(width
);
72 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
73 return 1 << clk_div_mask(width
);
75 return _get_table_maxdiv(table
, width
);
76 return clk_div_mask(width
) + 1;
79 static unsigned int _get_table_div(const struct clk_div_table
*table
,
82 const struct clk_div_table
*clkt
;
84 for (clkt
= table
; clkt
->div
; clkt
++)
90 static unsigned int _get_div(const struct clk_div_table
*table
,
91 unsigned int val
, unsigned long flags
, u8 width
)
93 if (flags
& CLK_DIVIDER_ONE_BASED
)
95 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
97 if (flags
& CLK_DIVIDER_MAX_AT_ZERO
)
98 return val
? val
: clk_div_mask(width
) + 1;
100 return _get_table_div(table
, val
);
104 static unsigned int _get_table_val(const struct clk_div_table
*table
,
107 const struct clk_div_table
*clkt
;
109 for (clkt
= table
; clkt
->div
; clkt
++)
110 if (clkt
->div
== div
)
115 static unsigned int _get_val(const struct clk_div_table
*table
,
116 unsigned int div
, unsigned long flags
, u8 width
)
118 if (flags
& CLK_DIVIDER_ONE_BASED
)
120 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
122 if (flags
& CLK_DIVIDER_MAX_AT_ZERO
)
123 return (div
== clk_div_mask(width
) + 1) ? 0 : div
;
125 return _get_table_val(table
, div
);
129 unsigned long divider_recalc_rate(struct clk_hw
*hw
, unsigned long parent_rate
,
131 const struct clk_div_table
*table
,
132 unsigned long flags
, unsigned long width
)
136 div
= _get_div(table
, val
, flags
, width
);
138 WARN(!(flags
& CLK_DIVIDER_ALLOW_ZERO
),
139 "%s: Zero divisor and CLK_DIVIDER_ALLOW_ZERO not set\n",
140 clk_hw_get_name(hw
));
144 return DIV_ROUND_UP_ULL((u64
)parent_rate
, div
);
146 EXPORT_SYMBOL_GPL(divider_recalc_rate
);
148 static unsigned long clk_divider_recalc_rate(struct clk_hw
*hw
,
149 unsigned long parent_rate
)
151 struct clk_divider
*divider
= to_clk_divider(hw
);
154 val
= clk_div_readl(divider
) >> divider
->shift
;
155 val
&= clk_div_mask(divider
->width
);
157 return divider_recalc_rate(hw
, parent_rate
, val
, divider
->table
,
158 divider
->flags
, divider
->width
);
161 static bool _is_valid_table_div(const struct clk_div_table
*table
,
164 const struct clk_div_table
*clkt
;
166 for (clkt
= table
; clkt
->div
; clkt
++)
167 if (clkt
->div
== div
)
172 static bool _is_valid_div(const struct clk_div_table
*table
, unsigned int div
,
175 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
176 return is_power_of_2(div
);
178 return _is_valid_table_div(table
, div
);
182 static int _round_up_table(const struct clk_div_table
*table
, int div
)
184 const struct clk_div_table
*clkt
;
187 for (clkt
= table
; clkt
->div
; clkt
++) {
188 if (clkt
->div
== div
)
190 else if (clkt
->div
< div
)
193 if ((clkt
->div
- div
) < (up
- div
))
200 static int _round_down_table(const struct clk_div_table
*table
, int div
)
202 const struct clk_div_table
*clkt
;
203 int down
= _get_table_mindiv(table
);
205 for (clkt
= table
; clkt
->div
; clkt
++) {
206 if (clkt
->div
== div
)
208 else if (clkt
->div
> div
)
211 if ((div
- clkt
->div
) < (div
- down
))
218 static int _div_round_up(const struct clk_div_table
*table
,
219 unsigned long parent_rate
, unsigned long rate
,
222 int div
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
224 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
225 div
= __roundup_pow_of_two(div
);
227 div
= _round_up_table(table
, div
);
232 static int _div_round_closest(const struct clk_div_table
*table
,
233 unsigned long parent_rate
, unsigned long rate
,
237 unsigned long up_rate
, down_rate
;
239 up
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
240 down
= parent_rate
/ rate
;
242 if (flags
& CLK_DIVIDER_POWER_OF_TWO
) {
243 up
= __roundup_pow_of_two(up
);
244 down
= __rounddown_pow_of_two(down
);
246 up
= _round_up_table(table
, up
);
247 down
= _round_down_table(table
, down
);
250 up_rate
= DIV_ROUND_UP_ULL((u64
)parent_rate
, up
);
251 down_rate
= DIV_ROUND_UP_ULL((u64
)parent_rate
, down
);
253 return (rate
- up_rate
) <= (down_rate
- rate
) ? up
: down
;
256 static int _div_round(const struct clk_div_table
*table
,
257 unsigned long parent_rate
, unsigned long rate
,
260 if (flags
& CLK_DIVIDER_ROUND_CLOSEST
)
261 return _div_round_closest(table
, parent_rate
, rate
, flags
);
263 return _div_round_up(table
, parent_rate
, rate
, flags
);
266 static bool _is_best_div(unsigned long rate
, unsigned long now
,
267 unsigned long best
, unsigned long flags
)
269 if (flags
& CLK_DIVIDER_ROUND_CLOSEST
)
270 return abs(rate
- now
) < abs(rate
- best
);
272 return now
<= rate
&& now
> best
;
275 static int _next_div(const struct clk_div_table
*table
, int div
,
280 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
281 return __roundup_pow_of_two(div
);
283 return _round_up_table(table
, div
);
288 static int clk_divider_bestdiv(struct clk_hw
*hw
, struct clk_hw
*parent
,
290 unsigned long *best_parent_rate
,
291 const struct clk_div_table
*table
, u8 width
,
295 unsigned long parent_rate
, best
= 0, now
, maxdiv
;
296 unsigned long parent_rate_saved
= *best_parent_rate
;
301 maxdiv
= _get_maxdiv(table
, width
, flags
);
303 if (!(clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
)) {
304 parent_rate
= *best_parent_rate
;
305 bestdiv
= _div_round(table
, parent_rate
, rate
, flags
);
306 bestdiv
= bestdiv
== 0 ? 1 : bestdiv
;
307 bestdiv
= bestdiv
> maxdiv
? maxdiv
: bestdiv
;
312 * The maximum divider we can use without overflowing
313 * unsigned long in rate * i below
315 maxdiv
= min(ULONG_MAX
/ rate
, maxdiv
);
317 for (i
= _next_div(table
, 0, flags
); i
<= maxdiv
;
318 i
= _next_div(table
, i
, flags
)) {
319 if (rate
* i
== parent_rate_saved
) {
321 * It's the most ideal case if the requested rate can be
322 * divided from parent clock without needing to change
323 * parent rate, so return the divider immediately.
325 *best_parent_rate
= parent_rate_saved
;
328 parent_rate
= clk_hw_round_rate(parent
, rate
* i
);
329 now
= DIV_ROUND_UP_ULL((u64
)parent_rate
, i
);
330 if (_is_best_div(rate
, now
, best
, flags
)) {
333 *best_parent_rate
= parent_rate
;
338 bestdiv
= _get_maxdiv(table
, width
, flags
);
339 *best_parent_rate
= clk_hw_round_rate(parent
, 1);
345 long divider_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
,
348 u8 width
, unsigned long flags
)
352 div
= clk_divider_bestdiv(hw
, parent
, rate
, prate
, table
, width
, flags
);
354 return DIV_ROUND_UP_ULL((u64
)*prate
, div
);
356 EXPORT_SYMBOL_GPL(divider_round_rate_parent
);
358 long divider_ro_round_rate_parent(struct clk_hw
*hw
, struct clk_hw
*parent
,
359 unsigned long rate
, unsigned long *prate
,
360 const struct clk_div_table
*table
, u8 width
,
361 unsigned long flags
, unsigned int val
)
365 div
= _get_div(table
, val
, flags
, width
);
367 /* Even a read-only clock can propagate a rate change */
368 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
372 *prate
= clk_hw_round_rate(parent
, rate
* div
);
375 return DIV_ROUND_UP_ULL((u64
)*prate
, div
);
377 EXPORT_SYMBOL_GPL(divider_ro_round_rate_parent
);
380 static long clk_divider_round_rate(struct clk_hw
*hw
, unsigned long rate
,
381 unsigned long *prate
)
383 struct clk_divider
*divider
= to_clk_divider(hw
);
385 /* if read only, just return current value */
386 if (divider
->flags
& CLK_DIVIDER_READ_ONLY
) {
389 val
= clk_div_readl(divider
) >> divider
->shift
;
390 val
&= clk_div_mask(divider
->width
);
392 return divider_ro_round_rate(hw
, rate
, prate
, divider
->table
,
393 divider
->width
, divider
->flags
,
397 return divider_round_rate(hw
, rate
, prate
, divider
->table
,
398 divider
->width
, divider
->flags
);
401 int divider_get_val(unsigned long rate
, unsigned long parent_rate
,
402 const struct clk_div_table
*table
, u8 width
,
405 unsigned int div
, value
;
407 div
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
409 if (!_is_valid_div(table
, div
, flags
))
412 value
= _get_val(table
, div
, flags
, width
);
414 return min_t(unsigned int, value
, clk_div_mask(width
));
416 EXPORT_SYMBOL_GPL(divider_get_val
);
418 static int clk_divider_set_rate(struct clk_hw
*hw
, unsigned long rate
,
419 unsigned long parent_rate
)
421 struct clk_divider
*divider
= to_clk_divider(hw
);
423 unsigned long flags
= 0;
426 value
= divider_get_val(rate
, parent_rate
, divider
->table
,
427 divider
->width
, divider
->flags
);
432 spin_lock_irqsave(divider
->lock
, flags
);
434 __acquire(divider
->lock
);
436 if (divider
->flags
& CLK_DIVIDER_HIWORD_MASK
) {
437 val
= clk_div_mask(divider
->width
) << (divider
->shift
+ 16);
439 val
= clk_div_readl(divider
);
440 val
&= ~(clk_div_mask(divider
->width
) << divider
->shift
);
442 val
|= (u32
)value
<< divider
->shift
;
443 clk_div_writel(divider
, val
);
446 spin_unlock_irqrestore(divider
->lock
, flags
);
448 __release(divider
->lock
);
453 const struct clk_ops clk_divider_ops
= {
454 .recalc_rate
= clk_divider_recalc_rate
,
455 .round_rate
= clk_divider_round_rate
,
456 .set_rate
= clk_divider_set_rate
,
458 EXPORT_SYMBOL_GPL(clk_divider_ops
);
460 const struct clk_ops clk_divider_ro_ops
= {
461 .recalc_rate
= clk_divider_recalc_rate
,
462 .round_rate
= clk_divider_round_rate
,
464 EXPORT_SYMBOL_GPL(clk_divider_ro_ops
);
466 static struct clk_hw
*_register_divider(struct device
*dev
, const char *name
,
467 const char *parent_name
, unsigned long flags
,
468 void __iomem
*reg
, u8 shift
, u8 width
,
469 u8 clk_divider_flags
, const struct clk_div_table
*table
,
472 struct clk_divider
*div
;
474 struct clk_init_data init
;
477 if (clk_divider_flags
& CLK_DIVIDER_HIWORD_MASK
) {
478 if (width
+ shift
> 16) {
479 pr_warn("divider value exceeds LOWORD field\n");
480 return ERR_PTR(-EINVAL
);
484 /* allocate the divider */
485 div
= kzalloc(sizeof(*div
), GFP_KERNEL
);
487 return ERR_PTR(-ENOMEM
);
490 if (clk_divider_flags
& CLK_DIVIDER_READ_ONLY
)
491 init
.ops
= &clk_divider_ro_ops
;
493 init
.ops
= &clk_divider_ops
;
495 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
496 init
.num_parents
= (parent_name
? 1 : 0);
498 /* struct clk_divider assignments */
502 div
->flags
= clk_divider_flags
;
504 div
->hw
.init
= &init
;
507 /* register the clock */
509 ret
= clk_hw_register(dev
, hw
);
519 * clk_register_divider - register a divider clock with the clock framework
520 * @dev: device registering this clock
521 * @name: name of this clock
522 * @parent_name: name of clock's parent
523 * @flags: framework-specific flags
524 * @reg: register address to adjust divider
525 * @shift: number of bits to shift the bitfield
526 * @width: width of the bitfield
527 * @clk_divider_flags: divider-specific flags for this clock
528 * @lock: shared register lock for this clock
530 struct clk
*clk_register_divider(struct device
*dev
, const char *name
,
531 const char *parent_name
, unsigned long flags
,
532 void __iomem
*reg
, u8 shift
, u8 width
,
533 u8 clk_divider_flags
, spinlock_t
*lock
)
537 hw
= _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
538 width
, clk_divider_flags
, NULL
, lock
);
543 EXPORT_SYMBOL_GPL(clk_register_divider
);
546 * clk_hw_register_divider - register a divider clock with the clock framework
547 * @dev: device registering this clock
548 * @name: name of this clock
549 * @parent_name: name of clock's parent
550 * @flags: framework-specific flags
551 * @reg: register address to adjust divider
552 * @shift: number of bits to shift the bitfield
553 * @width: width of the bitfield
554 * @clk_divider_flags: divider-specific flags for this clock
555 * @lock: shared register lock for this clock
557 struct clk_hw
*clk_hw_register_divider(struct device
*dev
, const char *name
,
558 const char *parent_name
, unsigned long flags
,
559 void __iomem
*reg
, u8 shift
, u8 width
,
560 u8 clk_divider_flags
, spinlock_t
*lock
)
562 return _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
563 width
, clk_divider_flags
, NULL
, lock
);
565 EXPORT_SYMBOL_GPL(clk_hw_register_divider
);
568 * clk_register_divider_table - register a table based divider clock with
569 * the clock framework
570 * @dev: device registering this clock
571 * @name: name of this clock
572 * @parent_name: name of clock's parent
573 * @flags: framework-specific flags
574 * @reg: register address to adjust divider
575 * @shift: number of bits to shift the bitfield
576 * @width: width of the bitfield
577 * @clk_divider_flags: divider-specific flags for this clock
578 * @table: array of divider/value pairs ending with a div set to 0
579 * @lock: shared register lock for this clock
581 struct clk
*clk_register_divider_table(struct device
*dev
, const char *name
,
582 const char *parent_name
, unsigned long flags
,
583 void __iomem
*reg
, u8 shift
, u8 width
,
584 u8 clk_divider_flags
, const struct clk_div_table
*table
,
589 hw
= _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
590 width
, clk_divider_flags
, table
, lock
);
595 EXPORT_SYMBOL_GPL(clk_register_divider_table
);
598 * clk_hw_register_divider_table - register a table based divider clock with
599 * the clock framework
600 * @dev: device registering this clock
601 * @name: name of this clock
602 * @parent_name: name of clock's parent
603 * @flags: framework-specific flags
604 * @reg: register address to adjust divider
605 * @shift: number of bits to shift the bitfield
606 * @width: width of the bitfield
607 * @clk_divider_flags: divider-specific flags for this clock
608 * @table: array of divider/value pairs ending with a div set to 0
609 * @lock: shared register lock for this clock
611 struct clk_hw
*clk_hw_register_divider_table(struct device
*dev
,
612 const char *name
, const char *parent_name
, unsigned long flags
,
613 void __iomem
*reg
, u8 shift
, u8 width
,
614 u8 clk_divider_flags
, const struct clk_div_table
*table
,
617 return _register_divider(dev
, name
, parent_name
, flags
, reg
, shift
,
618 width
, clk_divider_flags
, table
, lock
);
620 EXPORT_SYMBOL_GPL(clk_hw_register_divider_table
);
622 void clk_unregister_divider(struct clk
*clk
)
624 struct clk_divider
*div
;
627 hw
= __clk_get_hw(clk
);
631 div
= to_clk_divider(hw
);
636 EXPORT_SYMBOL_GPL(clk_unregister_divider
);
639 * clk_hw_unregister_divider - unregister a clk divider
640 * @hw: hardware-specific clock data to unregister
642 void clk_hw_unregister_divider(struct clk_hw
*hw
)
644 struct clk_divider
*div
;
646 div
= to_clk_divider(hw
);
648 clk_hw_unregister(hw
);
651 EXPORT_SYMBOL_GPL(clk_hw_unregister_divider
);