blob: 5272a2212abd60a75a7b9326f662ebf7bbba8a15 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tony Lindgrenb9158552005-07-10 19:58:14 +01002 * linux/arch/arm/plat-omap/clock.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +03004 * Copyright (C) 2004 - 2008 Nokia corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
6 *
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00007 * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000014#include <linux/init.h>
15#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/list.h>
17#include <linux/errno.h>
18#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/string.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000020#include <linux/clk.h>
Arjan van de Ven00431702006-01-12 18:42:23 +000021#include <linux/mutex.h>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010022#include <linux/platform_device.h>
Russell Kingb851cb22008-05-22 16:38:50 +010023#include <linux/cpufreq.h>
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +030024#include <linux/debugfs.h>
Russell Kingfced80c2008-09-06 12:10:45 +010025#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/clock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Juha Yrjola7df34502006-06-26 16:16:22 -070029static LIST_HEAD(clocks);
Arjan van de Ven00431702006-01-12 18:42:23 +000030static DEFINE_MUTEX(clocks_mutex);
Juha Yrjola7df34502006-06-26 16:16:22 -070031static DEFINE_SPINLOCK(clockfw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000033static struct clk_functions *arch_clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000035/*-------------------------------------------------------------------------
Tony Lindgrenf07adc52006-01-17 15:27:09 -080036 * Standard clock functions defined in include/linux/clk.h
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000037 *-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000039int clk_enable(struct clk *clk)
40{
41 unsigned long flags;
42 int ret = 0;
43
Tony Lindgrenb824efa2006-04-02 17:46:20 +010044 if (clk == NULL || IS_ERR(clk))
45 return -EINVAL;
46
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000047 spin_lock_irqsave(&clockfw_lock, flags);
Tony Lindgrenf07adc52006-01-17 15:27:09 -080048 if (arch_clock->clk_enable)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000049 ret = arch_clock->clk_enable(clk);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000050 spin_unlock_irqrestore(&clockfw_lock, flags);
51
52 return ret;
53}
54EXPORT_SYMBOL(clk_enable);
55
56void clk_disable(struct clk *clk)
57{
58 unsigned long flags;
59
Tony Lindgrenb824efa2006-04-02 17:46:20 +010060 if (clk == NULL || IS_ERR(clk))
61 return;
62
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000063 spin_lock_irqsave(&clockfw_lock, flags);
Tony Lindgren7cf95772007-08-07 05:20:00 -070064 if (clk->usecount == 0) {
65 printk(KERN_ERR "Trying disable clock %s with 0 usecount\n",
66 clk->name);
67 WARN_ON(1);
68 goto out;
69 }
70
Tony Lindgrenf07adc52006-01-17 15:27:09 -080071 if (arch_clock->clk_disable)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000072 arch_clock->clk_disable(clk);
Tony Lindgren7cf95772007-08-07 05:20:00 -070073
74out:
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000075 spin_unlock_irqrestore(&clockfw_lock, flags);
76}
77EXPORT_SYMBOL(clk_disable);
78
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000079int clk_get_usecount(struct clk *clk)
80{
81 unsigned long flags;
82 int ret = 0;
83
Tony Lindgrenb824efa2006-04-02 17:46:20 +010084 if (clk == NULL || IS_ERR(clk))
85 return 0;
86
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000087 spin_lock_irqsave(&clockfw_lock, flags);
88 ret = clk->usecount;
89 spin_unlock_irqrestore(&clockfw_lock, flags);
90
91 return ret;
92}
93EXPORT_SYMBOL(clk_get_usecount);
94
95unsigned long clk_get_rate(struct clk *clk)
96{
97 unsigned long flags;
98 unsigned long ret = 0;
99
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100100 if (clk == NULL || IS_ERR(clk))
101 return 0;
102
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000103 spin_lock_irqsave(&clockfw_lock, flags);
104 ret = clk->rate;
105 spin_unlock_irqrestore(&clockfw_lock, flags);
106
107 return ret;
108}
109EXPORT_SYMBOL(clk_get_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000111/*-------------------------------------------------------------------------
Tony Lindgrenf07adc52006-01-17 15:27:09 -0800112 * Optional clock functions defined in include/linux/clk.h
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000113 *-------------------------------------------------------------------------*/
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115long clk_round_rate(struct clk *clk, unsigned long rate)
116{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000117 unsigned long flags;
118 long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100120 if (clk == NULL || IS_ERR(clk))
121 return ret;
122
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000123 spin_lock_irqsave(&clockfw_lock, flags);
124 if (arch_clock->clk_round_rate)
125 ret = arch_clock->clk_round_rate(clk, rate);
126 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000128 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130EXPORT_SYMBOL(clk_round_rate);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132int clk_set_rate(struct clk *clk, unsigned long rate)
133{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000134 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100135 int ret = -EINVAL;
136
137 if (clk == NULL || IS_ERR(clk))
138 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000140 spin_lock_irqsave(&clockfw_lock, flags);
141 if (arch_clock->clk_set_rate)
142 ret = arch_clock->clk_set_rate(clk, rate);
Russell Kingc6af4502008-11-13 13:01:32 +0000143 if (ret == 0 && (clk->flags & RATE_PROPAGATES))
144 propagate_rate(clk);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000145 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 return ret;
148}
149EXPORT_SYMBOL(clk_set_rate);
150
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000151int clk_set_parent(struct clk *clk, struct clk *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000153 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100154 int ret = -EINVAL;
155
156 if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent))
157 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000159 spin_lock_irqsave(&clockfw_lock, flags);
160 if (arch_clock->clk_set_parent)
Russell Kingc6af4502008-11-13 13:01:32 +0000161 ret = arch_clock->clk_set_parent(clk, parent);
162 if (ret == 0 && (clk->flags & RATE_PROPAGATES))
163 propagate_rate(clk);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000164 spin_unlock_irqrestore(&clockfw_lock, flags);
165
166 return ret;
167}
168EXPORT_SYMBOL(clk_set_parent);
169
170struct clk *clk_get_parent(struct clk *clk)
171{
Russell King2e777bf2009-02-08 17:49:22 +0000172 return clk->parent;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000173}
174EXPORT_SYMBOL(clk_get_parent);
175
176/*-------------------------------------------------------------------------
177 * OMAP specific clock functions shared between omap1 and omap2
178 *-------------------------------------------------------------------------*/
179
180unsigned int __initdata mpurate;
181
182/*
183 * By default we use the rate set by the bootloader.
184 * You can override this with mpurate= cmdline option.
185 */
186static int __init omap_clk_setup(char *str)
187{
188 get_option(&str, &mpurate);
189
190 if (!mpurate)
191 return 1;
192
193 if (mpurate < 1000)
194 mpurate *= 1000000;
195
196 return 1;
197}
198__setup("mpurate=", omap_clk_setup);
199
200/* Used for clocks that always have same value as the parent clock */
201void followparent_recalc(struct clk *clk)
202{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100203 if (clk == NULL || IS_ERR(clk))
204 return;
205
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000206 clk->rate = clk->parent->rate;
207}
208
209/* Propagate rate to children */
210void propagate_rate(struct clk * tclk)
211{
212 struct clk *clkp;
213
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100214 if (tclk == NULL || IS_ERR(tclk))
215 return;
216
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000217 list_for_each_entry(clkp, &clocks, node) {
218 if (likely(clkp->parent != tclk))
219 continue;
Russell King9a5feda2008-11-13 13:44:15 +0000220 if (clkp->recalc)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000221 clkp->recalc(clkp);
Russell King9a5feda2008-11-13 13:44:15 +0000222 if (clkp->flags & RATE_PROPAGATES)
223 propagate_rate(clkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200227/**
228 * recalculate_root_clocks - recalculate and propagate all root clocks
229 *
230 * Recalculates all root clocks (clocks with no parent), which if the
231 * clock's .recalc is set correctly, should also propagate their rates.
232 * Called at init.
233 */
234void recalculate_root_clocks(void)
235{
236 struct clk *clkp;
237
238 list_for_each_entry(clkp, &clocks, node) {
Russell King9a5feda2008-11-13 13:44:15 +0000239 if (!clkp->parent) {
240 if (clkp->recalc)
241 clkp->recalc(clkp);
242 if (clkp->flags & RATE_PROPAGATES)
243 propagate_rate(clkp);
244 }
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200245 }
246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248int clk_register(struct clk *clk)
249{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100250 if (clk == NULL || IS_ERR(clk))
251 return -EINVAL;
252
Russell Kingdbb674d2009-01-22 16:08:04 +0000253 /*
254 * trap out already registered clocks
255 */
256 if (clk->node.next || clk->node.prev)
257 return 0;
258
Arjan van de Ven00431702006-01-12 18:42:23 +0000259 mutex_lock(&clocks_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 list_add(&clk->node, &clocks);
261 if (clk->init)
262 clk->init(clk);
Arjan van de Ven00431702006-01-12 18:42:23 +0000263 mutex_unlock(&clocks_mutex);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
266}
267EXPORT_SYMBOL(clk_register);
268
269void clk_unregister(struct clk *clk)
270{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100271 if (clk == NULL || IS_ERR(clk))
272 return;
273
Arjan van de Ven00431702006-01-12 18:42:23 +0000274 mutex_lock(&clocks_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 list_del(&clk->node);
Arjan van de Ven00431702006-01-12 18:42:23 +0000276 mutex_unlock(&clocks_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278EXPORT_SYMBOL(clk_unregister);
279
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200280void clk_enable_init_clocks(void)
281{
282 struct clk *clkp;
283
284 list_for_each_entry(clkp, &clocks, node) {
285 if (clkp->flags & ENABLE_ON_INIT)
286 clk_enable(clkp);
287 }
288}
289EXPORT_SYMBOL(clk_enable_init_clocks);
290
Russell King897dcde2008-11-04 16:35:03 +0000291/*
292 * Low level helpers
293 */
294static int clkll_enable_null(struct clk *clk)
295{
296 return 0;
297}
298
299static void clkll_disable_null(struct clk *clk)
300{
301}
302
303const struct clkops clkops_null = {
304 .enable = clkll_enable_null,
305 .disable = clkll_disable_null,
306};
307
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200308#ifdef CONFIG_CPU_FREQ
309void clk_init_cpufreq_table(struct cpufreq_frequency_table **table)
310{
311 unsigned long flags;
312
313 spin_lock_irqsave(&clockfw_lock, flags);
314 if (arch_clock->clk_init_cpufreq_table)
315 arch_clock->clk_init_cpufreq_table(table);
316 spin_unlock_irqrestore(&clockfw_lock, flags);
317}
318EXPORT_SYMBOL(clk_init_cpufreq_table);
319#endif
320
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000321/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300323#ifdef CONFIG_OMAP_RESET_CLOCKS
324/*
325 * Disable any unused clocks left on by the bootloader
326 */
327static int __init clk_disable_unused(void)
328{
329 struct clk *ck;
330 unsigned long flags;
331
332 list_for_each_entry(ck, &clocks, node) {
Russell King897dcde2008-11-04 16:35:03 +0000333 if (ck->ops == &clkops_null)
334 continue;
335
336 if (ck->usecount > 0 || ck->enable_reg == 0)
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300337 continue;
338
339 spin_lock_irqsave(&clockfw_lock, flags);
340 if (arch_clock->clk_disable_unused)
341 arch_clock->clk_disable_unused(ck);
342 spin_unlock_irqrestore(&clockfw_lock, flags);
343 }
344
345 return 0;
346}
347late_initcall(clk_disable_unused);
348#endif
349
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000350int __init clk_init(struct clk_functions * custom_clocks)
351{
352 if (!custom_clocks) {
353 printk(KERN_ERR "No custom clock functions registered\n");
354 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000357 arch_clock = custom_clocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 return 0;
360}
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200361
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300362#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
363/*
364 * debugfs support to trace clock tree hierarchy and attributes
365 */
366static struct dentry *clk_debugfs_root;
367
368static int clk_debugfs_register_one(struct clk *c)
369{
370 int err;
371 struct dentry *d, *child;
372 struct clk *pa = c->parent;
373 char s[255];
374 char *p = s;
375
376 p += sprintf(p, "%s", c->name);
377 if (c->id != 0)
378 sprintf(p, ":%d", c->id);
379 d = debugfs_create_dir(s, pa ? pa->dent : clk_debugfs_root);
Zhaoleie621f262008-11-04 13:35:07 -0800380 if (!d)
381 return -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300382 c->dent = d;
383
384 d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount);
Zhaoleie621f262008-11-04 13:35:07 -0800385 if (!d) {
386 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300387 goto err_out;
388 }
389 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
Zhaoleie621f262008-11-04 13:35:07 -0800390 if (!d) {
391 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300392 goto err_out;
393 }
394 d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags);
Zhaoleie621f262008-11-04 13:35:07 -0800395 if (!d) {
396 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300397 goto err_out;
398 }
399 return 0;
400
401err_out:
402 d = c->dent;
403 list_for_each_entry(child, &d->d_subdirs, d_u.d_child)
404 debugfs_remove(child);
405 debugfs_remove(c->dent);
406 return err;
407}
408
409static int clk_debugfs_register(struct clk *c)
410{
411 int err;
412 struct clk *pa = c->parent;
413
414 if (pa && !pa->dent) {
415 err = clk_debugfs_register(pa);
416 if (err)
417 return err;
418 }
419
420 if (!c->dent) {
421 err = clk_debugfs_register_one(c);
422 if (err)
423 return err;
424 }
425 return 0;
426}
427
428static int __init clk_debugfs_init(void)
429{
430 struct clk *c;
431 struct dentry *d;
432 int err;
433
434 d = debugfs_create_dir("clock", NULL);
Zhaoleie621f262008-11-04 13:35:07 -0800435 if (!d)
436 return -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300437 clk_debugfs_root = d;
438
439 list_for_each_entry(c, &clocks, node) {
440 err = clk_debugfs_register(c);
441 if (err)
442 goto err_out;
443 }
444 return 0;
445err_out:
446 debugfs_remove(clk_debugfs_root); /* REVISIT: Cleanup correctly */
447 return err;
448}
449late_initcall(clk_debugfs_init);
450
451#endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */