blob: 8dad8d18cb49cd26e12212718de9295a4f4e550a [file] [log] [blame]
Colin Crossd8611962010-01-28 16:40:29 -08001/*
2 *
3 * Copyright (C) 2010 Google, Inc.
4 *
5 * Author:
6 * Colin Cross <ccross@google.com>
7 *
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.
11 *
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.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/clk.h>
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010021#include <linux/clkdev.h>
Colin Cross4729fd72011-02-12 16:43:05 -080022#include <linux/debugfs.h>
23#include <linux/delay.h>
24#include <linux/init.h>
25#include <linux/list.h>
26#include <linux/module.h>
27#include <linux/sched.h>
28#include <linux/seq_file.h>
29#include <linux/slab.h>
30
31#include <mach/clk.h>
Colin Crossd8611962010-01-28 16:40:29 -080032
Colin Cross71fc84c2010-06-07 20:49:46 -070033#include "board.h"
Colin Cross41cfe362011-02-12 15:52:04 -080034#include "clock.h"
Colin Crossd8611962010-01-28 16:40:29 -080035
Colin Cross4729fd72011-02-12 16:43:05 -080036/*
37 * Locking:
38 *
39 * Each struct clk has a spinlock.
40 *
41 * To avoid AB-BA locking problems, locks must always be traversed from child
42 * clock to parent clock. For example, when enabling a clock, the clock's lock
43 * is taken, and then clk_enable is called on the parent, which take's the
44 * parent clock's lock. There is one exceptions to this ordering: When dumping
45 * the clock tree through debugfs. In this case, clk_lock_all is called,
46 * which attemps to iterate through the entire list of clocks and take every
47 * clock lock. If any call to spin_trylock fails, all locked clocks are
48 * unlocked, and the process is retried. When all the locks are held,
49 * the only clock operation that can be called is clk_get_rate_all_locked.
50 *
51 * Within a single clock, no clock operation can call another clock operation
52 * on itself, except for clk_get_rate_locked and clk_set_rate_locked. Any
53 * clock operation can call any other clock operation on any of it's possible
54 * parents.
55 *
56 * An additional mutex, clock_list_lock, is used to protect the list of all
57 * clocks.
58 *
59 * The clock operations must lock internally to protect against
60 * read-modify-write on registers that are shared by multiple clocks
61 */
62static DEFINE_MUTEX(clock_list_lock);
Colin Crossd8611962010-01-28 16:40:29 -080063static LIST_HEAD(clocks);
64
Colin Crossd8611962010-01-28 16:40:29 -080065struct clk *tegra_get_clock_by_name(const char *name)
66{
67 struct clk *c;
68 struct clk *ret = NULL;
Colin Cross4729fd72011-02-12 16:43:05 -080069 mutex_lock(&clock_list_lock);
Colin Crossd8611962010-01-28 16:40:29 -080070 list_for_each_entry(c, &clocks, node) {
71 if (strcmp(c->name, name) == 0) {
72 ret = c;
73 break;
74 }
75 }
Colin Cross4729fd72011-02-12 16:43:05 -080076 mutex_unlock(&clock_list_lock);
Colin Crossd8611962010-01-28 16:40:29 -080077 return ret;
78}
79
Colin Cross4729fd72011-02-12 16:43:05 -080080/* Must be called with c->spinlock held */
81static unsigned long clk_predict_rate_from_parent(struct clk *c, struct clk *p)
Colin Cross71fc84c2010-06-07 20:49:46 -070082{
83 u64 rate;
84
Colin Cross4729fd72011-02-12 16:43:05 -080085 rate = clk_get_rate(p);
Colin Cross71fc84c2010-06-07 20:49:46 -070086
87 if (c->mul != 0 && c->div != 0) {
Colin Cross4729fd72011-02-12 16:43:05 -080088 rate *= c->mul;
Colin Cross421186e2011-02-12 18:21:47 -080089 rate += c->div - 1; /* round up */
Colin Cross71fc84c2010-06-07 20:49:46 -070090 do_div(rate, c->div);
91 }
92
Colin Cross4729fd72011-02-12 16:43:05 -080093 return rate;
Colin Cross71fc84c2010-06-07 20:49:46 -070094}
95
Colin Cross4729fd72011-02-12 16:43:05 -080096/* Must be called with c->spinlock held */
97unsigned long clk_get_rate_locked(struct clk *c)
98{
99 unsigned long rate;
100
101 if (c->parent)
102 rate = clk_predict_rate_from_parent(c, c->parent);
103 else
104 rate = c->rate;
105
106 return rate;
107}
108
109unsigned long clk_get_rate(struct clk *c)
110{
111 unsigned long flags;
112 unsigned long rate;
113
114 spin_lock_irqsave(&c->spinlock, flags);
115
116 rate = clk_get_rate_locked(c);
117
118 spin_unlock_irqrestore(&c->spinlock, flags);
119
120 return rate;
121}
122EXPORT_SYMBOL(clk_get_rate);
123
Colin Crossd8611962010-01-28 16:40:29 -0800124int clk_reparent(struct clk *c, struct clk *parent)
125{
Colin Crossd8611962010-01-28 16:40:29 -0800126 c->parent = parent;
Colin Crossd8611962010-01-28 16:40:29 -0800127 return 0;
128}
129
Colin Crossd8611962010-01-28 16:40:29 -0800130void clk_init(struct clk *c)
131{
Colin Cross4729fd72011-02-12 16:43:05 -0800132 spin_lock_init(&c->spinlock);
Colin Crossd8611962010-01-28 16:40:29 -0800133
134 if (c->ops && c->ops->init)
135 c->ops->init(c);
136
Colin Crossf0355302010-10-13 19:16:02 -0700137 if (!c->ops || !c->ops->enable) {
138 c->refcnt++;
Colin Cross4db4afb2011-02-20 23:35:07 -0800139 c->set = true;
Colin Crossf0355302010-10-13 19:16:02 -0700140 if (c->parent)
141 c->state = c->parent->state;
142 else
143 c->state = ON;
144 }
145
Colin Cross4729fd72011-02-12 16:43:05 -0800146 mutex_lock(&clock_list_lock);
Colin Crossd8611962010-01-28 16:40:29 -0800147 list_add(&c->node, &clocks);
Colin Cross4729fd72011-02-12 16:43:05 -0800148 mutex_unlock(&clock_list_lock);
Colin Crossd8611962010-01-28 16:40:29 -0800149}
150
Colin Cross4729fd72011-02-12 16:43:05 -0800151int clk_enable(struct clk *c)
Colin Crossd8611962010-01-28 16:40:29 -0800152{
Colin Cross4729fd72011-02-12 16:43:05 -0800153 int ret = 0;
154 unsigned long flags;
155
156 spin_lock_irqsave(&c->spinlock, flags);
Colin Crossbd41ef52010-09-08 20:01:04 -0700157
Colin Crossd8611962010-01-28 16:40:29 -0800158 if (c->refcnt == 0) {
159 if (c->parent) {
Colin Cross4729fd72011-02-12 16:43:05 -0800160 ret = clk_enable(c->parent);
Colin Crossd8611962010-01-28 16:40:29 -0800161 if (ret)
Colin Cross4729fd72011-02-12 16:43:05 -0800162 goto out;
Colin Crossd8611962010-01-28 16:40:29 -0800163 }
164
165 if (c->ops && c->ops->enable) {
166 ret = c->ops->enable(c);
167 if (ret) {
168 if (c->parent)
Colin Cross4729fd72011-02-12 16:43:05 -0800169 clk_disable(c->parent);
170 goto out;
Colin Crossd8611962010-01-28 16:40:29 -0800171 }
172 c->state = ON;
Colin Cross4db4afb2011-02-20 23:35:07 -0800173 c->set = true;
Colin Crossd8611962010-01-28 16:40:29 -0800174 }
175 }
176 c->refcnt++;
Colin Cross4729fd72011-02-12 16:43:05 -0800177out:
178 spin_unlock_irqrestore(&c->spinlock, flags);
Colin Crossd8611962010-01-28 16:40:29 -0800179 return ret;
180}
181EXPORT_SYMBOL(clk_enable);
182
Colin Cross4729fd72011-02-12 16:43:05 -0800183void clk_disable(struct clk *c)
Colin Crossd8611962010-01-28 16:40:29 -0800184{
Colin Cross4729fd72011-02-12 16:43:05 -0800185 unsigned long flags;
186
187 spin_lock_irqsave(&c->spinlock, flags);
188
Colin Crossd8611962010-01-28 16:40:29 -0800189 if (c->refcnt == 0) {
190 WARN(1, "Attempting to disable clock %s with refcnt 0", c->name);
Colin Cross4729fd72011-02-12 16:43:05 -0800191 spin_unlock_irqrestore(&c->spinlock, flags);
Colin Crossd8611962010-01-28 16:40:29 -0800192 return;
193 }
194 if (c->refcnt == 1) {
195 if (c->ops && c->ops->disable)
196 c->ops->disable(c);
197
198 if (c->parent)
Colin Cross4729fd72011-02-12 16:43:05 -0800199 clk_disable(c->parent);
Colin Crossd8611962010-01-28 16:40:29 -0800200
201 c->state = OFF;
202 }
203 c->refcnt--;
Colin Crossd8611962010-01-28 16:40:29 -0800204
Colin Cross4729fd72011-02-12 16:43:05 -0800205 spin_unlock_irqrestore(&c->spinlock, flags);
Colin Crossd8611962010-01-28 16:40:29 -0800206}
207EXPORT_SYMBOL(clk_disable);
208
Colin Crossd8611962010-01-28 16:40:29 -0800209int clk_set_parent(struct clk *c, struct clk *parent)
210{
211 int ret;
212 unsigned long flags;
Colin Cross4729fd72011-02-12 16:43:05 -0800213 unsigned long new_rate;
214 unsigned long old_rate;
215
216 spin_lock_irqsave(&c->spinlock, flags);
217
218 if (!c->ops || !c->ops->set_parent) {
219 ret = -ENOSYS;
220 goto out;
221 }
222
223 new_rate = clk_predict_rate_from_parent(c, parent);
224 old_rate = clk_get_rate_locked(c);
225
226 ret = c->ops->set_parent(c, parent);
227 if (ret)
228 goto out;
229
230out:
231 spin_unlock_irqrestore(&c->spinlock, flags);
Colin Crossd8611962010-01-28 16:40:29 -0800232 return ret;
233}
234EXPORT_SYMBOL(clk_set_parent);
235
236struct clk *clk_get_parent(struct clk *c)
237{
238 return c->parent;
239}
240EXPORT_SYMBOL(clk_get_parent);
241
Colin Cross71fc84c2010-06-07 20:49:46 -0700242int clk_set_rate_locked(struct clk *c, unsigned long rate)
243{
Colin Cross421186e2011-02-12 18:21:47 -0800244 long new_rate;
245
Colin Cross4729fd72011-02-12 16:43:05 -0800246 if (!c->ops || !c->ops->set_rate)
247 return -ENOSYS;
Colin Cross71fc84c2010-06-07 20:49:46 -0700248
249 if (rate > c->max_rate)
250 rate = c->max_rate;
251
Colin Cross421186e2011-02-12 18:21:47 -0800252 if (c->ops && c->ops->round_rate) {
253 new_rate = c->ops->round_rate(c, rate);
254
255 if (new_rate < 0)
256 return new_rate;
257
258 rate = new_rate;
259 }
260
Colin Cross4729fd72011-02-12 16:43:05 -0800261 return c->ops->set_rate(c, rate);
Colin Cross71fc84c2010-06-07 20:49:46 -0700262}
263
Colin Crossd8611962010-01-28 16:40:29 -0800264int clk_set_rate(struct clk *c, unsigned long rate)
265{
Colin Cross4729fd72011-02-12 16:43:05 -0800266 int ret;
Colin Crossd8611962010-01-28 16:40:29 -0800267 unsigned long flags;
268
Colin Cross4729fd72011-02-12 16:43:05 -0800269 spin_lock_irqsave(&c->spinlock, flags);
270
Colin Cross71fc84c2010-06-07 20:49:46 -0700271 ret = clk_set_rate_locked(c, rate);
Colin Cross4729fd72011-02-12 16:43:05 -0800272
273 spin_unlock_irqrestore(&c->spinlock, flags);
Colin Crossd8611962010-01-28 16:40:29 -0800274
275 return ret;
276}
277EXPORT_SYMBOL(clk_set_rate);
278
Colin Cross4729fd72011-02-12 16:43:05 -0800279
280/* Must be called with clocks lock and all indvidual clock locks held */
281unsigned long clk_get_rate_all_locked(struct clk *c)
Colin Crossd8611962010-01-28 16:40:29 -0800282{
Colin Cross4729fd72011-02-12 16:43:05 -0800283 u64 rate;
284 int mul = 1;
285 int div = 1;
286 struct clk *p = c;
Colin Crossd8611962010-01-28 16:40:29 -0800287
Colin Cross4729fd72011-02-12 16:43:05 -0800288 while (p) {
289 c = p;
290 if (c->mul != 0 && c->div != 0) {
291 mul *= c->mul;
292 div *= c->div;
293 }
294 p = c->parent;
295 }
Colin Crossd8611962010-01-28 16:40:29 -0800296
Colin Cross4729fd72011-02-12 16:43:05 -0800297 rate = c->rate;
298 rate *= mul;
299 do_div(rate, div);
Colin Crossd8611962010-01-28 16:40:29 -0800300
Colin Cross4729fd72011-02-12 16:43:05 -0800301 return rate;
Colin Crossd8611962010-01-28 16:40:29 -0800302}
Colin Crossd8611962010-01-28 16:40:29 -0800303
Colin Cross71fc84c2010-06-07 20:49:46 -0700304long clk_round_rate(struct clk *c, unsigned long rate)
305{
Colin Cross4729fd72011-02-12 16:43:05 -0800306 unsigned long flags;
307 long ret;
308
309 spin_lock_irqsave(&c->spinlock, flags);
310
311 if (!c->ops || !c->ops->round_rate) {
312 ret = -ENOSYS;
313 goto out;
314 }
Colin Cross71fc84c2010-06-07 20:49:46 -0700315
316 if (rate > c->max_rate)
317 rate = c->max_rate;
318
Colin Cross4729fd72011-02-12 16:43:05 -0800319 ret = c->ops->round_rate(c, rate);
320
321out:
322 spin_unlock_irqrestore(&c->spinlock, flags);
323 return ret;
Colin Cross71fc84c2010-06-07 20:49:46 -0700324}
325EXPORT_SYMBOL(clk_round_rate);
326
Colin Crossd8611962010-01-28 16:40:29 -0800327static int tegra_clk_init_one_from_table(struct tegra_clk_init_table *table)
328{
329 struct clk *c;
330 struct clk *p;
331
332 int ret = 0;
333
334 c = tegra_get_clock_by_name(table->name);
335
336 if (!c) {
337 pr_warning("Unable to initialize clock %s\n",
338 table->name);
339 return -ENODEV;
340 }
341
342 if (table->parent) {
343 p = tegra_get_clock_by_name(table->parent);
344 if (!p) {
345 pr_warning("Unable to find parent %s of clock %s\n",
346 table->parent, table->name);
347 return -ENODEV;
348 }
349
350 if (c->parent != p) {
351 ret = clk_set_parent(c, p);
352 if (ret) {
353 pr_warning("Unable to set parent %s of clock %s: %d\n",
354 table->parent, table->name, ret);
355 return -EINVAL;
356 }
357 }
358 }
359
360 if (table->rate && table->rate != clk_get_rate(c)) {
361 ret = clk_set_rate(c, table->rate);
362 if (ret) {
363 pr_warning("Unable to set clock %s to rate %lu: %d\n",
364 table->name, table->rate, ret);
365 return -EINVAL;
366 }
367 }
368
369 if (table->enabled) {
370 ret = clk_enable(c);
371 if (ret) {
372 pr_warning("Unable to enable clock %s: %d\n",
373 table->name, ret);
374 return -EINVAL;
375 }
376 }
377
378 return 0;
379}
380
381void tegra_clk_init_from_table(struct tegra_clk_init_table *table)
382{
383 for (; table->name; table++)
384 tegra_clk_init_one_from_table(table);
385}
386EXPORT_SYMBOL(tegra_clk_init_from_table);
387
388void tegra_periph_reset_deassert(struct clk *c)
389{
Peter De Schrijver742face2011-12-14 17:03:15 +0200390 BUG_ON(!c->ops->reset);
391 c->ops->reset(c, false);
Colin Crossd8611962010-01-28 16:40:29 -0800392}
393EXPORT_SYMBOL(tegra_periph_reset_deassert);
394
395void tegra_periph_reset_assert(struct clk *c)
396{
Peter De Schrijver742face2011-12-14 17:03:15 +0200397 BUG_ON(!c->ops->reset);
398 c->ops->reset(c, true);
Colin Crossd8611962010-01-28 16:40:29 -0800399}
400EXPORT_SYMBOL(tegra_periph_reset_assert);
401
Peter De Schrijver4fccf752012-01-09 05:35:11 +0000402/* Several extended clock configuration bits (e.g., clock routing, clock
403 * phase control) are included in PLL and peripheral clock source
404 * registers. */
405int tegra_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting)
406{
407 int ret = 0;
408 unsigned long flags;
409
410 spin_lock_irqsave(&c->spinlock, flags);
411
412 if (!c->ops || !c->ops->clk_cfg_ex) {
413 ret = -ENOSYS;
414 goto out;
415 }
416 ret = c->ops->clk_cfg_ex(c, p, setting);
417
418out:
419 spin_unlock_irqrestore(&c->spinlock, flags);
420
421 return ret;
422}
423
Colin Crossd8611962010-01-28 16:40:29 -0800424#ifdef CONFIG_DEBUG_FS
Colin Cross4729fd72011-02-12 16:43:05 -0800425
426static int __clk_lock_all_spinlocks(void)
427{
428 struct clk *c;
429
430 list_for_each_entry(c, &clocks, node)
431 if (!spin_trylock(&c->spinlock))
432 goto unlock_spinlocks;
433
434 return 0;
435
436unlock_spinlocks:
437 list_for_each_entry_continue_reverse(c, &clocks, node)
438 spin_unlock(&c->spinlock);
439
440 return -EAGAIN;
441}
442
443static void __clk_unlock_all_spinlocks(void)
444{
445 struct clk *c;
446
447 list_for_each_entry_reverse(c, &clocks, node)
448 spin_unlock(&c->spinlock);
449}
450
451/*
452 * This function retries until it can take all locks, and may take
453 * an arbitrarily long time to complete.
454 * Must be called with irqs enabled, returns with irqs disabled
455 * Must be called with clock_list_lock held
456 */
457static void clk_lock_all(void)
458{
459 int ret;
460retry:
461 local_irq_disable();
462
463 ret = __clk_lock_all_spinlocks();
464 if (ret)
465 goto failed_spinlocks;
466
467 /* All locks taken successfully, return */
468 return;
469
470failed_spinlocks:
471 local_irq_enable();
472 yield();
473 goto retry;
474}
475
476/*
477 * Unlocks all clocks after a clk_lock_all
478 * Must be called with irqs disabled, returns with irqs enabled
479 * Must be called with clock_list_lock held
480 */
481static void clk_unlock_all(void)
482{
483 __clk_unlock_all_spinlocks();
484
485 local_irq_enable();
486}
487
Colin Crossd8611962010-01-28 16:40:29 -0800488static struct dentry *clk_debugfs_root;
489
490
491static void clock_tree_show_one(struct seq_file *s, struct clk *c, int level)
492{
493 struct clk *child;
Colin Crossd8611962010-01-28 16:40:29 -0800494 const char *state = "uninit";
Colin Cross71fc84c2010-06-07 20:49:46 -0700495 char div[8] = {0};
Colin Crossd8611962010-01-28 16:40:29 -0800496
497 if (c->state == ON)
498 state = "on";
499 else if (c->state == OFF)
500 state = "off";
501
502 if (c->mul != 0 && c->div != 0) {
Colin Cross71fc84c2010-06-07 20:49:46 -0700503 if (c->mul > c->div) {
504 int mul = c->mul / c->div;
505 int mul2 = (c->mul * 10 / c->div) % 10;
506 int mul3 = (c->mul * 10) % c->div;
507 if (mul2 == 0 && mul3 == 0)
508 snprintf(div, sizeof(div), "x%d", mul);
509 else if (mul3 == 0)
510 snprintf(div, sizeof(div), "x%d.%d", mul, mul2);
511 else
512 snprintf(div, sizeof(div), "x%d.%d..", mul, mul2);
513 } else {
Colin Crossd8611962010-01-28 16:40:29 -0800514 snprintf(div, sizeof(div), "%d%s", c->div / c->mul,
515 (c->div % c->mul) ? ".5" : "");
Colin Cross71fc84c2010-06-07 20:49:46 -0700516 }
Colin Crossd8611962010-01-28 16:40:29 -0800517 }
518
Colin Cross71fc84c2010-06-07 20:49:46 -0700519 seq_printf(s, "%*s%c%c%-*s %-6s %-3d %-8s %-10lu\n",
520 level * 3 + 1, "",
521 c->rate > c->max_rate ? '!' : ' ',
522 !c->set ? '*' : ' ',
Colin Crossd8611962010-01-28 16:40:29 -0800523 30 - level * 3, c->name,
Colin Cross4729fd72011-02-12 16:43:05 -0800524 state, c->refcnt, div, clk_get_rate_all_locked(c));
525
526 list_for_each_entry(child, &clocks, node) {
527 if (child->parent != c)
528 continue;
529
Colin Crossd8611962010-01-28 16:40:29 -0800530 clock_tree_show_one(s, child, level + 1);
531 }
532}
533
534static int clock_tree_show(struct seq_file *s, void *data)
535{
536 struct clk *c;
Colin Cross71fc84c2010-06-07 20:49:46 -0700537 seq_printf(s, " clock state ref div rate\n");
538 seq_printf(s, "--------------------------------------------------------------\n");
Colin Cross4729fd72011-02-12 16:43:05 -0800539
540 mutex_lock(&clock_list_lock);
541
542 clk_lock_all();
543
Colin Crossd8611962010-01-28 16:40:29 -0800544 list_for_each_entry(c, &clocks, node)
545 if (c->parent == NULL)
546 clock_tree_show_one(s, c, 0);
Colin Cross4729fd72011-02-12 16:43:05 -0800547
548 clk_unlock_all();
549
550 mutex_unlock(&clock_list_lock);
Colin Crossd8611962010-01-28 16:40:29 -0800551 return 0;
552}
553
554static int clock_tree_open(struct inode *inode, struct file *file)
555{
556 return single_open(file, clock_tree_show, inode->i_private);
557}
558
559static const struct file_operations clock_tree_fops = {
560 .open = clock_tree_open,
561 .read = seq_read,
562 .llseek = seq_lseek,
563 .release = single_release,
564};
565
566static int possible_parents_show(struct seq_file *s, void *data)
567{
568 struct clk *c = s->private;
569 int i;
570
571 for (i = 0; c->inputs[i].input; i++) {
572 char *first = (i == 0) ? "" : " ";
573 seq_printf(s, "%s%s", first, c->inputs[i].input->name);
574 }
575 seq_printf(s, "\n");
576 return 0;
577}
578
579static int possible_parents_open(struct inode *inode, struct file *file)
580{
581 return single_open(file, possible_parents_show, inode->i_private);
582}
583
584static const struct file_operations possible_parents_fops = {
585 .open = possible_parents_open,
586 .read = seq_read,
587 .llseek = seq_lseek,
588 .release = single_release,
589};
590
591static int clk_debugfs_register_one(struct clk *c)
592{
Al Viro12520c42011-07-16 12:37:57 -0400593 struct dentry *d;
Colin Crossd8611962010-01-28 16:40:29 -0800594
595 d = debugfs_create_dir(c->name, clk_debugfs_root);
596 if (!d)
597 return -ENOMEM;
598 c->dent = d;
599
600 d = debugfs_create_u8("refcnt", S_IRUGO, c->dent, (u8 *)&c->refcnt);
601 if (!d)
602 goto err_out;
603
604 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
605 if (!d)
606 goto err_out;
607
608 d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags);
609 if (!d)
610 goto err_out;
611
612 if (c->inputs) {
613 d = debugfs_create_file("possible_parents", S_IRUGO, c->dent,
614 c, &possible_parents_fops);
615 if (!d)
616 goto err_out;
617 }
618
619 return 0;
620
621err_out:
Al Viro12520c42011-07-16 12:37:57 -0400622 debugfs_remove_recursive(c->dent);
Colin Crossd8611962010-01-28 16:40:29 -0800623 return -ENOMEM;
624}
625
626static int clk_debugfs_register(struct clk *c)
627{
628 int err;
629 struct clk *pa = c->parent;
630
631 if (pa && !pa->dent) {
632 err = clk_debugfs_register(pa);
633 if (err)
634 return err;
635 }
636
637 if (!c->dent) {
638 err = clk_debugfs_register_one(c);
639 if (err)
640 return err;
641 }
642 return 0;
643}
644
645static int __init clk_debugfs_init(void)
646{
647 struct clk *c;
648 struct dentry *d;
649 int err = -ENOMEM;
650
651 d = debugfs_create_dir("clock", NULL);
652 if (!d)
653 return -ENOMEM;
654 clk_debugfs_root = d;
655
656 d = debugfs_create_file("clock_tree", S_IRUGO, clk_debugfs_root, NULL,
657 &clock_tree_fops);
658 if (!d)
659 goto err_out;
660
661 list_for_each_entry(c, &clocks, node) {
662 err = clk_debugfs_register(c);
663 if (err)
664 goto err_out;
665 }
666 return 0;
667err_out:
668 debugfs_remove_recursive(clk_debugfs_root);
669 return err;
670}
671
672late_initcall(clk_debugfs_init);
673#endif