blob: 058c77f72a071e821bafad7218e3df131c7dac08 [file] [log] [blame]
Vladimir Barinov3e062b02007-06-05 16:36:55 +01001/*
Kevin Hilmanc5b736d2009-03-20 17:29:01 -07002 * Clock and PLL control for DaVinci devices
Vladimir Barinov3e062b02007-06-05 16:36:55 +01003 *
Kevin Hilmanc5b736d2009-03-20 17:29:01 -07004 * Copyright (C) 2006-2007 Texas Instruments.
5 * Copyright (C) 2008-2009 Deep Root Systems, LLC
Vladimir Barinov3e062b02007-06-05 16:36:55 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/errno.h>
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070017#include <linux/clk.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010018#include <linux/err.h>
19#include <linux/mutex.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Sekhar Norid6a61562009-08-31 15:48:03 +053021#include <linux/delay.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010024
Kevin Hilman28552c22010-02-25 15:36:38 -080025#include <mach/clock.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/psc.h>
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070027#include <mach/cputype.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010028#include "clock.h"
29
Vladimir Barinov3e062b02007-06-05 16:36:55 +010030static LIST_HEAD(clocks);
31static DEFINE_MUTEX(clocks_mutex);
32static DEFINE_SPINLOCK(clockfw_lock);
33
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070034static unsigned psc_domain(struct clk *clk)
Vladimir Barinov3e062b02007-06-05 16:36:55 +010035{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070036 return (clk->flags & PSC_DSP)
37 ? DAVINCI_GPSC_DSPDOMAIN
38 : DAVINCI_GPSC_ARMDOMAIN;
Vladimir Barinov3e062b02007-06-05 16:36:55 +010039}
Vladimir Barinov3e062b02007-06-05 16:36:55 +010040
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070041static void __clk_enable(struct clk *clk)
Vladimir Barinov3e062b02007-06-05 16:36:55 +010042{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070043 if (clk->parent)
44 __clk_enable(clk->parent);
45 if (clk->usecount++ == 0 && (clk->flags & CLK_PSC))
Sergei Shtylyov789a7852009-09-30 19:48:03 +040046 davinci_psc_config(psc_domain(clk), clk->gpsc, clk->lpsc, 1);
Vladimir Barinov3e062b02007-06-05 16:36:55 +010047}
48
49static void __clk_disable(struct clk *clk)
50{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070051 if (WARN_ON(clk->usecount == 0))
Vladimir Barinov3e062b02007-06-05 16:36:55 +010052 return;
Chaithrika U S679f9212009-12-15 18:02:58 +053053 if (--clk->usecount == 0 && !(clk->flags & CLK_PLL) &&
54 (clk->flags & CLK_PSC))
Sergei Shtylyov789a7852009-09-30 19:48:03 +040055 davinci_psc_config(psc_domain(clk), clk->gpsc, clk->lpsc, 0);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070056 if (clk->parent)
57 __clk_disable(clk->parent);
Vladimir Barinov3e062b02007-06-05 16:36:55 +010058}
59
60int clk_enable(struct clk *clk)
61{
62 unsigned long flags;
Vladimir Barinov3e062b02007-06-05 16:36:55 +010063
64 if (clk == NULL || IS_ERR(clk))
65 return -EINVAL;
66
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070067 spin_lock_irqsave(&clockfw_lock, flags);
68 __clk_enable(clk);
69 spin_unlock_irqrestore(&clockfw_lock, flags);
Vladimir Barinov3e062b02007-06-05 16:36:55 +010070
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070071 return 0;
Vladimir Barinov3e062b02007-06-05 16:36:55 +010072}
73EXPORT_SYMBOL(clk_enable);
74
75void clk_disable(struct clk *clk)
76{
77 unsigned long flags;
78
79 if (clk == NULL || IS_ERR(clk))
80 return;
81
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070082 spin_lock_irqsave(&clockfw_lock, flags);
83 __clk_disable(clk);
84 spin_unlock_irqrestore(&clockfw_lock, flags);
Vladimir Barinov3e062b02007-06-05 16:36:55 +010085}
86EXPORT_SYMBOL(clk_disable);
87
88unsigned long clk_get_rate(struct clk *clk)
89{
90 if (clk == NULL || IS_ERR(clk))
91 return -EINVAL;
92
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070093 return clk->rate;
Vladimir Barinov3e062b02007-06-05 16:36:55 +010094}
95EXPORT_SYMBOL(clk_get_rate);
96
97long clk_round_rate(struct clk *clk, unsigned long rate)
98{
99 if (clk == NULL || IS_ERR(clk))
100 return -EINVAL;
101
Sekhar Norid6a61562009-08-31 15:48:03 +0530102 if (clk->round_rate)
103 return clk->round_rate(clk, rate);
104
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700105 return clk->rate;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100106}
107EXPORT_SYMBOL(clk_round_rate);
108
Sekhar Norid6a61562009-08-31 15:48:03 +0530109/* Propagate rate to children */
110static void propagate_rate(struct clk *root)
111{
112 struct clk *clk;
113
114 list_for_each_entry(clk, &root->children, childnode) {
115 if (clk->recalc)
116 clk->rate = clk->recalc(clk);
117 propagate_rate(clk);
118 }
119}
120
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100121int clk_set_rate(struct clk *clk, unsigned long rate)
122{
Sekhar Norid6a61562009-08-31 15:48:03 +0530123 unsigned long flags;
124 int ret = -EINVAL;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100125
Sekhar Norid6a61562009-08-31 15:48:03 +0530126 if (clk == NULL || IS_ERR(clk))
127 return ret;
128
Sekhar Norid6a61562009-08-31 15:48:03 +0530129 if (clk->set_rate)
130 ret = clk->set_rate(clk, rate);
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530131
132 spin_lock_irqsave(&clockfw_lock, flags);
Sekhar Norid6a61562009-08-31 15:48:03 +0530133 if (ret == 0) {
134 if (clk->recalc)
135 clk->rate = clk->recalc(clk);
136 propagate_rate(clk);
137 }
138 spin_unlock_irqrestore(&clockfw_lock, flags);
139
140 return ret;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100141}
142EXPORT_SYMBOL(clk_set_rate);
143
Sekhar Norib82a51e2009-08-31 15:48:04 +0530144int clk_set_parent(struct clk *clk, struct clk *parent)
145{
146 unsigned long flags;
147
148 if (clk == NULL || IS_ERR(clk))
149 return -EINVAL;
150
151 /* Cannot change parent on enabled clock */
152 if (WARN_ON(clk->usecount))
153 return -EINVAL;
154
155 mutex_lock(&clocks_mutex);
156 clk->parent = parent;
157 list_del_init(&clk->childnode);
158 list_add(&clk->childnode, &clk->parent->children);
159 mutex_unlock(&clocks_mutex);
160
161 spin_lock_irqsave(&clockfw_lock, flags);
162 if (clk->recalc)
163 clk->rate = clk->recalc(clk);
164 propagate_rate(clk);
165 spin_unlock_irqrestore(&clockfw_lock, flags);
166
167 return 0;
168}
169EXPORT_SYMBOL(clk_set_parent);
170
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100171int clk_register(struct clk *clk)
172{
173 if (clk == NULL || IS_ERR(clk))
174 return -EINVAL;
175
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700176 if (WARN(clk->parent && !clk->parent->rate,
177 "CLK: %s parent %s has no rate!\n",
178 clk->name, clk->parent->name))
179 return -EINVAL;
180
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530181 INIT_LIST_HEAD(&clk->children);
182
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100183 mutex_lock(&clocks_mutex);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700184 list_add_tail(&clk->node, &clocks);
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530185 if (clk->parent)
186 list_add_tail(&clk->childnode, &clk->parent->children);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100187 mutex_unlock(&clocks_mutex);
188
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700189 /* If rate is already set, use it */
190 if (clk->rate)
191 return 0;
192
Sekhar Noride381a92009-08-31 15:48:02 +0530193 /* Else, see if there is a way to calculate it */
194 if (clk->recalc)
195 clk->rate = clk->recalc(clk);
196
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700197 /* Otherwise, default to parent rate */
Sekhar Noride381a92009-08-31 15:48:02 +0530198 else if (clk->parent)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700199 clk->rate = clk->parent->rate;
200
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100201 return 0;
202}
203EXPORT_SYMBOL(clk_register);
204
205void clk_unregister(struct clk *clk)
206{
207 if (clk == NULL || IS_ERR(clk))
208 return;
209
210 mutex_lock(&clocks_mutex);
211 list_del(&clk->node);
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530212 list_del(&clk->childnode);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100213 mutex_unlock(&clocks_mutex);
214}
215EXPORT_SYMBOL(clk_unregister);
216
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700217#ifdef CONFIG_DAVINCI_RESET_CLOCKS
218/*
219 * Disable any unused clocks left on by the bootloader
220 */
221static int __init clk_disable_unused(void)
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100222{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700223 struct clk *ck;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100224
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700225 spin_lock_irq(&clockfw_lock);
226 list_for_each_entry(ck, &clocks, node) {
227 if (ck->usecount > 0)
228 continue;
229 if (!(ck->flags & CLK_PSC))
230 continue;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100231
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700232 /* ignore if in Disabled or SwRstDisable states */
Sergei Shtylyov789a7852009-09-30 19:48:03 +0400233 if (!davinci_psc_is_clk_active(ck->gpsc, ck->lpsc))
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700234 continue;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100235
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700236 pr_info("Clocks: disable unused %s\n", ck->name);
Sergei Shtylyov789a7852009-09-30 19:48:03 +0400237 davinci_psc_config(psc_domain(ck), ck->gpsc, ck->lpsc, 0);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700238 }
239 spin_unlock_irq(&clockfw_lock);
240
241 return 0;
242}
243late_initcall(clk_disable_unused);
244#endif
245
Sekhar Noride381a92009-08-31 15:48:02 +0530246static unsigned long clk_sysclk_recalc(struct clk *clk)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700247{
248 u32 v, plldiv;
249 struct pll_data *pll;
Sekhar Noride381a92009-08-31 15:48:02 +0530250 unsigned long rate = clk->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700251
252 /* If this is the PLL base clock, no more calculations needed */
253 if (clk->pll_data)
Sekhar Noride381a92009-08-31 15:48:02 +0530254 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700255
256 if (WARN_ON(!clk->parent))
Sekhar Noride381a92009-08-31 15:48:02 +0530257 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700258
Sekhar Noride381a92009-08-31 15:48:02 +0530259 rate = clk->parent->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700260
261 /* Otherwise, the parent must be a PLL */
262 if (WARN_ON(!clk->parent->pll_data))
Sekhar Noride381a92009-08-31 15:48:02 +0530263 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700264
265 pll = clk->parent->pll_data;
266
267 /* If pre-PLL, source clock is before the multiplier and divider(s) */
268 if (clk->flags & PRE_PLL)
Sekhar Noride381a92009-08-31 15:48:02 +0530269 rate = pll->input_rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700270
271 if (!clk->div_reg)
Sekhar Noride381a92009-08-31 15:48:02 +0530272 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700273
274 v = __raw_readl(pll->base + clk->div_reg);
275 if (v & PLLDIV_EN) {
276 plldiv = (v & PLLDIV_RATIO_MASK) + 1;
277 if (plldiv)
Sekhar Noride381a92009-08-31 15:48:02 +0530278 rate /= plldiv;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700279 }
Sekhar Noride381a92009-08-31 15:48:02 +0530280
281 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700282}
283
Sekhar Noride381a92009-08-31 15:48:02 +0530284static unsigned long clk_leafclk_recalc(struct clk *clk)
285{
286 if (WARN_ON(!clk->parent))
287 return clk->rate;
288
289 return clk->parent->rate;
290}
291
292static unsigned long clk_pllclk_recalc(struct clk *clk)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700293{
294 u32 ctrl, mult = 1, prediv = 1, postdiv = 1;
295 u8 bypass;
296 struct pll_data *pll = clk->pll_data;
Sekhar Noride381a92009-08-31 15:48:02 +0530297 unsigned long rate = clk->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700298
299 pll->base = IO_ADDRESS(pll->phys_base);
300 ctrl = __raw_readl(pll->base + PLLCTL);
Sekhar Noride381a92009-08-31 15:48:02 +0530301 rate = pll->input_rate = clk->parent->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700302
303 if (ctrl & PLLCTL_PLLEN) {
304 bypass = 0;
305 mult = __raw_readl(pll->base + PLLM);
Sandeep Paulrajfb8fcb82009-06-11 09:41:05 -0400306 if (cpu_is_davinci_dm365())
307 mult = 2 * (mult & PLLM_PLLM_MASK);
308 else
309 mult = (mult & PLLM_PLLM_MASK) + 1;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700310 } else
311 bypass = 1;
312
313 if (pll->flags & PLL_HAS_PREDIV) {
314 prediv = __raw_readl(pll->base + PREDIV);
315 if (prediv & PLLDIV_EN)
316 prediv = (prediv & PLLDIV_RATIO_MASK) + 1;
317 else
318 prediv = 1;
319 }
320
321 /* pre-divider is fixed, but (some?) chips won't report that */
322 if (cpu_is_davinci_dm355() && pll->num == 1)
323 prediv = 8;
324
325 if (pll->flags & PLL_HAS_POSTDIV) {
326 postdiv = __raw_readl(pll->base + POSTDIV);
327 if (postdiv & PLLDIV_EN)
328 postdiv = (postdiv & PLLDIV_RATIO_MASK) + 1;
329 else
330 postdiv = 1;
331 }
332
333 if (!bypass) {
Sekhar Noride381a92009-08-31 15:48:02 +0530334 rate /= prediv;
335 rate *= mult;
336 rate /= postdiv;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700337 }
338
339 pr_debug("PLL%d: input = %lu MHz [ ",
340 pll->num, clk->parent->rate / 1000000);
341 if (bypass)
342 pr_debug("bypass ");
343 if (prediv > 1)
344 pr_debug("/ %d ", prediv);
345 if (mult > 1)
346 pr_debug("* %d ", mult);
347 if (postdiv > 1)
348 pr_debug("/ %d ", postdiv);
Sekhar Noride381a92009-08-31 15:48:02 +0530349 pr_debug("] --> %lu MHz output.\n", rate / 1000000);
350
351 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700352}
353
Sekhar Norid6a61562009-08-31 15:48:03 +0530354/**
355 * davinci_set_pllrate - set the output rate of a given PLL.
356 *
357 * Note: Currently tested to work with OMAP-L138 only.
358 *
359 * @pll: pll whose rate needs to be changed.
360 * @prediv: The pre divider value. Passing 0 disables the pre-divider.
361 * @pllm: The multiplier value. Passing 0 leads to multiply-by-one.
362 * @postdiv: The post divider value. Passing 0 disables the post-divider.
363 */
364int davinci_set_pllrate(struct pll_data *pll, unsigned int prediv,
365 unsigned int mult, unsigned int postdiv)
366{
367 u32 ctrl;
368 unsigned int locktime;
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530369 unsigned long flags;
Sekhar Norid6a61562009-08-31 15:48:03 +0530370
371 if (pll->base == NULL)
372 return -EINVAL;
373
374 /*
375 * PLL lock time required per OMAP-L138 datasheet is
376 * (2000 * prediv)/sqrt(pllm) OSCIN cycles. We approximate sqrt(pllm)
377 * as 4 and OSCIN cycle as 25 MHz.
378 */
379 if (prediv) {
380 locktime = ((2000 * prediv) / 100);
381 prediv = (prediv - 1) | PLLDIV_EN;
382 } else {
Sekhar Nori9a219a92009-11-16 17:21:33 +0530383 locktime = PLL_LOCK_TIME;
Sekhar Norid6a61562009-08-31 15:48:03 +0530384 }
385 if (postdiv)
386 postdiv = (postdiv - 1) | PLLDIV_EN;
387 if (mult)
388 mult = mult - 1;
389
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530390 /* Protect against simultaneous calls to PLL setting seqeunce */
391 spin_lock_irqsave(&clockfw_lock, flags);
392
Sekhar Norid6a61562009-08-31 15:48:03 +0530393 ctrl = __raw_readl(pll->base + PLLCTL);
394
395 /* Switch the PLL to bypass mode */
396 ctrl &= ~(PLLCTL_PLLENSRC | PLLCTL_PLLEN);
397 __raw_writel(ctrl, pll->base + PLLCTL);
398
Sekhar Nori9a219a92009-11-16 17:21:33 +0530399 udelay(PLL_BYPASS_TIME);
Sekhar Norid6a61562009-08-31 15:48:03 +0530400
401 /* Reset and enable PLL */
402 ctrl &= ~(PLLCTL_PLLRST | PLLCTL_PLLDIS);
403 __raw_writel(ctrl, pll->base + PLLCTL);
404
405 if (pll->flags & PLL_HAS_PREDIV)
406 __raw_writel(prediv, pll->base + PREDIV);
407
408 __raw_writel(mult, pll->base + PLLM);
409
410 if (pll->flags & PLL_HAS_POSTDIV)
411 __raw_writel(postdiv, pll->base + POSTDIV);
412
Sekhar Nori9a219a92009-11-16 17:21:33 +0530413 udelay(PLL_RESET_TIME);
Sekhar Norid6a61562009-08-31 15:48:03 +0530414
415 /* Bring PLL out of reset */
416 ctrl |= PLLCTL_PLLRST;
417 __raw_writel(ctrl, pll->base + PLLCTL);
418
419 udelay(locktime);
420
421 /* Remove PLL from bypass mode */
422 ctrl |= PLLCTL_PLLEN;
423 __raw_writel(ctrl, pll->base + PLLCTL);
424
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530425 spin_unlock_irqrestore(&clockfw_lock, flags);
426
Sekhar Norid6a61562009-08-31 15:48:03 +0530427 return 0;
428}
429EXPORT_SYMBOL(davinci_set_pllrate);
430
Kevin Hilman08aca082010-01-11 08:22:23 -0800431int __init davinci_clk_init(struct clk_lookup *clocks)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700432 {
Kevin Hilman08aca082010-01-11 08:22:23 -0800433 struct clk_lookup *c;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700434 struct clk *clk;
Kevin Hilman08aca082010-01-11 08:22:23 -0800435 size_t num_clocks = 0;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700436
Kevin Hilman08aca082010-01-11 08:22:23 -0800437 for (c = clocks; c->clk; c++) {
438 clk = c->clk;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700439
Sekhar Noride381a92009-08-31 15:48:02 +0530440 if (!clk->recalc) {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700441
Sekhar Noride381a92009-08-31 15:48:02 +0530442 /* Check if clock is a PLL */
443 if (clk->pll_data)
444 clk->recalc = clk_pllclk_recalc;
445
446 /* Else, if it is a PLL-derived clock */
447 else if (clk->flags & CLK_PLL)
448 clk->recalc = clk_sysclk_recalc;
449
450 /* Otherwise, it is a leaf clock (PSC clock) */
451 else if (clk->parent)
452 clk->recalc = clk_leafclk_recalc;
453 }
454
455 if (clk->recalc)
456 clk->rate = clk->recalc(clk);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700457
458 if (clk->lpsc)
459 clk->flags |= CLK_PSC;
460
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700461 clk_register(clk);
Kevin Hilman08aca082010-01-11 08:22:23 -0800462 num_clocks++;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700463
464 /* Turn on clocks that Linux doesn't otherwise manage */
465 if (clk->flags & ALWAYS_ENABLED)
466 clk_enable(clk);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100467 }
468
Kevin Hilman08aca082010-01-11 08:22:23 -0800469 clkdev_add_table(clocks, num_clocks);
470
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100471 return 0;
472}
473
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530474#ifdef CONFIG_DEBUG_FS
475
476#include <linux/debugfs.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100477#include <linux/seq_file.h>
478
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700479#define CLKNAME_MAX 10 /* longest clock name */
480#define NEST_DELTA 2
481#define NEST_MAX 4
482
483static void
484dump_clock(struct seq_file *s, unsigned nest, struct clk *parent)
485{
486 char *state;
487 char buf[CLKNAME_MAX + NEST_DELTA * NEST_MAX];
488 struct clk *clk;
489 unsigned i;
490
491 if (parent->flags & CLK_PLL)
492 state = "pll";
493 else if (parent->flags & CLK_PSC)
494 state = "psc";
495 else
496 state = "";
497
498 /* <nest spaces> name <pad to end> */
499 memset(buf, ' ', sizeof(buf) - 1);
500 buf[sizeof(buf) - 1] = 0;
501 i = strlen(parent->name);
502 memcpy(buf + nest, parent->name,
503 min(i, (unsigned)(sizeof(buf) - 1 - nest)));
504
505 seq_printf(s, "%s users=%2d %-3s %9ld Hz\n",
506 buf, parent->usecount, state, clk_get_rate(parent));
507 /* REVISIT show device associations too */
508
509 /* cost is now small, but not linear... */
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530510 list_for_each_entry(clk, &parent->children, childnode) {
511 dump_clock(s, nest + NEST_DELTA, clk);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700512 }
513}
514
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100515static int davinci_ck_show(struct seq_file *m, void *v)
516{
Sekhar Norif979aa62009-12-03 15:36:51 +0530517 struct clk *clk;
518
519 /*
520 * Show clock tree; We trust nonzero usecounts equate to PSC enables...
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700521 */
522 mutex_lock(&clocks_mutex);
Sekhar Norif979aa62009-12-03 15:36:51 +0530523 list_for_each_entry(clk, &clocks, node)
524 if (!clk->parent)
525 dump_clock(m, 0, clk);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700526 mutex_unlock(&clocks_mutex);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100527
528 return 0;
529}
530
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100531static int davinci_ck_open(struct inode *inode, struct file *file)
532{
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530533 return single_open(file, davinci_ck_show, NULL);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100534}
535
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530536static const struct file_operations davinci_ck_operations = {
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100537 .open = davinci_ck_open,
538 .read = seq_read,
539 .llseek = seq_lseek,
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530540 .release = single_release,
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100541};
542
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530543static int __init davinci_clk_debugfs_init(void)
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100544{
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530545 debugfs_create_file("davinci_clocks", S_IFREG | S_IRUGO, NULL, NULL,
546 &davinci_ck_operations);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100547 return 0;
548
549}
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530550device_initcall(davinci_clk_debugfs_init);
551#endif /* CONFIG_DEBUG_FS */