2 * linux/arch/arm/plat-omap/clock.c
4 * Copyright (C) 2004 - 2008 Nokia corporation
5 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
7 * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com>
9 * 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.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/list.h>
17 #include <linux/errno.h>
18 #include <linux/err.h>
19 #include <linux/string.h>
20 #include <linux/clk.h>
21 #include <linux/mutex.h>
22 #include <linux/platform_device.h>
23 #include <linux/cpufreq.h>
24 #include <linux/debugfs.h>
27 #include <plat/clock.h>
29 static LIST_HEAD(clocks);
30 static DEFINE_MUTEX(clocks_mutex);
31 static DEFINE_SPINLOCK(clockfw_lock);
33 static struct clk_functions *arch_clock;
35 /*-------------------------------------------------------------------------
36 * Standard clock functions defined in include/linux/clk.h
37 *-------------------------------------------------------------------------*/
39 /* This functions is moved to arch/arm/common/clkdev.c. For OMAP4 since
40 * clock framework is not up , it is defined here to avoid rework in
41 * every driver. Also dummy prcm reset function is added */
43 int clk_enable(struct clk *clk)
48 if (clk == NULL || IS_ERR(clk))
51 spin_lock_irqsave(&clockfw_lock, flags);
52 if (arch_clock->clk_enable)
53 ret = arch_clock->clk_enable(clk);
54 spin_unlock_irqrestore(&clockfw_lock, flags);
58 EXPORT_SYMBOL(clk_enable);
60 void clk_disable(struct clk *clk)
64 if (clk == NULL || IS_ERR(clk))
67 spin_lock_irqsave(&clockfw_lock, flags);
68 if (clk->usecount == 0) {
69 printk(KERN_ERR "Trying disable clock %s with 0 usecount\n",
75 if (arch_clock->clk_disable)
76 arch_clock->clk_disable(clk);
79 spin_unlock_irqrestore(&clockfw_lock, flags);
81 EXPORT_SYMBOL(clk_disable);
83 unsigned long clk_get_rate(struct clk *clk)
86 unsigned long ret = 0;
88 if (clk == NULL || IS_ERR(clk))
91 spin_lock_irqsave(&clockfw_lock, flags);
93 spin_unlock_irqrestore(&clockfw_lock, flags);
97 EXPORT_SYMBOL(clk_get_rate);
99 /*-------------------------------------------------------------------------
100 * Optional clock functions defined in include/linux/clk.h
101 *-------------------------------------------------------------------------*/
103 long clk_round_rate(struct clk *clk, unsigned long rate)
108 if (clk == NULL || IS_ERR(clk))
111 spin_lock_irqsave(&clockfw_lock, flags);
112 if (arch_clock->clk_round_rate)
113 ret = arch_clock->clk_round_rate(clk, rate);
114 spin_unlock_irqrestore(&clockfw_lock, flags);
118 EXPORT_SYMBOL(clk_round_rate);
120 int clk_set_rate(struct clk *clk, unsigned long rate)
125 if (clk == NULL || IS_ERR(clk))
128 spin_lock_irqsave(&clockfw_lock, flags);
129 if (arch_clock->clk_set_rate)
130 ret = arch_clock->clk_set_rate(clk, rate);
133 clk->rate = clk->recalc(clk);
136 spin_unlock_irqrestore(&clockfw_lock, flags);
140 EXPORT_SYMBOL(clk_set_rate);
142 int clk_set_parent(struct clk *clk, struct clk *parent)
147 if (cpu_is_omap44xx())
148 /* OMAP4 clk framework not supported yet */
150 if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent))
153 spin_lock_irqsave(&clockfw_lock, flags);
154 if (clk->usecount == 0) {
155 if (arch_clock->clk_set_parent)
156 ret = arch_clock->clk_set_parent(clk, parent);
159 clk->rate = clk->recalc(clk);
164 spin_unlock_irqrestore(&clockfw_lock, flags);
168 EXPORT_SYMBOL(clk_set_parent);
170 struct clk *clk_get_parent(struct clk *clk)
174 EXPORT_SYMBOL(clk_get_parent);
176 /*-------------------------------------------------------------------------
177 * OMAP specific clock functions shared between omap1 and omap2
178 *-------------------------------------------------------------------------*/
180 unsigned int __initdata mpurate;
183 * By default we use the rate set by the bootloader.
184 * You can override this with mpurate= cmdline option.
186 static int __init omap_clk_setup(char *str)
188 get_option(&str, &mpurate);
198 __setup("mpurate=", omap_clk_setup);
200 /* Used for clocks that always have same value as the parent clock */
201 unsigned long followparent_recalc(struct clk *clk)
203 return clk->parent->rate;
206 void clk_reparent(struct clk *child, struct clk *parent)
208 list_del_init(&child->sibling);
210 list_add(&child->sibling, &parent->children);
211 child->parent = parent;
213 /* now do the debugfs renaming to reattach the child
214 to the proper parent */
217 /* Propagate rate to children */
218 void propagate_rate(struct clk * tclk)
222 list_for_each_entry(clkp, &tclk->children, sibling) {
224 clkp->rate = clkp->recalc(clkp);
225 propagate_rate(clkp);
229 static LIST_HEAD(root_clks);
232 * recalculate_root_clocks - recalculate and propagate all root clocks
234 * Recalculates all root clocks (clocks with no parent), which if the
235 * clock's .recalc is set correctly, should also propagate their rates.
238 void recalculate_root_clocks(void)
242 list_for_each_entry(clkp, &root_clks, sibling) {
244 clkp->rate = clkp->recalc(clkp);
245 propagate_rate(clkp);
250 * clk_preinit - initialize any fields in the struct clk before clk init
251 * @clk: struct clk * to initialize
253 * Initialize any struct clk fields needed before normal clk initialization
254 * can run. No return value.
256 void clk_preinit(struct clk *clk)
258 INIT_LIST_HEAD(&clk->children);
261 int clk_register(struct clk *clk)
263 if (clk == NULL || IS_ERR(clk))
267 * trap out already registered clocks
269 if (clk->node.next || clk->node.prev)
272 mutex_lock(&clocks_mutex);
274 list_add(&clk->sibling, &clk->parent->children);
276 list_add(&clk->sibling, &root_clks);
278 list_add(&clk->node, &clocks);
281 mutex_unlock(&clocks_mutex);
285 EXPORT_SYMBOL(clk_register);
287 void clk_unregister(struct clk *clk)
289 if (clk == NULL || IS_ERR(clk))
292 mutex_lock(&clocks_mutex);
293 list_del(&clk->sibling);
294 list_del(&clk->node);
295 mutex_unlock(&clocks_mutex);
297 EXPORT_SYMBOL(clk_unregister);
299 void clk_enable_init_clocks(void)
303 list_for_each_entry(clkp, &clocks, node) {
304 if (clkp->flags & ENABLE_ON_INIT)
308 EXPORT_SYMBOL(clk_enable_init_clocks);
313 static int clkll_enable_null(struct clk *clk)
318 static void clkll_disable_null(struct clk *clk)
322 const struct clkops clkops_null = {
323 .enable = clkll_enable_null,
324 .disable = clkll_disable_null,
327 #ifdef CONFIG_CPU_FREQ
328 void clk_init_cpufreq_table(struct cpufreq_frequency_table **table)
332 spin_lock_irqsave(&clockfw_lock, flags);
333 if (arch_clock->clk_init_cpufreq_table)
334 arch_clock->clk_init_cpufreq_table(table);
335 spin_unlock_irqrestore(&clockfw_lock, flags);
337 EXPORT_SYMBOL(clk_init_cpufreq_table);
340 /*-------------------------------------------------------------------------*/
342 #ifdef CONFIG_OMAP_RESET_CLOCKS
344 * Disable any unused clocks left on by the bootloader
346 static int __init clk_disable_unused(void)
351 list_for_each_entry(ck, &clocks, node) {
352 if (ck->ops == &clkops_null)
355 if (ck->usecount > 0 || ck->enable_reg == 0)
358 spin_lock_irqsave(&clockfw_lock, flags);
359 if (arch_clock->clk_disable_unused)
360 arch_clock->clk_disable_unused(ck);
361 spin_unlock_irqrestore(&clockfw_lock, flags);
366 late_initcall(clk_disable_unused);
369 int __init clk_init(struct clk_functions * custom_clocks)
371 if (!custom_clocks) {
372 printk(KERN_ERR "No custom clock functions registered\n");
376 arch_clock = custom_clocks;
381 #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
383 * debugfs support to trace clock tree hierarchy and attributes
385 static struct dentry *clk_debugfs_root;
387 static int clk_debugfs_register_one(struct clk *c)
390 struct dentry *d, *child;
391 struct clk *pa = c->parent;
395 p += sprintf(p, "%s", c->name);
397 sprintf(p, ":%d", c->id);
398 d = debugfs_create_dir(s, pa ? pa->dent : clk_debugfs_root);
403 d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount);
408 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
413 d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags);
422 list_for_each_entry(child, &d->d_subdirs, d_u.d_child)
423 debugfs_remove(child);
424 debugfs_remove(c->dent);
428 static int clk_debugfs_register(struct clk *c)
431 struct clk *pa = c->parent;
433 if (pa && !pa->dent) {
434 err = clk_debugfs_register(pa);
440 err = clk_debugfs_register_one(c);
447 static int __init clk_debugfs_init(void)
453 d = debugfs_create_dir("clock", NULL);
456 clk_debugfs_root = d;
458 list_for_each_entry(c, &clocks, node) {
459 err = clk_debugfs_register(c);
465 debugfs_remove_recursive(clk_debugfs_root);
468 late_initcall(clk_debugfs_init);
470 #endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */