blob: c2da2a0fe5ad64df80d6290f45658c697cfd4c96 [file] [log] [blame]
Rajendra Nayaka1391d22009-12-08 18:47:16 -07001/*
2 * OMAP3/4 - specific DPLL control functions
3 *
Richard Woodruff358965d2010-02-22 22:09:08 -07004 * Copyright (C) 2009-2010 Texas Instruments, Inc.
5 * Copyright (C) 2009-2010 Nokia Corporation
Rajendra Nayaka1391d22009-12-08 18:47:16 -07006 *
7 * Written by Paul Walmsley
Richard Woodruff358965d2010-02-22 22:09:08 -07008 * Testing and integration fixes by Jouni Högander
9 *
10 * 36xx support added by Vishwanath BS, Richard Woodruff, and Nishanth
11 * Menon
Rajendra Nayaka1391d22009-12-08 18:47:16 -070012 *
13 * Parts of this code are based on code written by
14 * Richard Woodruff, Tony Lindgren, Tuukka Tikkanen, Karthik Dasu
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
19 */
20
Rajendra Nayaka1391d22009-12-08 18:47:16 -070021#include <linux/kernel.h>
22#include <linux/device.h>
23#include <linux/list.h>
24#include <linux/errno.h>
25#include <linux/delay.h>
26#include <linux/clk.h>
27#include <linux/io.h>
Rajendra Nayaka1391d22009-12-08 18:47:16 -070028#include <linux/bitops.h>
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010029#include <linux/clkdev.h>
Rajendra Nayaka1391d22009-12-08 18:47:16 -070030
Mike Turquette32cc0022012-11-10 16:58:41 -070031#include "clockdomain.h"
Rajendra Nayaka1391d22009-12-08 18:47:16 -070032#include "clock.h"
Rajendra Nayaka1391d22009-12-08 18:47:16 -070033
34/* CM_AUTOIDLE_PLL*.AUTO_* bit values */
35#define DPLL_AUTOIDLE_DISABLE 0x0
36#define DPLL_AUTOIDLE_LOW_POWER_STOP 0x1
37
38#define MAX_DPLL_WAIT_TRIES 1000000
39
Paul Walmsley60c3f652010-01-26 20:13:11 -070040/* Private functions */
Rajendra Nayaka1391d22009-12-08 18:47:16 -070041
42/* _omap3_dpll_write_clken - write clken_bits arg to a DPLL's enable bits */
Mike Turquette32cc0022012-11-10 16:58:41 -070043static void _omap3_dpll_write_clken(struct clk_hw_omap *clk, u8 clken_bits)
Rajendra Nayaka1391d22009-12-08 18:47:16 -070044{
45 const struct dpll_data *dd;
46 u32 v;
47
48 dd = clk->dpll_data;
49
Tero Kristo519ab8b2013-10-22 11:49:58 +030050 v = omap2_clk_readl(clk, dd->control_reg);
Rajendra Nayaka1391d22009-12-08 18:47:16 -070051 v &= ~dd->enable_mask;
52 v |= clken_bits << __ffs(dd->enable_mask);
Tero Kristo519ab8b2013-10-22 11:49:58 +030053 omap2_clk_writel(v, clk, dd->control_reg);
Rajendra Nayaka1391d22009-12-08 18:47:16 -070054}
55
56/* _omap3_wait_dpll_status: wait for a DPLL to enter a specific state */
Mike Turquette32cc0022012-11-10 16:58:41 -070057static int _omap3_wait_dpll_status(struct clk_hw_omap *clk, u8 state)
Rajendra Nayaka1391d22009-12-08 18:47:16 -070058{
59 const struct dpll_data *dd;
60 int i = 0;
61 int ret = -EINVAL;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060062 const char *clk_name;
Rajendra Nayaka1391d22009-12-08 18:47:16 -070063
64 dd = clk->dpll_data;
Mike Turquette32cc0022012-11-10 16:58:41 -070065 clk_name = __clk_get_name(clk->hw.clk);
Rajendra Nayaka1391d22009-12-08 18:47:16 -070066
67 state <<= __ffs(dd->idlest_mask);
68
Tero Kristo519ab8b2013-10-22 11:49:58 +030069 while (((omap2_clk_readl(clk, dd->idlest_reg) & dd->idlest_mask)
70 != state) && i < MAX_DPLL_WAIT_TRIES) {
Rajendra Nayaka1391d22009-12-08 18:47:16 -070071 i++;
72 udelay(1);
73 }
74
75 if (i == MAX_DPLL_WAIT_TRIES) {
76 printk(KERN_ERR "clock: %s failed transition to '%s'\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060077 clk_name, (state) ? "locked" : "bypassed");
Rajendra Nayaka1391d22009-12-08 18:47:16 -070078 } else {
79 pr_debug("clock: %s transition to '%s' in %d loops\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060080 clk_name, (state) ? "locked" : "bypassed", i);
Rajendra Nayaka1391d22009-12-08 18:47:16 -070081
82 ret = 0;
83 }
84
85 return ret;
86}
87
88/* From 3430 TRM ES2 4.7.6.2 */
Mike Turquette32cc0022012-11-10 16:58:41 -070089static u16 _omap3_dpll_compute_freqsel(struct clk_hw_omap *clk, u8 n)
Rajendra Nayaka1391d22009-12-08 18:47:16 -070090{
91 unsigned long fint;
92 u16 f = 0;
93
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060094 fint = __clk_get_rate(clk->dpll_data->clk_ref) / n;
Rajendra Nayaka1391d22009-12-08 18:47:16 -070095
96 pr_debug("clock: fint is %lu\n", fint);
97
98 if (fint >= 750000 && fint <= 1000000)
99 f = 0x3;
100 else if (fint > 1000000 && fint <= 1250000)
101 f = 0x4;
102 else if (fint > 1250000 && fint <= 1500000)
103 f = 0x5;
104 else if (fint > 1500000 && fint <= 1750000)
105 f = 0x6;
106 else if (fint > 1750000 && fint <= 2100000)
107 f = 0x7;
108 else if (fint > 7500000 && fint <= 10000000)
109 f = 0xB;
110 else if (fint > 10000000 && fint <= 12500000)
111 f = 0xC;
112 else if (fint > 12500000 && fint <= 15000000)
113 f = 0xD;
114 else if (fint > 15000000 && fint <= 17500000)
115 f = 0xE;
116 else if (fint > 17500000 && fint <= 21000000)
117 f = 0xF;
118 else
119 pr_debug("clock: unknown freqsel setting for %d\n", n);
120
121 return f;
122}
123
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700124/*
125 * _omap3_noncore_dpll_lock - instruct a DPLL to lock and wait for readiness
126 * @clk: pointer to a DPLL struct clk
127 *
128 * Instructs a non-CORE DPLL to lock. Waits for the DPLL to report
129 * readiness before returning. Will save and restore the DPLL's
130 * autoidle state across the enable, per the CDP code. If the DPLL
131 * locked successfully, return 0; if the DPLL did not lock in the time
132 * allotted, or DPLL3 was passed in, return -EINVAL.
133 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700134static int _omap3_noncore_dpll_lock(struct clk_hw_omap *clk)
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700135{
Vikram Pandita55ffe162012-07-04 05:00:44 -0600136 const struct dpll_data *dd;
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700137 u8 ai;
Vikram Pandita55ffe162012-07-04 05:00:44 -0600138 u8 state = 1;
139 int r = 0;
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700140
Mike Turquette32cc0022012-11-10 16:58:41 -0700141 pr_debug("clock: locking DPLL %s\n", __clk_get_name(clk->hw.clk));
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700142
Vikram Pandita55ffe162012-07-04 05:00:44 -0600143 dd = clk->dpll_data;
144 state <<= __ffs(dd->idlest_mask);
145
146 /* Check if already locked */
Tero Kristo519ab8b2013-10-22 11:49:58 +0300147 if ((omap2_clk_readl(clk, dd->idlest_reg) & dd->idlest_mask) == state)
Vikram Pandita55ffe162012-07-04 05:00:44 -0600148 goto done;
149
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700150 ai = omap3_dpll_autoidle_read(clk);
151
Vaibhav Bediad76316f2012-05-07 23:55:30 -0600152 if (ai)
153 omap3_dpll_deny_idle(clk);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700154
155 _omap3_dpll_write_clken(clk, DPLL_LOCKED);
156
157 r = _omap3_wait_dpll_status(clk, 1);
158
159 if (ai)
160 omap3_dpll_allow_idle(clk);
161
Vikram Pandita55ffe162012-07-04 05:00:44 -0600162done:
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700163 return r;
164}
165
166/*
167 * _omap3_noncore_dpll_bypass - instruct a DPLL to bypass and wait for readiness
168 * @clk: pointer to a DPLL struct clk
169 *
170 * Instructs a non-CORE DPLL to enter low-power bypass mode. In
171 * bypass mode, the DPLL's rate is set equal to its parent clock's
172 * rate. Waits for the DPLL to report readiness before returning.
173 * Will save and restore the DPLL's autoidle state across the enable,
174 * per the CDP code. If the DPLL entered bypass mode successfully,
175 * return 0; if the DPLL did not enter bypass in the time allotted, or
176 * DPLL3 was passed in, or the DPLL does not support low-power bypass,
177 * return -EINVAL.
178 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700179static int _omap3_noncore_dpll_bypass(struct clk_hw_omap *clk)
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700180{
181 int r;
182 u8 ai;
183
184 if (!(clk->dpll_data->modes & (1 << DPLL_LOW_POWER_BYPASS)))
185 return -EINVAL;
186
187 pr_debug("clock: configuring DPLL %s for low-power bypass\n",
Mike Turquette32cc0022012-11-10 16:58:41 -0700188 __clk_get_name(clk->hw.clk));
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700189
190 ai = omap3_dpll_autoidle_read(clk);
191
192 _omap3_dpll_write_clken(clk, DPLL_LOW_POWER_BYPASS);
193
194 r = _omap3_wait_dpll_status(clk, 0);
195
196 if (ai)
197 omap3_dpll_allow_idle(clk);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700198
199 return r;
200}
201
202/*
203 * _omap3_noncore_dpll_stop - instruct a DPLL to stop
204 * @clk: pointer to a DPLL struct clk
205 *
206 * Instructs a non-CORE DPLL to enter low-power stop. Will save and
207 * restore the DPLL's autoidle state across the stop, per the CDP
208 * code. If DPLL3 was passed in, or the DPLL does not support
209 * low-power stop, return -EINVAL; otherwise, return 0.
210 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700211static int _omap3_noncore_dpll_stop(struct clk_hw_omap *clk)
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700212{
213 u8 ai;
214
215 if (!(clk->dpll_data->modes & (1 << DPLL_LOW_POWER_STOP)))
216 return -EINVAL;
217
Mike Turquette32cc0022012-11-10 16:58:41 -0700218 pr_debug("clock: stopping DPLL %s\n", __clk_get_name(clk->hw.clk));
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700219
220 ai = omap3_dpll_autoidle_read(clk);
221
222 _omap3_dpll_write_clken(clk, DPLL_LOW_POWER_STOP);
223
224 if (ai)
225 omap3_dpll_allow_idle(clk);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700226
227 return 0;
228}
229
Richard Woodruff358965d2010-02-22 22:09:08 -0700230/**
Jon Huntera36795c2010-12-21 21:31:43 -0700231 * _lookup_dco - Lookup DCO used by j-type DPLL
Richard Woodruff358965d2010-02-22 22:09:08 -0700232 * @clk: pointer to a DPLL struct clk
233 * @dco: digital control oscillator selector
Jon Huntera36795c2010-12-21 21:31:43 -0700234 * @m: DPLL multiplier to set
235 * @n: DPLL divider to set
236 *
237 * See 36xx TRM section 3.5.3.3.3.2 "Type B DPLL (Low-Jitter)"
238 *
239 * XXX This code is not needed for 3430/AM35xx; can it be optimized
240 * out in non-multi-OMAP builds for those chips?
241 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700242static void _lookup_dco(struct clk_hw_omap *clk, u8 *dco, u16 m, u8 n)
Jon Huntera36795c2010-12-21 21:31:43 -0700243{
244 unsigned long fint, clkinp; /* watch out for overflow */
245
Mike Turquette32cc0022012-11-10 16:58:41 -0700246 clkinp = __clk_get_rate(__clk_get_parent(clk->hw.clk));
Jon Huntera36795c2010-12-21 21:31:43 -0700247 fint = (clkinp / n) * m;
248
249 if (fint < 1000000000)
250 *dco = 2;
251 else
252 *dco = 4;
253}
254
255/**
256 * _lookup_sddiv - Calculate sigma delta divider for j-type DPLL
257 * @clk: pointer to a DPLL struct clk
Richard Woodruff358965d2010-02-22 22:09:08 -0700258 * @sd_div: target sigma-delta divider
259 * @m: DPLL multiplier to set
260 * @n: DPLL divider to set
261 *
262 * See 36xx TRM section 3.5.3.3.3.2 "Type B DPLL (Low-Jitter)"
263 *
264 * XXX This code is not needed for 3430/AM35xx; can it be optimized
265 * out in non-multi-OMAP builds for those chips?
266 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700267static void _lookup_sddiv(struct clk_hw_omap *clk, u8 *sd_div, u16 m, u8 n)
Richard Woodruff358965d2010-02-22 22:09:08 -0700268{
Jon Huntera36795c2010-12-21 21:31:43 -0700269 unsigned long clkinp, sd; /* watch out for overflow */
Richard Woodruff358965d2010-02-22 22:09:08 -0700270 int mod1, mod2;
271
Mike Turquette32cc0022012-11-10 16:58:41 -0700272 clkinp = __clk_get_rate(__clk_get_parent(clk->hw.clk));
Richard Woodruff358965d2010-02-22 22:09:08 -0700273
Richard Woodruff358965d2010-02-22 22:09:08 -0700274 /*
275 * target sigma-delta to near 250MHz
276 * sd = ceil[(m/(n+1)) * (clkinp_MHz / 250)]
277 */
278 clkinp /= 100000; /* shift from MHz to 10*Hz for 38.4 and 19.2 */
279 mod1 = (clkinp * m) % (250 * n);
280 sd = (clkinp * m) / (250 * n);
281 mod2 = sd % 10;
282 sd /= 10;
283
284 if (mod1 || mod2)
285 sd++;
286 *sd_div = sd;
287}
288
Paul Walmsley60c3f652010-01-26 20:13:11 -0700289/*
290 * _omap3_noncore_dpll_program - set non-core DPLL M,N values directly
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700291 * @clk: struct clk * of DPLL to set
292 * @freqsel: FREQSEL value to set
Paul Walmsley60c3f652010-01-26 20:13:11 -0700293 *
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700294 * Program the DPLL with the last M, N values calculated, and wait for
295 * the DPLL to lock. Returns -EINVAL upon error, or 0 upon success.
Paul Walmsley60c3f652010-01-26 20:13:11 -0700296 */
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700297static int omap3_noncore_dpll_program(struct clk_hw_omap *clk, u16 freqsel)
Paul Walmsley60c3f652010-01-26 20:13:11 -0700298{
299 struct dpll_data *dd = clk->dpll_data;
Jon Huntera36795c2010-12-21 21:31:43 -0700300 u8 dco, sd_div;
Paul Walmsley60c3f652010-01-26 20:13:11 -0700301 u32 v;
302
303 /* 3430 ES2 TRM: 4.7.6.9 DPLL Programming Sequence */
304 _omap3_noncore_dpll_bypass(clk);
305
Vishwanath BS5eb75f52010-02-24 12:05:57 -0700306 /*
Rajendra Nayakecf51642013-01-29 18:33:49 +0530307 * Set jitter correction. Jitter correction applicable for OMAP343X
308 * only since freqsel field is no longer present on other devices.
Vishwanath BS5eb75f52010-02-24 12:05:57 -0700309 */
Tero Kristo2337c5b2014-07-02 11:47:43 +0300310 if (ti_clk_features.flags & TI_CLK_DPLL_HAS_FREQSEL) {
Tero Kristo519ab8b2013-10-22 11:49:58 +0300311 v = omap2_clk_readl(clk, dd->control_reg);
Paul Walmsley60c3f652010-01-26 20:13:11 -0700312 v &= ~dd->freqsel_mask;
313 v |= freqsel << __ffs(dd->freqsel_mask);
Tero Kristo519ab8b2013-10-22 11:49:58 +0300314 omap2_clk_writel(v, clk, dd->control_reg);
Paul Walmsley60c3f652010-01-26 20:13:11 -0700315 }
316
317 /* Set DPLL multiplier, divider */
Tero Kristo519ab8b2013-10-22 11:49:58 +0300318 v = omap2_clk_readl(clk, dd->mult_div1_reg);
Andrii Tseglytskyice369a52014-05-16 05:45:58 -0500319
320 /* Handle Duty Cycle Correction */
321 if (dd->dcc_mask) {
322 if (dd->last_rounded_rate >= dd->dcc_rate)
323 v |= dd->dcc_mask; /* Enable DCC */
324 else
325 v &= ~dd->dcc_mask; /* Disable DCC */
326 }
327
Paul Walmsley60c3f652010-01-26 20:13:11 -0700328 v &= ~(dd->mult_mask | dd->div1_mask);
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700329 v |= dd->last_rounded_m << __ffs(dd->mult_mask);
330 v |= (dd->last_rounded_n - 1) << __ffs(dd->div1_mask);
Richard Woodruff358965d2010-02-22 22:09:08 -0700331
Jon Huntera36795c2010-12-21 21:31:43 -0700332 /* Configure dco and sd_div for dplls that have these fields */
333 if (dd->dco_mask) {
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700334 _lookup_dco(clk, &dco, dd->last_rounded_m, dd->last_rounded_n);
Jon Huntera36795c2010-12-21 21:31:43 -0700335 v &= ~(dd->dco_mask);
336 v |= dco << __ffs(dd->dco_mask);
337 }
338 if (dd->sddiv_mask) {
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700339 _lookup_sddiv(clk, &sd_div, dd->last_rounded_m,
340 dd->last_rounded_n);
Jon Huntera36795c2010-12-21 21:31:43 -0700341 v &= ~(dd->sddiv_mask);
342 v |= sd_div << __ffs(dd->sddiv_mask);
Richard Woodruff358965d2010-02-22 22:09:08 -0700343 }
344
Tero Kristo519ab8b2013-10-22 11:49:58 +0300345 omap2_clk_writel(v, clk, dd->mult_div1_reg);
Paul Walmsley60c3f652010-01-26 20:13:11 -0700346
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700347 /* Set 4X multiplier and low-power mode */
348 if (dd->m4xen_mask || dd->lpmode_mask) {
Tero Kristo519ab8b2013-10-22 11:49:58 +0300349 v = omap2_clk_readl(clk, dd->control_reg);
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700350
351 if (dd->m4xen_mask) {
352 if (dd->last_rounded_m4xen)
353 v |= dd->m4xen_mask;
354 else
355 v &= ~dd->m4xen_mask;
356 }
357
358 if (dd->lpmode_mask) {
359 if (dd->last_rounded_lpmode)
360 v |= dd->lpmode_mask;
361 else
362 v &= ~dd->lpmode_mask;
363 }
364
Tero Kristo519ab8b2013-10-22 11:49:58 +0300365 omap2_clk_writel(v, clk, dd->control_reg);
Jon Hunter3ff51ed2012-12-15 01:35:46 -0700366 }
367
Paul Walmsley60c3f652010-01-26 20:13:11 -0700368 /* We let the clock framework set the other output dividers later */
369
370 /* REVISIT: Set ramp-up delay? */
371
372 _omap3_noncore_dpll_lock(clk);
373
374 return 0;
375}
376
377/* Public functions */
378
379/**
380 * omap3_dpll_recalc - recalculate DPLL rate
381 * @clk: DPLL struct clk
382 *
383 * Recalculate and propagate the DPLL rate.
384 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700385unsigned long omap3_dpll_recalc(struct clk_hw *hw, unsigned long parent_rate)
386{
387 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
Paul Walmsley455db9c2012-11-10 19:32:46 -0700388
Paul Walmsley60c3f652010-01-26 20:13:11 -0700389 return omap2_get_dpll_rate(clk);
390}
391
392/* Non-CORE DPLL (e.g., DPLLs that do not control SDRC) clock functions */
393
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700394/**
395 * omap3_noncore_dpll_enable - instruct a DPLL to enter bypass or lock mode
396 * @clk: pointer to a DPLL struct clk
397 *
398 * Instructs a non-CORE DPLL to enable, e.g., to enter bypass or lock.
399 * The choice of modes depends on the DPLL's programmed rate: if it is
400 * the same as the DPLL's parent clock, it will enter bypass;
401 * otherwise, it will enter lock. This code will wait for the DPLL to
402 * indicate readiness before returning, unless the DPLL takes too long
403 * to enter the target state. Intended to be used as the struct clk's
404 * enable function. If DPLL3 was passed in, or the DPLL does not
405 * support low-power stop, or if the DPLL took too long to enter
406 * bypass or lock, return -EINVAL; otherwise, return 0.
407 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700408int omap3_noncore_dpll_enable(struct clk_hw *hw)
409{
410 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700411 int r;
412 struct dpll_data *dd;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600413 struct clk *parent;
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700414
415 dd = clk->dpll_data;
416 if (!dd)
417 return -EINVAL;
418
Mike Turquette32cc0022012-11-10 16:58:41 -0700419 if (clk->clkdm) {
420 r = clkdm_clk_enable(clk->clkdm, hw->clk);
421 if (r) {
422 WARN(1,
423 "%s: could not enable %s's clockdomain %s: %d\n",
424 __func__, __clk_get_name(hw->clk),
425 clk->clkdm->name, r);
426 return r;
427 }
428 }
429
430 parent = __clk_get_parent(hw->clk);
431
432 if (__clk_get_rate(hw->clk) == __clk_get_rate(dd->clk_bypass)) {
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600433 WARN_ON(parent != dd->clk_bypass);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700434 r = _omap3_noncore_dpll_bypass(clk);
435 } else {
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600436 WARN_ON(parent != dd->clk_ref);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700437 r = _omap3_noncore_dpll_lock(clk);
438 }
Mike Turquette32cc0022012-11-10 16:58:41 -0700439
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700440 return r;
441}
442
443/**
444 * omap3_noncore_dpll_disable - instruct a DPLL to enter low-power stop
445 * @clk: pointer to a DPLL struct clk
446 *
447 * Instructs a non-CORE DPLL to enter low-power stop. This function is
448 * intended for use in struct clkops. No return value.
449 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700450void omap3_noncore_dpll_disable(struct clk_hw *hw)
451{
452 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
453
454 _omap3_noncore_dpll_stop(clk);
455 if (clk->clkdm)
456 clkdm_clk_disable(clk->clkdm, hw->clk);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700457}
458
459
460/* Non-CORE DPLL rate set code */
461
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700462/**
Tero Kristod539efa2014-10-03 16:57:11 +0300463 * omap3_noncore_dpll_determine_rate - determine rate for a DPLL
464 * @hw: pointer to the clock to determine rate for
465 * @rate: target rate for the DPLL
466 * @best_parent_rate: pointer for returning best parent rate
467 * @best_parent_clk: pointer for returning best parent clock
468 *
469 * Determines which DPLL mode to use for reaching a desired target rate.
470 * Checks whether the DPLL shall be in bypass or locked mode, and if
471 * locked, calculates the M,N values for the DPLL via round-rate.
472 * Returns a positive clock rate with success, negative error value
473 * in failure.
474 */
475long omap3_noncore_dpll_determine_rate(struct clk_hw *hw, unsigned long rate,
476 unsigned long *best_parent_rate,
Tero Kristo6f8e8532014-12-12 15:22:00 +0200477 struct clk_hw **best_parent_clk)
Tero Kristod539efa2014-10-03 16:57:11 +0300478{
479 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
480 struct dpll_data *dd;
481
482 if (!hw || !rate)
483 return -EINVAL;
484
485 dd = clk->dpll_data;
486 if (!dd)
487 return -EINVAL;
488
489 if (__clk_get_rate(dd->clk_bypass) == rate &&
490 (dd->modes & (1 << DPLL_LOW_POWER_BYPASS))) {
Tero Kristo6f8e8532014-12-12 15:22:00 +0200491 *best_parent_clk = __clk_get_hw(dd->clk_bypass);
Tero Kristod539efa2014-10-03 16:57:11 +0300492 } else {
493 rate = omap2_dpll_round_rate(hw, rate, best_parent_rate);
Tero Kristo6f8e8532014-12-12 15:22:00 +0200494 *best_parent_clk = __clk_get_hw(dd->clk_ref);
Tero Kristod539efa2014-10-03 16:57:11 +0300495 }
496
497 *best_parent_rate = rate;
498
499 return rate;
500}
501
502/**
503 * omap3_noncore_dpll_set_parent - set parent for a DPLL clock
504 * @hw: pointer to the clock to set parent for
505 * @index: parent index to select
506 *
507 * Sets parent for a DPLL clock. This sets the DPLL into bypass or
508 * locked mode. Returns 0 with success, negative error value otherwise.
509 */
510int omap3_noncore_dpll_set_parent(struct clk_hw *hw, u8 index)
511{
512 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
513 int ret;
514
515 if (!hw)
516 return -EINVAL;
517
518 if (index)
519 ret = _omap3_noncore_dpll_bypass(clk);
520 else
521 ret = _omap3_noncore_dpll_lock(clk);
522
523 return ret;
524}
525
526/**
Tero Kristo2e1a7b02014-10-03 16:57:14 +0300527 * omap3_noncore_dpll_set_rate - set rate for a DPLL clock
Tero Kristod539efa2014-10-03 16:57:11 +0300528 * @hw: pointer to the clock to set parent for
529 * @rate: target rate for the clock
530 * @parent_rate: rate of the parent clock
531 *
532 * Sets rate for a DPLL clock. First checks if the clock parent is
533 * reference clock (in bypass mode, the rate of the clock can't be
534 * changed) and proceeds with the rate change operation. Returns 0
535 * with success, negative error value otherwise.
536 */
Tero Kristo2e1a7b02014-10-03 16:57:14 +0300537int omap3_noncore_dpll_set_rate(struct clk_hw *hw, unsigned long rate,
538 unsigned long parent_rate)
Tero Kristod539efa2014-10-03 16:57:11 +0300539{
540 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
541 struct dpll_data *dd;
542 u16 freqsel = 0;
543 int ret;
544
545 if (!hw || !rate)
546 return -EINVAL;
547
548 dd = clk->dpll_data;
549 if (!dd)
550 return -EINVAL;
551
552 if (__clk_get_parent(hw->clk) != dd->clk_ref)
553 return -EINVAL;
554
555 if (dd->last_rounded_rate == 0)
556 return -EINVAL;
557
558 /* Freqsel is available only on OMAP343X devices */
559 if (ti_clk_features.flags & TI_CLK_DPLL_HAS_FREQSEL) {
560 freqsel = _omap3_dpll_compute_freqsel(clk, dd->last_rounded_n);
561 WARN_ON(!freqsel);
562 }
563
564 pr_debug("%s: %s: set rate: locking rate to %lu.\n", __func__,
565 __clk_get_name(hw->clk), rate);
566
567 ret = omap3_noncore_dpll_program(clk, freqsel);
568
569 return ret;
570}
571
572/**
573 * omap3_noncore_dpll_set_rate_and_parent - set rate and parent for a DPLL clock
574 * @hw: pointer to the clock to set rate and parent for
575 * @rate: target rate for the DPLL
576 * @parent_rate: clock rate of the DPLL parent
577 * @index: new parent index for the DPLL, 0 - reference, 1 - bypass
578 *
579 * Sets rate and parent for a DPLL clock. If new parent is the bypass
580 * clock, only selects the parent. Otherwise proceeds with a rate
581 * change, as this will effectively also change the parent as the
582 * DPLL is put into locked mode. Returns 0 with success, negative error
583 * value otherwise.
584 */
585int omap3_noncore_dpll_set_rate_and_parent(struct clk_hw *hw,
586 unsigned long rate,
587 unsigned long parent_rate,
588 u8 index)
589{
590 int ret;
591
592 if (!hw || !rate)
593 return -EINVAL;
594
595 /*
596 * clk-ref at index[0], in which case we only need to set rate,
597 * the parent will be changed automatically with the lock sequence.
598 * With clk-bypass case we only need to change parent.
599 */
600 if (index)
601 ret = omap3_noncore_dpll_set_parent(hw, index);
602 else
Tero Kristo2e1a7b02014-10-03 16:57:14 +0300603 ret = omap3_noncore_dpll_set_rate(hw, rate, parent_rate);
Tero Kristod539efa2014-10-03 16:57:11 +0300604
605 return ret;
606}
607
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700608/* DPLL autoidle read/set code */
609
610/**
611 * omap3_dpll_autoidle_read - read a DPLL's autoidle bits
612 * @clk: struct clk * of the DPLL to read
613 *
614 * Return the DPLL's autoidle bits, shifted down to bit 0. Returns
615 * -EINVAL if passed a null pointer or if the struct clk does not
616 * appear to refer to a DPLL.
617 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700618u32 omap3_dpll_autoidle_read(struct clk_hw_omap *clk)
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700619{
620 const struct dpll_data *dd;
621 u32 v;
622
623 if (!clk || !clk->dpll_data)
624 return -EINVAL;
625
626 dd = clk->dpll_data;
627
Vaibhav Bediad76316f2012-05-07 23:55:30 -0600628 if (!dd->autoidle_reg)
629 return -EINVAL;
630
Tero Kristo519ab8b2013-10-22 11:49:58 +0300631 v = omap2_clk_readl(clk, dd->autoidle_reg);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700632 v &= dd->autoidle_mask;
633 v >>= __ffs(dd->autoidle_mask);
634
635 return v;
636}
637
638/**
639 * omap3_dpll_allow_idle - enable DPLL autoidle bits
640 * @clk: struct clk * of the DPLL to operate on
641 *
642 * Enable DPLL automatic idle control. This automatic idle mode
643 * switching takes effect only when the DPLL is locked, at least on
644 * OMAP3430. The DPLL will enter low-power stop when its downstream
645 * clocks are gated. No return value.
646 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700647void omap3_dpll_allow_idle(struct clk_hw_omap *clk)
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700648{
649 const struct dpll_data *dd;
650 u32 v;
651
652 if (!clk || !clk->dpll_data)
653 return;
654
655 dd = clk->dpll_data;
656
Paul Walmsley455db9c2012-11-10 19:32:46 -0700657 if (!dd->autoidle_reg)
Vaibhav Bediad76316f2012-05-07 23:55:30 -0600658 return;
Vaibhav Bediad76316f2012-05-07 23:55:30 -0600659
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700660 /*
661 * REVISIT: CORE DPLL can optionally enter low-power bypass
662 * by writing 0x5 instead of 0x1. Add some mechanism to
663 * optionally enter this mode.
664 */
Tero Kristo519ab8b2013-10-22 11:49:58 +0300665 v = omap2_clk_readl(clk, dd->autoidle_reg);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700666 v &= ~dd->autoidle_mask;
667 v |= DPLL_AUTOIDLE_LOW_POWER_STOP << __ffs(dd->autoidle_mask);
Tero Kristo519ab8b2013-10-22 11:49:58 +0300668 omap2_clk_writel(v, clk, dd->autoidle_reg);
Vaibhav Bediad76316f2012-05-07 23:55:30 -0600669
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700670}
671
672/**
673 * omap3_dpll_deny_idle - prevent DPLL from automatically idling
674 * @clk: struct clk * of the DPLL to operate on
675 *
676 * Disable DPLL automatic idle control. No return value.
677 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700678void omap3_dpll_deny_idle(struct clk_hw_omap *clk)
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700679{
680 const struct dpll_data *dd;
681 u32 v;
682
683 if (!clk || !clk->dpll_data)
684 return;
685
686 dd = clk->dpll_data;
687
Paul Walmsley455db9c2012-11-10 19:32:46 -0700688 if (!dd->autoidle_reg)
Vaibhav Bediad76316f2012-05-07 23:55:30 -0600689 return;
Vaibhav Bediad76316f2012-05-07 23:55:30 -0600690
Tero Kristo519ab8b2013-10-22 11:49:58 +0300691 v = omap2_clk_readl(clk, dd->autoidle_reg);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700692 v &= ~dd->autoidle_mask;
693 v |= DPLL_AUTOIDLE_DISABLE << __ffs(dd->autoidle_mask);
Tero Kristo519ab8b2013-10-22 11:49:58 +0300694 omap2_clk_writel(v, clk, dd->autoidle_reg);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700695
696}
697
698/* Clock control for DPLL outputs */
699
Tomi Valkeinen994c41e2014-01-30 13:17:20 +0200700/* Find the parent DPLL for the given clkoutx2 clock */
701static struct clk_hw_omap *omap3_find_clkoutx2_dpll(struct clk_hw *hw)
Mike Turquette32cc0022012-11-10 16:58:41 -0700702{
Mike Turquette32cc0022012-11-10 16:58:41 -0700703 struct clk_hw_omap *pclk = NULL;
704 struct clk *parent;
705
706 /* Walk up the parents of clk, looking for a DPLL */
707 do {
708 do {
709 parent = __clk_get_parent(hw->clk);
710 hw = __clk_get_hw(parent);
711 } while (hw && (__clk_get_flags(hw->clk) & CLK_IS_BASIC));
712 if (!hw)
713 break;
714 pclk = to_clk_hw_omap(hw);
715 } while (pclk && !pclk->dpll_data);
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700716
Paul Walmsleya032d332012-08-03 09:21:10 -0600717 /* clk does not have a DPLL as a parent? error in the clock data */
718 if (!pclk) {
719 WARN_ON(1);
Tomi Valkeinen994c41e2014-01-30 13:17:20 +0200720 return NULL;
Paul Walmsleya032d332012-08-03 09:21:10 -0600721 }
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700722
Tomi Valkeinen994c41e2014-01-30 13:17:20 +0200723 return pclk;
724}
725
726/**
727 * omap3_clkoutx2_recalc - recalculate DPLL X2 output virtual clock rate
728 * @clk: DPLL output struct clk
729 *
730 * Using parent clock DPLL data, look up DPLL state. If locked, set our
731 * rate to the dpll_clk * 2; otherwise, just use dpll_clk.
732 */
733unsigned long omap3_clkoutx2_recalc(struct clk_hw *hw,
734 unsigned long parent_rate)
735{
736 const struct dpll_data *dd;
737 unsigned long rate;
738 u32 v;
739 struct clk_hw_omap *pclk = NULL;
740
741 if (!parent_rate)
742 return 0;
743
744 pclk = omap3_find_clkoutx2_dpll(hw);
745
746 if (!pclk)
747 return 0;
748
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700749 dd = pclk->dpll_data;
750
751 WARN_ON(!dd->enable_mask);
752
Tero Kristo519ab8b2013-10-22 11:49:58 +0300753 v = omap2_clk_readl(pclk, dd->control_reg) & dd->enable_mask;
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700754 v >>= __ffs(dd->enable_mask);
Richard Woodruff358965d2010-02-22 22:09:08 -0700755 if ((v != OMAP3XXX_EN_DPLL_LOCKED) || (dd->flags & DPLL_J_TYPE))
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600756 rate = parent_rate;
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700757 else
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600758 rate = parent_rate * 2;
Rajendra Nayaka1391d22009-12-08 18:47:16 -0700759 return rate;
760}
Vaibhav Hiremath353cec42012-07-05 08:05:15 -0700761
Tomi Valkeinen994c41e2014-01-30 13:17:20 +0200762int omap3_clkoutx2_set_rate(struct clk_hw *hw, unsigned long rate,
763 unsigned long parent_rate)
764{
765 return 0;
766}
767
768long omap3_clkoutx2_round_rate(struct clk_hw *hw, unsigned long rate,
769 unsigned long *prate)
770{
771 const struct dpll_data *dd;
772 u32 v;
773 struct clk_hw_omap *pclk = NULL;
774
775 if (!*prate)
776 return 0;
777
778 pclk = omap3_find_clkoutx2_dpll(hw);
779
780 if (!pclk)
781 return 0;
782
783 dd = pclk->dpll_data;
784
785 /* TYPE J does not have a clkoutx2 */
786 if (dd->flags & DPLL_J_TYPE) {
787 *prate = __clk_round_rate(__clk_get_parent(pclk->hw.clk), rate);
788 return *prate;
789 }
790
791 WARN_ON(!dd->enable_mask);
792
793 v = omap2_clk_readl(pclk, dd->control_reg) & dd->enable_mask;
794 v >>= __ffs(dd->enable_mask);
795
796 /* If in bypass, the rate is fixed to the bypass rate*/
797 if (v != OMAP3XXX_EN_DPLL_LOCKED)
798 return *prate;
799
800 if (__clk_get_flags(hw->clk) & CLK_SET_RATE_PARENT) {
801 unsigned long best_parent;
802
803 best_parent = (rate / 2);
804 *prate = __clk_round_rate(__clk_get_parent(hw->clk),
805 best_parent);
806 }
807
808 return *prate * 2;
809}
810
Vaibhav Hiremath353cec42012-07-05 08:05:15 -0700811/* OMAP3/4 non-CORE DPLL clkops */
Mike Turquette32cc0022012-11-10 16:58:41 -0700812const struct clk_hw_omap_ops clkhwops_omap3_dpll = {
813 .allow_idle = omap3_dpll_allow_idle,
814 .deny_idle = omap3_dpll_deny_idle,
815};