blob: 567e4b54f245d9684d3525178eed385052d55d2d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/list.h>
16#include <linux/errno.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040017#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#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>
Russell Kingb851cb22008-05-22 16:38:50 +010022#include <linux/cpufreq.h>
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +030023#include <linux/debugfs.h>
Russell Kingfced80c2008-09-06 12:10:45 +010024#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/clock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Juha Yrjola7df34502006-06-26 16:16:22 -070028static LIST_HEAD(clocks);
Arjan van de Ven00431702006-01-12 18:42:23 +000029static DEFINE_MUTEX(clocks_mutex);
Juha Yrjola7df34502006-06-26 16:16:22 -070030static DEFINE_SPINLOCK(clockfw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000032static struct clk_functions *arch_clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Paul Walmsley3587aeb2010-05-18 18:40:26 -060034/*
Tony Lindgrenf07adc52006-01-17 15:27:09 -080035 * Standard clock functions defined in include/linux/clk.h
Paul Walmsley3587aeb2010-05-18 18:40:26 -060036 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000038int clk_enable(struct clk *clk)
39{
40 unsigned long flags;
Paul Walmsleye07f4692011-02-16 15:38:38 -070041 int ret;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000042
Tony Lindgrenb824efa2006-04-02 17:46:20 +010043 if (clk == NULL || IS_ERR(clk))
44 return -EINVAL;
45
Paul Walmsleye07f4692011-02-16 15:38:38 -070046 if (!arch_clock || !arch_clock->clk_enable)
47 return -EINVAL;
48
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000049 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -070050 ret = arch_clock->clk_enable(clk);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000051 spin_unlock_irqrestore(&clockfw_lock, flags);
52
53 return ret;
54}
55EXPORT_SYMBOL(clk_enable);
56
57void clk_disable(struct clk *clk)
58{
59 unsigned long flags;
60
Tony Lindgrenb824efa2006-04-02 17:46:20 +010061 if (clk == NULL || IS_ERR(clk))
62 return;
63
Paul Walmsleye07f4692011-02-16 15:38:38 -070064 if (!arch_clock || !arch_clock->clk_disable)
65 return;
66
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000067 spin_lock_irqsave(&clockfw_lock, flags);
Tony Lindgren7cf95772007-08-07 05:20:00 -070068 if (clk->usecount == 0) {
Paul Walmsley6041c272010-10-08 11:40:20 -060069 pr_err("Trying disable clock %s with 0 usecount\n",
Tony Lindgren7cf95772007-08-07 05:20:00 -070070 clk->name);
71 WARN_ON(1);
72 goto out;
73 }
74
Paul Walmsleye07f4692011-02-16 15:38:38 -070075 arch_clock->clk_disable(clk);
Tony Lindgren7cf95772007-08-07 05:20:00 -070076
77out:
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000078 spin_unlock_irqrestore(&clockfw_lock, flags);
79}
80EXPORT_SYMBOL(clk_disable);
81
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000082unsigned long clk_get_rate(struct clk *clk)
83{
84 unsigned long flags;
Paul Walmsleye07f4692011-02-16 15:38:38 -070085 unsigned long ret;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000086
Tony Lindgrenb824efa2006-04-02 17:46:20 +010087 if (clk == NULL || IS_ERR(clk))
88 return 0;
89
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000090 spin_lock_irqsave(&clockfw_lock, flags);
91 ret = clk->rate;
92 spin_unlock_irqrestore(&clockfw_lock, flags);
93
94 return ret;
95}
96EXPORT_SYMBOL(clk_get_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Paul Walmsley3587aeb2010-05-18 18:40:26 -060098/*
Tony Lindgrenf07adc52006-01-17 15:27:09 -080099 * Optional clock functions defined in include/linux/clk.h
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600100 */
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102long clk_round_rate(struct clk *clk, unsigned long rate)
103{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000104 unsigned long flags;
Paul Walmsleye07f4692011-02-16 15:38:38 -0700105 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100107 if (clk == NULL || IS_ERR(clk))
Paul Walmsleye07f4692011-02-16 15:38:38 -0700108 return 0;
109
110 if (!arch_clock || !arch_clock->clk_round_rate)
111 return 0;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100112
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000113 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700114 ret = arch_clock->clk_round_rate(clk, rate);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000115 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000117 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119EXPORT_SYMBOL(clk_round_rate);
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121int clk_set_rate(struct clk *clk, unsigned long rate)
122{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000123 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100124 int ret = -EINVAL;
125
126 if (clk == NULL || IS_ERR(clk))
127 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Paul Walmsleye07f4692011-02-16 15:38:38 -0700129 if (!arch_clock || !arch_clock->clk_set_rate)
130 return ret;
131
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000132 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700133 ret = arch_clock->clk_set_rate(clk, rate);
134 if (ret == 0)
Russell King3f0a8202009-01-31 10:05:51 +0000135 propagate_rate(clk);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000136 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 return ret;
139}
140EXPORT_SYMBOL(clk_set_rate);
141
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000142int clk_set_parent(struct clk *clk, struct clk *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000144 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100145 int ret = -EINVAL;
146
147 if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent))
148 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Paul Walmsleye07f4692011-02-16 15:38:38 -0700150 if (!arch_clock || !arch_clock->clk_set_parent)
151 return ret;
152
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000153 spin_lock_irqsave(&clockfw_lock, flags);
Russell King4da37822009-02-24 12:46:31 +0000154 if (clk->usecount == 0) {
Paul Walmsleye07f4692011-02-16 15:38:38 -0700155 ret = arch_clock->clk_set_parent(clk, parent);
156 if (ret == 0)
Russell King4da37822009-02-24 12:46:31 +0000157 propagate_rate(clk);
Russell King4da37822009-02-24 12:46:31 +0000158 } else
159 ret = -EBUSY;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000160 spin_unlock_irqrestore(&clockfw_lock, flags);
161
162 return ret;
163}
164EXPORT_SYMBOL(clk_set_parent);
165
166struct clk *clk_get_parent(struct clk *clk)
167{
Russell King2e777bf2009-02-08 17:49:22 +0000168 return clk->parent;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000169}
170EXPORT_SYMBOL(clk_get_parent);
171
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600172/*
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000173 * OMAP specific clock functions shared between omap1 and omap2
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600174 */
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000175
Paul Walmsleyd3730192010-01-26 20:13:11 -0700176int __initdata mpurate;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000177
178/*
179 * By default we use the rate set by the bootloader.
180 * You can override this with mpurate= cmdline option.
181 */
182static int __init omap_clk_setup(char *str)
183{
184 get_option(&str, &mpurate);
185
186 if (!mpurate)
187 return 1;
188
189 if (mpurate < 1000)
190 mpurate *= 1000000;
191
192 return 1;
193}
194__setup("mpurate=", omap_clk_setup);
195
196/* Used for clocks that always have same value as the parent clock */
Russell King8b9dbc12009-02-12 10:12:59 +0000197unsigned long followparent_recalc(struct clk *clk)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000198{
Russell King8b9dbc12009-02-12 10:12:59 +0000199 return clk->parent->rate;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000200}
201
Paul Walmsleye9b98f62010-01-26 20:12:57 -0700202/*
203 * Used for clocks that have the same value as the parent clock,
204 * divided by some factor
205 */
206unsigned long omap_fixed_divisor_recalc(struct clk *clk)
207{
208 WARN_ON(!clk->fixed_div);
209
210 return clk->parent->rate / clk->fixed_div;
211}
212
Russell King3f0a8202009-01-31 10:05:51 +0000213void clk_reparent(struct clk *child, struct clk *parent)
214{
215 list_del_init(&child->sibling);
216 if (parent)
217 list_add(&child->sibling, &parent->children);
218 child->parent = parent;
219
220 /* now do the debugfs renaming to reattach the child
221 to the proper parent */
222}
223
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000224/* Propagate rate to children */
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600225void propagate_rate(struct clk *tclk)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000226{
227 struct clk *clkp;
228
Russell King3f0a8202009-01-31 10:05:51 +0000229 list_for_each_entry(clkp, &tclk->children, sibling) {
Russell King9a5feda2008-11-13 13:44:15 +0000230 if (clkp->recalc)
Russell King8b9dbc12009-02-12 10:12:59 +0000231 clkp->rate = clkp->recalc(clkp);
Russell King3f0a8202009-01-31 10:05:51 +0000232 propagate_rate(clkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Russell King3f0a8202009-01-31 10:05:51 +0000236static LIST_HEAD(root_clks);
237
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200238/**
239 * recalculate_root_clocks - recalculate and propagate all root clocks
240 *
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.
244 */
245void recalculate_root_clocks(void)
246{
247 struct clk *clkp;
248
Russell King3f0a8202009-01-31 10:05:51 +0000249 list_for_each_entry(clkp, &root_clks, sibling) {
250 if (clkp->recalc)
Russell King8b9dbc12009-02-12 10:12:59 +0000251 clkp->rate = clkp->recalc(clkp);
Russell King3f0a8202009-01-31 10:05:51 +0000252 propagate_rate(clkp);
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200253 }
254}
255
Paul Walmsleyc8088112009-04-22 19:48:53 -0600256/**
Paul Walmsley79716872009-05-12 17:50:30 -0600257 * clk_preinit - initialize any fields in the struct clk before clk init
Paul Walmsleyc8088112009-04-22 19:48:53 -0600258 * @clk: struct clk * to initialize
259 *
260 * Initialize any struct clk fields needed before normal clk initialization
261 * can run. No return value.
262 */
Paul Walmsley79716872009-05-12 17:50:30 -0600263void clk_preinit(struct clk *clk)
Russell King3f0a8202009-01-31 10:05:51 +0000264{
265 INIT_LIST_HEAD(&clk->children);
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268int clk_register(struct clk *clk)
269{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100270 if (clk == NULL || IS_ERR(clk))
271 return -EINVAL;
272
Russell Kingdbb674d2009-01-22 16:08:04 +0000273 /*
274 * trap out already registered clocks
275 */
276 if (clk->node.next || clk->node.prev)
277 return 0;
278
Arjan van de Ven00431702006-01-12 18:42:23 +0000279 mutex_lock(&clocks_mutex);
Russell King3f0a8202009-01-31 10:05:51 +0000280 if (clk->parent)
281 list_add(&clk->sibling, &clk->parent->children);
282 else
283 list_add(&clk->sibling, &root_clks);
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 list_add(&clk->node, &clocks);
286 if (clk->init)
287 clk->init(clk);
Arjan van de Ven00431702006-01-12 18:42:23 +0000288 mutex_unlock(&clocks_mutex);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return 0;
291}
292EXPORT_SYMBOL(clk_register);
293
294void clk_unregister(struct clk *clk)
295{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100296 if (clk == NULL || IS_ERR(clk))
297 return;
298
Arjan van de Ven00431702006-01-12 18:42:23 +0000299 mutex_lock(&clocks_mutex);
Russell King3f0a8202009-01-31 10:05:51 +0000300 list_del(&clk->sibling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 list_del(&clk->node);
Arjan van de Ven00431702006-01-12 18:42:23 +0000302 mutex_unlock(&clocks_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304EXPORT_SYMBOL(clk_unregister);
305
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200306void clk_enable_init_clocks(void)
307{
308 struct clk *clkp;
309
310 list_for_each_entry(clkp, &clocks, node) {
311 if (clkp->flags & ENABLE_ON_INIT)
312 clk_enable(clkp);
313 }
314}
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200315
Paul Walmsley74be8422010-02-22 22:09:29 -0700316/**
317 * omap_clk_get_by_name - locate OMAP struct clk by its name
318 * @name: name of the struct clk to locate
319 *
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.
323 */
324struct clk *omap_clk_get_by_name(const char *name)
325{
326 struct clk *c;
327 struct clk *ret = NULL;
328
329 mutex_lock(&clocks_mutex);
330
331 list_for_each_entry(c, &clocks, node) {
332 if (!strcmp(c->name, name)) {
333 ret = c;
334 break;
335 }
336 }
337
338 mutex_unlock(&clocks_mutex);
339
340 return ret;
341}
342
Rajendra Nayak58e846f2011-02-25 15:49:00 -0700343int omap_clk_enable_autoidle_all(void)
344{
345 struct clk *c;
346 unsigned long flags;
347
348 spin_lock_irqsave(&clockfw_lock, flags);
349
350 list_for_each_entry(c, &clocks, node)
351 if (c->ops->allow_idle)
352 c->ops->allow_idle(c);
353
354 spin_unlock_irqrestore(&clockfw_lock, flags);
355
356 return 0;
357}
358
359int omap_clk_disable_autoidle_all(void)
360{
361 struct clk *c;
362 unsigned long flags;
363
364 spin_lock_irqsave(&clockfw_lock, flags);
365
366 list_for_each_entry(c, &clocks, node)
367 if (c->ops->deny_idle)
368 c->ops->deny_idle(c);
369
370 spin_unlock_irqrestore(&clockfw_lock, flags);
371
372 return 0;
373}
374
Russell King897dcde2008-11-04 16:35:03 +0000375/*
376 * Low level helpers
377 */
378static int clkll_enable_null(struct clk *clk)
379{
380 return 0;
381}
382
383static void clkll_disable_null(struct clk *clk)
384{
385}
386
387const struct clkops clkops_null = {
388 .enable = clkll_enable_null,
389 .disable = clkll_disable_null,
390};
391
Santosh Shilimkar7c43d542010-02-22 22:09:40 -0700392/*
393 * Dummy clock
394 *
395 * Used for clock aliases that are needed on some OMAPs, but not others
396 */
397struct clk dummy_ck = {
398 .name = "dummy",
399 .ops = &clkops_null,
400};
401
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200402#ifdef CONFIG_CPU_FREQ
403void clk_init_cpufreq_table(struct cpufreq_frequency_table **table)
404{
405 unsigned long flags;
406
Paul Walmsleye07f4692011-02-16 15:38:38 -0700407 if (!arch_clock || !arch_clock->clk_init_cpufreq_table)
408 return;
409
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200410 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700411 arch_clock->clk_init_cpufreq_table(table);
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200412 spin_unlock_irqrestore(&clockfw_lock, flags);
413}
Paul Walmsley4e37c102010-01-08 15:23:16 -0700414
415void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table)
416{
417 unsigned long flags;
418
Paul Walmsleye07f4692011-02-16 15:38:38 -0700419 if (!arch_clock || !arch_clock->clk_exit_cpufreq_table)
420 return;
421
Paul Walmsley4e37c102010-01-08 15:23:16 -0700422 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700423 arch_clock->clk_exit_cpufreq_table(table);
Paul Walmsley4e37c102010-01-08 15:23:16 -0700424 spin_unlock_irqrestore(&clockfw_lock, flags);
425}
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200426#endif
427
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600428/*
429 *
430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300432#ifdef CONFIG_OMAP_RESET_CLOCKS
433/*
434 * Disable any unused clocks left on by the bootloader
435 */
436static int __init clk_disable_unused(void)
437{
438 struct clk *ck;
439 unsigned long flags;
440
Paul Walmsleye07f4692011-02-16 15:38:38 -0700441 if (!arch_clock || !arch_clock->clk_disable_unused)
442 return 0;
443
Paul Walmsley6041c272010-10-08 11:40:20 -0600444 pr_info("clock: disabling unused clocks to save power\n");
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300445 list_for_each_entry(ck, &clocks, node) {
Russell King897dcde2008-11-04 16:35:03 +0000446 if (ck->ops == &clkops_null)
447 continue;
448
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600449 if (ck->usecount > 0 || !ck->enable_reg)
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300450 continue;
451
452 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700453 arch_clock->clk_disable_unused(ck);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300454 spin_unlock_irqrestore(&clockfw_lock, flags);
455 }
456
457 return 0;
458}
459late_initcall(clk_disable_unused);
Paul Walmsleyb80b9562011-02-25 15:49:01 -0700460late_initcall(omap_clk_enable_autoidle_all);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300461#endif
462
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000463int __init clk_init(struct clk_functions * custom_clocks)
464{
465 if (!custom_clocks) {
Paul Walmsley6041c272010-10-08 11:40:20 -0600466 pr_err("No custom clock functions registered\n");
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000467 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000470 arch_clock = custom_clocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 return 0;
473}
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200474
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300475#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
476/*
477 * debugfs support to trace clock tree hierarchy and attributes
478 */
Jon Huntera5302572011-07-10 05:57:33 -0600479
480#include <linux/debugfs.h>
481#include <linux/seq_file.h>
482
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300483static struct dentry *clk_debugfs_root;
484
Jon Huntera5302572011-07-10 05:57:33 -0600485static int clk_dbg_show_summary(struct seq_file *s, void *unused)
486{
487 struct clk *c;
488 struct clk *pa;
489
490 seq_printf(s, "%-30s %-30s %-10s %s\n",
491 "clock-name", "parent-name", "rate", "use-count");
492
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);
497 }
498
499 return 0;
500}
501
502static int clk_dbg_open(struct inode *inode, struct file *file)
503{
504 return single_open(file, clk_dbg_show_summary, inode->i_private);
505}
506
507static const struct file_operations debug_clock_fops = {
508 .open = clk_dbg_open,
509 .read = seq_read,
510 .llseek = seq_lseek,
511 .release = single_release,
512};
513
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300514static int clk_debugfs_register_one(struct clk *c)
515{
516 int err;
Al Viro12520c42011-07-16 12:37:57 -0400517 struct dentry *d;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300518 struct clk *pa = c->parent;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300519
Al Viroc066b652011-07-16 12:41:29 -0400520 d = debugfs_create_dir(c->name, pa ? pa->dent : clk_debugfs_root);
Zhaoleie621f262008-11-04 13:35:07 -0800521 if (!d)
522 return -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300523 c->dent = d;
524
525 d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount);
Zhaoleie621f262008-11-04 13:35:07 -0800526 if (!d) {
527 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300528 goto err_out;
529 }
530 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
Zhaoleie621f262008-11-04 13:35:07 -0800531 if (!d) {
532 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300533 goto err_out;
534 }
535 d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags);
Zhaoleie621f262008-11-04 13:35:07 -0800536 if (!d) {
537 err = -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300538 goto err_out;
539 }
540 return 0;
541
542err_out:
Al Viro12520c42011-07-16 12:37:57 -0400543 debugfs_remove_recursive(c->dent);
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300544 return err;
545}
546
547static int clk_debugfs_register(struct clk *c)
548{
549 int err;
550 struct clk *pa = c->parent;
551
552 if (pa && !pa->dent) {
553 err = clk_debugfs_register(pa);
554 if (err)
555 return err;
556 }
557
558 if (!c->dent) {
559 err = clk_debugfs_register_one(c);
560 if (err)
561 return err;
562 }
563 return 0;
564}
565
566static int __init clk_debugfs_init(void)
567{
568 struct clk *c;
569 struct dentry *d;
570 int err;
571
572 d = debugfs_create_dir("clock", NULL);
Zhaoleie621f262008-11-04 13:35:07 -0800573 if (!d)
574 return -ENOMEM;
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300575 clk_debugfs_root = d;
576
577 list_for_each_entry(c, &clocks, node) {
578 err = clk_debugfs_register(c);
579 if (err)
580 goto err_out;
581 }
Jon Huntera5302572011-07-10 05:57:33 -0600582
583 d = debugfs_create_file("summary", S_IRUGO,
584 d, NULL, &debug_clock_fops);
585 if (!d)
586 return -ENOMEM;
587
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300588 return 0;
589err_out:
Hiroshi DOYUca4caa42009-09-03 20:14:06 +0300590 debugfs_remove_recursive(clk_debugfs_root);
Hiroshi DOYU137b3ee2008-07-03 12:24:41 +0300591 return err;
592}
593late_initcall(clk_debugfs_init);
594
595#endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */