]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/clock.c
621babcf91234aca17a2028a020534757cbb595f
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / clock.c
1 /*
2  *  linux/arch/arm/mach-omap2/clock.c
3  *
4  *  Copyright (C) 2005-2008 Texas Instruments, Inc.
5  *  Copyright (C) 2004-2008 Nokia Corporation
6  *
7  *  Contacts:
8  *  Richard Woodruff <r-woodruff2@ti.com>
9  *  Paul Walmsley
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License version 2 as
13  * published by the Free Software Foundation.
14  */
15 #undef DEBUG
16
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/device.h>
20 #include <linux/list.h>
21 #include <linux/errno.h>
22 #include <linux/delay.h>
23 #include <linux/clk.h>
24 #include <linux/bitops.h>
25 #include <linux/io.h>
26
27 #include <mach/clock.h>
28 #include <mach/clockdomain.h>
29 #include <mach/sram.h>
30 #include <mach/cpu.h>
31 #include <mach/prcm.h>
32 #include <mach/control.h>
33 #include <asm/div64.h>
34
35 #include <mach/sdrc.h>
36 #include "sdrc.h"
37 #include "clock.h"
38 #include "prm.h"
39 #include "prm-regbits-24xx.h"
40 #include "cm.h"
41 #include "cm-regbits-24xx.h"
42 #include "cm-regbits-34xx.h"
43
44 #define MAX_CLOCK_ENABLE_WAIT           100000
45
46 /* DPLL rate rounding: minimum DPLL multiplier, divider values */
47 #define DPLL_MIN_MULTIPLIER             1
48 #define DPLL_MIN_DIVIDER                1
49
50 /* Possible error results from _dpll_test_mult */
51 #define DPLL_MULT_UNDERFLOW             (1 << 0)
52
53 /*
54  * Scale factor to mitigate roundoff errors in DPLL rate rounding.
55  * The higher the scale factor, the greater the risk of arithmetic overflow,
56  * but the closer the rounded rate to the target rate.  DPLL_SCALE_FACTOR
57  * must be a power of DPLL_SCALE_BASE.
58  */
59 #define DPLL_SCALE_FACTOR               64
60 #define DPLL_SCALE_BASE                 2
61 #define DPLL_ROUNDING_VAL               ((DPLL_SCALE_BASE / 2) * \
62                                          (DPLL_SCALE_FACTOR / DPLL_SCALE_BASE))
63
64 /* Some OMAP2xxx CM_CLKSEL_PLL.ST_CORE_CLK bits - for omap2_get_dpll_rate() */
65 #define ST_CORE_CLK_REF                 0x1
66 #define ST_CORE_CLK_32K                 0x3
67
68 /* Bitmask to isolate the register type of clk.enable_reg */
69 #define PRCM_REGTYPE_MASK               0xf0
70 /* various CM register type options */
71 #define CM_FCLKEN_REGTYPE               0x00
72 #define CM_ICLKEN_REGTYPE               0x10
73 #define CM_IDLEST_REGTYPE               0x20
74
75 u8 cpu_mask;
76
77 /*-------------------------------------------------------------------------
78  * OMAP2/3 specific clock functions
79  *-------------------------------------------------------------------------*/
80
81 /*
82  * _omap2_clk_read_reg - read a clock register
83  * @clk: struct clk *
84  *
85  * Given a struct clk *, returns the value of the clock's register.
86  */
87 static u32 _omap2_clk_read_reg(u16 reg_offset, struct clk *clk)
88 {
89         if (clk->prcm_mod & CLK_REG_IN_SCM)
90                 return omap_ctrl_readl(reg_offset);
91         else if (clk->prcm_mod & CLK_REG_IN_PRM)
92                 return prm_read_mod_reg(clk->prcm_mod & PRCM_MOD_ADDR_MASK,
93                                         reg_offset);
94         else
95                 return cm_read_mod_reg(clk->prcm_mod, reg_offset);
96 }
97
98 /*
99  * _omap2_clk_write_reg - write a clock's register
100  * @v: value to write to the clock's enable_reg
101  * @clk: struct clk *
102  *
103  * Given a register value @v and struct clk * @clk, writes the value of @v to
104  * the clock's enable register.  No return value.
105  */
106 static void _omap2_clk_write_reg(u32 v, u16 reg_offset, struct clk *clk)
107 {
108         if (clk->prcm_mod & CLK_REG_IN_SCM)
109                 omap_ctrl_writel(v, reg_offset);
110         else if (clk->prcm_mod & CLK_REG_IN_PRM)
111                 prm_write_mod_reg(v, clk->prcm_mod & PRCM_MOD_ADDR_MASK,
112                                   reg_offset);
113         else
114                 cm_write_mod_reg(v, clk->prcm_mod, reg_offset);
115 }
116
117
118 /**
119  * omap2_init_clk_clkdm - look up a clockdomain name, store pointer in clk
120  * @clk: OMAP clock struct ptr to use
121  *
122  * Convert a clockdomain name stored in a struct clk 'clk' into a
123  * clockdomain pointer, and save it into the struct clk.  Intended to be
124  * called during clk_register().  No return value.
125  */
126 void omap2_init_clk_clkdm(struct clk *clk)
127 {
128         struct clockdomain *clkdm;
129
130         if (!clk->clkdm.name) {
131                 pr_err("clock: %s: missing clockdomain", clk->name);
132                 return;
133         }
134
135         clkdm = clkdm_lookup(clk->clkdm.name);
136         if (clkdm) {
137                 pr_debug("clock: associated clk %s to clkdm %s\n",
138                          clk->name, clk->clkdm.name);
139                 clk->clkdm.ptr = clkdm;
140         } else {
141                 pr_err("clock: %s: could not associate to clkdm %s\n",
142                        clk->name, clk->clkdm.name);
143         }
144 }
145
146 /**
147  * omap2_init_clksel_parent - set a clksel clk's parent field from the hardware
148  * @clk: OMAP clock struct ptr to use
149  *
150  * Given a pointer to a source-selectable struct clk, read the hardware
151  * register and determine what its parent is currently set to.  Update the
152  * clk->parent field with the appropriate clk ptr.
153  */
154 void omap2_init_clksel_parent(struct clk *clk)
155 {
156         const struct clksel *clks;
157         const struct clksel_rate *clkr;
158         u32 r, found = 0;
159
160         if (!clk->clksel)
161                 return;
162
163         r = __raw_readl(clk->clksel_reg) & clk->clksel_mask;
164         r >>= __ffs(clk->clksel_mask);
165
166         for (clks = clk->clksel; clks->parent && !found; clks++) {
167                 for (clkr = clks->rates; clkr->div && !found; clkr++) {
168                         if ((clkr->flags & cpu_mask) && (clkr->val == r)) {
169                                 if (clk->parent != clks->parent) {
170                                         pr_debug("clock: inited %s parent "
171                                                  "to %s (was %s)\n",
172                                                  clk->name, clks->parent->name,
173                                                  ((clk->parent) ?
174                                                   clk->parent->name : "NULL"));
175                                         clk->parent = clks->parent;
176                                 };
177                                 found = 1;
178                         }
179                 }
180         }
181
182         if (!found)
183                 printk(KERN_ERR "clock: init parent: could not find "
184                        "regval %0x for clock %s\n", r,  clk->name);
185
186         return;
187 }
188
189 /**
190  * omap2_get_dpll_rate - returns the current DPLL CLKOUT rate
191  * @clk: struct clk * of a DPLL
192  *
193  * DPLLs can be locked or bypassed - basically, enabled or disabled.
194  * When locked, the DPLL output depends on the M and N values.  When
195  * bypassed, on OMAP2xxx, the output rate is either the 32KiHz clock
196  * or sys_clk.  Bypass rates on OMAP3 depend on the DPLL: DPLLs 1 and
197  * 2 are bypassed with dpll1_fclk and dpll2_fclk respectively
198  * (generated by DPLL3), while DPLL 3, 4, and 5 bypass rates are sys_clk.
199  * Returns the current DPLL CLKOUT rate (*not* CLKOUTX2) if the DPLL is
200  * locked, or the appropriate bypass rate if the DPLL is bypassed, or 0
201  * if the clock @clk is not a DPLL.
202  */
203 u32 omap2_get_dpll_rate(struct clk *clk)
204 {
205         long long dpll_clk;
206         u32 dpll_mult, dpll_div, v;
207         struct dpll_data *dd;
208
209         dd = clk->dpll_data;
210         if (!dd)
211                 return 0;
212
213         /* Return bypass rate if DPLL is bypassed */
214         v = __raw_readl(dd->idlest_reg) & dd->idlest_mask;
215         v >>= __ffs(dd->idlest_mask);
216         if (cpu_is_omap24xx()) {
217
218                 if (v == ST_CORE_CLK_REF)
219                         return clk->parent->rate; /* sys_clk */
220                 else if (v == ST_CORE_CLK_32K)
221                         return 32768;
222
223         } else if (cpu_is_omap34xx()) {
224
225                 if (!v)
226                         return dd->bypass_clk->rate;
227
228         }
229
230         v = __raw_readl(dd->mult_div1_reg);
231         dpll_mult = v & dd->mult_mask;
232         dpll_mult >>= __ffs(dd->mult_mask);
233         dpll_div = v & dd->div1_mask;
234         dpll_div >>= __ffs(dd->div1_mask);
235
236         dpll_clk = (long long)clk->parent->rate * dpll_mult;
237         do_div(dpll_clk, dpll_div + 1);
238
239         return dpll_clk;
240 }
241
242 /*
243  * Used for clocks that have the same value as the parent clock,
244  * divided by some factor
245  */
246 void omap2_fixed_divisor_recalc(struct clk *clk)
247 {
248         WARN_ON(!clk->fixed_div);
249
250         clk->rate = clk->parent->rate / clk->fixed_div;
251
252         if (clk->flags & RATE_PROPAGATES)
253                 propagate_rate(clk);
254 }
255
256 /**
257  * omap2_wait_clock_ready - wait for clock to enable
258  * @prcm_mod: CM submodule offset from CM_BASE (e.g., "MPU_MOD")
259  * @reg_index: offset of CM register address from prcm_mod
260  * @mask: value to mask against to determine if the clock is active
261  * @name: name of the clock (for printk)
262  *
263  * Returns 1 if the clock enabled in time, or 0 if it failed to enable
264  * in roughly MAX_CLOCK_ENABLE_WAIT microseconds.
265  */
266 int omap2_wait_clock_ready(s16 prcm_mod, u16 reg_index, u32 mask,
267                            const char *name)
268 {
269         int i = 0, ena = 0;
270
271         /*
272          * 24xx uses 0 to indicate not ready, and 1 to indicate ready.
273          * 34xx reverses this, just to keep us on our toes
274          */
275         if (cpu_mask & (RATE_IN_242X | RATE_IN_243X))
276                 ena = mask;
277         else if (cpu_mask & RATE_IN_343X)
278                 ena = 0;
279
280         /* Wait for lock */
281         while (((cm_read_mod_reg(prcm_mod, reg_index) & mask) != ena) &&
282                (i++ < MAX_CLOCK_ENABLE_WAIT)) {
283                 udelay(1);
284         }
285
286         if (i < MAX_CLOCK_ENABLE_WAIT)
287                 pr_debug("Clock %s stable after %d loops\n", name, i);
288         else
289                 printk(KERN_ERR "Clock %s didn't enable in %d tries\n",
290                        name, MAX_CLOCK_ENABLE_WAIT);
291
292         return (i < MAX_CLOCK_ENABLE_WAIT) ? 1 : 0;
293 };
294
295
296 /*
297  * Note: We don't need special code here for INVERT_ENABLE
298  * for the time being since INVERT_ENABLE only applies to clocks enabled by
299  * CM_CLKEN_PLL
300  *
301  * REVISIT: This code is ugly and does not belong here.
302  */
303 static void omap2_clk_wait_ready(struct clk *clk)
304 {
305         u32 other_bit, idlest_bit;
306         unsigned long reg, other_reg, idlest_reg, prcm_regid;
307
308         /* Only CM-controlled clocks affect module IDLEST */
309         if (clk->prcm_mod & ~PRCM_MOD_ADDR_MASK)
310                 return;
311
312         reg = (unsigned long)clk->enable_reg;
313         prcm_regid = reg & 0xff;
314
315         other_reg = reg & ~PRCM_REGTYPE_MASK;
316
317         /* If we are enabling an fclk, also test the iclk; and vice versa */
318         if (prcm_regid >= CM_FCLKEN1 && prcm_regid <= OMAP24XX_CM_FCLKEN2)
319                 other_reg |= CM_ICLKEN_REGTYPE;
320         else
321                 other_reg |= CM_FCLKEN_REGTYPE;
322
323         /* Covers most of the cases - a few exceptions are below */
324         other_bit = 1 << clk->enable_bit;
325         idlest_bit = other_bit;
326
327         /* 24xx: DSS and CAM have no idlest bits for their target agents */
328         if (cpu_is_omap24xx() && clk->prcm_mod == CORE_MOD &&
329             (reg & 0x0f) == 0) { /* CM_{F,I}CLKEN1 */
330
331                 if (clk->enable_bit == OMAP24XX_EN_DSS2_SHIFT ||
332                     clk->enable_bit == OMAP24XX_EN_DSS1_SHIFT ||
333                     clk->enable_bit == OMAP24XX_EN_CAM_SHIFT)
334                         return;
335
336         }
337
338         /* REVISIT: What are the appropriate exclusions for 34XX? */
339         if (cpu_is_omap34xx()) {
340
341                 /* SSI */
342                 if (clk->prcm_mod == CORE_MOD &&
343                     (reg & 0x0f) == 0 &&
344                     clk->enable_bit == OMAP3430_EN_SSI_SHIFT) {
345
346                         if (system_rev == OMAP3430_REV_ES1_0)
347                                 return;
348
349                         idlest_bit = OMAP3430ES2_ST_SSI_IDLE;
350                 }
351
352                 /* DSS */
353                 if (clk->prcm_mod == OMAP3430_DSS_MOD) {
354
355                         /* 3430ES1 DSS has no target idlest bits */
356                         if (system_rev == OMAP3430_REV_ES1_0)
357                                 return;
358
359                         /*
360                          * For 3430ES2+ DSS, only wait once (dss1_alwon_fclk,
361                          * dss_l3_iclk, dss_l4_iclk) are enabled
362                          */
363                         if (clk->enable_bit != OMAP3430_EN_DSS1_SHIFT)
364                                 return;
365
366                         idlest_bit = OMAP3430ES2_ST_DSS_IDLE;
367                 }
368
369                 /* USBHOST */
370                 if (system_rev > OMAP3430_REV_ES1_0 &&
371                     clk->prcm_mod == OMAP3430ES2_USBHOST_MOD) {
372
373                         /*
374                          * The 120MHz clock apparently has nothing to do with
375                          * USBHOST module accessibility
376                          */
377                         if (clk->enable_bit == OMAP3430ES2_EN_USBHOST2_SHIFT)
378                                 return;
379
380                         idlest_bit = OMAP3430ES2_ST_USBHOST_IDLE;
381
382                 }
383         }
384
385         /* Check if both functional and interface clocks
386          * are running. */
387         if (!(__raw_readl((void __iomem *)other_reg) & other_bit))
388                 return;
389
390         idlest_reg = other_reg & ~PRCM_REGTYPE_MASK;
391         idlest_reg |= CM_IDLEST_REGTYPE;
392
393         idlest_reg &= 0xff; /* convert to PRCM register index */
394
395         omap2_wait_clock_ready(clk->prcm_mod, idlest_reg, idlest_bit,
396                                clk->name);
397 }
398
399 /* Enables clock without considering parent dependencies or use count
400  * REVISIT: Maybe change this to use clk->enable like on omap1?
401  */
402 static int _omap2_clk_enable(struct clk *clk)
403 {
404         u32 v;
405
406         if (clk->flags & (ALWAYS_ENABLED | PARENT_CONTROLS_CLOCK))
407                 return 0;
408
409         if (clk->enable)
410                 return clk->enable(clk);
411
412         if (unlikely(clk->enable_reg == NULL)) {
413                 printk(KERN_ERR "clock.c: Enable for %s without enable code\n",
414                        clk->name);
415                 return 0; /* REVISIT: -EINVAL */
416         }
417
418         v = __raw_readl(clk->enable_reg);
419         if (clk->flags & INVERT_ENABLE)
420                 v &= ~(1 << clk->enable_bit);
421         else
422                 v |= (1 << clk->enable_bit);
423         __raw_writel(v, clk->enable_reg);
424         wmb();
425
426         omap2_clk_wait_ready(clk);
427
428         return 0;
429 }
430
431 /* Disables clock without considering parent dependencies or use count */
432 static void _omap2_clk_disable(struct clk *clk)
433 {
434         u32 v;
435
436         if (clk->flags & (ALWAYS_ENABLED | PARENT_CONTROLS_CLOCK))
437                 return;
438
439         if (clk->disable) {
440                 clk->disable(clk);
441                 return;
442         }
443
444         if (clk->enable_reg == NULL) {
445                 /*
446                  * 'Independent' here refers to a clock which is not
447                  * controlled by its parent.
448                  */
449                 printk(KERN_ERR "clock: clk_disable called on independent "
450                        "clock %s which has no enable_reg\n", clk->name);
451                 return;
452         }
453
454         v = __raw_readl(clk->enable_reg);
455         if (clk->flags & INVERT_ENABLE)
456                 v |= (1 << clk->enable_bit);
457         else
458                 v &= ~(1 << clk->enable_bit);
459         __raw_writel(v, clk->enable_reg);
460         wmb();
461 }
462
463 void omap2_clk_disable(struct clk *clk)
464 {
465         if (clk->usecount > 0 && !(--clk->usecount)) {
466                 _omap2_clk_disable(clk);
467                 if (clk->parent)
468                         omap2_clk_disable(clk->parent);
469                 if (clk->clkdm.ptr)
470                         omap2_clkdm_clk_disable(clk->clkdm.ptr, clk);
471
472         }
473 }
474
475 int omap2_clk_enable(struct clk *clk)
476 {
477         int ret = 0;
478
479         if (clk->usecount++ == 0) {
480                 if (clk->parent)
481                         ret = omap2_clk_enable(clk->parent);
482
483                 if (ret != 0) {
484                         clk->usecount--;
485                         return ret;
486                 }
487
488                 if (clk->clkdm.ptr)
489                         omap2_clkdm_clk_enable(clk->clkdm.ptr, clk);
490
491                 ret = _omap2_clk_enable(clk);
492
493                 if (ret != 0) {
494                         if (clk->clkdm.ptr)
495                                 omap2_clkdm_clk_disable(clk->clkdm.ptr, clk);
496
497                         if (clk->parent) {
498                                 omap2_clk_disable(clk->parent);
499                                 clk->usecount--;
500                         }
501                 }
502         }
503
504         return ret;
505 }
506
507 /*
508  * Used for clocks that are part of CLKSEL_xyz governed clocks.
509  * REVISIT: Maybe change to use clk->enable() functions like on omap1?
510  */
511 void omap2_clksel_recalc(struct clk *clk)
512 {
513         u32 div = 0;
514
515         pr_debug("clock: recalc'ing clksel clk %s\n", clk->name);
516
517         div = omap2_clksel_get_divisor(clk);
518         if (div == 0)
519                 return;
520
521         if (clk->rate == (clk->parent->rate / div))
522                 return;
523         clk->rate = clk->parent->rate / div;
524
525         pr_debug("clock: new clock rate is %ld (div %d)\n", clk->rate, div);
526
527         if (clk->flags & RATE_PROPAGATES)
528                 propagate_rate(clk);
529 }
530
531 /**
532  * omap2_get_clksel_by_parent - return clksel struct for a given clk & parent
533  * @clk: OMAP struct clk ptr to inspect
534  * @src_clk: OMAP struct clk ptr of the parent clk to search for
535  *
536  * Scan the struct clksel array associated with the clock to find
537  * the element associated with the supplied parent clock address.
538  * Returns a pointer to the struct clksel on success or NULL on error.
539  */
540 static const struct clksel *omap2_get_clksel_by_parent(struct clk *clk,
541                                                        struct clk *src_clk)
542 {
543         const struct clksel *clks;
544
545         if (!clk->clksel)
546                 return NULL;
547
548         for (clks = clk->clksel; clks->parent; clks++) {
549                 if (clks->parent == src_clk)
550                         break; /* Found the requested parent */
551         }
552
553         if (!clks->parent) {
554                 printk(KERN_ERR "clock: Could not find parent clock %s in "
555                        "clksel array of clock %s\n", src_clk->name,
556                        clk->name);
557                 return NULL;
558         }
559
560         return clks;
561 }
562
563 /**
564  * omap2_clksel_round_rate_div - find divisor for the given clock and rate
565  * @clk: OMAP struct clk to use
566  * @target_rate: desired clock rate
567  * @new_div: ptr to where we should store the divisor
568  *
569  * Finds 'best' divider value in an array based on the source and target
570  * rates.  The divider array must be sorted with smallest divider first.
571  * Note that this will not work for clocks which are part of CONFIG_PARTICIPANT,
572  * they are only settable as part of virtual_prcm set.
573  *
574  * Returns the rounded clock rate or returns 0xffffffff on error.
575  */
576 u32 omap2_clksel_round_rate_div(struct clk *clk, unsigned long target_rate,
577                                 u32 *new_div)
578 {
579         unsigned long test_rate;
580         const struct clksel *clks;
581         const struct clksel_rate *clkr;
582         u32 last_div = 0;
583
584         printk(KERN_INFO "clock: clksel_round_rate_div: %s target_rate %ld\n",
585                clk->name, target_rate);
586
587         *new_div = 1;
588
589         clks = omap2_get_clksel_by_parent(clk, clk->parent);
590         if (!clks)
591                 return ~0;
592
593         for (clkr = clks->rates; clkr->div; clkr++) {
594                 if (!(clkr->flags & cpu_mask))
595                     continue;
596
597                 /* Sanity check */
598                 if (clkr->div <= last_div)
599                         printk(KERN_ERR "clock: clksel_rate table not sorted "
600                                "for clock %s", clk->name);
601
602                 last_div = clkr->div;
603
604                 test_rate = clk->parent->rate / clkr->div;
605
606                 if (test_rate <= target_rate)
607                         break; /* found it */
608         }
609
610         if (!clkr->div) {
611                 printk(KERN_ERR "clock: Could not find divisor for target "
612                        "rate %ld for clock %s parent %s\n", target_rate,
613                        clk->name, clk->parent->name);
614                 return ~0;
615         }
616
617         *new_div = clkr->div;
618
619         printk(KERN_INFO "clock: new_div = %d, new_rate = %ld\n", *new_div,
620                (clk->parent->rate / clkr->div));
621
622         return (clk->parent->rate / clkr->div);
623 }
624
625 /**
626  * omap2_clksel_round_rate - find rounded rate for the given clock and rate
627  * @clk: OMAP struct clk to use
628  * @target_rate: desired clock rate
629  *
630  * Compatibility wrapper for OMAP clock framework
631  * Finds best target rate based on the source clock and possible dividers.
632  * rates. The divider array must be sorted with smallest divider first.
633  * Note that this will not work for clocks which are part of CONFIG_PARTICIPANT,
634  * they are only settable as part of virtual_prcm set.
635  *
636  * Returns the rounded clock rate or returns 0xffffffff on error.
637  */
638 long omap2_clksel_round_rate(struct clk *clk, unsigned long target_rate)
639 {
640         u32 new_div;
641
642         return omap2_clksel_round_rate_div(clk, target_rate, &new_div);
643 }
644
645
646 /* Given a clock and a rate apply a clock specific rounding function */
647 long omap2_clk_round_rate(struct clk *clk, unsigned long rate)
648 {
649         if (clk->round_rate != NULL)
650                 return clk->round_rate(clk, rate);
651
652         if (clk->flags & RATE_FIXED)
653                 printk(KERN_ERR "clock: generic omap2_clk_round_rate called "
654                        "on fixed-rate clock %s\n", clk->name);
655
656         return clk->rate;
657 }
658
659 /**
660  * omap2_clksel_to_divisor() - turn clksel field value into integer divider
661  * @clk: OMAP struct clk to use
662  * @field_val: register field value to find
663  *
664  * Given a struct clk of a rate-selectable clksel clock, and a register field
665  * value to search for, find the corresponding clock divisor.  The register
666  * field value should be pre-masked and shifted down so the LSB is at bit 0
667  * before calling.  Returns 0 on error
668  */
669 u32 omap2_clksel_to_divisor(struct clk *clk, u32 field_val)
670 {
671         const struct clksel *clks;
672         const struct clksel_rate *clkr;
673
674         clks = omap2_get_clksel_by_parent(clk, clk->parent);
675         if (!clks)
676                 return 0;
677
678         for (clkr = clks->rates; clkr->div; clkr++) {
679                 if ((clkr->flags & cpu_mask) && (clkr->val == field_val))
680                         break;
681         }
682
683         if (!clkr->div) {
684                 printk(KERN_ERR "clock: Could not find fieldval %d for "
685                        "clock %s parent %s\n", field_val, clk->name,
686                        clk->parent->name);
687                 return 0;
688         }
689
690         return clkr->div;
691 }
692
693 /**
694  * omap2_divisor_to_clksel() - turn clksel integer divisor into a field value
695  * @clk: OMAP struct clk to use
696  * @div: integer divisor to search for
697  *
698  * Given a struct clk of a rate-selectable clksel clock, and a clock divisor,
699  * find the corresponding register field value.  The return register value is
700  * the value before left-shifting.  Returns 0xffffffff on error
701  */
702 u32 omap2_divisor_to_clksel(struct clk *clk, u32 div)
703 {
704         const struct clksel *clks;
705         const struct clksel_rate *clkr;
706
707         /* should never happen */
708         WARN_ON(div == 0);
709
710         clks = omap2_get_clksel_by_parent(clk, clk->parent);
711         if (!clks)
712                 return 0;
713
714         for (clkr = clks->rates; clkr->div; clkr++) {
715                 if ((clkr->flags & cpu_mask) && (clkr->div == div))
716                         break;
717         }
718
719         if (!clkr->div) {
720                 printk(KERN_ERR "clock: Could not find divisor %d for "
721                        "clock %s parent %s\n", div, clk->name,
722                        clk->parent->name);
723                 return 0;
724         }
725
726         return clkr->val;
727 }
728
729 /**
730  * omap2_clksel_get_divisor - get current divider applied to parent clock.
731  * @clk: OMAP struct clk to use.
732  *
733  * Returns the integer divisor upon success or 0 on error.
734  */
735 u32 omap2_clksel_get_divisor(struct clk *clk)
736 {
737         u32 v;
738
739         if (!clk->clksel_mask)
740                 return 0;
741
742         v = __raw_readl(clk->clksel_reg) & clk->clksel_mask;
743         v >>= __ffs(clk->clksel_mask);
744
745         return omap2_clksel_to_divisor(clk, v);
746 }
747
748 int omap2_clksel_set_rate(struct clk *clk, unsigned long rate)
749 {
750         u32 v, field_val, validrate, new_div = 0;
751
752         if (!clk->clksel_mask)
753                 return -EINVAL;
754
755         validrate = omap2_clksel_round_rate_div(clk, rate, &new_div);
756         if (validrate != rate)
757                 return -EINVAL;
758
759         field_val = omap2_divisor_to_clksel(clk, new_div);
760         if (field_val == ~0)
761                 return -EINVAL;
762
763         v = __raw_readl(clk->clksel_reg);
764         v &= ~clk->clksel_mask;
765         v |= field_val << __ffs(clk->clksel_mask);
766         __raw_writel(v, clk->clksel_reg);
767
768         wmb();
769
770         clk->rate = clk->parent->rate / new_div;
771
772         if (clk->flags & DELAYED_APP && cpu_is_omap24xx()) {
773                 prm_write_mod_reg(OMAP24XX_VALID_CONFIG,
774                         OMAP24XX_GR_MOD, OMAP24XX_PRCM_CLKCFG_CTRL_OFFSET);
775                 wmb();
776         }
777
778         return 0;
779 }
780
781
782 /* Set the clock rate for a clock source */
783 int omap2_clk_set_rate(struct clk *clk, unsigned long rate)
784 {
785         int ret = -EINVAL;
786
787         pr_debug("clock: set_rate for clock %s to rate %ld\n", clk->name, rate);
788
789         /* CONFIG_PARTICIPANT clocks are changed only in sets via the
790            rate table mechanism, driven by mpu_speed  */
791         if (clk->flags & CONFIG_PARTICIPANT)
792                 return -EINVAL;
793
794         /* dpll_ck, core_ck, virt_prcm_set; plus all clksel clocks */
795         if (clk->set_rate != NULL)
796                 ret = clk->set_rate(clk, rate);
797
798         if (ret == 0 && (clk->flags & RATE_PROPAGATES))
799                 propagate_rate(clk);
800
801         return ret;
802 }
803
804 /*
805  * Converts encoded control register address into a full address
806  * On error, the return value (parent_div) will be 0.
807  */
808 static u32 _omap2_clksel_get_src_field(struct clk *src_clk, struct clk *clk,
809                                        u32 *field_val)
810 {
811         const struct clksel *clks;
812         const struct clksel_rate *clkr;
813
814         clks = omap2_get_clksel_by_parent(clk, src_clk);
815         if (!clks)
816                 return 0;
817
818         for (clkr = clks->rates; clkr->div; clkr++) {
819                 if (clkr->flags & (cpu_mask | DEFAULT_RATE))
820                         break; /* Found the default rate for this platform */
821         }
822
823         if (!clkr->div) {
824                 printk(KERN_ERR "clock: Could not find default rate for "
825                        "clock %s parent %s\n", clk->name,
826                        src_clk->parent->name);
827                 return 0;
828         }
829
830         /* Should never happen.  Add a clksel mask to the struct clk. */
831         WARN_ON(clk->clksel_mask == 0);
832
833         *field_val = clkr->val;
834
835         return clkr->div;
836 }
837
838 int omap2_clk_set_parent(struct clk *clk, struct clk *new_parent)
839 {
840         u32 field_val, v, parent_div;
841
842         if (clk->flags & CONFIG_PARTICIPANT)
843                 return -EINVAL;
844
845         if (!clk->clksel)
846                 return -EINVAL;
847
848         parent_div = _omap2_clksel_get_src_field(new_parent, clk, &field_val);
849         if (!parent_div)
850                 return -EINVAL;
851
852         if (clk->usecount > 0)
853                 _omap2_clk_disable(clk);
854
855         /* Set new source value (previous dividers if any in effect) */
856         v = __raw_readl(clk->clksel_reg);
857         v &= ~clk->clksel_mask;
858         v |= field_val << __ffs(clk->clksel_mask);
859         __raw_writel(v, clk->clksel_reg);
860         wmb();
861
862         if (clk->flags & DELAYED_APP && cpu_is_omap24xx()) {
863                 prm_write_mod_reg(OMAP24XX_VALID_CONFIG,
864                         OMAP24XX_GR_MOD, OMAP24XX_PRCM_CLKCFG_CTRL_OFFSET);
865                 wmb();
866         }
867
868         if (clk->usecount > 0)
869                 _omap2_clk_enable(clk);
870
871         clk->parent = new_parent;
872
873         /* CLKSEL clocks follow their parents' rates, divided by a divisor */
874         clk->rate = new_parent->rate;
875
876         if (parent_div > 0)
877                 clk->rate /= parent_div;
878
879         pr_debug("clock: set parent of %s to %s (new rate %ld)\n",
880                  clk->name, clk->parent->name, clk->rate);
881
882         if (clk->flags & RATE_PROPAGATES)
883                 propagate_rate(clk);
884
885         return 0;
886 }
887
888 /* DPLL rate rounding code */
889
890 /**
891  * omap2_dpll_set_rate_tolerance: set the error tolerance during rate rounding
892  * @clk: struct clk * of the DPLL
893  * @tolerance: maximum rate error tolerance
894  *
895  * Set the maximum DPLL rate error tolerance for the rate rounding
896  * algorithm.  The rate tolerance is an attempt to balance DPLL power
897  * saving (the least divider value "n") vs. rate fidelity (the least
898  * difference between the desired DPLL target rate and the rounded
899  * rate out of the algorithm).  So, increasing the tolerance is likely
900  * to decrease DPLL power consumption and increase DPLL rate error.
901  * Returns -EINVAL if provided a null clock ptr or a clk that is not a
902  * DPLL; or 0 upon success.
903  */
904 int omap2_dpll_set_rate_tolerance(struct clk *clk, unsigned int tolerance)
905 {
906         if (!clk || !clk->dpll_data)
907                 return -EINVAL;
908
909         clk->dpll_data->rate_tolerance = tolerance;
910
911         return 0;
912 }
913
914 static unsigned long _dpll_compute_new_rate(unsigned long parent_rate,
915                                             unsigned int m, unsigned int n)
916 {
917         unsigned long long num;
918
919         num = (unsigned long long)parent_rate * m;
920         do_div(num, n);
921         return num;
922 }
923
924 /*
925  * _dpll_test_mult - test a DPLL multiplier value
926  * @m: pointer to the DPLL m (multiplier) value under test
927  * @n: current DPLL n (divider) value under test
928  * @new_rate: pointer to storage for the resulting rounded rate
929  * @target_rate: the desired DPLL rate
930  * @parent_rate: the DPLL's parent clock rate
931  *
932  * This code tests a DPLL multiplier value, ensuring that the
933  * resulting rate will not be higher than the target_rate, and that
934  * the multiplier value itself is valid for the DPLL.  Initially, the
935  * integer pointed to by the m argument should be prescaled by
936  * multiplying by DPLL_SCALE_FACTOR.  The code will replace this with
937  * a non-scaled m upon return.  This non-scaled m will result in a
938  * new_rate as close as possible to target_rate (but not greater than
939  * target_rate) given the current (parent_rate, n, prescaled m)
940  * triple. Returns DPLL_MULT_UNDERFLOW in the event that the
941  * non-scaled m attempted to underflow, which can allow the calling
942  * function to bail out early; or 0 upon success.
943  */
944 static int _dpll_test_mult(int *m, int n, unsigned long *new_rate,
945                            unsigned long target_rate,
946                            unsigned long parent_rate)
947 {
948         int flags = 0, carry = 0;
949
950         /* Unscale m and round if necessary */
951         if (*m % DPLL_SCALE_FACTOR >= DPLL_ROUNDING_VAL)
952                 carry = 1;
953         *m = (*m / DPLL_SCALE_FACTOR) + carry;
954
955         /*
956          * The new rate must be <= the target rate to avoid programming
957          * a rate that is impossible for the hardware to handle
958          */
959         *new_rate = _dpll_compute_new_rate(parent_rate, *m, n);
960         if (*new_rate > target_rate) {
961                 (*m)--;
962                 *new_rate = 0;
963         }
964
965         /* Guard against m underflow */
966         if (*m < DPLL_MIN_MULTIPLIER) {
967                 *m = DPLL_MIN_MULTIPLIER;
968                 *new_rate = 0;
969                 flags = DPLL_MULT_UNDERFLOW;
970         }
971
972         if (*new_rate == 0)
973                 *new_rate = _dpll_compute_new_rate(parent_rate, *m, n);
974
975         return flags;
976 }
977
978 /**
979  * omap2_dpll_round_rate - round a target rate for an OMAP DPLL
980  * @clk: struct clk * for a DPLL
981  * @target_rate: desired DPLL clock rate
982  *
983  * Given a DPLL, a desired target rate, and a rate tolerance, round
984  * the target rate to a possible, programmable rate for this DPLL.
985  * Rate tolerance is assumed to be set by the caller before this
986  * function is called.  Attempts to select the minimum possible n
987  * within the tolerance to reduce power consumption.  Stores the
988  * computed (m, n) in the DPLL's dpll_data structure so set_rate()
989  * will not need to call this (expensive) function again.  Returns ~0
990  * if the target rate cannot be rounded, either because the rate is
991  * too low or because the rate tolerance is set too tightly; or the
992  * rounded rate upon success.
993  */
994 long omap2_dpll_round_rate(struct clk *clk, unsigned long target_rate)
995 {
996         int m, n, r, e, scaled_max_m;
997         unsigned long scaled_rt_rp, new_rate;
998         int min_e = -1, min_e_m = -1, min_e_n = -1;
999
1000         if (!clk || !clk->dpll_data)
1001                 return ~0;
1002
1003         pr_debug("clock: starting DPLL round_rate for clock %s, target rate "
1004                  "%ld\n", clk->name, target_rate);
1005
1006         scaled_rt_rp = target_rate / (clk->parent->rate / DPLL_SCALE_FACTOR);
1007         scaled_max_m = clk->dpll_data->max_multiplier * DPLL_SCALE_FACTOR;
1008
1009         clk->dpll_data->last_rounded_rate = 0;
1010
1011         for (n = clk->dpll_data->max_divider; n >= DPLL_MIN_DIVIDER; n--) {
1012
1013                 /* Compute the scaled DPLL multiplier, based on the divider */
1014                 m = scaled_rt_rp * n;
1015
1016                 /*
1017                  * Since we're counting n down, a m overflow means we can
1018                  * can immediately skip to the next n
1019                  */
1020                 if (m > scaled_max_m)
1021                         continue;
1022
1023                 r = _dpll_test_mult(&m, n, &new_rate, target_rate,
1024                                     clk->parent->rate);
1025
1026                 e = target_rate - new_rate;
1027                 pr_debug("clock: n = %d: m = %d: rate error is %d "
1028                          "(new_rate = %ld)\n", n, m, e, new_rate);
1029
1030                 if (min_e == -1 ||
1031                     min_e >= (int)(abs(e) - clk->dpll_data->rate_tolerance)) {
1032                         min_e = e;
1033                         min_e_m = m;
1034                         min_e_n = n;
1035
1036                         pr_debug("clock: found new least error %d\n", min_e);
1037                 }
1038
1039                 /*
1040                  * Since we're counting n down, a m underflow means we
1041                  * can bail out completely (since as n decreases in
1042                  * the next iteration, there's no way that m can
1043                  * increase beyond the current m)
1044                  */
1045                 if (r & DPLL_MULT_UNDERFLOW)
1046                         break;
1047         }
1048
1049         if (min_e < 0) {
1050                 pr_debug("clock: error: target rate or tolerance too low\n");
1051                 return ~0;
1052         }
1053
1054         clk->dpll_data->last_rounded_m = min_e_m;
1055         clk->dpll_data->last_rounded_n = min_e_n;
1056         clk->dpll_data->last_rounded_rate =
1057                 _dpll_compute_new_rate(clk->parent->rate, min_e_m,  min_e_n);
1058
1059         pr_debug("clock: final least error: e = %d, m = %d, n = %d\n",
1060                  min_e, min_e_m, min_e_n);
1061         pr_debug("clock: final rate: %ld  (target rate: %ld)\n",
1062                  clk->dpll_data->last_rounded_rate, target_rate);
1063
1064         return clk->dpll_data->last_rounded_rate;
1065 }
1066
1067 /*-------------------------------------------------------------------------
1068  * Omap2 clock reset and init functions
1069  *-------------------------------------------------------------------------*/
1070
1071 #ifdef CONFIG_OMAP_RESET_CLOCKS
1072 void omap2_clk_disable_unused(struct clk *clk)
1073 {
1074         u32 regval32, v;
1075
1076         v = (clk->flags & INVERT_ENABLE) ? (1 << clk->enable_bit) : 0;
1077
1078         regval32 = __raw_readl(clk->enable_reg);
1079         if ((regval32 & (1 << clk->enable_bit)) == v)
1080                 return;
1081
1082         printk(KERN_INFO "Disabling unused clock \"%s\"\n", clk->name);
1083         _omap2_clk_disable(clk);
1084 }
1085 #endif