aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/common/icst525.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2010-01-16 15:16:10 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-05-02 04:35:33 -0400
commitc5a0adb51002e51a4254cb7f0ab7190d41d8b930 (patch)
treeb6ae6bd13b1aa722e7d96876da28cd5ac3722188 /arch/arm/common/icst525.c
parent232eaf7f268f765b52170bec42bfa0c5825aa239 (diff)
ARM: ICST: kill duplicate icst code
The only difference between ICST307 and ICST525 are the two arrays for calculating the S parameter; the code is now identical. Merge the two files and kill the duplicated code. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/common/icst525.c')
-rw-r--r--arch/arm/common/icst525.c99
1 files changed, 0 insertions, 99 deletions
diff --git a/arch/arm/common/icst525.c b/arch/arm/common/icst525.c
deleted file mode 100644
index 4180255eb078..000000000000
--- a/arch/arm/common/icst525.c
+++ /dev/null
@@ -1,99 +0,0 @@
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 */
22const unsigned char icst525_s2div[8] = { 10, 2, 8, 4, 5, 7, 9, 6 };
23
24EXPORT_SYMBOL(icst525_s2div);
25
26unsigned 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
31EXPORT_SYMBOL(icst525_hz);
32
33/*
34 * Ascending divisor S values.
35 */
36const unsigned char icst525_idx2s[8] = { 1, 3, 4, 7, 5, 2, 6, 0 };
37
38EXPORT_SYMBOL(icst525_idx2s);
39
40struct icst_vco
41icst525_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
99EXPORT_SYMBOL(icst525_hz_to_vco);