]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/arm/common/icst525.c
4180255eb078c2ea0298082603d096b65fd5d03a
[net-next-2.6.git] / arch / arm / common / icst525.c
1 /*
2  *  linux/arch/arm/common/icst525.c
3  *
4  *  Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  *  Support functions for calculating clocks/divisors for the ICST525
11  *  clock generators.  See http://www.icst.com/ for more information
12  *  on these devices.
13  */
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16
17 #include <asm/hardware/icst525.h>
18
19 /*
20  * Divisors for each OD setting.
21  */
22 const unsigned char icst525_s2div[8] = { 10, 2, 8, 4, 5, 7, 9, 6 };
23
24 EXPORT_SYMBOL(icst525_s2div);
25
26 unsigned long icst525_hz(const struct icst_params *p, struct icst_vco vco)
27 {
28         return p->ref * 2 * (vco.v + 8) / ((vco.r + 2) * p->s2div[vco.s]);
29 }
30
31 EXPORT_SYMBOL(icst525_hz);
32
33 /*
34  * Ascending divisor S values.
35  */
36 const unsigned char icst525_idx2s[8] = { 1, 3, 4, 7, 5, 2, 6, 0 };
37
38 EXPORT_SYMBOL(icst525_idx2s);
39
40 struct icst_vco
41 icst525_hz_to_vco(const struct icst_params *p, unsigned long freq)
42 {
43         struct icst_vco vco = { .s = 1, .v = p->vd_max, .r = p->rd_max };
44         unsigned long f;
45         unsigned int i = 0, rd, best = (unsigned int)-1;
46
47         /*
48          * First, find the PLL output divisor such
49          * that the PLL output is within spec.
50          */
51         do {
52                 f = freq * p->s2div[p->idx2s[i]];
53
54                 /*
55                  * f must be between 10MHz and
56                  *  320MHz (5V) or 200MHz (3V)
57                  */
58                 if (f > p->vco_min && f <= p->vco_max)
59                         break;
60         } while (i < 8);
61
62         if (i >= 8)
63                 return vco;
64
65         vco.s = p->idx2s[i];
66
67         /*
68          * Now find the closest divisor combination
69          * which gives a PLL output of 'f'.
70          */
71         for (rd = p->rd_min; rd <= p->rd_max; rd++) {
72                 unsigned long fref_div, f_pll;
73                 unsigned int vd;
74                 int f_diff;
75
76                 fref_div = (2 * p->ref) / rd;
77
78                 vd = (f + fref_div / 2) / fref_div;
79                 if (vd < p->vd_min || vd > p->vd_max)
80                         continue;
81
82                 f_pll = fref_div * vd;
83                 f_diff = f_pll - f;
84                 if (f_diff < 0)
85                         f_diff = -f_diff;
86
87                 if ((unsigned)f_diff < best) {
88                         vco.v = vd - 8;
89                         vco.r = rd - 2;
90                         if (f_diff == 0)
91                                 break;
92                         best = f_diff;
93                 }
94         }
95
96         return vco;
97 }
98
99 EXPORT_SYMBOL(icst525_hz_to_vco);