GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-tegra / clock.c
blob03ad578349b98aa55e89f8639ff49663dd0f8d6d
1 /*
3 * Copyright (C) 2010 Google, Inc.
5 * Author:
6 * Colin Cross <ccross@google.com>
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #include <linux/kernel.h>
20 #include <linux/clk.h>
21 #include <linux/list.h>
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/debugfs.h>
25 #include <linux/slab.h>
26 #include <linux/seq_file.h>
27 #include <asm/clkdev.h>
29 #include "clock.h"
31 static LIST_HEAD(clocks);
33 static DEFINE_SPINLOCK(clock_lock);
35 struct clk *tegra_get_clock_by_name(const char *name)
37 struct clk *c;
38 struct clk *ret = NULL;
39 unsigned long flags;
40 spin_lock_irqsave(&clock_lock, flags);
41 list_for_each_entry(c, &clocks, node) {
42 if (strcmp(c->name, name) == 0) {
43 ret = c;
44 break;
47 spin_unlock_irqrestore(&clock_lock, flags);
48 return ret;
51 int clk_reparent(struct clk *c, struct clk *parent)
53 pr_debug("%s: %s\n", __func__, c->name);
54 if (c->refcnt && c->parent)
55 clk_disable_locked(c->parent);
56 c->parent = parent;
57 if (c->refcnt && c->parent)
58 clk_enable_locked(c->parent);
59 list_del(&c->sibling);
60 list_add_tail(&c->sibling, &parent->children);
61 return 0;
64 static void propagate_rate(struct clk *c)
66 struct clk *clkp;
67 pr_debug("%s: %s\n", __func__, c->name);
68 list_for_each_entry(clkp, &c->children, sibling) {
69 pr_debug(" %s\n", clkp->name);
70 if (clkp->ops->recalculate_rate)
71 clkp->ops->recalculate_rate(clkp);
72 propagate_rate(clkp);
76 void clk_init(struct clk *c)
78 unsigned long flags;
80 spin_lock_irqsave(&clock_lock, flags);
82 INIT_LIST_HEAD(&c->children);
83 INIT_LIST_HEAD(&c->sibling);
85 if (c->ops && c->ops->init)
86 c->ops->init(c);
88 list_add(&c->node, &clocks);
90 if (c->parent)
91 list_add_tail(&c->sibling, &c->parent->children);
93 spin_unlock_irqrestore(&clock_lock, flags);
96 int clk_enable_locked(struct clk *c)
98 int ret;
99 pr_debug("%s: %s\n", __func__, c->name);
100 if (c->refcnt == 0) {
101 if (c->parent) {
102 ret = clk_enable_locked(c->parent);
103 if (ret)
104 return ret;
107 if (c->ops && c->ops->enable) {
108 ret = c->ops->enable(c);
109 if (ret) {
110 if (c->parent)
111 clk_disable_locked(c->parent);
112 return ret;
114 c->state = ON;
115 #ifdef CONFIG_DEBUG_FS
116 c->set = 1;
117 #endif
120 c->refcnt++;
122 return 0;
125 int clk_enable(struct clk *c)
127 int ret;
128 unsigned long flags;
129 spin_lock_irqsave(&clock_lock, flags);
130 ret = clk_enable_locked(c);
131 spin_unlock_irqrestore(&clock_lock, flags);
132 return ret;
134 EXPORT_SYMBOL(clk_enable);
136 void clk_disable_locked(struct clk *c)
138 pr_debug("%s: %s\n", __func__, c->name);
139 if (c->refcnt == 0) {
140 WARN(1, "Attempting to disable clock %s with refcnt 0", c->name);
141 return;
143 if (c->refcnt == 1) {
144 if (c->ops && c->ops->disable)
145 c->ops->disable(c);
147 if (c->parent)
148 clk_disable_locked(c->parent);
150 c->state = OFF;
152 c->refcnt--;
155 void clk_disable(struct clk *c)
157 unsigned long flags;
158 spin_lock_irqsave(&clock_lock, flags);
159 clk_disable_locked(c);
160 spin_unlock_irqrestore(&clock_lock, flags);
162 EXPORT_SYMBOL(clk_disable);
164 int clk_set_parent_locked(struct clk *c, struct clk *parent)
166 int ret;
168 pr_debug("%s: %s\n", __func__, c->name);
170 if (!c->ops || !c->ops->set_parent)
171 return -ENOSYS;
173 ret = c->ops->set_parent(c, parent);
175 if (ret)
176 return ret;
178 propagate_rate(c);
180 return 0;
183 int clk_set_parent(struct clk *c, struct clk *parent)
185 int ret;
186 unsigned long flags;
187 spin_lock_irqsave(&clock_lock, flags);
188 ret = clk_set_parent_locked(c, parent);
189 spin_unlock_irqrestore(&clock_lock, flags);
190 return ret;
192 EXPORT_SYMBOL(clk_set_parent);
194 struct clk *clk_get_parent(struct clk *c)
196 return c->parent;
198 EXPORT_SYMBOL(clk_get_parent);
200 int clk_set_rate(struct clk *c, unsigned long rate)
202 int ret = 0;
203 unsigned long flags;
205 spin_lock_irqsave(&clock_lock, flags);
207 pr_debug("%s: %s\n", __func__, c->name);
209 if (c->ops && c->ops->set_rate)
210 ret = c->ops->set_rate(c, rate);
211 else
212 ret = -ENOSYS;
214 propagate_rate(c);
216 spin_unlock_irqrestore(&clock_lock, flags);
218 return ret;
220 EXPORT_SYMBOL(clk_set_rate);
222 unsigned long clk_get_rate(struct clk *c)
224 unsigned long flags;
225 unsigned long ret;
227 spin_lock_irqsave(&clock_lock, flags);
229 pr_debug("%s: %s\n", __func__, c->name);
231 ret = c->rate;
233 spin_unlock_irqrestore(&clock_lock, flags);
234 return ret;
236 EXPORT_SYMBOL(clk_get_rate);
238 static int tegra_clk_init_one_from_table(struct tegra_clk_init_table *table)
240 struct clk *c;
241 struct clk *p;
243 int ret = 0;
245 c = tegra_get_clock_by_name(table->name);
247 if (!c) {
248 pr_warning("Unable to initialize clock %s\n",
249 table->name);
250 return -ENODEV;
253 if (table->parent) {
254 p = tegra_get_clock_by_name(table->parent);
255 if (!p) {
256 pr_warning("Unable to find parent %s of clock %s\n",
257 table->parent, table->name);
258 return -ENODEV;
261 if (c->parent != p) {
262 ret = clk_set_parent(c, p);
263 if (ret) {
264 pr_warning("Unable to set parent %s of clock %s: %d\n",
265 table->parent, table->name, ret);
266 return -EINVAL;
271 if (table->rate && table->rate != clk_get_rate(c)) {
272 ret = clk_set_rate(c, table->rate);
273 if (ret) {
274 pr_warning("Unable to set clock %s to rate %lu: %d\n",
275 table->name, table->rate, ret);
276 return -EINVAL;
280 if (table->enabled) {
281 ret = clk_enable(c);
282 if (ret) {
283 pr_warning("Unable to enable clock %s: %d\n",
284 table->name, ret);
285 return -EINVAL;
289 return 0;
292 void tegra_clk_init_from_table(struct tegra_clk_init_table *table)
294 for (; table->name; table++)
295 tegra_clk_init_one_from_table(table);
297 EXPORT_SYMBOL(tegra_clk_init_from_table);
299 void tegra_periph_reset_deassert(struct clk *c)
301 tegra2_periph_reset_deassert(c);
303 EXPORT_SYMBOL(tegra_periph_reset_deassert);
305 void tegra_periph_reset_assert(struct clk *c)
307 tegra2_periph_reset_assert(c);
309 EXPORT_SYMBOL(tegra_periph_reset_assert);
311 int __init tegra_init_clock(void)
313 tegra2_init_clocks();
315 return 0;
318 #ifdef CONFIG_DEBUG_FS
319 static struct dentry *clk_debugfs_root;
322 static void clock_tree_show_one(struct seq_file *s, struct clk *c, int level)
324 struct clk *child;
325 struct clk *safe;
326 const char *state = "uninit";
327 char div[5] = {0};
329 if (c->state == ON)
330 state = "on";
331 else if (c->state == OFF)
332 state = "off";
334 if (c->mul != 0 && c->div != 0) {
335 BUG_ON(c->mul > 2);
336 if (c->mul > c->div)
337 snprintf(div, sizeof(div), "x%d", c->mul / c->div);
338 else
339 snprintf(div, sizeof(div), "%d%s", c->div / c->mul,
340 (c->div % c->mul) ? ".5" : "");
343 seq_printf(s, "%*s%-*s %-6s %-3d %-5s %-10lu\n",
344 level * 3 + 1, c->set ? "" : "*",
345 30 - level * 3, c->name,
346 state, c->refcnt, div, c->rate);
347 list_for_each_entry_safe(child, safe, &c->children, sibling) {
348 clock_tree_show_one(s, child, level + 1);
352 static int clock_tree_show(struct seq_file *s, void *data)
354 struct clk *c;
355 unsigned long flags;
356 seq_printf(s, " clock state ref div rate \n");
357 seq_printf(s, "-----------------------------------------------------------\n");
358 spin_lock_irqsave(&clock_lock, flags);
359 list_for_each_entry(c, &clocks, node)
360 if (c->parent == NULL)
361 clock_tree_show_one(s, c, 0);
362 spin_unlock_irqrestore(&clock_lock, flags);
363 return 0;
366 static int clock_tree_open(struct inode *inode, struct file *file)
368 return single_open(file, clock_tree_show, inode->i_private);
371 static const struct file_operations clock_tree_fops = {
372 .open = clock_tree_open,
373 .read = seq_read,
374 .llseek = seq_lseek,
375 .release = single_release,
378 static int possible_parents_show(struct seq_file *s, void *data)
380 struct clk *c = s->private;
381 int i;
383 for (i = 0; c->inputs[i].input; i++) {
384 char *first = (i == 0) ? "" : " ";
385 seq_printf(s, "%s%s", first, c->inputs[i].input->name);
387 seq_printf(s, "\n");
388 return 0;
391 static int possible_parents_open(struct inode *inode, struct file *file)
393 return single_open(file, possible_parents_show, inode->i_private);
396 static const struct file_operations possible_parents_fops = {
397 .open = possible_parents_open,
398 .read = seq_read,
399 .llseek = seq_lseek,
400 .release = single_release,
403 static int clk_debugfs_register_one(struct clk *c)
405 struct dentry *d, *child, *child_tmp;
407 d = debugfs_create_dir(c->name, clk_debugfs_root);
408 if (!d)
409 return -ENOMEM;
410 c->dent = d;
412 d = debugfs_create_u8("refcnt", S_IRUGO, c->dent, (u8 *)&c->refcnt);
413 if (!d)
414 goto err_out;
416 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
417 if (!d)
418 goto err_out;
420 d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags);
421 if (!d)
422 goto err_out;
424 if (c->inputs) {
425 d = debugfs_create_file("possible_parents", S_IRUGO, c->dent,
426 c, &possible_parents_fops);
427 if (!d)
428 goto err_out;
431 return 0;
433 err_out:
434 d = c->dent;
435 list_for_each_entry_safe(child, child_tmp, &d->d_subdirs, d_u.d_child)
436 debugfs_remove(child);
437 debugfs_remove(c->dent);
438 return -ENOMEM;
441 static int clk_debugfs_register(struct clk *c)
443 int err;
444 struct clk *pa = c->parent;
446 if (pa && !pa->dent) {
447 err = clk_debugfs_register(pa);
448 if (err)
449 return err;
452 if (!c->dent) {
453 err = clk_debugfs_register_one(c);
454 if (err)
455 return err;
457 return 0;
460 static int __init clk_debugfs_init(void)
462 struct clk *c;
463 struct dentry *d;
464 int err = -ENOMEM;
466 d = debugfs_create_dir("clock", NULL);
467 if (!d)
468 return -ENOMEM;
469 clk_debugfs_root = d;
471 d = debugfs_create_file("clock_tree", S_IRUGO, clk_debugfs_root, NULL,
472 &clock_tree_fops);
473 if (!d)
474 goto err_out;
476 list_for_each_entry(c, &clocks, node) {
477 err = clk_debugfs_register(c);
478 if (err)
479 goto err_out;
481 return 0;
482 err_out:
483 debugfs_remove_recursive(clk_debugfs_root);
484 return err;
487 late_initcall(clk_debugfs_init);
488 #endif