blob: 8506cbb7fea4a61ac99332986f1a1760b4db848a [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>
Russell Kingfced80c2008-09-06 12:10:45 +010023#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Tony Lindgrence491cf2009-10-20 09:40:47 -070025#include <plat/clock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Juha Yrjola7df34502006-06-26 16:16:22 -070027static LIST_HEAD(clocks);
Arjan van de Ven00431702006-01-12 18:42:23 +000028static DEFINE_MUTEX(clocks_mutex);
Juha Yrjola7df34502006-06-26 16:16:22 -070029static DEFINE_SPINLOCK(clockfw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000031static struct clk_functions *arch_clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Paul Walmsley3587aeb2010-05-18 18:40:26 -060033/*
Tony Lindgrenf07adc52006-01-17 15:27:09 -080034 * Standard clock functions defined in include/linux/clk.h
Paul Walmsley3587aeb2010-05-18 18:40:26 -060035 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000037int clk_enable(struct clk *clk)
38{
39 unsigned long flags;
Paul Walmsleye07f4692011-02-16 15:38:38 -070040 int ret;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000041
Tony Lindgrenb824efa2006-04-02 17:46:20 +010042 if (clk == NULL || IS_ERR(clk))
43 return -EINVAL;
44
Paul Walmsleye07f4692011-02-16 15:38:38 -070045 if (!arch_clock || !arch_clock->clk_enable)
46 return -EINVAL;
47
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000048 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -070049 ret = arch_clock->clk_enable(clk);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000050 spin_unlock_irqrestore(&clockfw_lock, flags);
51
52 return ret;
53}
54EXPORT_SYMBOL(clk_enable);
55
56void clk_disable(struct clk *clk)
57{
58 unsigned long flags;
59
Tony Lindgrenb824efa2006-04-02 17:46:20 +010060 if (clk == NULL || IS_ERR(clk))
61 return;
62
Paul Walmsleye07f4692011-02-16 15:38:38 -070063 if (!arch_clock || !arch_clock->clk_disable)
64 return;
65
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000066 spin_lock_irqsave(&clockfw_lock, flags);
Tony Lindgren7cf95772007-08-07 05:20:00 -070067 if (clk->usecount == 0) {
Paul Walmsley6041c272010-10-08 11:40:20 -060068 pr_err("Trying disable clock %s with 0 usecount\n",
Tony Lindgren7cf95772007-08-07 05:20:00 -070069 clk->name);
70 WARN_ON(1);
71 goto out;
72 }
73
Paul Walmsleye07f4692011-02-16 15:38:38 -070074 arch_clock->clk_disable(clk);
Tony Lindgren7cf95772007-08-07 05:20:00 -070075
76out:
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000077 spin_unlock_irqrestore(&clockfw_lock, flags);
78}
79EXPORT_SYMBOL(clk_disable);
80
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000081unsigned long clk_get_rate(struct clk *clk)
82{
83 unsigned long flags;
Paul Walmsleye07f4692011-02-16 15:38:38 -070084 unsigned long ret;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000085
Tony Lindgrenb824efa2006-04-02 17:46:20 +010086 if (clk == NULL || IS_ERR(clk))
87 return 0;
88
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000089 spin_lock_irqsave(&clockfw_lock, flags);
90 ret = clk->rate;
91 spin_unlock_irqrestore(&clockfw_lock, flags);
92
93 return ret;
94}
95EXPORT_SYMBOL(clk_get_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Paul Walmsley3587aeb2010-05-18 18:40:26 -060097/*
Tony Lindgrenf07adc52006-01-17 15:27:09 -080098 * Optional clock functions defined in include/linux/clk.h
Paul Walmsley3587aeb2010-05-18 18:40:26 -060099 */
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101long clk_round_rate(struct clk *clk, unsigned long rate)
102{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000103 unsigned long flags;
Paul Walmsleye07f4692011-02-16 15:38:38 -0700104 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100106 if (clk == NULL || IS_ERR(clk))
Paul Walmsleye07f4692011-02-16 15:38:38 -0700107 return 0;
108
109 if (!arch_clock || !arch_clock->clk_round_rate)
110 return 0;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100111
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000112 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700113 ret = arch_clock->clk_round_rate(clk, rate);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000114 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000116 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118EXPORT_SYMBOL(clk_round_rate);
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120int clk_set_rate(struct clk *clk, unsigned long rate)
121{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000122 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100123 int ret = -EINVAL;
124
125 if (clk == NULL || IS_ERR(clk))
126 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Paul Walmsleye07f4692011-02-16 15:38:38 -0700128 if (!arch_clock || !arch_clock->clk_set_rate)
129 return ret;
130
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000131 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700132 ret = arch_clock->clk_set_rate(clk, rate);
133 if (ret == 0)
Russell King3f0a8202009-01-31 10:05:51 +0000134 propagate_rate(clk);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000135 spin_unlock_irqrestore(&clockfw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 return ret;
138}
139EXPORT_SYMBOL(clk_set_rate);
140
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000141int clk_set_parent(struct clk *clk, struct clk *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000143 unsigned long flags;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100144 int ret = -EINVAL;
145
146 if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent))
147 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Paul Walmsleye07f4692011-02-16 15:38:38 -0700149 if (!arch_clock || !arch_clock->clk_set_parent)
150 return ret;
151
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000152 spin_lock_irqsave(&clockfw_lock, flags);
Russell King4da37822009-02-24 12:46:31 +0000153 if (clk->usecount == 0) {
Paul Walmsleye07f4692011-02-16 15:38:38 -0700154 ret = arch_clock->clk_set_parent(clk, parent);
155 if (ret == 0)
Russell King4da37822009-02-24 12:46:31 +0000156 propagate_rate(clk);
Russell King4da37822009-02-24 12:46:31 +0000157 } else
158 ret = -EBUSY;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000159 spin_unlock_irqrestore(&clockfw_lock, flags);
160
161 return ret;
162}
163EXPORT_SYMBOL(clk_set_parent);
164
165struct clk *clk_get_parent(struct clk *clk)
166{
Russell King2e777bf2009-02-08 17:49:22 +0000167 return clk->parent;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000168}
169EXPORT_SYMBOL(clk_get_parent);
170
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600171/*
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000172 * OMAP specific clock functions shared between omap1 and omap2
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600173 */
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000174
Paul Walmsleyd3730192010-01-26 20:13:11 -0700175int __initdata mpurate;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000176
177/*
178 * By default we use the rate set by the bootloader.
179 * You can override this with mpurate= cmdline option.
180 */
181static int __init omap_clk_setup(char *str)
182{
183 get_option(&str, &mpurate);
184
185 if (!mpurate)
186 return 1;
187
188 if (mpurate < 1000)
189 mpurate *= 1000000;
190
191 return 1;
192}
193__setup("mpurate=", omap_clk_setup);
194
195/* Used for clocks that always have same value as the parent clock */
Russell King8b9dbc12009-02-12 10:12:59 +0000196unsigned long followparent_recalc(struct clk *clk)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000197{
Russell King8b9dbc12009-02-12 10:12:59 +0000198 return clk->parent->rate;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000199}
200
Paul Walmsleye9b98f62010-01-26 20:12:57 -0700201/*
202 * Used for clocks that have the same value as the parent clock,
203 * divided by some factor
204 */
205unsigned long omap_fixed_divisor_recalc(struct clk *clk)
206{
207 WARN_ON(!clk->fixed_div);
208
209 return clk->parent->rate / clk->fixed_div;
210}
211
Russell King3f0a8202009-01-31 10:05:51 +0000212void clk_reparent(struct clk *child, struct clk *parent)
213{
214 list_del_init(&child->sibling);
215 if (parent)
216 list_add(&child->sibling, &parent->children);
217 child->parent = parent;
218
219 /* now do the debugfs renaming to reattach the child
220 to the proper parent */
221}
222
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000223/* Propagate rate to children */
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600224void propagate_rate(struct clk *tclk)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000225{
226 struct clk *clkp;
227
Russell King3f0a8202009-01-31 10:05:51 +0000228 list_for_each_entry(clkp, &tclk->children, sibling) {
Russell King9a5feda2008-11-13 13:44:15 +0000229 if (clkp->recalc)
Russell King8b9dbc12009-02-12 10:12:59 +0000230 clkp->rate = clkp->recalc(clkp);
Russell King3f0a8202009-01-31 10:05:51 +0000231 propagate_rate(clkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Russell King3f0a8202009-01-31 10:05:51 +0000235static LIST_HEAD(root_clks);
236
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200237/**
238 * recalculate_root_clocks - recalculate and propagate all root clocks
239 *
240 * Recalculates all root clocks (clocks with no parent), which if the
241 * clock's .recalc is set correctly, should also propagate their rates.
242 * Called at init.
243 */
244void recalculate_root_clocks(void)
245{
246 struct clk *clkp;
247
Russell King3f0a8202009-01-31 10:05:51 +0000248 list_for_each_entry(clkp, &root_clks, sibling) {
249 if (clkp->recalc)
Russell King8b9dbc12009-02-12 10:12:59 +0000250 clkp->rate = clkp->recalc(clkp);
Russell King3f0a8202009-01-31 10:05:51 +0000251 propagate_rate(clkp);
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200252 }
253}
254
Paul Walmsleyc8088112009-04-22 19:48:53 -0600255/**
Paul Walmsley79716872009-05-12 17:50:30 -0600256 * clk_preinit - initialize any fields in the struct clk before clk init
Paul Walmsleyc8088112009-04-22 19:48:53 -0600257 * @clk: struct clk * to initialize
258 *
259 * Initialize any struct clk fields needed before normal clk initialization
260 * can run. No return value.
261 */
Paul Walmsley79716872009-05-12 17:50:30 -0600262void clk_preinit(struct clk *clk)
Russell King3f0a8202009-01-31 10:05:51 +0000263{
264 INIT_LIST_HEAD(&clk->children);
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267int clk_register(struct clk *clk)
268{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100269 if (clk == NULL || IS_ERR(clk))
270 return -EINVAL;
271
Russell Kingdbb674d2009-01-22 16:08:04 +0000272 /*
273 * trap out already registered clocks
274 */
275 if (clk->node.next || clk->node.prev)
276 return 0;
277
Arjan van de Ven00431702006-01-12 18:42:23 +0000278 mutex_lock(&clocks_mutex);
Russell King3f0a8202009-01-31 10:05:51 +0000279 if (clk->parent)
280 list_add(&clk->sibling, &clk->parent->children);
281 else
282 list_add(&clk->sibling, &root_clks);
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 list_add(&clk->node, &clocks);
285 if (clk->init)
286 clk->init(clk);
Arjan van de Ven00431702006-01-12 18:42:23 +0000287 mutex_unlock(&clocks_mutex);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return 0;
290}
291EXPORT_SYMBOL(clk_register);
292
293void clk_unregister(struct clk *clk)
294{
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100295 if (clk == NULL || IS_ERR(clk))
296 return;
297
Arjan van de Ven00431702006-01-12 18:42:23 +0000298 mutex_lock(&clocks_mutex);
Russell King3f0a8202009-01-31 10:05:51 +0000299 list_del(&clk->sibling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 list_del(&clk->node);
Arjan van de Ven00431702006-01-12 18:42:23 +0000301 mutex_unlock(&clocks_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303EXPORT_SYMBOL(clk_unregister);
304
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200305void clk_enable_init_clocks(void)
306{
307 struct clk *clkp;
308
309 list_for_each_entry(clkp, &clocks, node) {
310 if (clkp->flags & ENABLE_ON_INIT)
311 clk_enable(clkp);
312 }
313}
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200314
Paul Walmsley74be8422010-02-22 22:09:29 -0700315/**
316 * omap_clk_get_by_name - locate OMAP struct clk by its name
317 * @name: name of the struct clk to locate
318 *
319 * Locate an OMAP struct clk by its name. Assumes that struct clk
320 * names are unique. Returns NULL if not found or a pointer to the
321 * struct clk if found.
322 */
323struct clk *omap_clk_get_by_name(const char *name)
324{
325 struct clk *c;
326 struct clk *ret = NULL;
327
328 mutex_lock(&clocks_mutex);
329
330 list_for_each_entry(c, &clocks, node) {
331 if (!strcmp(c->name, name)) {
332 ret = c;
333 break;
334 }
335 }
336
337 mutex_unlock(&clocks_mutex);
338
339 return ret;
340}
341
Rajendra Nayak58e846f2011-02-25 15:49:00 -0700342int omap_clk_enable_autoidle_all(void)
343{
344 struct clk *c;
345 unsigned long flags;
346
347 spin_lock_irqsave(&clockfw_lock, flags);
348
349 list_for_each_entry(c, &clocks, node)
350 if (c->ops->allow_idle)
351 c->ops->allow_idle(c);
352
353 spin_unlock_irqrestore(&clockfw_lock, flags);
354
355 return 0;
356}
357
358int omap_clk_disable_autoidle_all(void)
359{
360 struct clk *c;
361 unsigned long flags;
362
363 spin_lock_irqsave(&clockfw_lock, flags);
364
365 list_for_each_entry(c, &clocks, node)
366 if (c->ops->deny_idle)
367 c->ops->deny_idle(c);
368
369 spin_unlock_irqrestore(&clockfw_lock, flags);
370
371 return 0;
372}
373
Russell King897dcde2008-11-04 16:35:03 +0000374/*
375 * Low level helpers
376 */
377static int clkll_enable_null(struct clk *clk)
378{
379 return 0;
380}
381
382static void clkll_disable_null(struct clk *clk)
383{
384}
385
386const struct clkops clkops_null = {
387 .enable = clkll_enable_null,
388 .disable = clkll_disable_null,
389};
390
Santosh Shilimkar7c43d542010-02-22 22:09:40 -0700391/*
392 * Dummy clock
393 *
394 * Used for clock aliases that are needed on some OMAPs, but not others
395 */
396struct clk dummy_ck = {
397 .name = "dummy",
398 .ops = &clkops_null,
399};
400
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200401#ifdef CONFIG_CPU_FREQ
402void clk_init_cpufreq_table(struct cpufreq_frequency_table **table)
403{
404 unsigned long flags;
405
Paul Walmsleye07f4692011-02-16 15:38:38 -0700406 if (!arch_clock || !arch_clock->clk_init_cpufreq_table)
407 return;
408
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200409 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700410 arch_clock->clk_init_cpufreq_table(table);
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200411 spin_unlock_irqrestore(&clockfw_lock, flags);
412}
Paul Walmsley4e37c102010-01-08 15:23:16 -0700413
414void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table)
415{
416 unsigned long flags;
417
Paul Walmsleye07f4692011-02-16 15:38:38 -0700418 if (!arch_clock || !arch_clock->clk_exit_cpufreq_table)
419 return;
420
Paul Walmsley4e37c102010-01-08 15:23:16 -0700421 spin_lock_irqsave(&clockfw_lock, flags);
Paul Walmsleye07f4692011-02-16 15:38:38 -0700422 arch_clock->clk_exit_cpufreq_table(table);
Paul Walmsley4e37c102010-01-08 15:23:16 -0700423 spin_unlock_irqrestore(&clockfw_lock, flags);
424}
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200425#endif
426
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600427/*
428 *
429 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300431#ifdef CONFIG_OMAP_RESET_CLOCKS
432/*
433 * Disable any unused clocks left on by the bootloader
434 */
435static int __init clk_disable_unused(void)
436{
437 struct clk *ck;
438 unsigned long flags;
439
Paul Walmsleye07f4692011-02-16 15:38:38 -0700440 if (!arch_clock || !arch_clock->clk_disable_unused)
441 return 0;
442
Paul Walmsley6041c272010-10-08 11:40:20 -0600443 pr_info("clock: disabling unused clocks to save power\n");
Nishanth Menon0eb4fd92012-03-15 13:24:31 -0500444
445 spin_lock_irqsave(&clockfw_lock, flags);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300446 list_for_each_entry(ck, &clocks, node) {
Russell King897dcde2008-11-04 16:35:03 +0000447 if (ck->ops == &clkops_null)
448 continue;
449
Paul Walmsley3587aeb2010-05-18 18:40:26 -0600450 if (ck->usecount > 0 || !ck->enable_reg)
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300451 continue;
452
Paul Walmsleye07f4692011-02-16 15:38:38 -0700453 arch_clock->clk_disable_unused(ck);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300454 }
Nishanth Menon0eb4fd92012-03-15 13:24:31 -0500455 spin_unlock_irqrestore(&clockfw_lock, flags);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300456
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) */