davinci: psc.h: clean up indentation done using spaces
[deliverable/linux.git] / arch / arm / mach-davinci / clock.c
CommitLineData
3e062b07 1/*
c5b736d0 2 * Clock and PLL control for DaVinci devices
3e062b07 3 *
c5b736d0
KH
4 * Copyright (C) 2006-2007 Texas Instruments.
5 * Copyright (C) 2008-2009 Deep Root Systems, LLC
3e062b07
VB
6 *
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>
c5b736d0 17#include <linux/clk.h>
3e062b07
VB
18#include <linux/err.h>
19#include <linux/mutex.h>
fced80c7 20#include <linux/io.h>
d6a61563 21#include <linux/delay.h>
3e062b07 22
a09e64fb 23#include <mach/hardware.h>
3e062b07 24
28552c2e 25#include <mach/clock.h>
a09e64fb 26#include <mach/psc.h>
c5b736d0 27#include <mach/cputype.h>
3e062b07
VB
28#include "clock.h"
29
3e062b07
VB
30static LIST_HEAD(clocks);
31static DEFINE_MUTEX(clocks_mutex);
32static DEFINE_SPINLOCK(clockfw_lock);
33
c5b736d0 34static unsigned psc_domain(struct clk *clk)
3e062b07 35{
c5b736d0
KH
36 return (clk->flags & PSC_DSP)
37 ? DAVINCI_GPSC_DSPDOMAIN
38 : DAVINCI_GPSC_ARMDOMAIN;
3e062b07 39}
3e062b07 40
c5b736d0 41static void __clk_enable(struct clk *clk)
3e062b07 42{
c5b736d0
KH
43 if (clk->parent)
44 __clk_enable(clk->parent);
45 if (clk->usecount++ == 0 && (clk->flags & CLK_PSC))
52958be3
CC
46 davinci_psc_config(psc_domain(clk), clk->gpsc, clk->lpsc,
47 PSC_STATE_ENABLE);
3e062b07
VB
48}
49
50static void __clk_disable(struct clk *clk)
51{
c5b736d0 52 if (WARN_ON(clk->usecount == 0))
3e062b07 53 return;
679f9218
C
54 if (--clk->usecount == 0 && !(clk->flags & CLK_PLL) &&
55 (clk->flags & CLK_PSC))
52958be3
CC
56 davinci_psc_config(psc_domain(clk), clk->gpsc, clk->lpsc,
57 (clk->flags & PSC_SWRSTDISABLE) ?
58 PSC_STATE_SWRSTDISABLE : PSC_STATE_DISABLE);
c5b736d0
KH
59 if (clk->parent)
60 __clk_disable(clk->parent);
3e062b07
VB
61}
62
63int clk_enable(struct clk *clk)
64{
65 unsigned long flags;
3e062b07
VB
66
67 if (clk == NULL || IS_ERR(clk))
68 return -EINVAL;
69
c5b736d0
KH
70 spin_lock_irqsave(&clockfw_lock, flags);
71 __clk_enable(clk);
72 spin_unlock_irqrestore(&clockfw_lock, flags);
3e062b07 73
c5b736d0 74 return 0;
3e062b07
VB
75}
76EXPORT_SYMBOL(clk_enable);
77
78void clk_disable(struct clk *clk)
79{
80 unsigned long flags;
81
82 if (clk == NULL || IS_ERR(clk))
83 return;
84
c5b736d0
KH
85 spin_lock_irqsave(&clockfw_lock, flags);
86 __clk_disable(clk);
87 spin_unlock_irqrestore(&clockfw_lock, flags);
3e062b07
VB
88}
89EXPORT_SYMBOL(clk_disable);
90
91unsigned long clk_get_rate(struct clk *clk)
92{
93 if (clk == NULL || IS_ERR(clk))
94 return -EINVAL;
95
c5b736d0 96 return clk->rate;
3e062b07
VB
97}
98EXPORT_SYMBOL(clk_get_rate);
99
100long clk_round_rate(struct clk *clk, unsigned long rate)
101{
102 if (clk == NULL || IS_ERR(clk))
103 return -EINVAL;
104
d6a61563
SN
105 if (clk->round_rate)
106 return clk->round_rate(clk, rate);
107
c5b736d0 108 return clk->rate;
3e062b07
VB
109}
110EXPORT_SYMBOL(clk_round_rate);
111
d6a61563
SN
112/* Propagate rate to children */
113static void propagate_rate(struct clk *root)
114{
115 struct clk *clk;
116
117 list_for_each_entry(clk, &root->children, childnode) {
118 if (clk->recalc)
119 clk->rate = clk->recalc(clk);
120 propagate_rate(clk);
121 }
122}
123
3e062b07
VB
124int clk_set_rate(struct clk *clk, unsigned long rate)
125{
d6a61563
SN
126 unsigned long flags;
127 int ret = -EINVAL;
128
3e062b07 129 if (clk == NULL || IS_ERR(clk))
d6a61563
SN
130 return ret;
131
d6a61563
SN
132 if (clk->set_rate)
133 ret = clk->set_rate(clk, rate);
3b43cd6f
SN
134
135 spin_lock_irqsave(&clockfw_lock, flags);
d6a61563
SN
136 if (ret == 0) {
137 if (clk->recalc)
138 clk->rate = clk->recalc(clk);
139 propagate_rate(clk);
140 }
141 spin_unlock_irqrestore(&clockfw_lock, flags);
3e062b07 142
d6a61563 143 return ret;
3e062b07
VB
144}
145EXPORT_SYMBOL(clk_set_rate);
146
b82a51e8
SN
147int clk_set_parent(struct clk *clk, struct clk *parent)
148{
149 unsigned long flags;
150
151 if (clk == NULL || IS_ERR(clk))
152 return -EINVAL;
153
154 /* Cannot change parent on enabled clock */
155 if (WARN_ON(clk->usecount))
156 return -EINVAL;
157
158 mutex_lock(&clocks_mutex);
159 clk->parent = parent;
160 list_del_init(&clk->childnode);
161 list_add(&clk->childnode, &clk->parent->children);
162 mutex_unlock(&clocks_mutex);
163
164 spin_lock_irqsave(&clockfw_lock, flags);
165 if (clk->recalc)
166 clk->rate = clk->recalc(clk);
167 propagate_rate(clk);
168 spin_unlock_irqrestore(&clockfw_lock, flags);
169
170 return 0;
171}
172EXPORT_SYMBOL(clk_set_parent);
173
3e062b07
VB
174int clk_register(struct clk *clk)
175{
176 if (clk == NULL || IS_ERR(clk))
177 return -EINVAL;
178
c5b736d0
KH
179 if (WARN(clk->parent && !clk->parent->rate,
180 "CLK: %s parent %s has no rate!\n",
181 clk->name, clk->parent->name))
182 return -EINVAL;
183
f02bf3b3
SN
184 INIT_LIST_HEAD(&clk->children);
185
3e062b07 186 mutex_lock(&clocks_mutex);
c5b736d0 187 list_add_tail(&clk->node, &clocks);
f02bf3b3
SN
188 if (clk->parent)
189 list_add_tail(&clk->childnode, &clk->parent->children);
3e062b07
VB
190 mutex_unlock(&clocks_mutex);
191
c5b736d0
KH
192 /* If rate is already set, use it */
193 if (clk->rate)
194 return 0;
195
de381a91
SN
196 /* Else, see if there is a way to calculate it */
197 if (clk->recalc)
198 clk->rate = clk->recalc(clk);
199
c5b736d0 200 /* Otherwise, default to parent rate */
de381a91 201 else if (clk->parent)
c5b736d0
KH
202 clk->rate = clk->parent->rate;
203
3e062b07
VB
204 return 0;
205}
206EXPORT_SYMBOL(clk_register);
207
208void clk_unregister(struct clk *clk)
209{
210 if (clk == NULL || IS_ERR(clk))
211 return;
212
213 mutex_lock(&clocks_mutex);
214 list_del(&clk->node);
f02bf3b3 215 list_del(&clk->childnode);
3e062b07
VB
216 mutex_unlock(&clocks_mutex);
217}
218EXPORT_SYMBOL(clk_unregister);
219
c5b736d0
KH
220#ifdef CONFIG_DAVINCI_RESET_CLOCKS
221/*
222 * Disable any unused clocks left on by the bootloader
223 */
224static int __init clk_disable_unused(void)
225{
226 struct clk *ck;
227
228 spin_lock_irq(&clockfw_lock);
229 list_for_each_entry(ck, &clocks, node) {
230 if (ck->usecount > 0)
231 continue;
232 if (!(ck->flags & CLK_PSC))
233 continue;
234
235 /* ignore if in Disabled or SwRstDisable states */
789a785e 236 if (!davinci_psc_is_clk_active(ck->gpsc, ck->lpsc))
c5b736d0
KH
237 continue;
238
c89f1681 239 pr_debug("Clocks: disable unused %s\n", ck->name);
52958be3
CC
240
241 davinci_psc_config(psc_domain(ck), ck->gpsc, ck->lpsc,
242 (ck->flags & PSC_SWRSTDISABLE) ?
243 PSC_STATE_SWRSTDISABLE : PSC_STATE_DISABLE);
3e062b07 244 }
c5b736d0
KH
245 spin_unlock_irq(&clockfw_lock);
246
247 return 0;
248}
249late_initcall(clk_disable_unused);
250#endif
3e062b07 251
de381a91 252static unsigned long clk_sysclk_recalc(struct clk *clk)
3e062b07 253{
c5b736d0
KH
254 u32 v, plldiv;
255 struct pll_data *pll;
de381a91 256 unsigned long rate = clk->rate;
c5b736d0
KH
257
258 /* If this is the PLL base clock, no more calculations needed */
259 if (clk->pll_data)
de381a91 260 return rate;
c5b736d0
KH
261
262 if (WARN_ON(!clk->parent))
de381a91 263 return rate;
c5b736d0 264
de381a91 265 rate = clk->parent->rate;
c5b736d0
KH
266
267 /* Otherwise, the parent must be a PLL */
268 if (WARN_ON(!clk->parent->pll_data))
de381a91 269 return rate;
c5b736d0
KH
270
271 pll = clk->parent->pll_data;
272
273 /* If pre-PLL, source clock is before the multiplier and divider(s) */
274 if (clk->flags & PRE_PLL)
de381a91 275 rate = pll->input_rate;
c5b736d0
KH
276
277 if (!clk->div_reg)
de381a91 278 return rate;
c5b736d0
KH
279
280 v = __raw_readl(pll->base + clk->div_reg);
281 if (v & PLLDIV_EN) {
d6961e68 282 plldiv = (v & pll->div_ratio_mask) + 1;
c5b736d0 283 if (plldiv)
de381a91 284 rate /= plldiv;
c5b736d0 285 }
de381a91
SN
286
287 return rate;
288}
289
b39639b8
SN
290int davinci_set_sysclk_rate(struct clk *clk, unsigned long rate)
291{
292 unsigned v;
293 struct pll_data *pll;
294 unsigned long input;
295 unsigned ratio = 0;
296
297 /* If this is the PLL base clock, wrong function to call */
298 if (clk->pll_data)
299 return -EINVAL;
300
301 /* There must be a parent... */
302 if (WARN_ON(!clk->parent))
303 return -EINVAL;
304
305 /* ... the parent must be a PLL... */
306 if (WARN_ON(!clk->parent->pll_data))
307 return -EINVAL;
308
309 /* ... and this clock must have a divider. */
310 if (WARN_ON(!clk->div_reg))
311 return -EINVAL;
312
313 pll = clk->parent->pll_data;
314
315 input = clk->parent->rate;
316
317 /* If pre-PLL, source clock is before the multiplier and divider(s) */
318 if (clk->flags & PRE_PLL)
319 input = pll->input_rate;
320
321 if (input > rate) {
322 /*
323 * Can afford to provide an output little higher than requested
324 * only if maximum rate supported by hardware on this sysclk
325 * is known.
326 */
327 if (clk->maxrate) {
328 ratio = DIV_ROUND_CLOSEST(input, rate);
329 if (input / ratio > clk->maxrate)
330 ratio = 0;
331 }
332
333 if (ratio == 0)
334 ratio = DIV_ROUND_UP(input, rate);
335
336 ratio--;
337 }
338
b1d05be6 339 if (ratio > pll->div_ratio_mask)
b39639b8
SN
340 return -EINVAL;
341
342 do {
343 v = __raw_readl(pll->base + PLLSTAT);
344 } while (v & PLLSTAT_GOSTAT);
345
346 v = __raw_readl(pll->base + clk->div_reg);
b1d05be6 347 v &= ~pll->div_ratio_mask;
b39639b8
SN
348 v |= ratio | PLLDIV_EN;
349 __raw_writel(v, pll->base + clk->div_reg);
350
351 v = __raw_readl(pll->base + PLLCMD);
352 v |= PLLCMD_GOSET;
353 __raw_writel(v, pll->base + PLLCMD);
354
355 do {
356 v = __raw_readl(pll->base + PLLSTAT);
357 } while (v & PLLSTAT_GOSTAT);
358
359 return 0;
360}
361EXPORT_SYMBOL(davinci_set_sysclk_rate);
362
de381a91
SN
363static unsigned long clk_leafclk_recalc(struct clk *clk)
364{
365 if (WARN_ON(!clk->parent))
366 return clk->rate;
367
368 return clk->parent->rate;
c5b736d0
KH
369}
370
de381a91 371static unsigned long clk_pllclk_recalc(struct clk *clk)
c5b736d0
KH
372{
373 u32 ctrl, mult = 1, prediv = 1, postdiv = 1;
374 u8 bypass;
375 struct pll_data *pll = clk->pll_data;
de381a91 376 unsigned long rate = clk->rate;
c5b736d0 377
c5b736d0 378 ctrl = __raw_readl(pll->base + PLLCTL);
de381a91 379 rate = pll->input_rate = clk->parent->rate;
c5b736d0
KH
380
381 if (ctrl & PLLCTL_PLLEN) {
382 bypass = 0;
383 mult = __raw_readl(pll->base + PLLM);
fb8fcb89
SP
384 if (cpu_is_davinci_dm365())
385 mult = 2 * (mult & PLLM_PLLM_MASK);
386 else
387 mult = (mult & PLLM_PLLM_MASK) + 1;
c5b736d0
KH
388 } else
389 bypass = 1;
390
391 if (pll->flags & PLL_HAS_PREDIV) {
392 prediv = __raw_readl(pll->base + PREDIV);
393 if (prediv & PLLDIV_EN)
d6961e68 394 prediv = (prediv & pll->div_ratio_mask) + 1;
c5b736d0
KH
395 else
396 prediv = 1;
397 }
398
399 /* pre-divider is fixed, but (some?) chips won't report that */
400 if (cpu_is_davinci_dm355() && pll->num == 1)
401 prediv = 8;
402
403 if (pll->flags & PLL_HAS_POSTDIV) {
404 postdiv = __raw_readl(pll->base + POSTDIV);
405 if (postdiv & PLLDIV_EN)
d6961e68 406 postdiv = (postdiv & pll->div_ratio_mask) + 1;
c5b736d0
KH
407 else
408 postdiv = 1;
409 }
410
411 if (!bypass) {
de381a91
SN
412 rate /= prediv;
413 rate *= mult;
414 rate /= postdiv;
c5b736d0
KH
415 }
416
417 pr_debug("PLL%d: input = %lu MHz [ ",
418 pll->num, clk->parent->rate / 1000000);
419 if (bypass)
420 pr_debug("bypass ");
421 if (prediv > 1)
422 pr_debug("/ %d ", prediv);
423 if (mult > 1)
424 pr_debug("* %d ", mult);
425 if (postdiv > 1)
426 pr_debug("/ %d ", postdiv);
de381a91
SN
427 pr_debug("] --> %lu MHz output.\n", rate / 1000000);
428
429 return rate;
c5b736d0
KH
430}
431
d6a61563
SN
432/**
433 * davinci_set_pllrate - set the output rate of a given PLL.
434 *
435 * Note: Currently tested to work with OMAP-L138 only.
436 *
437 * @pll: pll whose rate needs to be changed.
438 * @prediv: The pre divider value. Passing 0 disables the pre-divider.
439 * @pllm: The multiplier value. Passing 0 leads to multiply-by-one.
440 * @postdiv: The post divider value. Passing 0 disables the post-divider.
441 */
442int davinci_set_pllrate(struct pll_data *pll, unsigned int prediv,
443 unsigned int mult, unsigned int postdiv)
444{
445 u32 ctrl;
446 unsigned int locktime;
3b43cd6f 447 unsigned long flags;
d6a61563
SN
448
449 if (pll->base == NULL)
450 return -EINVAL;
451
452 /*
453 * PLL lock time required per OMAP-L138 datasheet is
454 * (2000 * prediv)/sqrt(pllm) OSCIN cycles. We approximate sqrt(pllm)
455 * as 4 and OSCIN cycle as 25 MHz.
456 */
457 if (prediv) {
458 locktime = ((2000 * prediv) / 100);
459 prediv = (prediv - 1) | PLLDIV_EN;
460 } else {
9a219a9e 461 locktime = PLL_LOCK_TIME;
d6a61563
SN
462 }
463 if (postdiv)
464 postdiv = (postdiv - 1) | PLLDIV_EN;
465 if (mult)
466 mult = mult - 1;
467
3b43cd6f
SN
468 /* Protect against simultaneous calls to PLL setting seqeunce */
469 spin_lock_irqsave(&clockfw_lock, flags);
470
d6a61563
SN
471 ctrl = __raw_readl(pll->base + PLLCTL);
472
473 /* Switch the PLL to bypass mode */
474 ctrl &= ~(PLLCTL_PLLENSRC | PLLCTL_PLLEN);
475 __raw_writel(ctrl, pll->base + PLLCTL);
476
9a219a9e 477 udelay(PLL_BYPASS_TIME);
d6a61563
SN
478
479 /* Reset and enable PLL */
480 ctrl &= ~(PLLCTL_PLLRST | PLLCTL_PLLDIS);
481 __raw_writel(ctrl, pll->base + PLLCTL);
482
483 if (pll->flags & PLL_HAS_PREDIV)
484 __raw_writel(prediv, pll->base + PREDIV);
485
486 __raw_writel(mult, pll->base + PLLM);
487
488 if (pll->flags & PLL_HAS_POSTDIV)
489 __raw_writel(postdiv, pll->base + POSTDIV);
490
9a219a9e 491 udelay(PLL_RESET_TIME);
d6a61563
SN
492
493 /* Bring PLL out of reset */
494 ctrl |= PLLCTL_PLLRST;
495 __raw_writel(ctrl, pll->base + PLLCTL);
496
497 udelay(locktime);
498
499 /* Remove PLL from bypass mode */
500 ctrl |= PLLCTL_PLLEN;
501 __raw_writel(ctrl, pll->base + PLLCTL);
502
3b43cd6f
SN
503 spin_unlock_irqrestore(&clockfw_lock, flags);
504
d6a61563
SN
505 return 0;
506}
507EXPORT_SYMBOL(davinci_set_pllrate);
508
08aca087 509int __init davinci_clk_init(struct clk_lookup *clocks)
c5b736d0 510 {
08aca087 511 struct clk_lookup *c;
c5b736d0 512 struct clk *clk;
08aca087 513 size_t num_clocks = 0;
c5b736d0 514
08aca087
KH
515 for (c = clocks; c->clk; c++) {
516 clk = c->clk;
c5b736d0 517
de381a91
SN
518 if (!clk->recalc) {
519
520 /* Check if clock is a PLL */
521 if (clk->pll_data)
522 clk->recalc = clk_pllclk_recalc;
523
524 /* Else, if it is a PLL-derived clock */
525 else if (clk->flags & CLK_PLL)
526 clk->recalc = clk_sysclk_recalc;
527
528 /* Otherwise, it is a leaf clock (PSC clock) */
529 else if (clk->parent)
530 clk->recalc = clk_leafclk_recalc;
531 }
c5b736d0 532
e4c822c7
CC
533 if (clk->pll_data) {
534 struct pll_data *pll = clk->pll_data;
535
536 if (!pll->div_ratio_mask)
537 pll->div_ratio_mask = PLLDIV_RATIO_MASK;
538
539 if (pll->phys_base && !pll->base) {
540 pll->base = ioremap(pll->phys_base, SZ_4K);
541 WARN_ON(!pll->base);
542 }
543 }
d6961e68 544
de381a91
SN
545 if (clk->recalc)
546 clk->rate = clk->recalc(clk);
c5b736d0
KH
547
548 if (clk->lpsc)
549 clk->flags |= CLK_PSC;
550
c5b736d0 551 clk_register(clk);
08aca087 552 num_clocks++;
c5b736d0
KH
553
554 /* Turn on clocks that Linux doesn't otherwise manage */
555 if (clk->flags & ALWAYS_ENABLED)
556 clk_enable(clk);
3e062b07
VB
557 }
558
08aca087
KH
559 clkdev_add_table(clocks, num_clocks);
560
3e062b07
VB
561 return 0;
562}
563
2f72e8dc 564#ifdef CONFIG_DEBUG_FS
3e062b07 565
2f72e8dc
SN
566#include <linux/debugfs.h>
567#include <linux/seq_file.h>
3e062b07 568
c5b736d0
KH
569#define CLKNAME_MAX 10 /* longest clock name */
570#define NEST_DELTA 2
571#define NEST_MAX 4
572
573static void
574dump_clock(struct seq_file *s, unsigned nest, struct clk *parent)
3e062b07 575{
c5b736d0
KH
576 char *state;
577 char buf[CLKNAME_MAX + NEST_DELTA * NEST_MAX];
578 struct clk *clk;
579 unsigned i;
580
581 if (parent->flags & CLK_PLL)
582 state = "pll";
583 else if (parent->flags & CLK_PSC)
584 state = "psc";
585 else
586 state = "";
587
588 /* <nest spaces> name <pad to end> */
589 memset(buf, ' ', sizeof(buf) - 1);
590 buf[sizeof(buf) - 1] = 0;
591 i = strlen(parent->name);
592 memcpy(buf + nest, parent->name,
593 min(i, (unsigned)(sizeof(buf) - 1 - nest)));
594
595 seq_printf(s, "%s users=%2d %-3s %9ld Hz\n",
596 buf, parent->usecount, state, clk_get_rate(parent));
597 /* REVISIT show device associations too */
598
599 /* cost is now small, but not linear... */
f02bf3b3
SN
600 list_for_each_entry(clk, &parent->children, childnode) {
601 dump_clock(s, nest + NEST_DELTA, clk);
c5b736d0
KH
602 }
603}
3e062b07 604
c5b736d0
KH
605static int davinci_ck_show(struct seq_file *m, void *v)
606{
f979aa6e
SN
607 struct clk *clk;
608
609 /*
610 * Show clock tree; We trust nonzero usecounts equate to PSC enables...
c5b736d0
KH
611 */
612 mutex_lock(&clocks_mutex);
f979aa6e
SN
613 list_for_each_entry(clk, &clocks, node)
614 if (!clk->parent)
615 dump_clock(m, 0, clk);
c5b736d0 616 mutex_unlock(&clocks_mutex);
3e062b07
VB
617
618 return 0;
619}
620
3e062b07
VB
621static int davinci_ck_open(struct inode *inode, struct file *file)
622{
2f72e8dc 623 return single_open(file, davinci_ck_show, NULL);
3e062b07
VB
624}
625
2f72e8dc 626static const struct file_operations davinci_ck_operations = {
3e062b07
VB
627 .open = davinci_ck_open,
628 .read = seq_read,
629 .llseek = seq_lseek,
2f72e8dc 630 .release = single_release,
3e062b07
VB
631};
632
2f72e8dc 633static int __init davinci_clk_debugfs_init(void)
3e062b07 634{
2f72e8dc
SN
635 debugfs_create_file("davinci_clocks", S_IFREG | S_IRUGO, NULL, NULL,
636 &davinci_ck_operations);
3e062b07
VB
637 return 0;
638
639}
2f72e8dc
SN
640device_initcall(davinci_clk_debugfs_init);
641#endif /* CONFIG_DEBUG_FS */
This page took 0.337931 seconds and 5 git commands to generate.