sh: SH7722 clock framework support.
[deliverable/linux.git] / arch / sh / kernel / cpu / clock.c
1 /*
2 * arch/sh/kernel/cpu/clock.c - SuperH clock framework
3 *
4 * Copyright (C) 2005, 2006 Paul Mundt
5 *
6 * This clock framework is derived from the OMAP version by:
7 *
8 * Copyright (C) 2004 - 2005 Nokia Corporation
9 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
10 *
11 * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com>
12 *
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
15 * for more details.
16 */
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/mutex.h>
21 #include <linux/list.h>
22 #include <linux/kref.h>
23 #include <linux/seq_file.h>
24 #include <linux/err.h>
25 #include <linux/platform_device.h>
26 #include <asm/clock.h>
27 #include <asm/timer.h>
28
29 static LIST_HEAD(clock_list);
30 static DEFINE_SPINLOCK(clock_lock);
31 static DEFINE_MUTEX(clock_list_sem);
32
33 /*
34 * Each subtype is expected to define the init routines for these clocks,
35 * as each subtype (or processor family) will have these clocks at the
36 * very least. These are all provided through the CPG, which even some of
37 * the more quirky parts (such as ST40, SH4-202, etc.) still have.
38 *
39 * The processor-specific code is expected to register any additional
40 * clock sources that are of interest.
41 */
42 static struct clk master_clk = {
43 .name = "master_clk",
44 .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES,
45 .rate = CONFIG_SH_PCLK_FREQ,
46 };
47
48 static struct clk module_clk = {
49 .name = "module_clk",
50 .parent = &master_clk,
51 .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES,
52 };
53
54 static struct clk bus_clk = {
55 .name = "bus_clk",
56 .parent = &master_clk,
57 .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES,
58 };
59
60 static struct clk cpu_clk = {
61 .name = "cpu_clk",
62 .parent = &master_clk,
63 .flags = CLK_ALWAYS_ENABLED,
64 };
65
66 /*
67 * The ordering of these clocks matters, do not change it.
68 */
69 static struct clk *onchip_clocks[] = {
70 &master_clk,
71 &module_clk,
72 &bus_clk,
73 &cpu_clk,
74 };
75
76 static void propagate_rate(struct clk *clk)
77 {
78 struct clk *clkp;
79
80 list_for_each_entry(clkp, &clock_list, node) {
81 if (likely(clkp->parent != clk))
82 continue;
83 if (likely(clkp->ops && clkp->ops->recalc))
84 clkp->ops->recalc(clkp);
85 }
86 }
87
88 int __clk_enable(struct clk *clk)
89 {
90 /*
91 * See if this is the first time we're enabling the clock, some
92 * clocks that are always enabled still require "special"
93 * initialization. This is especially true if the clock mode
94 * changes and the clock needs to hunt for the proper set of
95 * divisors to use before it can effectively recalc.
96 */
97 if (unlikely(atomic_read(&clk->kref.refcount) == 1))
98 if (clk->ops && clk->ops->init)
99 clk->ops->init(clk);
100
101 kref_get(&clk->kref);
102
103 if (clk->flags & CLK_ALWAYS_ENABLED)
104 return 0;
105
106 if (likely(clk->ops && clk->ops->enable))
107 clk->ops->enable(clk);
108
109 return 0;
110 }
111
112 int clk_enable(struct clk *clk)
113 {
114 unsigned long flags;
115 int ret;
116
117 spin_lock_irqsave(&clock_lock, flags);
118 ret = __clk_enable(clk);
119 spin_unlock_irqrestore(&clock_lock, flags);
120
121 return ret;
122 }
123
124 static void clk_kref_release(struct kref *kref)
125 {
126 /* Nothing to do */
127 }
128
129 void __clk_disable(struct clk *clk)
130 {
131 int count = kref_put(&clk->kref, clk_kref_release);
132
133 if (clk->flags & CLK_ALWAYS_ENABLED)
134 return;
135
136 if (!count) { /* count reaches zero, disable the clock */
137 if (likely(clk->ops && clk->ops->disable))
138 clk->ops->disable(clk);
139 }
140 }
141
142 void clk_disable(struct clk *clk)
143 {
144 unsigned long flags;
145
146 spin_lock_irqsave(&clock_lock, flags);
147 __clk_disable(clk);
148 spin_unlock_irqrestore(&clock_lock, flags);
149 }
150
151 int clk_register(struct clk *clk)
152 {
153 mutex_lock(&clock_list_sem);
154
155 list_add(&clk->node, &clock_list);
156 kref_init(&clk->kref);
157
158 mutex_unlock(&clock_list_sem);
159
160 if (clk->flags & CLK_ALWAYS_ENABLED) {
161 pr_debug( "Clock '%s' is ALWAYS_ENABLED\n", clk->name);
162 if (clk->ops && clk->ops->init)
163 clk->ops->init(clk);
164 if (clk->ops && clk->ops->enable)
165 clk->ops->enable(clk);
166 pr_debug( "Enabled.");
167 }
168
169 return 0;
170 }
171
172 void clk_unregister(struct clk *clk)
173 {
174 mutex_lock(&clock_list_sem);
175 list_del(&clk->node);
176 mutex_unlock(&clock_list_sem);
177 }
178
179 inline unsigned long clk_get_rate(struct clk *clk)
180 {
181 return clk->rate;
182 }
183
184 int clk_set_rate(struct clk *clk, unsigned long rate)
185 {
186 return clk_set_rate_ex(clk, rate, 0);
187 }
188
189 int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id)
190 {
191 int ret = -EOPNOTSUPP;
192
193 if (likely(clk->ops && clk->ops->set_rate)) {
194 unsigned long flags;
195
196 spin_lock_irqsave(&clock_lock, flags);
197 ret = clk->ops->set_rate(clk, rate, algo_id);
198 spin_unlock_irqrestore(&clock_lock, flags);
199 }
200
201 if (unlikely(clk->flags & CLK_RATE_PROPAGATES))
202 propagate_rate(clk);
203
204 return ret;
205 }
206
207 void clk_recalc_rate(struct clk *clk)
208 {
209 if (likely(clk->ops && clk->ops->recalc)) {
210 unsigned long flags;
211
212 spin_lock_irqsave(&clock_lock, flags);
213 clk->ops->recalc(clk);
214 spin_unlock_irqrestore(&clock_lock, flags);
215 }
216
217 if (unlikely(clk->flags & CLK_RATE_PROPAGATES))
218 propagate_rate(clk);
219 }
220
221 /*
222 * Returns a clock. Note that we first try to use device id on the bus
223 * and clock name. If this fails, we try to use clock name only.
224 */
225 struct clk *clk_get(struct device *dev, const char *id)
226 {
227 struct clk *p, *clk = ERR_PTR(-ENOENT);
228 int idno;
229
230 if (dev == NULL || dev->bus != &platform_bus_type)
231 idno = -1;
232 else
233 idno = to_platform_device(dev)->id;
234
235 mutex_lock(&clock_list_sem);
236 list_for_each_entry(p, &clock_list, node) {
237 if (p->id == idno &&
238 strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
239 clk = p;
240 goto found;
241 }
242 }
243
244 list_for_each_entry(p, &clock_list, node) {
245 if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
246 clk = p;
247 break;
248 }
249 }
250
251 found:
252 mutex_unlock(&clock_list_sem);
253
254 return clk;
255 }
256
257 void clk_put(struct clk *clk)
258 {
259 if (clk && !IS_ERR(clk))
260 module_put(clk->owner);
261 }
262
263 void __init __attribute__ ((weak))
264 arch_init_clk_ops(struct clk_ops **ops, int type)
265 {
266 }
267
268 int __init clk_init(void)
269 {
270 int i, ret = 0;
271
272 BUG_ON(!master_clk.rate);
273
274 for (i = 0; i < ARRAY_SIZE(onchip_clocks); i++) {
275 struct clk *clk = onchip_clocks[i];
276
277 arch_init_clk_ops(&clk->ops, i);
278 ret |= clk_register(clk);
279 }
280
281 /* Kick the child clocks.. */
282 propagate_rate(&master_clk);
283 propagate_rate(&bus_clk);
284
285 return ret;
286 }
287
288 int show_clocks(struct seq_file *m)
289 {
290 struct clk *clk;
291
292 list_for_each_entry_reverse(clk, &clock_list, node) {
293 unsigned long rate = clk_get_rate(clk);
294
295 /*
296 * Don't bother listing dummy clocks with no ancestry
297 * that only support enable and disable ops.
298 */
299 if (unlikely(!rate && !clk->parent))
300 continue;
301
302 seq_printf(m, "%-12s\t: %ld.%02ldMHz\n", clk->name,
303 rate / 1000000, (rate % 1000000) / 10000);
304 }
305
306 return 0;
307 }
308
309 EXPORT_SYMBOL_GPL(clk_register);
310 EXPORT_SYMBOL_GPL(clk_unregister);
311 EXPORT_SYMBOL_GPL(clk_get);
312 EXPORT_SYMBOL_GPL(clk_put);
313 EXPORT_SYMBOL_GPL(clk_enable);
314 EXPORT_SYMBOL_GPL(clk_disable);
315 EXPORT_SYMBOL_GPL(__clk_enable);
316 EXPORT_SYMBOL_GPL(__clk_disable);
317 EXPORT_SYMBOL_GPL(clk_get_rate);
318 EXPORT_SYMBOL_GPL(clk_set_rate);
319 EXPORT_SYMBOL_GPL(clk_recalc_rate);
320 EXPORT_SYMBOL_GPL(clk_set_rate_ex);
This page took 0.048735 seconds and 5 git commands to generate.