blob: 29efc279287acb0dd286883d29707cb2ac4e2315 [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 +000079unsigned long clk_get_rate(struct clk *clk)
80{
81 unsigned long flags;
82 unsigned long 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->rate;
89 spin_unlock_irqrestore(&clockfw_lock, flags);
90
91 return ret;
92}
93EXPORT_SYMBOL(clk_get_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000095/*-------------------------------------------------------------------------
Tony Lindgrenf07adc52006-01-17 15:27:09 -080096 * Optional clock functions defined in include/linux/clk.h
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000097 *-------------------------------------------------------------------------*/
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +010098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099long clk_round_rate(struct clk *clk, unsigned long rate)
100{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000101 unsigned long flags;
102 long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100104 if (clk == NULL || IS_ERR(clk))
105 return ret;
106
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000107 spin_lock_irqsave(&clockfw_lock, flags);
108 if (arch_clock->clk_round_rate)
109 ret = arch_clock->clk_round_rate(clk, rate);
110 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000112 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114EXPORT_SYMBOL(clk_round_rate);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116int clk_set_rate(struct clk *clk, unsigned long rate)
117{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000118 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100119 int ret = -EINVAL;
120
121 if (clk == NULL || IS_ERR(clk))
122 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000124 spin_lock_irqsave(&clockfw_lock, flags);
125 if (arch_clock->clk_set_rate)
126 ret = arch_clock->clk_set_rate(clk, rate);
Russell Kingb5088c02009-01-29 19:33:19 +0000127 if (ret == 0) {
128 if (clk->recalc)
Russell King8b9dbc12009-02-12 10:12:59 +0000129 clk->rate = clk->recalc(clk);
Russell King3f0a8202009-01-31 10:05:51 +0000130 propagate_rate(clk);
Russell Kingb5088c02009-01-29 19:33:19 +0000131 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000132 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 return ret;
135}
136EXPORT_SYMBOL(clk_set_rate);
137
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000138int clk_set_parent(struct clk *clk, struct clk *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000140 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100141 int ret = -EINVAL;
142
143 if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent))
144 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000146 spin_lock_irqsave(&clockfw_lock, flags);
Russell King4da37822009-02-24 12:46:31 +0000147 if (clk->usecount == 0) {
148 if (arch_clock->clk_set_parent)
149 ret = arch_clock->clk_set_parent(clk, parent);
150 if (ret == 0) {
151 if (clk->recalc)
152 clk->rate = clk->recalc(clk);
153 propagate_rate(clk);
154 }
155 } else
156 ret = -EBUSY;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000157 spin_unlock_irqrestore(&clockfw_lock, flags);
158
159 return ret;
160}
161EXPORT_SYMBOL(clk_set_parent);
162
163struct clk *clk_get_parent(struct clk *clk)
164{
Russell King2e777bf2009-02-08 17:49:22 +0000165 return clk->parent;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000166}
167EXPORT_SYMBOL(clk_get_parent);
168
169/*-------------------------------------------------------------------------
170 * OMAP specific clock functions shared between omap1 and omap2
171 *-------------------------------------------------------------------------*/
172
173unsigned int __initdata mpurate;
174
175/*
176 * By default we use the rate set by the bootloader.
177 * You can override this with mpurate= cmdline option.
178 */
179static int __init omap_clk_setup(char *str)
180{
181 get_option(&str, &mpurate);
182
183 if (!mpurate)
184 return 1;
185
186 if (mpurate < 1000)
187 mpurate *= 1000000;
188
189 return 1;
190}
191__setup("mpurate=", omap_clk_setup);
192
193/* Used for clocks that always have same value as the parent clock */
Russell King8b9dbc12009-02-12 10:12:59 +0000194unsigned long followparent_recalc(struct clk *clk)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000195{
Russell King8b9dbc12009-02-12 10:12:59 +0000196 return clk->parent->rate;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000197}
198
Russell King3f0a8202009-01-31 10:05:51 +0000199void clk_reparent(struct clk *child, struct clk *parent)
200{
201 list_del_init(&child->sibling);
202 if (parent)
203 list_add(&child->sibling, &parent->children);
204 child->parent = parent;
205
206 /* now do the debugfs renaming to reattach the child
207 to the proper parent */
208}
209
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000210/* Propagate rate to children */
211void propagate_rate(struct clk * tclk)
212{
213 struct clk *clkp;
214
Russell King3f0a8202009-01-31 10:05:51 +0000215 list_for_each_entry(clkp, &tclk->children, sibling) {
Russell King9a5feda2008-11-13 13:44:15 +0000216 if (clkp->recalc)
Russell King8b9dbc12009-02-12 10:12:59 +0000217 clkp->rate = clkp->recalc(clkp);
Russell King3f0a8202009-01-31 10:05:51 +0000218 propagate_rate(clkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Russell King3f0a8202009-01-31 10:05:51 +0000222static LIST_HEAD(root_clks);
223
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200224/**
225 * recalculate_root_clocks - recalculate and propagate all root clocks
226 *
227 * Recalculates all root clocks (clocks with no parent), which if the
228 * clock's .recalc is set correctly, should also propagate their rates.
229 * Called at init.
230 */
231void recalculate_root_clocks(void)
232{
233 struct clk *clkp;
234
Russell King3f0a8202009-01-31 10:05:51 +0000235 list_for_each_entry(clkp, &root_clks, sibling) {
236 if (clkp->recalc)
Russell King8b9dbc12009-02-12 10:12:59 +0000237 clkp->rate = clkp->recalc(clkp);
Russell King3f0a8202009-01-31 10:05:51 +0000238 propagate_rate(clkp);
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200239 }
240}
241
Paul Walmsleyc8088112009-04-22 19:48:53 -0600242/**
243 * clk_init_one - initialize any fields in the struct clk before clk init
244 * @clk: struct clk * to initialize
245 *
246 * Initialize any struct clk fields needed before normal clk initialization
247 * can run. No return value.
248 */
Russell King3f0a8202009-01-31 10:05:51 +0000249void clk_init_one(struct clk *clk)
250{
251 INIT_LIST_HEAD(&clk->children);
252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254int clk_register(struct clk *clk)
255{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100256 if (clk == NULL || IS_ERR(clk))
257 return -EINVAL;
258
Russell Kingdbb674d2009-01-22 16:08:04 +0000259 /*
260 * trap out already registered clocks
261 */
262 if (clk->node.next || clk->node.prev)
263 return 0;
264
Arjan van de Ven00431702006-01-12 18:42:23 +0000265 mutex_lock(&clocks_mutex);
Russell King3f0a8202009-01-31 10:05:51 +0000266 if (clk->parent)
267 list_add(&clk->sibling, &clk->parent->children);
268 else
269 list_add(&clk->sibling, &root_clks);
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 list_add(&clk->node, &clocks);
272 if (clk->init)
273 clk->init(clk);
Arjan van de Ven00431702006-01-12 18:42:23 +0000274 mutex_unlock(&clocks_mutex);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return 0;
277}
278EXPORT_SYMBOL(clk_register);
279
280void clk_unregister(struct clk *clk)
281{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100282 if (clk == NULL || IS_ERR(clk))
283 return;
284
Arjan van de Ven00431702006-01-12 18:42:23 +0000285 mutex_lock(&clocks_mutex);
Russell King3f0a8202009-01-31 10:05:51 +0000286 list_del(&clk->sibling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 list_del(&clk->node);
Arjan van de Ven00431702006-01-12 18:42:23 +0000288 mutex_unlock(&clocks_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290EXPORT_SYMBOL(clk_unregister);
291
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200292void clk_enable_init_clocks(void)
293{
294 struct clk *clkp;
295
296 list_for_each_entry(clkp, &clocks, node) {
297 if (clkp->flags & ENABLE_ON_INIT)
298 clk_enable(clkp);
299 }
300}
301EXPORT_SYMBOL(clk_enable_init_clocks);
302
Russell King897dcde2008-11-04 16:35:03 +0000303/*
304 * Low level helpers
305 */
306static int clkll_enable_null(struct clk *clk)
307{
308 return 0;
309}
310
311static void clkll_disable_null(struct clk *clk)
312{
313}
314
315const struct clkops clkops_null = {
316 .enable = clkll_enable_null,
317 .disable = clkll_disable_null,
318};
319
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200320#ifdef CONFIG_CPU_FREQ
321void clk_init_cpufreq_table(struct cpufreq_frequency_table **table)
322{
323 unsigned long flags;
324
325 spin_lock_irqsave(&clockfw_lock, flags);
326 if (arch_clock->clk_init_cpufreq_table)
327 arch_clock->clk_init_cpufreq_table(table);
328 spin_unlock_irqrestore(&clockfw_lock, flags);
329}
330EXPORT_SYMBOL(clk_init_cpufreq_table);
331#endif
332
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000333/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300335#ifdef CONFIG_OMAP_RESET_CLOCKS
336/*
337 * Disable any unused clocks left on by the bootloader
338 */
339static int __init clk_disable_unused(void)
340{
341 struct clk *ck;
342 unsigned long flags;
343
344 list_for_each_entry(ck, &clocks, node) {
Russell King897dcde2008-11-04 16:35:03 +0000345 if (ck->ops == &clkops_null)
346 continue;
347
348 if (ck->usecount > 0 || ck->enable_reg == 0)
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300349 continue;
350
351 spin_lock_irqsave(&clockfw_lock, flags);
352 if (arch_clock->clk_disable_unused)
353 arch_clock->clk_disable_unused(ck);
354 spin_unlock_irqrestore(&clockfw_lock, flags);
355 }
356
357 return 0;
358}
359late_initcall(clk_disable_unused);
360#endif
361
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000362int __init clk_init(struct clk_functions * custom_clocks)
363{
364 if (!custom_clocks) {
365 printk(KERN_ERR "No custom clock functions registered\n");
366 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000369 arch_clock = custom_clocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 return 0;
372}
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200373
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300374#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
375/*
376 * debugfs support to trace clock tree hierarchy and attributes
377 */
378static struct dentry *clk_debugfs_root;
379
380static int clk_debugfs_register_one(struct clk *c)
381{
382 int err;
383 struct dentry *d, *child;
384 struct clk *pa = c->parent;
385 char s[255];
386 char *p = s;
387
388 p += sprintf(p, "%s", c->name);
389 if (c->id != 0)
390 sprintf(p, ":%d", c->id);
391 d = debugfs_create_dir(s, pa ? pa->dent : clk_debugfs_root);
Zhaoleie621f262008-11-04 13:35:07 -0800392 if (!d)
393 return -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300394 c->dent = d;
395
396 d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount);
Zhaoleie621f262008-11-04 13:35:07 -0800397 if (!d) {
398 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300399 goto err_out;
400 }
401 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
Zhaoleie621f262008-11-04 13:35:07 -0800402 if (!d) {
403 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300404 goto err_out;
405 }
406 d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags);
Zhaoleie621f262008-11-04 13:35:07 -0800407 if (!d) {
408 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300409 goto err_out;
410 }
411 return 0;
412
413err_out:
414 d = c->dent;
415 list_for_each_entry(child, &d->d_subdirs, d_u.d_child)
416 debugfs_remove(child);
417 debugfs_remove(c->dent);
418 return err;
419}
420
421static int clk_debugfs_register(struct clk *c)
422{
423 int err;
424 struct clk *pa = c->parent;
425
426 if (pa && !pa->dent) {
427 err = clk_debugfs_register(pa);
428 if (err)
429 return err;
430 }
431
432 if (!c->dent) {
433 err = clk_debugfs_register_one(c);
434 if (err)
435 return err;
436 }
437 return 0;
438}
439
440static int __init clk_debugfs_init(void)
441{
442 struct clk *c;
443 struct dentry *d;
444 int err;
445
446 d = debugfs_create_dir("clock", NULL);
Zhaoleie621f262008-11-04 13:35:07 -0800447 if (!d)
448 return -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300449 clk_debugfs_root = d;
450
451 list_for_each_entry(c, &clocks, node) {
452 err = clk_debugfs_register(c);
453 if (err)
454 goto err_out;
455 }
456 return 0;
457err_out:
458 debugfs_remove(clk_debugfs_root); /* REVISIT: Cleanup correctly */
459 return err;
460}
461late_initcall(clk_debugfs_init);
462
463#endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */