2 * SuperH clock framework
4 * Copyright (C) 2005 - 2010 Paul Mundt
6 * This clock framework is derived from the OMAP version by:
8 * Copyright (C) 2004 - 2008 Nokia Corporation
9 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
11 * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com>
13 * This file is subject to the terms and conditions of the GNU General Public
14 * License. See the file "COPYING" in the main directory of this archive
17 #define pr_fmt(fmt) "clock: " fmt
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/mutex.h>
23 #include <linux/list.h>
24 #include <linux/syscore_ops.h>
25 #include <linux/seq_file.h>
26 #include <linux/err.h>
28 #include <linux/cpufreq.h>
29 #include <linux/clk.h>
30 #include <linux/sh_clk.h>
32 static LIST_HEAD(clock_list
);
33 static DEFINE_SPINLOCK(clock_lock
);
34 static DEFINE_MUTEX(clock_list_sem
);
36 /* clock disable operations are not passed on to hardware during boot */
37 static int allow_disable
;
39 void clk_rate_table_build(struct clk
*clk
,
40 struct cpufreq_frequency_table
*freq_table
,
42 struct clk_div_mult_table
*src_table
,
43 unsigned long *bitmap
)
45 unsigned long mult
, div
;
49 clk
->nr_freqs
= nr_freqs
;
51 for (i
= 0; i
< nr_freqs
; i
++) {
55 if (src_table
->divisors
&& i
< src_table
->nr_divisors
)
56 div
= src_table
->divisors
[i
];
58 if (src_table
->multipliers
&& i
< src_table
->nr_multipliers
)
59 mult
= src_table
->multipliers
[i
];
61 if (!div
|| !mult
|| (bitmap
&& !test_bit(i
, bitmap
)))
62 freq
= CPUFREQ_ENTRY_INVALID
;
64 freq
= clk
->parent
->rate
* mult
/ div
;
66 freq_table
[i
].driver_data
= i
;
67 freq_table
[i
].frequency
= freq
;
70 /* Termination entry */
71 freq_table
[i
].driver_data
= i
;
72 freq_table
[i
].frequency
= CPUFREQ_TABLE_END
;
75 struct clk_rate_round_data
;
77 struct clk_rate_round_data
{
79 unsigned int min
, max
;
80 long (*func
)(unsigned int, struct clk_rate_round_data
*);
84 #define for_each_frequency(pos, r, freq) \
85 for (pos = r->min, freq = r->func(pos, r); \
86 pos <= r->max; pos++, freq = r->func(pos, r)) \
87 if (unlikely(freq == 0)) \
91 static long clk_rate_round_helper(struct clk_rate_round_data
*rounder
)
93 unsigned long rate_error
, rate_error_prev
= ~0UL;
94 unsigned long highest
, lowest
, freq
;
95 long rate_best_fit
= -ENOENT
;
101 for_each_frequency(i
, rounder
, freq
) {
107 rate_error
= abs(freq
- rounder
->rate
);
108 if (rate_error
< rate_error_prev
) {
109 rate_best_fit
= freq
;
110 rate_error_prev
= rate_error
;
117 if (rounder
->rate
>= highest
)
118 rate_best_fit
= highest
;
119 if (rounder
->rate
<= lowest
)
120 rate_best_fit
= lowest
;
122 return rate_best_fit
;
125 static long clk_rate_table_iter(unsigned int pos
,
126 struct clk_rate_round_data
*rounder
)
128 struct cpufreq_frequency_table
*freq_table
= rounder
->arg
;
129 unsigned long freq
= freq_table
[pos
].frequency
;
131 if (freq
== CPUFREQ_ENTRY_INVALID
)
137 long clk_rate_table_round(struct clk
*clk
,
138 struct cpufreq_frequency_table
*freq_table
,
141 struct clk_rate_round_data table_round
= {
143 .max
= clk
->nr_freqs
- 1,
144 .func
= clk_rate_table_iter
,
149 if (clk
->nr_freqs
< 1)
152 return clk_rate_round_helper(&table_round
);
155 static long clk_rate_div_range_iter(unsigned int pos
,
156 struct clk_rate_round_data
*rounder
)
158 return clk_get_rate(rounder
->arg
) / pos
;
161 long clk_rate_div_range_round(struct clk
*clk
, unsigned int div_min
,
162 unsigned int div_max
, unsigned long rate
)
164 struct clk_rate_round_data div_range_round
= {
167 .func
= clk_rate_div_range_iter
,
168 .arg
= clk_get_parent(clk
),
172 return clk_rate_round_helper(&div_range_round
);
175 static long clk_rate_mult_range_iter(unsigned int pos
,
176 struct clk_rate_round_data
*rounder
)
178 return clk_get_rate(rounder
->arg
) * pos
;
181 long clk_rate_mult_range_round(struct clk
*clk
, unsigned int mult_min
,
182 unsigned int mult_max
, unsigned long rate
)
184 struct clk_rate_round_data mult_range_round
= {
187 .func
= clk_rate_mult_range_iter
,
188 .arg
= clk_get_parent(clk
),
192 return clk_rate_round_helper(&mult_range_round
);
195 int clk_rate_table_find(struct clk
*clk
,
196 struct cpufreq_frequency_table
*freq_table
,
199 struct cpufreq_frequency_table
*pos
;
202 cpufreq_for_each_valid_entry_idx(pos
, freq_table
, idx
)
203 if (pos
->frequency
== rate
)
209 /* Used for clocks that always have same value as the parent clock */
210 unsigned long followparent_recalc(struct clk
*clk
)
212 return clk
->parent
? clk
->parent
->rate
: 0;
215 int clk_reparent(struct clk
*child
, struct clk
*parent
)
217 list_del_init(&child
->sibling
);
219 list_add(&child
->sibling
, &parent
->children
);
220 child
->parent
= parent
;
225 /* Propagate rate to children */
226 void propagate_rate(struct clk
*tclk
)
230 list_for_each_entry(clkp
, &tclk
->children
, sibling
) {
231 if (clkp
->ops
&& clkp
->ops
->recalc
)
232 clkp
->rate
= clkp
->ops
->recalc(clkp
);
234 propagate_rate(clkp
);
238 static void __clk_disable(struct clk
*clk
)
240 if (WARN(!clk
->usecount
, "Trying to disable clock %p with 0 usecount\n",
244 if (!(--clk
->usecount
)) {
245 if (likely(allow_disable
&& clk
->ops
&& clk
->ops
->disable
))
246 clk
->ops
->disable(clk
);
247 if (likely(clk
->parent
))
248 __clk_disable(clk
->parent
);
252 void clk_disable(struct clk
*clk
)
259 spin_lock_irqsave(&clock_lock
, flags
);
261 spin_unlock_irqrestore(&clock_lock
, flags
);
263 EXPORT_SYMBOL_GPL(clk_disable
);
265 static int __clk_enable(struct clk
*clk
)
269 if (clk
->usecount
++ == 0) {
271 ret
= __clk_enable(clk
->parent
);
276 if (clk
->ops
&& clk
->ops
->enable
) {
277 ret
= clk
->ops
->enable(clk
);
280 __clk_disable(clk
->parent
);
292 int clk_enable(struct clk
*clk
)
300 spin_lock_irqsave(&clock_lock
, flags
);
301 ret
= __clk_enable(clk
);
302 spin_unlock_irqrestore(&clock_lock
, flags
);
306 EXPORT_SYMBOL_GPL(clk_enable
);
308 static LIST_HEAD(root_clks
);
311 * recalculate_root_clocks - recalculate and propagate all root clocks
313 * Recalculates all root clocks (clocks with no parent), which if the
314 * clock's .recalc is set correctly, should also propagate their rates.
317 void recalculate_root_clocks(void)
321 list_for_each_entry(clkp
, &root_clks
, sibling
) {
322 if (clkp
->ops
&& clkp
->ops
->recalc
)
323 clkp
->rate
= clkp
->ops
->recalc(clkp
);
324 propagate_rate(clkp
);
328 static struct clk_mapping dummy_mapping
;
330 static struct clk
*lookup_root_clock(struct clk
*clk
)
338 static int clk_establish_mapping(struct clk
*clk
)
340 struct clk_mapping
*mapping
= clk
->mapping
;
343 * Propagate mappings.
349 * dummy mapping for root clocks with no specified ranges
352 clk
->mapping
= &dummy_mapping
;
357 * If we're on a child clock and it provides no mapping of its
358 * own, inherit the mapping from its root clock.
360 clkp
= lookup_root_clock(clk
);
361 mapping
= clkp
->mapping
;
366 * Establish initial mapping.
368 if (!mapping
->base
&& mapping
->phys
) {
369 kref_init(&mapping
->ref
);
371 mapping
->base
= ioremap(mapping
->phys
, mapping
->len
);
372 if (unlikely(!mapping
->base
))
374 } else if (mapping
->base
) {
376 * Bump the refcount for an existing mapping
378 kref_get(&mapping
->ref
);
381 clk
->mapping
= mapping
;
383 clk
->mapped_reg
= clk
->mapping
->base
;
384 clk
->mapped_reg
+= (phys_addr_t
)clk
->enable_reg
- clk
->mapping
->phys
;
388 static void clk_destroy_mapping(struct kref
*kref
)
390 struct clk_mapping
*mapping
;
392 mapping
= container_of(kref
, struct clk_mapping
, ref
);
394 iounmap(mapping
->base
);
397 static void clk_teardown_mapping(struct clk
*clk
)
399 struct clk_mapping
*mapping
= clk
->mapping
;
402 if (mapping
== &dummy_mapping
)
405 kref_put(&mapping
->ref
, clk_destroy_mapping
);
408 clk
->mapped_reg
= NULL
;
411 int clk_register(struct clk
*clk
)
415 if (IS_ERR_OR_NULL(clk
))
419 * trap out already registered clocks
421 if (clk
->node
.next
|| clk
->node
.prev
)
424 mutex_lock(&clock_list_sem
);
426 INIT_LIST_HEAD(&clk
->children
);
429 ret
= clk_establish_mapping(clk
);
434 list_add(&clk
->sibling
, &clk
->parent
->children
);
436 list_add(&clk
->sibling
, &root_clks
);
438 list_add(&clk
->node
, &clock_list
);
440 #ifdef CONFIG_SH_CLK_CPG_LEGACY
441 if (clk
->ops
&& clk
->ops
->init
)
446 mutex_unlock(&clock_list_sem
);
450 EXPORT_SYMBOL_GPL(clk_register
);
452 void clk_unregister(struct clk
*clk
)
454 mutex_lock(&clock_list_sem
);
455 list_del(&clk
->sibling
);
456 list_del(&clk
->node
);
457 clk_teardown_mapping(clk
);
458 mutex_unlock(&clock_list_sem
);
460 EXPORT_SYMBOL_GPL(clk_unregister
);
462 void clk_enable_init_clocks(void)
466 list_for_each_entry(clkp
, &clock_list
, node
)
467 if (clkp
->flags
& CLK_ENABLE_ON_INIT
)
471 unsigned long clk_get_rate(struct clk
*clk
)
478 EXPORT_SYMBOL_GPL(clk_get_rate
);
480 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
482 int ret
= -EOPNOTSUPP
;
488 spin_lock_irqsave(&clock_lock
, flags
);
490 if (likely(clk
->ops
&& clk
->ops
->set_rate
)) {
491 ret
= clk
->ops
->set_rate(clk
, rate
);
499 if (clk
->ops
&& clk
->ops
->recalc
)
500 clk
->rate
= clk
->ops
->recalc(clk
);
505 spin_unlock_irqrestore(&clock_lock
, flags
);
509 EXPORT_SYMBOL_GPL(clk_set_rate
);
511 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
518 if (clk
->parent
== parent
)
521 spin_lock_irqsave(&clock_lock
, flags
);
522 if (clk
->usecount
== 0) {
523 if (clk
->ops
->set_parent
)
524 ret
= clk
->ops
->set_parent(clk
, parent
);
526 ret
= clk_reparent(clk
, parent
);
529 if (clk
->ops
->recalc
)
530 clk
->rate
= clk
->ops
->recalc(clk
);
531 pr_debug("set parent of %p to %p (new rate %ld)\n",
532 clk
, clk
->parent
, clk
->rate
);
537 spin_unlock_irqrestore(&clock_lock
, flags
);
541 EXPORT_SYMBOL_GPL(clk_set_parent
);
543 struct clk
*clk_get_parent(struct clk
*clk
)
550 EXPORT_SYMBOL_GPL(clk_get_parent
);
552 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
557 if (likely(clk
->ops
&& clk
->ops
->round_rate
)) {
558 unsigned long flags
, rounded
;
560 spin_lock_irqsave(&clock_lock
, flags
);
561 rounded
= clk
->ops
->round_rate(clk
, rate
);
562 spin_unlock_irqrestore(&clock_lock
, flags
);
567 return clk_get_rate(clk
);
569 EXPORT_SYMBOL_GPL(clk_round_rate
);
572 static void clks_core_resume(void)
576 list_for_each_entry(clkp
, &clock_list
, node
) {
577 if (likely(clkp
->usecount
&& clkp
->ops
)) {
578 unsigned long rate
= clkp
->rate
;
580 if (likely(clkp
->ops
->set_parent
))
581 clkp
->ops
->set_parent(clkp
,
583 if (likely(clkp
->ops
->set_rate
))
584 clkp
->ops
->set_rate(clkp
, rate
);
585 else if (likely(clkp
->ops
->recalc
))
586 clkp
->rate
= clkp
->ops
->recalc(clkp
);
591 static struct syscore_ops clks_syscore_ops
= {
592 .resume
= clks_core_resume
,
595 static int __init
clk_syscore_init(void)
597 register_syscore_ops(&clks_syscore_ops
);
601 subsys_initcall(clk_syscore_init
);
604 static int __init
clk_late_init(void)
609 /* disable all clocks with zero use count */
610 mutex_lock(&clock_list_sem
);
611 spin_lock_irqsave(&clock_lock
, flags
);
613 list_for_each_entry(clk
, &clock_list
, node
)
614 if (!clk
->usecount
&& clk
->ops
&& clk
->ops
->disable
)
615 clk
->ops
->disable(clk
);
617 /* from now on allow clock disable operations */
620 spin_unlock_irqrestore(&clock_lock
, flags
);
621 mutex_unlock(&clock_list_sem
);
624 late_initcall(clk_late_init
);