spi-topcliff-pch: Fix issue for transmitting over 4KByte
[zen-stable.git] / arch / arm / plat-omap / clock.c
blob567e4b54f245d9684d3525178eed385052d55d2d
1 /*
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/list.h>
16 #include <linux/errno.h>
17 #include <linux/export.h>
18 #include <linux/err.h>
19 #include <linux/string.h>
20 #include <linux/clk.h>
21 #include <linux/mutex.h>
22 #include <linux/cpufreq.h>
23 #include <linux/debugfs.h>
24 #include <linux/io.h>
26 #include <plat/clock.h>
28 static LIST_HEAD(clocks);
29 static DEFINE_MUTEX(clocks_mutex);
30 static DEFINE_SPINLOCK(clockfw_lock);
32 static struct clk_functions *arch_clock;
35 * Standard clock functions defined in include/linux/clk.h
38 int clk_enable(struct clk *clk)
40 unsigned long flags;
41 int ret;
43 if (clk == NULL || IS_ERR(clk))
44 return -EINVAL;
46 if (!arch_clock || !arch_clock->clk_enable)
47 return -EINVAL;
49 spin_lock_irqsave(&clockfw_lock, flags);
50 ret = arch_clock->clk_enable(clk);
51 spin_unlock_irqrestore(&clockfw_lock, flags);
53 return ret;
55 EXPORT_SYMBOL(clk_enable);
57 void clk_disable(struct clk *clk)
59 unsigned long flags;
61 if (clk == NULL || IS_ERR(clk))
62 return;
64 if (!arch_clock || !arch_clock->clk_disable)
65 return;
67 spin_lock_irqsave(&clockfw_lock, flags);
68 if (clk->usecount == 0) {
69 pr_err("Trying disable clock %s with 0 usecount\n",
70 clk->name);
71 WARN_ON(1);
72 goto out;
75 arch_clock->clk_disable(clk);
77 out:
78 spin_unlock_irqrestore(&clockfw_lock, flags);
80 EXPORT_SYMBOL(clk_disable);
82 unsigned long clk_get_rate(struct clk *clk)
84 unsigned long flags;
85 unsigned long ret;
87 if (clk == NULL || IS_ERR(clk))
88 return 0;
90 spin_lock_irqsave(&clockfw_lock, flags);
91 ret = clk->rate;
92 spin_unlock_irqrestore(&clockfw_lock, flags);
94 return ret;
96 EXPORT_SYMBOL(clk_get_rate);
99 * Optional clock functions defined in include/linux/clk.h
102 long clk_round_rate(struct clk *clk, unsigned long rate)
104 unsigned long flags;
105 long ret;
107 if (clk == NULL || IS_ERR(clk))
108 return 0;
110 if (!arch_clock || !arch_clock->clk_round_rate)
111 return 0;
113 spin_lock_irqsave(&clockfw_lock, flags);
114 ret = arch_clock->clk_round_rate(clk, rate);
115 spin_unlock_irqrestore(&clockfw_lock, flags);
117 return ret;
119 EXPORT_SYMBOL(clk_round_rate);
121 int clk_set_rate(struct clk *clk, unsigned long rate)
123 unsigned long flags;
124 int ret = -EINVAL;
126 if (clk == NULL || IS_ERR(clk))
127 return ret;
129 if (!arch_clock || !arch_clock->clk_set_rate)
130 return ret;
132 spin_lock_irqsave(&clockfw_lock, flags);
133 ret = arch_clock->clk_set_rate(clk, rate);
134 if (ret == 0)
135 propagate_rate(clk);
136 spin_unlock_irqrestore(&clockfw_lock, flags);
138 return ret;
140 EXPORT_SYMBOL(clk_set_rate);
142 int clk_set_parent(struct clk *clk, struct clk *parent)
144 unsigned long flags;
145 int ret = -EINVAL;
147 if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent))
148 return ret;
150 if (!arch_clock || !arch_clock->clk_set_parent)
151 return ret;
153 spin_lock_irqsave(&clockfw_lock, flags);
154 if (clk->usecount == 0) {
155 ret = arch_clock->clk_set_parent(clk, parent);
156 if (ret == 0)
157 propagate_rate(clk);
158 } else
159 ret = -EBUSY;
160 spin_unlock_irqrestore(&clockfw_lock, flags);
162 return ret;
164 EXPORT_SYMBOL(clk_set_parent);
166 struct clk *clk_get_parent(struct clk *clk)
168 return clk->parent;
170 EXPORT_SYMBOL(clk_get_parent);
173 * OMAP specific clock functions shared between omap1 and omap2
176 int __initdata mpurate;
179 * By default we use the rate set by the bootloader.
180 * You can override this with mpurate= cmdline option.
182 static int __init omap_clk_setup(char *str)
184 get_option(&str, &mpurate);
186 if (!mpurate)
187 return 1;
189 if (mpurate < 1000)
190 mpurate *= 1000000;
192 return 1;
194 __setup("mpurate=", omap_clk_setup);
196 /* Used for clocks that always have same value as the parent clock */
197 unsigned long followparent_recalc(struct clk *clk)
199 return clk->parent->rate;
203 * Used for clocks that have the same value as the parent clock,
204 * divided by some factor
206 unsigned long omap_fixed_divisor_recalc(struct clk *clk)
208 WARN_ON(!clk->fixed_div);
210 return clk->parent->rate / clk->fixed_div;
213 void clk_reparent(struct clk *child, struct clk *parent)
215 list_del_init(&child->sibling);
216 if (parent)
217 list_add(&child->sibling, &parent->children);
218 child->parent = parent;
220 /* now do the debugfs renaming to reattach the child
221 to the proper parent */
224 /* Propagate rate to children */
225 void propagate_rate(struct clk *tclk)
227 struct clk *clkp;
229 list_for_each_entry(clkp, &tclk->children, sibling) {
230 if (clkp->recalc)
231 clkp->rate = clkp->recalc(clkp);
232 propagate_rate(clkp);
236 static LIST_HEAD(root_clks);
239 * recalculate_root_clocks - recalculate and propagate all root clocks
241 * Recalculates all root clocks (clocks with no parent), which if the
242 * clock's .recalc is set correctly, should also propagate their rates.
243 * Called at init.
245 void recalculate_root_clocks(void)
247 struct clk *clkp;
249 list_for_each_entry(clkp, &root_clks, sibling) {
250 if (clkp->recalc)
251 clkp->rate = clkp->recalc(clkp);
252 propagate_rate(clkp);
257 * clk_preinit - initialize any fields in the struct clk before clk init
258 * @clk: struct clk * to initialize
260 * Initialize any struct clk fields needed before normal clk initialization
261 * can run. No return value.
263 void clk_preinit(struct clk *clk)
265 INIT_LIST_HEAD(&clk->children);
268 int clk_register(struct clk *clk)
270 if (clk == NULL || IS_ERR(clk))
271 return -EINVAL;
274 * trap out already registered clocks
276 if (clk->node.next || clk->node.prev)
277 return 0;
279 mutex_lock(&clocks_mutex);
280 if (clk->parent)
281 list_add(&clk->sibling, &clk->parent->children);
282 else
283 list_add(&clk->sibling, &root_clks);
285 list_add(&clk->node, &clocks);
286 if (clk->init)
287 clk->init(clk);
288 mutex_unlock(&clocks_mutex);
290 return 0;
292 EXPORT_SYMBOL(clk_register);
294 void clk_unregister(struct clk *clk)
296 if (clk == NULL || IS_ERR(clk))
297 return;
299 mutex_lock(&clocks_mutex);
300 list_del(&clk->sibling);
301 list_del(&clk->node);
302 mutex_unlock(&clocks_mutex);
304 EXPORT_SYMBOL(clk_unregister);
306 void clk_enable_init_clocks(void)
308 struct clk *clkp;
310 list_for_each_entry(clkp, &clocks, node) {
311 if (clkp->flags & ENABLE_ON_INIT)
312 clk_enable(clkp);
317 * omap_clk_get_by_name - locate OMAP struct clk by its name
318 * @name: name of the struct clk to locate
320 * Locate an OMAP struct clk by its name. Assumes that struct clk
321 * names are unique. Returns NULL if not found or a pointer to the
322 * struct clk if found.
324 struct clk *omap_clk_get_by_name(const char *name)
326 struct clk *c;
327 struct clk *ret = NULL;
329 mutex_lock(&clocks_mutex);
331 list_for_each_entry(c, &clocks, node) {
332 if (!strcmp(c->name, name)) {
333 ret = c;
334 break;
338 mutex_unlock(&clocks_mutex);
340 return ret;
343 int omap_clk_enable_autoidle_all(void)
345 struct clk *c;
346 unsigned long flags;
348 spin_lock_irqsave(&clockfw_lock, flags);
350 list_for_each_entry(c, &clocks, node)
351 if (c->ops->allow_idle)
352 c->ops->allow_idle(c);
354 spin_unlock_irqrestore(&clockfw_lock, flags);
356 return 0;
359 int omap_clk_disable_autoidle_all(void)
361 struct clk *c;
362 unsigned long flags;
364 spin_lock_irqsave(&clockfw_lock, flags);
366 list_for_each_entry(c, &clocks, node)
367 if (c->ops->deny_idle)
368 c->ops->deny_idle(c);
370 spin_unlock_irqrestore(&clockfw_lock, flags);
372 return 0;
376 * Low level helpers
378 static int clkll_enable_null(struct clk *clk)
380 return 0;
383 static void clkll_disable_null(struct clk *clk)
387 const struct clkops clkops_null = {
388 .enable = clkll_enable_null,
389 .disable = clkll_disable_null,
393 * Dummy clock
395 * Used for clock aliases that are needed on some OMAPs, but not others
397 struct clk dummy_ck = {
398 .name = "dummy",
399 .ops = &clkops_null,
402 #ifdef CONFIG_CPU_FREQ
403 void clk_init_cpufreq_table(struct cpufreq_frequency_table **table)
405 unsigned long flags;
407 if (!arch_clock || !arch_clock->clk_init_cpufreq_table)
408 return;
410 spin_lock_irqsave(&clockfw_lock, flags);
411 arch_clock->clk_init_cpufreq_table(table);
412 spin_unlock_irqrestore(&clockfw_lock, flags);
415 void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table)
417 unsigned long flags;
419 if (!arch_clock || !arch_clock->clk_exit_cpufreq_table)
420 return;
422 spin_lock_irqsave(&clockfw_lock, flags);
423 arch_clock->clk_exit_cpufreq_table(table);
424 spin_unlock_irqrestore(&clockfw_lock, flags);
426 #endif
432 #ifdef CONFIG_OMAP_RESET_CLOCKS
434 * Disable any unused clocks left on by the bootloader
436 static int __init clk_disable_unused(void)
438 struct clk *ck;
439 unsigned long flags;
441 if (!arch_clock || !arch_clock->clk_disable_unused)
442 return 0;
444 pr_info("clock: disabling unused clocks to save power\n");
445 list_for_each_entry(ck, &clocks, node) {
446 if (ck->ops == &clkops_null)
447 continue;
449 if (ck->usecount > 0 || !ck->enable_reg)
450 continue;
452 spin_lock_irqsave(&clockfw_lock, flags);
453 arch_clock->clk_disable_unused(ck);
454 spin_unlock_irqrestore(&clockfw_lock, flags);
457 return 0;
459 late_initcall(clk_disable_unused);
460 late_initcall(omap_clk_enable_autoidle_all);
461 #endif
463 int __init clk_init(struct clk_functions * custom_clocks)
465 if (!custom_clocks) {
466 pr_err("No custom clock functions registered\n");
467 BUG();
470 arch_clock = custom_clocks;
472 return 0;
475 #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
477 * debugfs support to trace clock tree hierarchy and attributes
480 #include <linux/debugfs.h>
481 #include <linux/seq_file.h>
483 static struct dentry *clk_debugfs_root;
485 static int clk_dbg_show_summary(struct seq_file *s, void *unused)
487 struct clk *c;
488 struct clk *pa;
490 seq_printf(s, "%-30s %-30s %-10s %s\n",
491 "clock-name", "parent-name", "rate", "use-count");
493 list_for_each_entry(c, &clocks, node) {
494 pa = c->parent;
495 seq_printf(s, "%-30s %-30s %-10lu %d\n",
496 c->name, pa ? pa->name : "none", c->rate, c->usecount);
499 return 0;
502 static int clk_dbg_open(struct inode *inode, struct file *file)
504 return single_open(file, clk_dbg_show_summary, inode->i_private);
507 static const struct file_operations debug_clock_fops = {
508 .open = clk_dbg_open,
509 .read = seq_read,
510 .llseek = seq_lseek,
511 .release = single_release,
514 static int clk_debugfs_register_one(struct clk *c)
516 int err;
517 struct dentry *d;
518 struct clk *pa = c->parent;
520 d = debugfs_create_dir(c->name, pa ? pa->dent : clk_debugfs_root);
521 if (!d)
522 return -ENOMEM;
523 c->dent = d;
525 d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount);
526 if (!d) {
527 err = -ENOMEM;
528 goto err_out;
530 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
531 if (!d) {
532 err = -ENOMEM;
533 goto err_out;
535 d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags);
536 if (!d) {
537 err = -ENOMEM;
538 goto err_out;
540 return 0;
542 err_out:
543 debugfs_remove_recursive(c->dent);
544 return err;
547 static int clk_debugfs_register(struct clk *c)
549 int err;
550 struct clk *pa = c->parent;
552 if (pa && !pa->dent) {
553 err = clk_debugfs_register(pa);
554 if (err)
555 return err;
558 if (!c->dent) {
559 err = clk_debugfs_register_one(c);
560 if (err)
561 return err;
563 return 0;
566 static int __init clk_debugfs_init(void)
568 struct clk *c;
569 struct dentry *d;
570 int err;
572 d = debugfs_create_dir("clock", NULL);
573 if (!d)
574 return -ENOMEM;
575 clk_debugfs_root = d;
577 list_for_each_entry(c, &clocks, node) {
578 err = clk_debugfs_register(c);
579 if (err)
580 goto err_out;
583 d = debugfs_create_file("summary", S_IRUGO,
584 d, NULL, &debug_clock_fops);
585 if (!d)
586 return -ENOMEM;
588 return 0;
589 err_out:
590 debugfs_remove_recursive(clk_debugfs_root);
591 return err;
593 late_initcall(clk_debugfs_init);
595 #endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */