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/device.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
15 #include <linux/err.h>
16 #include <linux/string.h>
17 #include <linux/log2.h>
20 * DOC: basic adjustable divider clock that cannot gate
22 * Traits of this clock:
23 * prepare - clk_prepare only ensures that parents are prepared
24 * enable - clk_enable only ensures that parents are enabled
25 * rate - rate is adjustable. clk->rate = ceiling(parent->rate / divisor)
26 * parent - fixed parent. No clk_set_parent support
29 static inline u32
clk_div_readl(struct clk_divider
*divider
)
31 if (divider
->flags
& CLK_DIVIDER_BIG_ENDIAN
)
32 return ioread32be(divider
->reg
);
34 return readl(divider
->reg
);
37 static inline void clk_div_writel(struct clk_divider
*divider
, u32 val
)
39 if (divider
->flags
& CLK_DIVIDER_BIG_ENDIAN
)
40 iowrite32be(val
, divider
->reg
);
42 writel(val
, divider
->reg
);
45 static unsigned int _get_table_maxdiv(const struct clk_div_table
*table
,
48 unsigned int maxdiv
= 0, mask
= clk_div_mask(width
);
49 const struct clk_div_table
*clkt
;
51 for (clkt
= table
; clkt
->div
; clkt
++)
52 if (clkt
->div
> maxdiv
&& clkt
->val
<= mask
)
57 static unsigned int _get_table_mindiv(const struct clk_div_table
*table
)
59 unsigned int mindiv
= UINT_MAX
;
60 const struct clk_div_table
*clkt
;
62 for (clkt
= table
; clkt
->div
; clkt
++)
63 if (clkt
->div
< mindiv
)
68 static unsigned int _get_maxdiv(const struct clk_div_table
*table
, u8 width
,
71 if (flags
& CLK_DIVIDER_ONE_BASED
)
72 return clk_div_mask(width
);
73 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
74 return 1 << clk_div_mask(width
);
76 return _get_table_maxdiv(table
, width
);
77 return clk_div_mask(width
) + 1;
80 static unsigned int _get_table_div(const struct clk_div_table
*table
,
83 const struct clk_div_table
*clkt
;
85 for (clkt
= table
; clkt
->div
; clkt
++)
91 static unsigned int _get_div(const struct clk_div_table
*table
,
92 unsigned int val
, unsigned long flags
, u8 width
)
94 if (flags
& CLK_DIVIDER_ONE_BASED
)
96 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
98 if (flags
& CLK_DIVIDER_MAX_AT_ZERO
)
99 return val
? val
: clk_div_mask(width
) + 1;
101 return _get_table_div(table
, val
);
105 static unsigned int _get_table_val(const struct clk_div_table
*table
,
108 const struct clk_div_table
*clkt
;
110 for (clkt
= table
; clkt
->div
; clkt
++)
111 if (clkt
->div
== div
)
116 static unsigned int _get_val(const struct clk_div_table
*table
,
117 unsigned int div
, unsigned long flags
, u8 width
)
119 if (flags
& CLK_DIVIDER_ONE_BASED
)
121 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
123 if (flags
& CLK_DIVIDER_MAX_AT_ZERO
)
124 return (div
== clk_div_mask(width
) + 1) ? 0 : div
;
126 return _get_table_val(table
, div
);
130 unsigned long divider_recalc_rate(struct clk_hw
*hw
, unsigned long parent_rate
,
132 const struct clk_div_table
*table
,
133 unsigned long flags
, unsigned long width
)
137 div
= _get_div(table
, val
, flags
, width
);
139 WARN(!(flags
& CLK_DIVIDER_ALLOW_ZERO
),
140 "%s: Zero divisor and CLK_DIVIDER_ALLOW_ZERO not set\n",
141 clk_hw_get_name(hw
));
145 return DIV_ROUND_UP_ULL((u64
)parent_rate
, div
);
147 EXPORT_SYMBOL_GPL(divider_recalc_rate
);
149 static unsigned long clk_divider_recalc_rate(struct clk_hw
*hw
,
150 unsigned long parent_rate
)
152 struct clk_divider
*divider
= to_clk_divider(hw
);
155 val
= clk_div_readl(divider
) >> divider
->shift
;
156 val
&= clk_div_mask(divider
->width
);
158 return divider_recalc_rate(hw
, parent_rate
, val
, divider
->table
,
159 divider
->flags
, divider
->width
);
162 static bool _is_valid_table_div(const struct clk_div_table
*table
,
165 const struct clk_div_table
*clkt
;
167 for (clkt
= table
; clkt
->div
; clkt
++)
168 if (clkt
->div
== div
)
173 static bool _is_valid_div(const struct clk_div_table
*table
, unsigned int div
,
176 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
177 return is_power_of_2(div
);
179 return _is_valid_table_div(table
, div
);
183 static int _round_up_table(const struct clk_div_table
*table
, int div
)
185 const struct clk_div_table
*clkt
;
188 for (clkt
= table
; clkt
->div
; clkt
++) {
189 if (clkt
->div
== div
)
191 else if (clkt
->div
< div
)
194 if ((clkt
->div
- div
) < (up
- div
))
201 static int _round_down_table(const struct clk_div_table
*table
, int div
)
203 const struct clk_div_table
*clkt
;
204 int down
= _get_table_mindiv(table
);
206 for (clkt
= table
; clkt
->div
; clkt
++) {
207 if (clkt
->div
== div
)
209 else if (clkt
->div
> div
)
212 if ((div
- clkt
->div
) < (div
- down
))
219 static int _div_round_up(const struct clk_div_table
*table
,
220 unsigned long parent_rate
, unsigned long rate
,
223 int div
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
225 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
226 div
= __roundup_pow_of_two(div
);
228 div
= _round_up_table(table
, div
);
233 static int _div_round_closest(const struct clk_div_table
*table
,
234 unsigned long parent_rate
, unsigned long rate
,
238 unsigned long up_rate
, down_rate
;
240 up
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
241 down
= parent_rate
/ rate
;
243 if (flags
& CLK_DIVIDER_POWER_OF_TWO
) {
244 up
= __roundup_pow_of_two(up
);
245 down
= __rounddown_pow_of_two(down
);
247 up
= _round_up_table(table
, up
);
248 down
= _round_down_table(table
, down
);
251 up_rate
= DIV_ROUND_UP_ULL((u64
)parent_rate
, up
);
252 down_rate
= DIV_ROUND_UP_ULL((u64
)parent_rate
, down
);
254 return (rate
- up_rate
) <= (down_rate
- rate
) ? up
: down
;
257 static int _div_round(const struct clk_div_table
*table
,
258 unsigned long parent_rate
, unsigned long rate
,
261 if (flags
& CLK_DIVIDER_ROUND_CLOSEST
)
262 return _div_round_closest(table
, parent_rate
, rate
, flags
);
264 return _div_round_up(table
, parent_rate
, rate
, flags
);
267 static bool _is_best_div(unsigned long rate
, unsigned long now
,
268 unsigned long best
, unsigned long flags
)
270 if (flags
& CLK_DIVIDER_ROUND_CLOSEST
)
271 return abs(rate
- now
) < abs(rate
- best
);
273 return now
<= rate
&& now
> best
;
276 static int _next_div(const struct clk_div_table
*table
, int div
,
281 if (flags
& CLK_DIVIDER_POWER_OF_TWO
)
282 return __roundup_pow_of_two(div
);
284 return _round_up_table(table
, div
);
289 static int clk_divider_bestdiv(struct clk_hw
*hw
, struct clk_hw
*parent
,
291 unsigned long *best_parent_rate
,
292 const struct clk_div_table
*table
, u8 width
,
296 unsigned long parent_rate
, best
= 0, now
, maxdiv
;
297 unsigned long parent_rate_saved
= *best_parent_rate
;
302 maxdiv
= _get_maxdiv(table
, width
, flags
);
304 if (!(clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
)) {
305 parent_rate
= *best_parent_rate
;
306 bestdiv
= _div_round(table
, parent_rate
, rate
, flags
);
307 bestdiv
= bestdiv
== 0 ? 1 : bestdiv
;
308 bestdiv
= bestdiv
> maxdiv
? maxdiv
: bestdiv
;
313 * The maximum divider we can use without overflowing
314 * unsigned long in rate * i below
316 maxdiv
= min(ULONG_MAX
/ rate
, maxdiv
);
318 for (i
= _next_div(table
, 0, flags
); i
<= maxdiv
;
319 i
= _next_div(table
, i
, flags
)) {
320 if (rate
* i
== parent_rate_saved
) {
322 * It's the most ideal case if the requested rate can be
323 * divided from parent clock without needing to change
324 * parent rate, so return the divider immediately.
326 *best_parent_rate
= parent_rate_saved
;
329 parent_rate
= clk_hw_round_rate(parent
, rate
* i
);
330 now
= DIV_ROUND_UP_ULL((u64
)parent_rate
, i
);
331 if (_is_best_div(rate
, now
, best
, flags
)) {
334 *best_parent_rate
= parent_rate
;
339 bestdiv
= _get_maxdiv(table
, width
, flags
);
340 *best_parent_rate
= clk_hw_round_rate(parent
, 1);
346 long divider_round_rate_parent(struct clk_hw
*hw
, struct clk_hw
*parent
,
347 unsigned long rate
, unsigned long *prate
,
348 const struct clk_div_table
*table
,
349 u8 width
, unsigned long flags
)
353 div
= clk_divider_bestdiv(hw
, parent
, rate
, prate
, table
, width
, flags
);
355 return DIV_ROUND_UP_ULL((u64
)*prate
, div
);
357 EXPORT_SYMBOL_GPL(divider_round_rate_parent
);
359 long divider_ro_round_rate_parent(struct clk_hw
*hw
, struct clk_hw
*parent
,
360 unsigned long rate
, unsigned long *prate
,
361 const struct clk_div_table
*table
, u8 width
,
362 unsigned long flags
, unsigned int val
)
366 div
= _get_div(table
, val
, flags
, width
);
368 /* Even a read-only clock can propagate a rate change */
369 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
373 *prate
= clk_hw_round_rate(parent
, rate
* div
);
376 return DIV_ROUND_UP_ULL((u64
)*prate
, div
);
378 EXPORT_SYMBOL_GPL(divider_ro_round_rate_parent
);
381 static long clk_divider_round_rate(struct clk_hw
*hw
, unsigned long rate
,
382 unsigned long *prate
)
384 struct clk_divider
*divider
= to_clk_divider(hw
);
386 /* if read only, just return current value */
387 if (divider
->flags
& CLK_DIVIDER_READ_ONLY
) {
390 val
= clk_div_readl(divider
) >> divider
->shift
;
391 val
&= clk_div_mask(divider
->width
);
393 return divider_ro_round_rate(hw
, rate
, prate
, divider
->table
,
394 divider
->width
, divider
->flags
,
398 return divider_round_rate(hw
, rate
, prate
, divider
->table
,
399 divider
->width
, divider
->flags
);
402 int divider_get_val(unsigned long rate
, unsigned long parent_rate
,
403 const struct clk_div_table
*table
, u8 width
,
406 unsigned int div
, value
;
408 div
= DIV_ROUND_UP_ULL((u64
)parent_rate
, rate
);
410 if (!_is_valid_div(table
, div
, flags
))
413 value
= _get_val(table
, div
, flags
, width
);
415 return min_t(unsigned int, value
, clk_div_mask(width
));
417 EXPORT_SYMBOL_GPL(divider_get_val
);
419 static int clk_divider_set_rate(struct clk_hw
*hw
, unsigned long rate
,
420 unsigned long parent_rate
)
422 struct clk_divider
*divider
= to_clk_divider(hw
);
424 unsigned long flags
= 0;
427 value
= divider_get_val(rate
, parent_rate
, divider
->table
,
428 divider
->width
, divider
->flags
);
433 spin_lock_irqsave(divider
->lock
, flags
);
435 __acquire(divider
->lock
);
437 if (divider
->flags
& CLK_DIVIDER_HIWORD_MASK
) {
438 val
= clk_div_mask(divider
->width
) << (divider
->shift
+ 16);
440 val
= clk_div_readl(divider
);
441 val
&= ~(clk_div_mask(divider
->width
) << divider
->shift
);
443 val
|= (u32
)value
<< divider
->shift
;
444 clk_div_writel(divider
, val
);
447 spin_unlock_irqrestore(divider
->lock
, flags
);
449 __release(divider
->lock
);
454 const struct clk_ops clk_divider_ops
= {
455 .recalc_rate
= clk_divider_recalc_rate
,
456 .round_rate
= clk_divider_round_rate
,
457 .set_rate
= clk_divider_set_rate
,
459 EXPORT_SYMBOL_GPL(clk_divider_ops
);
461 const struct clk_ops clk_divider_ro_ops
= {
462 .recalc_rate
= clk_divider_recalc_rate
,
463 .round_rate
= clk_divider_round_rate
,
465 EXPORT_SYMBOL_GPL(clk_divider_ro_ops
);
467 struct clk_hw
*__clk_hw_register_divider(struct device
*dev
,
468 struct device_node
*np
, const char *name
,
469 const char *parent_name
, const struct clk_hw
*parent_hw
,
470 const struct clk_parent_data
*parent_data
, unsigned long flags
,
471 void __iomem
*reg
, u8 shift
, u8 width
, u8 clk_divider_flags
,
472 const struct clk_div_table
*table
, spinlock_t
*lock
)
474 struct clk_divider
*div
;
476 struct clk_init_data init
= {};
479 if (clk_divider_flags
& CLK_DIVIDER_HIWORD_MASK
) {
480 if (width
+ shift
> 16) {
481 pr_warn("divider value exceeds LOWORD field\n");
482 return ERR_PTR(-EINVAL
);
486 /* allocate the divider */
487 div
= kzalloc(sizeof(*div
), GFP_KERNEL
);
489 return ERR_PTR(-ENOMEM
);
492 if (clk_divider_flags
& CLK_DIVIDER_READ_ONLY
)
493 init
.ops
= &clk_divider_ro_ops
;
495 init
.ops
= &clk_divider_ops
;
497 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
498 init
.num_parents
= (parent_name
? 1 : 0);
500 /* struct clk_divider assignments */
504 div
->flags
= clk_divider_flags
;
506 div
->hw
.init
= &init
;
509 /* register the clock */
511 ret
= clk_hw_register(dev
, hw
);
519 EXPORT_SYMBOL_GPL(__clk_hw_register_divider
);
522 * clk_register_divider_table - register a table based divider clock with
523 * the clock framework
524 * @dev: device registering this clock
525 * @name: name of this clock
526 * @parent_name: name of clock's parent
527 * @flags: framework-specific flags
528 * @reg: register address to adjust divider
529 * @shift: number of bits to shift the bitfield
530 * @width: width of the bitfield
531 * @clk_divider_flags: divider-specific flags for this clock
532 * @table: array of divider/value pairs ending with a div set to 0
533 * @lock: shared register lock for this clock
535 struct clk
*clk_register_divider_table(struct device
*dev
, const char *name
,
536 const char *parent_name
, unsigned long flags
,
537 void __iomem
*reg
, u8 shift
, u8 width
,
538 u8 clk_divider_flags
, const struct clk_div_table
*table
,
543 hw
= __clk_hw_register_divider(dev
, NULL
, name
, parent_name
, NULL
,
544 NULL
, flags
, reg
, shift
, width
, clk_divider_flags
,
550 EXPORT_SYMBOL_GPL(clk_register_divider_table
);
552 void clk_unregister_divider(struct clk
*clk
)
554 struct clk_divider
*div
;
557 hw
= __clk_get_hw(clk
);
561 div
= to_clk_divider(hw
);
566 EXPORT_SYMBOL_GPL(clk_unregister_divider
);
569 * clk_hw_unregister_divider - unregister a clk divider
570 * @hw: hardware-specific clock data to unregister
572 void clk_hw_unregister_divider(struct clk_hw
*hw
)
574 struct clk_divider
*div
;
576 div
= to_clk_divider(hw
);
578 clk_hw_unregister(hw
);
581 EXPORT_SYMBOL_GPL(clk_hw_unregister_divider
);
583 static void devm_clk_hw_release_divider(struct device
*dev
, void *res
)
585 clk_hw_unregister_divider(*(struct clk_hw
**)res
);
588 struct clk_hw
*__devm_clk_hw_register_divider(struct device
*dev
,
589 struct device_node
*np
, const char *name
,
590 const char *parent_name
, const struct clk_hw
*parent_hw
,
591 const struct clk_parent_data
*parent_data
, unsigned long flags
,
592 void __iomem
*reg
, u8 shift
, u8 width
, u8 clk_divider_flags
,
593 const struct clk_div_table
*table
, spinlock_t
*lock
)
595 struct clk_hw
**ptr
, *hw
;
597 ptr
= devres_alloc(devm_clk_hw_release_divider
, sizeof(*ptr
), GFP_KERNEL
);
599 return ERR_PTR(-ENOMEM
);
601 hw
= __clk_hw_register_divider(dev
, np
, name
, parent_name
, parent_hw
,
602 parent_data
, flags
, reg
, shift
, width
,
603 clk_divider_flags
, table
, lock
);
607 devres_add(dev
, ptr
);
614 EXPORT_SYMBOL_GPL(__devm_clk_hw_register_divider
);