blob: 3caff9637a82e759db99ee78c7677340f1f3e560 [file] [log] [blame]
Vladimir Barinov3e062b02007-06-05 16:36:55 +01001/*
Kevin Hilmanc5b736d2009-03-20 17:29:01 -07002 * Clock and PLL control for DaVinci devices
Vladimir Barinov3e062b02007-06-05 16:36:55 +01003 *
Kevin Hilmanc5b736d2009-03-20 17:29:01 -07004 * Copyright (C) 2006-2007 Texas Instruments.
5 * Copyright (C) 2008-2009 Deep Root Systems, LLC
Vladimir Barinov3e062b02007-06-05 16:36:55 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/errno.h>
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070017#include <linux/clk.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010018#include <linux/err.h>
19#include <linux/mutex.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Sekhar Norid6a61562009-08-31 15:48:03 +053021#include <linux/delay.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010024
Kevin Hilman28552c22010-02-25 15:36:38 -080025#include <mach/clock.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/psc.h>
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070027#include <mach/cputype.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +010028#include "clock.h"
29
Vladimir Barinov3e062b02007-06-05 16:36:55 +010030static LIST_HEAD(clocks);
31static DEFINE_MUTEX(clocks_mutex);
32static DEFINE_SPINLOCK(clockfw_lock);
33
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070034static void __clk_enable(struct clk *clk)
Vladimir Barinov3e062b02007-06-05 16:36:55 +010035{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070036 if (clk->parent)
37 __clk_enable(clk->parent);
Philip Avinashc6007ff2013-03-25 15:07:48 +053038 if (clk->usecount++ == 0) {
39 if (clk->flags & CLK_PSC)
40 davinci_psc_config(clk->domain, clk->gpsc, clk->lpsc,
41 true, clk->flags);
42 else if (clk->clk_enable)
43 clk->clk_enable(clk);
44 }
Vladimir Barinov3e062b02007-06-05 16:36:55 +010045}
46
47static void __clk_disable(struct clk *clk)
48{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070049 if (WARN_ON(clk->usecount == 0))
Vladimir Barinov3e062b02007-06-05 16:36:55 +010050 return;
Philip Avinashc6007ff2013-03-25 15:07:48 +053051 if (--clk->usecount == 0) {
52 if (!(clk->flags & CLK_PLL) && (clk->flags & CLK_PSC))
53 davinci_psc_config(clk->domain, clk->gpsc, clk->lpsc,
54 false, clk->flags);
55 else if (clk->clk_disable)
56 clk->clk_disable(clk);
57 }
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070058 if (clk->parent)
59 __clk_disable(clk->parent);
Vladimir Barinov3e062b02007-06-05 16:36:55 +010060}
61
Robert Tivyaf47e6b2013-01-10 16:23:23 -080062int davinci_clk_reset(struct clk *clk, bool reset)
63{
64 unsigned long flags;
65
66 if (clk == NULL || IS_ERR(clk))
67 return -EINVAL;
68
69 spin_lock_irqsave(&clockfw_lock, flags);
70 if (clk->flags & CLK_PSC)
71 davinci_psc_reset(clk->gpsc, clk->lpsc, reset);
72 spin_unlock_irqrestore(&clockfw_lock, flags);
73
74 return 0;
75}
76EXPORT_SYMBOL(davinci_clk_reset);
77
78int davinci_clk_reset_assert(struct clk *clk)
79{
80 if (clk == NULL || IS_ERR(clk) || !clk->reset)
81 return -EINVAL;
82
83 return clk->reset(clk, true);
84}
85EXPORT_SYMBOL(davinci_clk_reset_assert);
86
87int davinci_clk_reset_deassert(struct clk *clk)
88{
89 if (clk == NULL || IS_ERR(clk) || !clk->reset)
90 return -EINVAL;
91
92 return clk->reset(clk, false);
93}
94EXPORT_SYMBOL(davinci_clk_reset_deassert);
95
Vladimir Barinov3e062b02007-06-05 16:36:55 +010096int clk_enable(struct clk *clk)
97{
98 unsigned long flags;
Vladimir Barinov3e062b02007-06-05 16:36:55 +010099
Peter Ujfalusif6c1a8a2015-09-14 12:29:39 +0300100 if (!clk)
101 return 0;
102 else if (IS_ERR(clk))
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100103 return -EINVAL;
104
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700105 spin_lock_irqsave(&clockfw_lock, flags);
106 __clk_enable(clk);
107 spin_unlock_irqrestore(&clockfw_lock, flags);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100108
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700109 return 0;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100110}
111EXPORT_SYMBOL(clk_enable);
112
113void clk_disable(struct clk *clk)
114{
115 unsigned long flags;
116
117 if (clk == NULL || IS_ERR(clk))
118 return;
119
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700120 spin_lock_irqsave(&clockfw_lock, flags);
121 __clk_disable(clk);
122 spin_unlock_irqrestore(&clockfw_lock, flags);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100123}
124EXPORT_SYMBOL(clk_disable);
125
126unsigned long clk_get_rate(struct clk *clk)
127{
128 if (clk == NULL || IS_ERR(clk))
Peter Ujfalusif6c1a8a2015-09-14 12:29:39 +0300129 return 0;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100130
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700131 return clk->rate;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100132}
133EXPORT_SYMBOL(clk_get_rate);
134
135long clk_round_rate(struct clk *clk, unsigned long rate)
136{
137 if (clk == NULL || IS_ERR(clk))
Paul Walmsley4408c262013-11-26 16:56:27 -0800138 return 0;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100139
Sekhar Norid6a61562009-08-31 15:48:03 +0530140 if (clk->round_rate)
141 return clk->round_rate(clk, rate);
142
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700143 return clk->rate;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100144}
145EXPORT_SYMBOL(clk_round_rate);
146
Sekhar Norid6a61562009-08-31 15:48:03 +0530147/* Propagate rate to children */
148static void propagate_rate(struct clk *root)
149{
150 struct clk *clk;
151
152 list_for_each_entry(clk, &root->children, childnode) {
153 if (clk->recalc)
154 clk->rate = clk->recalc(clk);
155 propagate_rate(clk);
156 }
157}
158
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100159int clk_set_rate(struct clk *clk, unsigned long rate)
160{
Sekhar Norid6a61562009-08-31 15:48:03 +0530161 unsigned long flags;
162 int ret = -EINVAL;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100163
Peter Ujfalusif6c1a8a2015-09-14 12:29:39 +0300164 if (!clk)
165 return 0;
166 else if (IS_ERR(clk))
167 return -EINVAL;
Sekhar Norid6a61562009-08-31 15:48:03 +0530168
Sekhar Norid6a61562009-08-31 15:48:03 +0530169 if (clk->set_rate)
170 ret = clk->set_rate(clk, rate);
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530171
172 spin_lock_irqsave(&clockfw_lock, flags);
Sekhar Norid6a61562009-08-31 15:48:03 +0530173 if (ret == 0) {
174 if (clk->recalc)
175 clk->rate = clk->recalc(clk);
176 propagate_rate(clk);
177 }
178 spin_unlock_irqrestore(&clockfw_lock, flags);
179
180 return ret;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100181}
182EXPORT_SYMBOL(clk_set_rate);
183
Sekhar Norib82a51e2009-08-31 15:48:04 +0530184int clk_set_parent(struct clk *clk, struct clk *parent)
185{
186 unsigned long flags;
187
Peter Ujfalusif6c1a8a2015-09-14 12:29:39 +0300188 if (!clk)
189 return 0;
190 else if (IS_ERR(clk))
Sekhar Norib82a51e2009-08-31 15:48:04 +0530191 return -EINVAL;
192
193 /* Cannot change parent on enabled clock */
194 if (WARN_ON(clk->usecount))
195 return -EINVAL;
196
197 mutex_lock(&clocks_mutex);
198 clk->parent = parent;
199 list_del_init(&clk->childnode);
200 list_add(&clk->childnode, &clk->parent->children);
201 mutex_unlock(&clocks_mutex);
202
203 spin_lock_irqsave(&clockfw_lock, flags);
204 if (clk->recalc)
205 clk->rate = clk->recalc(clk);
206 propagate_rate(clk);
207 spin_unlock_irqrestore(&clockfw_lock, flags);
208
209 return 0;
210}
211EXPORT_SYMBOL(clk_set_parent);
212
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100213int clk_register(struct clk *clk)
214{
215 if (clk == NULL || IS_ERR(clk))
216 return -EINVAL;
217
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700218 if (WARN(clk->parent && !clk->parent->rate,
219 "CLK: %s parent %s has no rate!\n",
220 clk->name, clk->parent->name))
221 return -EINVAL;
222
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530223 INIT_LIST_HEAD(&clk->children);
224
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100225 mutex_lock(&clocks_mutex);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700226 list_add_tail(&clk->node, &clocks);
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530227 if (clk->parent)
228 list_add_tail(&clk->childnode, &clk->parent->children);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100229 mutex_unlock(&clocks_mutex);
230
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700231 /* If rate is already set, use it */
232 if (clk->rate)
233 return 0;
234
Sekhar Noride381a92009-08-31 15:48:02 +0530235 /* Else, see if there is a way to calculate it */
236 if (clk->recalc)
237 clk->rate = clk->recalc(clk);
238
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700239 /* Otherwise, default to parent rate */
Sekhar Noride381a92009-08-31 15:48:02 +0530240 else if (clk->parent)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700241 clk->rate = clk->parent->rate;
242
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100243 return 0;
244}
245EXPORT_SYMBOL(clk_register);
246
247void clk_unregister(struct clk *clk)
248{
249 if (clk == NULL || IS_ERR(clk))
250 return;
251
252 mutex_lock(&clocks_mutex);
253 list_del(&clk->node);
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530254 list_del(&clk->childnode);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100255 mutex_unlock(&clocks_mutex);
256}
257EXPORT_SYMBOL(clk_unregister);
258
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700259#ifdef CONFIG_DAVINCI_RESET_CLOCKS
260/*
261 * Disable any unused clocks left on by the bootloader
262 */
Shawn Guo3aa3e842012-04-26 09:45:39 +0800263int __init davinci_clk_disable_unused(void)
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100264{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700265 struct clk *ck;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100266
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700267 spin_lock_irq(&clockfw_lock);
268 list_for_each_entry(ck, &clocks, node) {
269 if (ck->usecount > 0)
270 continue;
271 if (!(ck->flags & CLK_PSC))
272 continue;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100273
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700274 /* ignore if in Disabled or SwRstDisable states */
Sergei Shtylyov789a7852009-09-30 19:48:03 +0400275 if (!davinci_psc_is_clk_active(ck->gpsc, ck->lpsc))
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700276 continue;
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100277
Kevin Hilmanc89f1682010-08-05 10:55:16 -0700278 pr_debug("Clocks: disable unused %s\n", ck->name);
Cyril Chemparathy52958be2010-03-25 17:43:47 -0400279
Murali Karicheri12221d42011-11-15 01:42:09 +0530280 davinci_psc_config(ck->domain, ck->gpsc, ck->lpsc,
Sekhar Noria51ca382011-07-06 06:01:21 +0000281 false, ck->flags);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700282 }
283 spin_unlock_irq(&clockfw_lock);
284
285 return 0;
286}
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700287#endif
288
Sekhar Noride381a92009-08-31 15:48:02 +0530289static unsigned long clk_sysclk_recalc(struct clk *clk)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700290{
291 u32 v, plldiv;
292 struct pll_data *pll;
Sekhar Noride381a92009-08-31 15:48:02 +0530293 unsigned long rate = clk->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700294
295 /* If this is the PLL base clock, no more calculations needed */
296 if (clk->pll_data)
Sekhar Noride381a92009-08-31 15:48:02 +0530297 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700298
299 if (WARN_ON(!clk->parent))
Sekhar Noride381a92009-08-31 15:48:02 +0530300 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700301
Sekhar Noride381a92009-08-31 15:48:02 +0530302 rate = clk->parent->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700303
304 /* Otherwise, the parent must be a PLL */
305 if (WARN_ON(!clk->parent->pll_data))
Sekhar Noride381a92009-08-31 15:48:02 +0530306 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700307
308 pll = clk->parent->pll_data;
309
310 /* If pre-PLL, source clock is before the multiplier and divider(s) */
311 if (clk->flags & PRE_PLL)
Sekhar Noride381a92009-08-31 15:48:02 +0530312 rate = pll->input_rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700313
314 if (!clk->div_reg)
Sekhar Noride381a92009-08-31 15:48:02 +0530315 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700316
317 v = __raw_readl(pll->base + clk->div_reg);
318 if (v & PLLDIV_EN) {
Cyril Chemparathyd6961e62010-04-14 14:44:49 -0400319 plldiv = (v & pll->div_ratio_mask) + 1;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700320 if (plldiv)
Sekhar Noride381a92009-08-31 15:48:02 +0530321 rate /= plldiv;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700322 }
Sekhar Noride381a92009-08-31 15:48:02 +0530323
324 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700325}
326
Sekhar Norib39639b2010-07-20 16:46:49 +0530327int davinci_set_sysclk_rate(struct clk *clk, unsigned long rate)
328{
329 unsigned v;
330 struct pll_data *pll;
331 unsigned long input;
332 unsigned ratio = 0;
333
334 /* If this is the PLL base clock, wrong function to call */
335 if (clk->pll_data)
336 return -EINVAL;
337
338 /* There must be a parent... */
339 if (WARN_ON(!clk->parent))
340 return -EINVAL;
341
342 /* ... the parent must be a PLL... */
343 if (WARN_ON(!clk->parent->pll_data))
344 return -EINVAL;
345
346 /* ... and this clock must have a divider. */
347 if (WARN_ON(!clk->div_reg))
348 return -EINVAL;
349
350 pll = clk->parent->pll_data;
351
352 input = clk->parent->rate;
353
354 /* If pre-PLL, source clock is before the multiplier and divider(s) */
355 if (clk->flags & PRE_PLL)
356 input = pll->input_rate;
357
358 if (input > rate) {
359 /*
360 * Can afford to provide an output little higher than requested
361 * only if maximum rate supported by hardware on this sysclk
362 * is known.
363 */
364 if (clk->maxrate) {
365 ratio = DIV_ROUND_CLOSEST(input, rate);
366 if (input / ratio > clk->maxrate)
367 ratio = 0;
368 }
369
370 if (ratio == 0)
371 ratio = DIV_ROUND_UP(input, rate);
372
373 ratio--;
374 }
375
Cyril Chemparathyb1d05be2010-10-20 17:49:56 -0400376 if (ratio > pll->div_ratio_mask)
Sekhar Norib39639b2010-07-20 16:46:49 +0530377 return -EINVAL;
378
379 do {
380 v = __raw_readl(pll->base + PLLSTAT);
381 } while (v & PLLSTAT_GOSTAT);
382
383 v = __raw_readl(pll->base + clk->div_reg);
Cyril Chemparathyb1d05be2010-10-20 17:49:56 -0400384 v &= ~pll->div_ratio_mask;
Sekhar Norib39639b2010-07-20 16:46:49 +0530385 v |= ratio | PLLDIV_EN;
386 __raw_writel(v, pll->base + clk->div_reg);
387
388 v = __raw_readl(pll->base + PLLCMD);
389 v |= PLLCMD_GOSET;
390 __raw_writel(v, pll->base + PLLCMD);
391
392 do {
393 v = __raw_readl(pll->base + PLLSTAT);
394 } while (v & PLLSTAT_GOSTAT);
395
396 return 0;
397}
398EXPORT_SYMBOL(davinci_set_sysclk_rate);
399
Sekhar Noride381a92009-08-31 15:48:02 +0530400static unsigned long clk_leafclk_recalc(struct clk *clk)
401{
402 if (WARN_ON(!clk->parent))
403 return clk->rate;
404
405 return clk->parent->rate;
406}
407
Sekhar Nori56e580d2011-06-14 15:33:20 +0000408int davinci_simple_set_rate(struct clk *clk, unsigned long rate)
409{
410 clk->rate = rate;
411 return 0;
412}
413
Sekhar Noride381a92009-08-31 15:48:02 +0530414static unsigned long clk_pllclk_recalc(struct clk *clk)
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700415{
416 u32 ctrl, mult = 1, prediv = 1, postdiv = 1;
417 u8 bypass;
418 struct pll_data *pll = clk->pll_data;
Sekhar Noride381a92009-08-31 15:48:02 +0530419 unsigned long rate = clk->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700420
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700421 ctrl = __raw_readl(pll->base + PLLCTL);
Sekhar Noride381a92009-08-31 15:48:02 +0530422 rate = pll->input_rate = clk->parent->rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700423
424 if (ctrl & PLLCTL_PLLEN) {
425 bypass = 0;
426 mult = __raw_readl(pll->base + PLLM);
Sandeep Paulrajfb8fcb82009-06-11 09:41:05 -0400427 if (cpu_is_davinci_dm365())
428 mult = 2 * (mult & PLLM_PLLM_MASK);
429 else
430 mult = (mult & PLLM_PLLM_MASK) + 1;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700431 } else
432 bypass = 1;
433
434 if (pll->flags & PLL_HAS_PREDIV) {
435 prediv = __raw_readl(pll->base + PREDIV);
436 if (prediv & PLLDIV_EN)
Cyril Chemparathyd6961e62010-04-14 14:44:49 -0400437 prediv = (prediv & pll->div_ratio_mask) + 1;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700438 else
439 prediv = 1;
440 }
441
442 /* pre-divider is fixed, but (some?) chips won't report that */
443 if (cpu_is_davinci_dm355() && pll->num == 1)
444 prediv = 8;
445
446 if (pll->flags & PLL_HAS_POSTDIV) {
447 postdiv = __raw_readl(pll->base + POSTDIV);
448 if (postdiv & PLLDIV_EN)
Cyril Chemparathyd6961e62010-04-14 14:44:49 -0400449 postdiv = (postdiv & pll->div_ratio_mask) + 1;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700450 else
451 postdiv = 1;
452 }
453
454 if (!bypass) {
Sekhar Noride381a92009-08-31 15:48:02 +0530455 rate /= prediv;
456 rate *= mult;
457 rate /= postdiv;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700458 }
459
460 pr_debug("PLL%d: input = %lu MHz [ ",
461 pll->num, clk->parent->rate / 1000000);
462 if (bypass)
463 pr_debug("bypass ");
464 if (prediv > 1)
465 pr_debug("/ %d ", prediv);
466 if (mult > 1)
467 pr_debug("* %d ", mult);
468 if (postdiv > 1)
469 pr_debug("/ %d ", postdiv);
Sekhar Noride381a92009-08-31 15:48:02 +0530470 pr_debug("] --> %lu MHz output.\n", rate / 1000000);
471
472 return rate;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700473}
474
Sekhar Norid6a61562009-08-31 15:48:03 +0530475/**
476 * davinci_set_pllrate - set the output rate of a given PLL.
477 *
478 * Note: Currently tested to work with OMAP-L138 only.
479 *
480 * @pll: pll whose rate needs to be changed.
481 * @prediv: The pre divider value. Passing 0 disables the pre-divider.
482 * @pllm: The multiplier value. Passing 0 leads to multiply-by-one.
483 * @postdiv: The post divider value. Passing 0 disables the post-divider.
484 */
485int davinci_set_pllrate(struct pll_data *pll, unsigned int prediv,
486 unsigned int mult, unsigned int postdiv)
487{
488 u32 ctrl;
489 unsigned int locktime;
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530490 unsigned long flags;
Sekhar Norid6a61562009-08-31 15:48:03 +0530491
492 if (pll->base == NULL)
493 return -EINVAL;
494
495 /*
496 * PLL lock time required per OMAP-L138 datasheet is
497 * (2000 * prediv)/sqrt(pllm) OSCIN cycles. We approximate sqrt(pllm)
498 * as 4 and OSCIN cycle as 25 MHz.
499 */
500 if (prediv) {
501 locktime = ((2000 * prediv) / 100);
502 prediv = (prediv - 1) | PLLDIV_EN;
503 } else {
Sekhar Nori9a219a92009-11-16 17:21:33 +0530504 locktime = PLL_LOCK_TIME;
Sekhar Norid6a61562009-08-31 15:48:03 +0530505 }
506 if (postdiv)
507 postdiv = (postdiv - 1) | PLLDIV_EN;
508 if (mult)
509 mult = mult - 1;
510
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530511 /* Protect against simultaneous calls to PLL setting seqeunce */
512 spin_lock_irqsave(&clockfw_lock, flags);
513
Sekhar Norid6a61562009-08-31 15:48:03 +0530514 ctrl = __raw_readl(pll->base + PLLCTL);
515
516 /* Switch the PLL to bypass mode */
517 ctrl &= ~(PLLCTL_PLLENSRC | PLLCTL_PLLEN);
518 __raw_writel(ctrl, pll->base + PLLCTL);
519
Sekhar Nori9a219a92009-11-16 17:21:33 +0530520 udelay(PLL_BYPASS_TIME);
Sekhar Norid6a61562009-08-31 15:48:03 +0530521
522 /* Reset and enable PLL */
523 ctrl &= ~(PLLCTL_PLLRST | PLLCTL_PLLDIS);
524 __raw_writel(ctrl, pll->base + PLLCTL);
525
526 if (pll->flags & PLL_HAS_PREDIV)
527 __raw_writel(prediv, pll->base + PREDIV);
528
529 __raw_writel(mult, pll->base + PLLM);
530
531 if (pll->flags & PLL_HAS_POSTDIV)
532 __raw_writel(postdiv, pll->base + POSTDIV);
533
Sekhar Nori9a219a92009-11-16 17:21:33 +0530534 udelay(PLL_RESET_TIME);
Sekhar Norid6a61562009-08-31 15:48:03 +0530535
536 /* Bring PLL out of reset */
537 ctrl |= PLLCTL_PLLRST;
538 __raw_writel(ctrl, pll->base + PLLCTL);
539
540 udelay(locktime);
541
542 /* Remove PLL from bypass mode */
543 ctrl |= PLLCTL_PLLEN;
544 __raw_writel(ctrl, pll->base + PLLCTL);
545
Sekhar Nori3b43cd62010-01-12 18:55:35 +0530546 spin_unlock_irqrestore(&clockfw_lock, flags);
547
Sekhar Norid6a61562009-08-31 15:48:03 +0530548 return 0;
549}
550EXPORT_SYMBOL(davinci_set_pllrate);
551
Sekhar Nori56e580d2011-06-14 15:33:20 +0000552/**
553 * davinci_set_refclk_rate() - Set the reference clock rate
554 * @rate: The new rate.
555 *
556 * Sets the reference clock rate to a given value. This will most likely
557 * result in the entire clock tree getting updated.
558 *
559 * This is used to support boards which use a reference clock different
560 * than that used by default in <soc>.c file. The reference clock rate
561 * should be updated early in the boot process; ideally soon after the
562 * clock tree has been initialized once with the default reference clock
563 * rate (davinci_common_init()).
564 *
565 * Returns 0 on success, error otherwise.
566 */
567int davinci_set_refclk_rate(unsigned long rate)
568{
569 struct clk *refclk;
570
571 refclk = clk_get(NULL, "ref");
572 if (IS_ERR(refclk)) {
Joe Perchesa7ca2bc2014-10-31 17:51:51 -0700573 pr_err("%s: failed to get reference clock\n", __func__);
Sekhar Nori56e580d2011-06-14 15:33:20 +0000574 return PTR_ERR(refclk);
575 }
576
577 clk_set_rate(refclk, rate);
578
579 clk_put(refclk);
580
581 return 0;
582}
583
Kevin Hilman08aca082010-01-11 08:22:23 -0800584int __init davinci_clk_init(struct clk_lookup *clocks)
Robert Tivyaf47e6b2013-01-10 16:23:23 -0800585{
Kevin Hilman08aca082010-01-11 08:22:23 -0800586 struct clk_lookup *c;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700587 struct clk *clk;
Kevin Hilman08aca082010-01-11 08:22:23 -0800588 size_t num_clocks = 0;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700589
Kevin Hilman08aca082010-01-11 08:22:23 -0800590 for (c = clocks; c->clk; c++) {
591 clk = c->clk;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700592
Sekhar Noride381a92009-08-31 15:48:02 +0530593 if (!clk->recalc) {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700594
Sekhar Noride381a92009-08-31 15:48:02 +0530595 /* Check if clock is a PLL */
596 if (clk->pll_data)
597 clk->recalc = clk_pllclk_recalc;
598
599 /* Else, if it is a PLL-derived clock */
600 else if (clk->flags & CLK_PLL)
601 clk->recalc = clk_sysclk_recalc;
602
603 /* Otherwise, it is a leaf clock (PSC clock) */
604 else if (clk->parent)
605 clk->recalc = clk_leafclk_recalc;
606 }
607
Cyril Chemparathye4c822c2010-05-07 17:06:36 -0400608 if (clk->pll_data) {
609 struct pll_data *pll = clk->pll_data;
610
611 if (!pll->div_ratio_mask)
612 pll->div_ratio_mask = PLLDIV_RATIO_MASK;
613
614 if (pll->phys_base && !pll->base) {
615 pll->base = ioremap(pll->phys_base, SZ_4K);
616 WARN_ON(!pll->base);
617 }
618 }
Cyril Chemparathyd6961e62010-04-14 14:44:49 -0400619
Sekhar Noride381a92009-08-31 15:48:02 +0530620 if (clk->recalc)
621 clk->rate = clk->recalc(clk);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700622
623 if (clk->lpsc)
624 clk->flags |= CLK_PSC;
625
Robert Tivyaf47e6b2013-01-10 16:23:23 -0800626 if (clk->flags & PSC_LRST)
627 clk->reset = davinci_clk_reset;
628
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700629 clk_register(clk);
Kevin Hilman08aca082010-01-11 08:22:23 -0800630 num_clocks++;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700631
632 /* Turn on clocks that Linux doesn't otherwise manage */
633 if (clk->flags & ALWAYS_ENABLED)
634 clk_enable(clk);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100635 }
636
Kevin Hilman08aca082010-01-11 08:22:23 -0800637 clkdev_add_table(clocks, num_clocks);
638
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100639 return 0;
640}
641
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530642#ifdef CONFIG_DEBUG_FS
643
644#include <linux/debugfs.h>
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100645#include <linux/seq_file.h>
646
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700647#define CLKNAME_MAX 10 /* longest clock name */
648#define NEST_DELTA 2
649#define NEST_MAX 4
650
651static void
652dump_clock(struct seq_file *s, unsigned nest, struct clk *parent)
653{
654 char *state;
655 char buf[CLKNAME_MAX + NEST_DELTA * NEST_MAX];
656 struct clk *clk;
657 unsigned i;
658
659 if (parent->flags & CLK_PLL)
660 state = "pll";
661 else if (parent->flags & CLK_PSC)
662 state = "psc";
663 else
664 state = "";
665
666 /* <nest spaces> name <pad to end> */
667 memset(buf, ' ', sizeof(buf) - 1);
668 buf[sizeof(buf) - 1] = 0;
669 i = strlen(parent->name);
670 memcpy(buf + nest, parent->name,
671 min(i, (unsigned)(sizeof(buf) - 1 - nest)));
672
673 seq_printf(s, "%s users=%2d %-3s %9ld Hz\n",
674 buf, parent->usecount, state, clk_get_rate(parent));
675 /* REVISIT show device associations too */
676
677 /* cost is now small, but not linear... */
Sekhar Norif02bf3b2009-08-31 15:48:01 +0530678 list_for_each_entry(clk, &parent->children, childnode) {
679 dump_clock(s, nest + NEST_DELTA, clk);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700680 }
681}
682
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100683static int davinci_ck_show(struct seq_file *m, void *v)
684{
Sekhar Norif979aa62009-12-03 15:36:51 +0530685 struct clk *clk;
686
687 /*
688 * Show clock tree; We trust nonzero usecounts equate to PSC enables...
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700689 */
690 mutex_lock(&clocks_mutex);
Sekhar Norif979aa62009-12-03 15:36:51 +0530691 list_for_each_entry(clk, &clocks, node)
692 if (!clk->parent)
693 dump_clock(m, 0, clk);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700694 mutex_unlock(&clocks_mutex);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100695
696 return 0;
697}
698
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100699static int davinci_ck_open(struct inode *inode, struct file *file)
700{
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530701 return single_open(file, davinci_ck_show, NULL);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100702}
703
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530704static const struct file_operations davinci_ck_operations = {
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100705 .open = davinci_ck_open,
706 .read = seq_read,
707 .llseek = seq_lseek,
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530708 .release = single_release,
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100709};
710
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530711static int __init davinci_clk_debugfs_init(void)
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100712{
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530713 debugfs_create_file("davinci_clocks", S_IFREG | S_IRUGO, NULL, NULL,
714 &davinci_ck_operations);
Vladimir Barinov3e062b02007-06-05 16:36:55 +0100715 return 0;
716
717}
Sekhar Nori2f72e8d2009-12-03 15:36:52 +0530718device_initcall(davinci_clk_debugfs_init);
719#endif /* CONFIG_DEBUG_FS */