2 * linux/arch/arm/common/icst307.c
4 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
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.
10 * Support functions for calculating clocks/divisors for the ICST307
11 * clock generators. See http://www.idt.com/ for more information
14 * This is an almost identical implementation to the ICST525 clock generator.
15 * The s2div and idx2s files are different
17 #include <linux/module.h>
18 #include <linux/kernel.h>
20 #include <asm/hardware/icst.h>
23 * Divisors for each OD setting.
25 const unsigned char icst307_s2div
[8] = { 10, 2, 8, 4, 5, 7, 3, 6 };
26 const unsigned char icst525_s2div
[8] = { 10, 2, 8, 4, 5, 7, 9, 6 };
27 EXPORT_SYMBOL(icst307_s2div
);
28 EXPORT_SYMBOL(icst525_s2div
);
30 unsigned long icst_hz(const struct icst_params
*p
, struct icst_vco vco
)
32 return p
->ref
* 2 * (vco
.v
+ 8) / ((vco
.r
+ 2) * p
->s2div
[vco
.s
]);
35 EXPORT_SYMBOL(icst_hz
);
38 * Ascending divisor S values.
40 const unsigned char icst307_idx2s
[8] = { 1, 6, 3, 4, 7, 5, 2, 0 };
41 const unsigned char icst525_idx2s
[8] = { 1, 3, 4, 7, 5, 2, 6, 0 };
42 EXPORT_SYMBOL(icst307_idx2s
);
43 EXPORT_SYMBOL(icst525_idx2s
);
46 icst_hz_to_vco(const struct icst_params
*p
, unsigned long freq
)
48 struct icst_vco vco
= { .s
= 1, .v
= p
->vd_max
, .r
= p
->rd_max
};
50 unsigned int i
= 0, rd
, best
= (unsigned int)-1;
53 * First, find the PLL output divisor such
54 * that the PLL output is within spec.
57 f
= freq
* p
->s2div
[p
->idx2s
[i
]];
59 if (f
> p
->vco_min
&& f
<= p
->vco_max
)
69 * Now find the closest divisor combination
70 * which gives a PLL output of 'f'.
72 for (rd
= p
->rd_min
; rd
<= p
->rd_max
; rd
++) {
73 unsigned long fref_div
, f_pll
;
77 fref_div
= (2 * p
->ref
) / rd
;
79 vd
= (f
+ fref_div
/ 2) / fref_div
;
80 if (vd
< p
->vd_min
|| vd
> p
->vd_max
)
83 f_pll
= fref_div
* vd
;
88 if ((unsigned)f_diff
< best
) {
100 EXPORT_SYMBOL(icst_hz_to_vco
);