blob: b5cc6f66ae5df5e1725dc21ebfd3b18ca5eac1fa [file] [log] [blame]
Paul Walmsley0b96af62010-01-26 20:13:03 -07001/*
2 * OMAP2/3/4 DPLL clock functions
3 *
4 * Copyright (C) 2005-2008 Texas Instruments, Inc.
5 * Copyright (C) 2004-2010 Nokia Corporation
6 *
7 * Contacts:
8 * Richard Woodruff <r-woodruff2@ti.com>
9 * Paul Walmsley
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15#undef DEBUG
16
17#include <linux/kernel.h>
18#include <linux/errno.h>
Stephen Boyda53ad8e2015-07-30 17:20:57 -070019#include <linux/clk.h>
Mike Turquette32cc0022012-11-10 16:58:41 -070020#include <linux/clk-provider.h>
Paul Walmsley0b96af62010-01-26 20:13:03 -070021#include <linux/io.h>
Tero Kristob138b022015-03-02 09:57:28 +020022#include <linux/clk/ti.h>
Paul Walmsley0b96af62010-01-26 20:13:03 -070023
24#include <asm/div64.h>
25
Paul Walmsley0b96af62010-01-26 20:13:03 -070026#include "clock.h"
Paul Walmsley0b96af62010-01-26 20:13:03 -070027
28/* DPLL rate rounding: minimum DPLL multiplier, divider values */
Paul Walmsley93340a22010-02-22 22:09:12 -070029#define DPLL_MIN_MULTIPLIER 2
Paul Walmsley0b96af62010-01-26 20:13:03 -070030#define DPLL_MIN_DIVIDER 1
31
32/* Possible error results from _dpll_test_mult */
33#define DPLL_MULT_UNDERFLOW -1
34
35/*
36 * Scale factor to mitigate roundoff errors in DPLL rate rounding.
37 * The higher the scale factor, the greater the risk of arithmetic overflow,
38 * but the closer the rounded rate to the target rate. DPLL_SCALE_FACTOR
39 * must be a power of DPLL_SCALE_BASE.
40 */
41#define DPLL_SCALE_FACTOR 64
42#define DPLL_SCALE_BASE 2
43#define DPLL_ROUNDING_VAL ((DPLL_SCALE_BASE / 2) * \
44 (DPLL_SCALE_FACTOR / DPLL_SCALE_BASE))
45
Jon Hunter1194d7b2011-10-07 01:44:20 -060046/*
47 * DPLL valid Fint frequency range for OMAP36xx and OMAP4xxx.
48 * From device data manual section 4.3 "DPLL and DLL Specifications".
49 */
50#define OMAP3PLUS_DPLL_FINT_JTYPE_MIN 500000
51#define OMAP3PLUS_DPLL_FINT_JTYPE_MAX 2500000
Paul Walmsley0b96af62010-01-26 20:13:03 -070052
53/* _dpll_test_fint() return codes */
54#define DPLL_FINT_UNDERFLOW -1
55#define DPLL_FINT_INVALID -2
56
57/* Private functions */
58
59/*
60 * _dpll_test_fint - test whether an Fint value is valid for the DPLL
61 * @clk: DPLL struct clk to test
62 * @n: divider value (N) to test
63 *
64 * Tests whether a particular divider @n will result in a valid DPLL
65 * internal clock frequency Fint. See the 34xx TRM 4.7.6.2 "DPLL Jitter
66 * Correction". Returns 0 if OK, -1 if the enclosing loop can terminate
67 * (assuming that it is counting N upwards), or -2 if the enclosing loop
68 * should skip to the next iteration (again assuming N is increasing).
69 */
Tero Kristo6340c872014-07-02 11:47:35 +030070static int _dpll_test_fint(struct clk_hw_omap *clk, unsigned int n)
Paul Walmsley0b96af62010-01-26 20:13:03 -070071{
72 struct dpll_data *dd;
Jon Hunter1194d7b2011-10-07 01:44:20 -060073 long fint, fint_min, fint_max;
Paul Walmsley0b96af62010-01-26 20:13:03 -070074 int ret = 0;
75
76 dd = clk->dpll_data;
77
78 /* DPLL divider must result in a valid jitter correction val */
Stephen Boyda53ad8e2015-07-30 17:20:57 -070079 fint = clk_hw_get_rate(clk_hw_get_parent(&clk->hw)) / n;
Paul Walmsley0b96af62010-01-26 20:13:03 -070080
Tero Kristoa24886e2014-07-02 11:47:40 +030081 if (dd->flags & DPLL_J_TYPE) {
Jon Hunter1194d7b2011-10-07 01:44:20 -060082 fint_min = OMAP3PLUS_DPLL_FINT_JTYPE_MIN;
83 fint_max = OMAP3PLUS_DPLL_FINT_JTYPE_MAX;
84 } else {
Tero Kristof3b19aa2015-02-27 17:54:14 +020085 fint_min = ti_clk_get_features()->fint_min;
86 fint_max = ti_clk_get_features()->fint_max;
Jon Hunter1194d7b2011-10-07 01:44:20 -060087 }
88
Tero Kristoa24886e2014-07-02 11:47:40 +030089 if (!fint_min || !fint_max) {
90 WARN(1, "No fint limits available!\n");
91 return DPLL_FINT_INVALID;
92 }
93
Tero Kristof3b19aa2015-02-27 17:54:14 +020094 if (fint < ti_clk_get_features()->fint_min) {
Paul Walmsley7852ec02012-07-26 00:54:26 -060095 pr_debug("rejecting n=%d due to Fint failure, lowering max_divider\n",
96 n);
Paul Walmsley0b96af62010-01-26 20:13:03 -070097 dd->max_divider = n;
98 ret = DPLL_FINT_UNDERFLOW;
Tero Kristof3b19aa2015-02-27 17:54:14 +020099 } else if (fint > ti_clk_get_features()->fint_max) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600100 pr_debug("rejecting n=%d due to Fint failure, boosting min_divider\n",
101 n);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700102 dd->min_divider = n;
103 ret = DPLL_FINT_INVALID;
Tero Kristof3b19aa2015-02-27 17:54:14 +0200104 } else if (fint > ti_clk_get_features()->fint_band1_max &&
105 fint < ti_clk_get_features()->fint_band2_min) {
Jon Hunter1194d7b2011-10-07 01:44:20 -0600106 pr_debug("rejecting n=%d due to Fint failure\n", n);
107 ret = DPLL_FINT_INVALID;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700108 }
109
110 return ret;
111}
112
113static unsigned long _dpll_compute_new_rate(unsigned long parent_rate,
114 unsigned int m, unsigned int n)
115{
116 unsigned long long num;
117
118 num = (unsigned long long)parent_rate * m;
119 do_div(num, n);
120 return num;
121}
122
123/*
124 * _dpll_test_mult - test a DPLL multiplier value
125 * @m: pointer to the DPLL m (multiplier) value under test
126 * @n: current DPLL n (divider) value under test
127 * @new_rate: pointer to storage for the resulting rounded rate
128 * @target_rate: the desired DPLL rate
129 * @parent_rate: the DPLL's parent clock rate
130 *
131 * This code tests a DPLL multiplier value, ensuring that the
132 * resulting rate will not be higher than the target_rate, and that
133 * the multiplier value itself is valid for the DPLL. Initially, the
134 * integer pointed to by the m argument should be prescaled by
135 * multiplying by DPLL_SCALE_FACTOR. The code will replace this with
136 * a non-scaled m upon return. This non-scaled m will result in a
137 * new_rate as close as possible to target_rate (but not greater than
138 * target_rate) given the current (parent_rate, n, prescaled m)
139 * triple. Returns DPLL_MULT_UNDERFLOW in the event that the
140 * non-scaled m attempted to underflow, which can allow the calling
141 * function to bail out early; or 0 upon success.
142 */
143static int _dpll_test_mult(int *m, int n, unsigned long *new_rate,
144 unsigned long target_rate,
145 unsigned long parent_rate)
146{
147 int r = 0, carry = 0;
148
149 /* Unscale m and round if necessary */
150 if (*m % DPLL_SCALE_FACTOR >= DPLL_ROUNDING_VAL)
151 carry = 1;
152 *m = (*m / DPLL_SCALE_FACTOR) + carry;
153
154 /*
155 * The new rate must be <= the target rate to avoid programming
156 * a rate that is impossible for the hardware to handle
157 */
158 *new_rate = _dpll_compute_new_rate(parent_rate, *m, n);
159 if (*new_rate > target_rate) {
160 (*m)--;
161 *new_rate = 0;
162 }
163
164 /* Guard against m underflow */
165 if (*m < DPLL_MIN_MULTIPLIER) {
166 *m = DPLL_MIN_MULTIPLIER;
167 *new_rate = 0;
168 r = DPLL_MULT_UNDERFLOW;
169 }
170
171 if (*new_rate == 0)
172 *new_rate = _dpll_compute_new_rate(parent_rate, *m, n);
173
174 return r;
175}
176
Tero Kristo5f84aeb2014-07-02 11:47:41 +0300177/**
178 * _omap2_dpll_is_in_bypass - check if DPLL is in bypass mode or not
179 * @v: bitfield value of the DPLL enable
180 *
181 * Checks given DPLL enable bitfield to see whether the DPLL is in bypass
182 * mode or not. Returns 1 if the DPLL is in bypass, 0 otherwise.
183 */
184static int _omap2_dpll_is_in_bypass(u32 v)
185{
Tero Kristo512d91c2014-07-02 11:47:42 +0300186 u8 mask, val;
187
Tero Kristof3b19aa2015-02-27 17:54:14 +0200188 mask = ti_clk_get_features()->dpll_bypass_vals;
Tero Kristo512d91c2014-07-02 11:47:42 +0300189
190 /*
191 * Each set bit in the mask corresponds to a bypass value equal
192 * to the bitshift. Go through each set-bit in the mask and
193 * compare against the given register value.
194 */
195 while (mask) {
196 val = __ffs(mask);
197 mask ^= (1 << val);
198 if (v == val)
Tero Kristo5f84aeb2014-07-02 11:47:41 +0300199 return 1;
200 }
201
202 return 0;
203}
204
Paul Walmsley0b96af62010-01-26 20:13:03 -0700205/* Public functions */
Mike Turquette32cc0022012-11-10 16:58:41 -0700206u8 omap2_init_dpll_parent(struct clk_hw *hw)
207{
208 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700209 u32 v;
210 struct dpll_data *dd;
211
212 dd = clk->dpll_data;
213 if (!dd)
Mike Turquette32cc0022012-11-10 16:58:41 -0700214 return -EINVAL;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700215
Tero Kristob138b022015-03-02 09:57:28 +0200216 v = ti_clk_ll_ops->clk_readl(dd->control_reg);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700217 v &= dd->enable_mask;
218 v >>= __ffs(dd->enable_mask);
219
Paul Walmsley241d3a82011-02-16 15:38:39 -0700220 /* Reparent the struct clk in case the dpll is in bypass */
Tero Kristo5f84aeb2014-07-02 11:47:41 +0300221 if (_omap2_dpll_is_in_bypass(v))
222 return 1;
223
Mike Turquette32cc0022012-11-10 16:58:41 -0700224 return 0;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700225}
226
227/**
228 * omap2_get_dpll_rate - returns the current DPLL CLKOUT rate
229 * @clk: struct clk * of a DPLL
230 *
231 * DPLLs can be locked or bypassed - basically, enabled or disabled.
232 * When locked, the DPLL output depends on the M and N values. When
233 * bypassed, on OMAP2xxx, the output rate is either the 32KiHz clock
234 * or sys_clk. Bypass rates on OMAP3 depend on the DPLL: DPLLs 1 and
235 * 2 are bypassed with dpll1_fclk and dpll2_fclk respectively
236 * (generated by DPLL3), while DPLL 3, 4, and 5 bypass rates are sys_clk.
237 * Returns the current DPLL CLKOUT rate (*not* CLKOUTX2) if the DPLL is
238 * locked, or the appropriate bypass rate if the DPLL is bypassed, or 0
239 * if the clock @clk is not a DPLL.
240 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700241unsigned long omap2_get_dpll_rate(struct clk_hw_omap *clk)
Paul Walmsley0b96af62010-01-26 20:13:03 -0700242{
Nicolas Pitredf976f52015-11-03 23:09:58 -0500243 u64 dpll_clk;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700244 u32 dpll_mult, dpll_div, v;
245 struct dpll_data *dd;
246
247 dd = clk->dpll_data;
248 if (!dd)
249 return 0;
250
251 /* Return bypass rate if DPLL is bypassed */
Tero Kristob138b022015-03-02 09:57:28 +0200252 v = ti_clk_ll_ops->clk_readl(dd->control_reg);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700253 v &= dd->enable_mask;
254 v >>= __ffs(dd->enable_mask);
255
Tero Kristo5f84aeb2014-07-02 11:47:41 +0300256 if (_omap2_dpll_is_in_bypass(v))
Stephen Boyda53ad8e2015-07-30 17:20:57 -0700257 return clk_get_rate(dd->clk_bypass);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700258
Tero Kristob138b022015-03-02 09:57:28 +0200259 v = ti_clk_ll_ops->clk_readl(dd->mult_div1_reg);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700260 dpll_mult = v & dd->mult_mask;
261 dpll_mult >>= __ffs(dd->mult_mask);
262 dpll_div = v & dd->div1_mask;
263 dpll_div >>= __ffs(dd->div1_mask);
264
Nicolas Pitredf976f52015-11-03 23:09:58 -0500265 dpll_clk = (u64)clk_get_rate(dd->clk_ref) * dpll_mult;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700266 do_div(dpll_clk, dpll_div + 1);
267
268 return dpll_clk;
269}
270
271/* DPLL rate rounding code */
272
273/**
Paul Walmsley0b96af62010-01-26 20:13:03 -0700274 * omap2_dpll_round_rate - round a target rate for an OMAP DPLL
275 * @clk: struct clk * for a DPLL
276 * @target_rate: desired DPLL clock rate
277 *
Paul Walmsley241d3a82011-02-16 15:38:39 -0700278 * Given a DPLL and a desired target rate, round the target rate to a
279 * possible, programmable rate for this DPLL. Attempts to select the
280 * minimum possible n. Stores the computed (m, n) in the DPLL's
281 * dpll_data structure so set_rate() will not need to call this
282 * (expensive) function again. Returns ~0 if the target rate cannot
283 * be rounded, or the rounded rate upon success.
Paul Walmsley0b96af62010-01-26 20:13:03 -0700284 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700285long omap2_dpll_round_rate(struct clk_hw *hw, unsigned long target_rate,
Tero Kristob138b022015-03-02 09:57:28 +0200286 unsigned long *parent_rate)
Mike Turquette32cc0022012-11-10 16:58:41 -0700287{
288 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
Paul Walmsley241d3a82011-02-16 15:38:39 -0700289 int m, n, r, scaled_max_m;
Paul Walmsley0a263442014-07-25 06:11:15 -0600290 int min_delta_m = INT_MAX, min_delta_n = INT_MAX;
Paul Walmsley241d3a82011-02-16 15:38:39 -0700291 unsigned long scaled_rt_rp;
292 unsigned long new_rate = 0;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700293 struct dpll_data *dd;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600294 unsigned long ref_rate;
Paul Walmsley0a263442014-07-25 06:11:15 -0600295 long delta;
296 long prev_min_delta = LONG_MAX;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600297 const char *clk_name;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700298
299 if (!clk || !clk->dpll_data)
300 return ~0;
301
302 dd = clk->dpll_data;
303
Stephen Boyda53ad8e2015-07-30 17:20:57 -0700304 ref_rate = clk_get_rate(dd->clk_ref);
305 clk_name = clk_hw_get_name(hw);
Tomi Valkeinen0cc1d942014-02-28 12:43:46 -0700306 pr_debug("clock: %s: starting DPLL round_rate, target rate %lu\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600307 clk_name, target_rate);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700308
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600309 scaled_rt_rp = target_rate / (ref_rate / DPLL_SCALE_FACTOR);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700310 scaled_max_m = dd->max_multiplier * DPLL_SCALE_FACTOR;
311
312 dd->last_rounded_rate = 0;
313
314 for (n = dd->min_divider; n <= dd->max_divider; n++) {
Paul Walmsley0b96af62010-01-26 20:13:03 -0700315 /* Is the (input clk, divider) pair valid for the DPLL? */
316 r = _dpll_test_fint(clk, n);
317 if (r == DPLL_FINT_UNDERFLOW)
318 break;
319 else if (r == DPLL_FINT_INVALID)
320 continue;
321
322 /* Compute the scaled DPLL multiplier, based on the divider */
323 m = scaled_rt_rp * n;
324
325 /*
326 * Since we're counting n up, a m overflow means we
327 * can bail out completely (since as n increases in
328 * the next iteration, there's no way that m can
329 * increase beyond the current m)
330 */
331 if (m > scaled_max_m)
332 break;
333
334 r = _dpll_test_mult(&m, n, &new_rate, target_rate,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600335 ref_rate);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700336
337 /* m can't be set low enough for this n - try with a larger n */
338 if (r == DPLL_MULT_UNDERFLOW)
339 continue;
340
Paul Walmsley0a263442014-07-25 06:11:15 -0600341 /* skip rates above our target rate */
342 delta = target_rate - new_rate;
343 if (delta < 0)
344 continue;
345
346 if (delta < prev_min_delta) {
347 prev_min_delta = delta;
348 min_delta_m = m;
349 min_delta_n = n;
350 }
351
Tomi Valkeinen0cc1d942014-02-28 12:43:46 -0700352 pr_debug("clock: %s: m = %d: n = %d: new_rate = %lu\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600353 clk_name, m, n, new_rate);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700354
Paul Walmsley0a263442014-07-25 06:11:15 -0600355 if (delta == 0)
Paul Walmsley241d3a82011-02-16 15:38:39 -0700356 break;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700357 }
358
Paul Walmsley0a263442014-07-25 06:11:15 -0600359 if (prev_min_delta == LONG_MAX) {
Tomi Valkeinen0cc1d942014-02-28 12:43:46 -0700360 pr_debug("clock: %s: cannot round to rate %lu\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600361 clk_name, target_rate);
Paul Walmsley0b96af62010-01-26 20:13:03 -0700362 return ~0;
363 }
364
Paul Walmsley0a263442014-07-25 06:11:15 -0600365 dd->last_rounded_m = min_delta_m;
366 dd->last_rounded_n = min_delta_n;
367 dd->last_rounded_rate = target_rate - prev_min_delta;
368
369 return dd->last_rounded_rate;
Paul Walmsley0b96af62010-01-26 20:13:03 -0700370}