blob: 8332c0726e731c16c9f17a1d01245e87509d8fa9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/common/icst307.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 ICST307
11 * clock generators. See http://www.icst.com/ for more information
12 * on these devices.
13 *
14 * This is an almost identical implementation to the ICST525 clock generator.
15 * The s2div and idx2s files are different
16 */
17#include <linux/module.h>
18#include <linux/kernel.h>
19
20#include <asm/hardware/icst307.h>
21
22/*
23 * Divisors for each OD setting.
24 */
Russell King232eaf72010-01-16 19:46:19 +000025const unsigned char icst307_s2div[8] = { 10, 2, 8, 4, 5, 7, 3, 6 };
26
27EXPORT_SYMBOL(icst307_s2div);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Russell King64fceb12010-01-16 17:28:44 +000029unsigned long icst307_hz(const struct icst_params *p, struct icst_vco vco)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Russell King232eaf72010-01-16 19:46:19 +000031 return p->ref * 2 * (vco.v + 8) / ((vco.r + 2) * p->s2div[vco.s]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032}
33
Russell King64fceb12010-01-16 17:28:44 +000034EXPORT_SYMBOL(icst307_hz);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
37 * Ascending divisor S values.
38 */
Russell King232eaf72010-01-16 19:46:19 +000039const unsigned char icst307_idx2s[8] = { 1, 6, 3, 4, 7, 5, 2, 0 };
40
41EXPORT_SYMBOL(icst307_idx2s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Russell King39c0cb02010-01-16 16:27:28 +000043struct icst_vco
Russell King64fceb12010-01-16 17:28:44 +000044icst307_hz_to_vco(const struct icst_params *p, unsigned long freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Russell King39c0cb02010-01-16 16:27:28 +000046 struct icst_vco vco = { .s = 1, .v = p->vd_max, .r = p->rd_max };
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 unsigned long f;
48 unsigned int i = 0, rd, best = (unsigned int)-1;
49
50 /*
51 * First, find the PLL output divisor such
52 * that the PLL output is within spec.
53 */
54 do {
Russell King232eaf72010-01-16 19:46:19 +000055 f = freq * p->s2div[p->idx2s[i]];
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57 /*
58 * f must be between 6MHz and 200MHz (3.3 or 5V)
59 */
Russell Kinge73a46a2010-01-16 19:49:39 +000060 if (f > p->vco_min && f <= p->vco_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 break;
Russell King232eaf72010-01-16 19:46:19 +000062 } while (i < 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Russell King232eaf72010-01-16 19:46:19 +000064 if (i >= 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return vco;
66
Russell King232eaf72010-01-16 19:46:19 +000067 vco.s = p->idx2s[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 /*
70 * Now find the closest divisor combination
71 * which gives a PLL output of 'f'.
72 */
73 for (rd = p->rd_min; rd <= p->rd_max; rd++) {
74 unsigned long fref_div, f_pll;
75 unsigned int vd;
76 int f_diff;
77
78 fref_div = (2 * p->ref) / rd;
79
80 vd = (f + fref_div / 2) / fref_div;
81 if (vd < p->vd_min || vd > p->vd_max)
82 continue;
83
84 f_pll = fref_div * vd;
85 f_diff = f_pll - f;
86 if (f_diff < 0)
87 f_diff = -f_diff;
88
89 if ((unsigned)f_diff < best) {
90 vco.v = vd - 8;
91 vco.r = rd - 2;
92 if (f_diff == 0)
93 break;
94 best = f_diff;
95 }
96 }
97
98 return vco;
99}
100
Russell King64fceb12010-01-16 17:28:44 +0000101EXPORT_SYMBOL(icst307_hz_to_vco);