blob: d7ed252708c57fa86cff5d51887bd756b53b48e7 [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
Justin P. Mattock50a23e62010-10-16 10:36:23 -070011 * clock generators. See http://www.idt.com/ for more information
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * 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>
Linus Walleij5070fb12016-02-08 09:14:37 +010019#include <asm/div64.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000020#include <asm/hardware/icst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
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 };
Russell Kingc5a0adb2010-01-16 20:16:10 +000026const unsigned char icst525_s2div[8] = { 10, 2, 8, 4, 5, 7, 9, 6 };
Russell King232eaf72010-01-16 19:46:19 +000027EXPORT_SYMBOL(icst307_s2div);
Russell Kingc5a0adb2010-01-16 20:16:10 +000028EXPORT_SYMBOL(icst525_s2div);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Russell Kingc5a0adb2010-01-16 20:16:10 +000030unsigned long icst_hz(const struct icst_params *p, struct icst_vco vco)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Linus Walleij5070fb12016-02-08 09:14:37 +010032 u64 dividend = p->ref * 2 * (u64)(vco.v + 8);
33 u32 divisor = (vco.r + 2) * p->s2div[vco.s];
34
35 do_div(dividend, divisor);
36 return (unsigned long)dividend;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
Russell Kingc5a0adb2010-01-16 20:16:10 +000039EXPORT_SYMBOL(icst_hz);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * Ascending divisor S values.
43 */
Russell King232eaf72010-01-16 19:46:19 +000044const unsigned char icst307_idx2s[8] = { 1, 6, 3, 4, 7, 5, 2, 0 };
Russell Kingc5a0adb2010-01-16 20:16:10 +000045const unsigned char icst525_idx2s[8] = { 1, 3, 4, 7, 5, 2, 6, 0 };
Russell King232eaf72010-01-16 19:46:19 +000046EXPORT_SYMBOL(icst307_idx2s);
Russell Kingc5a0adb2010-01-16 20:16:10 +000047EXPORT_SYMBOL(icst525_idx2s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Russell King39c0cb02010-01-16 16:27:28 +000049struct icst_vco
Russell Kingc5a0adb2010-01-16 20:16:10 +000050icst_hz_to_vco(const struct icst_params *p, unsigned long freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Russell King39c0cb02010-01-16 16:27:28 +000052 struct icst_vco vco = { .s = 1, .v = p->vd_max, .r = p->rd_max };
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 unsigned long f;
54 unsigned int i = 0, rd, best = (unsigned int)-1;
55
56 /*
57 * First, find the PLL output divisor such
58 * that the PLL output is within spec.
59 */
60 do {
Russell King232eaf72010-01-16 19:46:19 +000061 f = freq * p->s2div[p->idx2s[i]];
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Russell Kinge73a46a2010-01-16 19:49:39 +000063 if (f > p->vco_min && f <= p->vco_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 break;
Linus Walleije972c372016-02-10 09:25:17 +010065 i++;
Russell King232eaf72010-01-16 19:46:19 +000066 } while (i < 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Russell King232eaf72010-01-16 19:46:19 +000068 if (i >= 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 return vco;
70
Russell King232eaf72010-01-16 19:46:19 +000071 vco.s = p->idx2s[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 /*
74 * Now find the closest divisor combination
75 * which gives a PLL output of 'f'.
76 */
77 for (rd = p->rd_min; rd <= p->rd_max; rd++) {
78 unsigned long fref_div, f_pll;
79 unsigned int vd;
80 int f_diff;
81
82 fref_div = (2 * p->ref) / rd;
83
84 vd = (f + fref_div / 2) / fref_div;
85 if (vd < p->vd_min || vd > p->vd_max)
86 continue;
87
88 f_pll = fref_div * vd;
89 f_diff = f_pll - f;
90 if (f_diff < 0)
91 f_diff = -f_diff;
92
93 if ((unsigned)f_diff < best) {
94 vco.v = vd - 8;
95 vco.r = rd - 2;
96 if (f_diff == 0)
97 break;
98 best = f_diff;
99 }
100 }
101
102 return vco;
103}
104
Russell Kingc5a0adb2010-01-16 20:16:10 +0000105EXPORT_SYMBOL(icst_hz_to_vco);