blob: fbcd82b8a7d0bb4a49c94c2361f056741ab6d618 [file] [log] [blame]
Paul Walmsley543d9372008-03-18 10:22:06 +02001/*
2 * linux/arch/arm/mach-omap2/clock.c
3 *
Tony Lindgrena16e9702008-03-18 11:56:39 +02004 * Copyright (C) 2005-2008 Texas Instruments, Inc.
Paul Walmsley8c349742010-02-22 22:09:24 -07005 * Copyright (C) 2004-2010 Nokia Corporation
Tony Lindgrena16e9702008-03-18 11:56:39 +02006 *
7 * Contacts:
Paul Walmsley543d9372008-03-18 10:22:06 +02008 * Richard Woodruff <r-woodruff2@ti.com>
Paul Walmsley543d9372008-03-18 10:22:06 +02009 * Paul Walmsley
10 *
Paul Walmsley543d9372008-03-18 10:22:06 +020011 * 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
Paul Walmsley543d9372008-03-18 10:22:06 +020017#include <linux/kernel.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020018#include <linux/list.h>
19#include <linux/errno.h>
Paul Walmsley4d30e822010-02-22 22:09:36 -070020#include <linux/err.h>
21#include <linux/delay.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020022#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010023#include <linux/io.h>
Russell Kingfbd3bdb2008-09-06 12:13:59 +010024#include <linux/bitops.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020025
Jean Pihet5e7c58d2011-03-03 11:25:43 +010026#include <asm/cpu.h>
Tony Lindgrendbc04162012-08-31 10:59:07 -070027
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/clock.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070029#include <plat/prcm.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020030
Tony Lindgrendbc04162012-08-31 10:59:07 -070031#include <trace/events/power.h>
32
33#include "soc.h"
34#include "clockdomain.h"
Paul Walmsley543d9372008-03-18 10:22:06 +020035#include "clock.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070036#include "cm2xxx_3xxx.h"
Paul Walmsley543d9372008-03-18 10:22:06 +020037#include "cm-regbits-24xx.h"
38#include "cm-regbits-34xx.h"
39
Afzal Mohammed99541192011-12-13 10:46:43 -080040u16 cpu_mask;
Paul Walmsley543d9372008-03-18 10:22:06 +020041
Paul Walmsley30962d92010-02-22 22:09:38 -070042/*
Paul Walmsley12706c52011-07-10 05:57:06 -060043 * clkdm_control: if true, then when a clock is enabled in the
44 * hardware, its clockdomain will first be enabled; and when a clock
45 * is disabled in the hardware, its clockdomain will be disabled
46 * afterwards.
47 */
48static bool clkdm_control = true;
49
50/*
Paul Walmsley30962d92010-02-22 22:09:38 -070051 * OMAP2+ specific clock functions
52 */
Paul Walmsley543d9372008-03-18 10:22:06 +020053
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070054/* Private functions */
55
56/**
57 * _omap2_module_wait_ready - wait for an OMAP module to leave IDLE
58 * @clk: struct clk * belonging to the module
59 *
60 * If the necessary clocks for the OMAP hardware IP block that
61 * corresponds to clock @clk are enabled, then wait for the module to
62 * indicate readiness (i.e., to leave IDLE). This code does not
63 * belong in the clock code and will be moved in the medium term to
64 * module-dependent code. No return value.
65 */
66static void _omap2_module_wait_ready(struct clk *clk)
67{
68 void __iomem *companion_reg, *idlest_reg;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070069 u8 other_bit, idlest_bit, idlest_val;
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070070
71 /* Not all modules have multiple clocks that their IDLEST depends on */
72 if (clk->ops->find_companion) {
73 clk->ops->find_companion(clk, &companion_reg, &other_bit);
74 if (!(__raw_readl(companion_reg) & (1 << other_bit)))
75 return;
76 }
77
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070078 clk->ops->find_idlest(clk, &idlest_reg, &idlest_bit, &idlest_val);
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070079
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070080 omap2_cm_wait_idlest(idlest_reg, (1 << idlest_bit), idlest_val,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060081 __clk_get_name(clk));
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070082}
83
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070084/* Public functions */
85
Paul Walmsley543d9372008-03-18 10:22:06 +020086/**
Paul Walmsley333943b2008-08-19 11:08:45 +030087 * omap2_init_clk_clkdm - look up a clockdomain name, store pointer in clk
88 * @clk: OMAP clock struct ptr to use
89 *
90 * Convert a clockdomain name stored in a struct clk 'clk' into a
91 * clockdomain pointer, and save it into the struct clk. Intended to be
92 * called during clk_register(). No return value.
93 */
94void omap2_init_clk_clkdm(struct clk *clk)
95{
96 struct clockdomain *clkdm;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060097 const char *clk_name;
Paul Walmsley333943b2008-08-19 11:08:45 +030098
99 if (!clk->clkdm_name)
100 return;
101
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600102 clk_name = __clk_get_name(clk);
103
Paul Walmsley333943b2008-08-19 11:08:45 +0300104 clkdm = clkdm_lookup(clk->clkdm_name);
105 if (clkdm) {
106 pr_debug("clock: associated clk %s to clkdm %s\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600107 clk_name, clk->clkdm_name);
Paul Walmsley333943b2008-08-19 11:08:45 +0300108 clk->clkdm = clkdm;
109 } else {
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600110 pr_debug("clock: could not associate clk %s to clkdm %s\n",
111 clk_name, clk->clkdm_name);
Paul Walmsley333943b2008-08-19 11:08:45 +0300112 }
113}
114
115/**
Paul Walmsley12706c52011-07-10 05:57:06 -0600116 * omap2_clk_disable_clkdm_control - disable clkdm control on clk enable/disable
117 *
118 * Prevent the OMAP clock code from calling into the clockdomain code
119 * when a hardware clock in that clockdomain is enabled or disabled.
120 * Intended to be called at init time from omap*_clk_init(). No
121 * return value.
122 */
123void __init omap2_clk_disable_clkdm_control(void)
124{
125 clkdm_control = false;
126}
127
128/**
Paul Walmsley72350b22009-07-24 19:44:03 -0600129 * omap2_clk_dflt_find_companion - find companion clock to @clk
130 * @clk: struct clk * to find the companion clock of
131 * @other_reg: void __iomem ** to return the companion clock CM_*CLKEN va in
132 * @other_bit: u8 ** to return the companion clock bit shift in
Paul Walmsley543d9372008-03-18 10:22:06 +0200133 *
Paul Walmsley72350b22009-07-24 19:44:03 -0600134 * Note: We don't need special code here for INVERT_ENABLE for the
135 * time being since INVERT_ENABLE only applies to clocks enabled by
Paul Walmsley543d9372008-03-18 10:22:06 +0200136 * CM_CLKEN_PLL
Paul Walmsley72350b22009-07-24 19:44:03 -0600137 *
138 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes it's
139 * just a matter of XORing the bits.
140 *
141 * Some clocks don't have companion clocks. For example, modules with
142 * only an interface clock (such as MAILBOXES) don't have a companion
143 * clock. Right now, this code relies on the hardware exporting a bit
144 * in the correct companion register that indicates that the
145 * nonexistent 'companion clock' is active. Future patches will
146 * associate this type of code with per-module data structures to
147 * avoid this issue, and remove the casts. No return value.
Paul Walmsley543d9372008-03-18 10:22:06 +0200148 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600149void omap2_clk_dflt_find_companion(struct clk *clk, void __iomem **other_reg,
150 u8 *other_bit)
Paul Walmsley543d9372008-03-18 10:22:06 +0200151{
Paul Walmsley72350b22009-07-24 19:44:03 -0600152 u32 r;
Paul Walmsley543d9372008-03-18 10:22:06 +0200153
Russell Kingc1168dc2008-11-04 21:24:00 +0000154 /*
155 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes
156 * it's just a matter of XORing the bits.
157 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600158 r = ((__force u32)clk->enable_reg ^ (CM_FCLKEN ^ CM_ICLKEN));
Paul Walmsley543d9372008-03-18 10:22:06 +0200159
Paul Walmsley72350b22009-07-24 19:44:03 -0600160 *other_reg = (__force void __iomem *)r;
161 *other_bit = clk->enable_bit;
Paul Walmsley543d9372008-03-18 10:22:06 +0200162}
163
Paul Walmsley72350b22009-07-24 19:44:03 -0600164/**
165 * omap2_clk_dflt_find_idlest - find CM_IDLEST reg va, bit shift for @clk
166 * @clk: struct clk * to find IDLEST info for
167 * @idlest_reg: void __iomem ** to return the CM_IDLEST va in
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700168 * @idlest_bit: u8 * to return the CM_IDLEST bit shift in
169 * @idlest_val: u8 * to return the idle status indicator
Paul Walmsley72350b22009-07-24 19:44:03 -0600170 *
171 * Return the CM_IDLEST register address and bit shift corresponding
172 * to the module that "owns" this clock. This default code assumes
173 * that the CM_IDLEST bit shift is the CM_*CLKEN bit shift, and that
174 * the IDLEST register address ID corresponds to the CM_*CLKEN
175 * register address ID (e.g., that CM_FCLKEN2 corresponds to
176 * CM_IDLEST2). This is not true for all modules. No return value.
177 */
178void omap2_clk_dflt_find_idlest(struct clk *clk, void __iomem **idlest_reg,
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700179 u8 *idlest_bit, u8 *idlest_val)
Paul Walmsley72350b22009-07-24 19:44:03 -0600180{
181 u32 r;
182
183 r = (((__force u32)clk->enable_reg & ~0xf0) | 0x20);
184 *idlest_reg = (__force void __iomem *)r;
185 *idlest_bit = clk->enable_bit;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700186
187 /*
188 * 24xx uses 0 to indicate not ready, and 1 to indicate ready.
189 * 34xx reverses this, just to keep us on our toes
190 * AM35xx uses both, depending on the module.
191 */
192 if (cpu_is_omap24xx())
193 *idlest_val = OMAP24XX_CM_IDLEST_VAL;
194 else if (cpu_is_omap34xx())
195 *idlest_val = OMAP34XX_CM_IDLEST_VAL;
196 else
197 BUG();
198
Paul Walmsley72350b22009-07-24 19:44:03 -0600199}
200
Paul Walmsley72350b22009-07-24 19:44:03 -0600201int omap2_dflt_clk_enable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200202{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700203 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200204
Russell Kingc0fc18c52008-09-05 15:10:27 +0100205 if (unlikely(clk->enable_reg == NULL)) {
Paul Walmsley72350b22009-07-24 19:44:03 -0600206 pr_err("clock.c: Enable for %s without enable code\n",
Paul Walmsley543d9372008-03-18 10:22:06 +0200207 clk->name);
208 return 0; /* REVISIT: -EINVAL */
209 }
210
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700211 v = __raw_readl(clk->enable_reg);
Paul Walmsley543d9372008-03-18 10:22:06 +0200212 if (clk->flags & INVERT_ENABLE)
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700213 v &= ~(1 << clk->enable_bit);
Paul Walmsley543d9372008-03-18 10:22:06 +0200214 else
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700215 v |= (1 << clk->enable_bit);
216 __raw_writel(v, clk->enable_reg);
Paul Walmsleyf11fda62009-01-28 12:35:06 -0700217 v = __raw_readl(clk->enable_reg); /* OCP barrier */
Paul Walmsley543d9372008-03-18 10:22:06 +0200218
Paul Walmsley72350b22009-07-24 19:44:03 -0600219 if (clk->ops->find_idlest)
Paul Walmsley4b1f76e2010-01-26 20:13:04 -0700220 _omap2_module_wait_ready(clk);
Paul Walmsley72350b22009-07-24 19:44:03 -0600221
Paul Walmsley543d9372008-03-18 10:22:06 +0200222 return 0;
223}
224
Paul Walmsley72350b22009-07-24 19:44:03 -0600225void omap2_dflt_clk_disable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200226{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700227 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200228
Paul Walmsleyfecb4942009-01-27 19:12:50 -0700229 if (!clk->enable_reg) {
Paul Walmsley543d9372008-03-18 10:22:06 +0200230 /*
231 * 'Independent' here refers to a clock which is not
232 * controlled by its parent.
233 */
234 printk(KERN_ERR "clock: clk_disable called on independent "
235 "clock %s which has no enable_reg\n", clk->name);
236 return;
237 }
238
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700239 v = __raw_readl(clk->enable_reg);
Paul Walmsley543d9372008-03-18 10:22:06 +0200240 if (clk->flags & INVERT_ENABLE)
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700241 v |= (1 << clk->enable_bit);
Paul Walmsley543d9372008-03-18 10:22:06 +0200242 else
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700243 v &= ~(1 << clk->enable_bit);
244 __raw_writel(v, clk->enable_reg);
Paul Walmsleyde07fed2009-01-28 12:35:01 -0700245 /* No OCP barrier needed here since it is a disable operation */
Paul Walmsley543d9372008-03-18 10:22:06 +0200246}
247
Russell Kingb36ee722008-11-04 17:59:52 +0000248const struct clkops clkops_omap2_dflt_wait = {
Paul Walmsley72350b22009-07-24 19:44:03 -0600249 .enable = omap2_dflt_clk_enable,
Russell Kingb36ee722008-11-04 17:59:52 +0000250 .disable = omap2_dflt_clk_disable,
Paul Walmsley72350b22009-07-24 19:44:03 -0600251 .find_companion = omap2_clk_dflt_find_companion,
252 .find_idlest = omap2_clk_dflt_find_idlest,
Russell Kingb36ee722008-11-04 17:59:52 +0000253};
254
Russell Kingbc51da42008-11-04 18:59:32 +0000255const struct clkops clkops_omap2_dflt = {
256 .enable = omap2_dflt_clk_enable,
257 .disable = omap2_dflt_clk_disable,
258};
259
Paul Walmsley30962d92010-02-22 22:09:38 -0700260/**
261 * omap2_clk_disable - disable a clock, if the system is not using it
262 * @clk: struct clk * to disable
263 *
264 * Decrements the usecount on struct clk @clk. If there are no users
265 * left, call the clkops-specific clock disable function to disable it
266 * in hardware. If the clock is part of a clockdomain (which they all
267 * should be), request that the clockdomain be disabled. (It too has
268 * a usecount, and so will not be disabled in the hardware until it no
269 * longer has any users.) If the clock has a parent clock (most of
270 * them do), then call ourselves, recursing on the parent clock. This
271 * can cause an entire branch of the clock tree to be powered off by
272 * simply disabling one clock. Intended to be called with the clockfw_lock
273 * spinlock held. No return value.
274 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200275void omap2_clk_disable(struct clk *clk)
276{
Paul Walmsley30962d92010-02-22 22:09:38 -0700277 if (clk->usecount == 0) {
278 WARN(1, "clock: %s: omap2_clk_disable() called, but usecount "
279 "already 0?", clk->name);
280 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200281 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200282
Paul Walmsley30962d92010-02-22 22:09:38 -0700283 pr_debug("clock: %s: decrementing usecount\n", clk->name);
Paul Walmsley543d9372008-03-18 10:22:06 +0200284
Paul Walmsley30962d92010-02-22 22:09:38 -0700285 clk->usecount--;
Paul Walmsley333943b2008-08-19 11:08:45 +0300286
Paul Walmsley30962d92010-02-22 22:09:38 -0700287 if (clk->usecount > 0)
288 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200289
Paul Walmsley30962d92010-02-22 22:09:38 -0700290 pr_debug("clock: %s: disabling in hardware\n", clk->name);
Russell Kinga7f8c592009-01-31 11:00:17 +0000291
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100292 if (clk->ops && clk->ops->disable) {
293 trace_clock_disable(clk->name, 0, smp_processor_id());
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700294 clk->ops->disable(clk);
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100295 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200296
Paul Walmsley12706c52011-07-10 05:57:06 -0600297 if (clkdm_control && clk->clkdm)
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700298 clkdm_clk_disable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700299
300 if (clk->parent)
301 omap2_clk_disable(clk->parent);
302}
303
304/**
305 * omap2_clk_enable - request that the system enable a clock
306 * @clk: struct clk * to enable
307 *
308 * Increments the usecount on struct clk @clk. If there were no users
309 * previously, then recurse up the clock tree, enabling all of the
310 * clock's parents and all of the parent clockdomains, and finally,
311 * enabling @clk's clockdomain, and @clk itself. Intended to be
312 * called with the clockfw_lock spinlock held. Returns 0 upon success
313 * or a negative error code upon failure.
314 */
315int omap2_clk_enable(struct clk *clk)
316{
317 int ret;
318
319 pr_debug("clock: %s: incrementing usecount\n", clk->name);
320
321 clk->usecount++;
322
323 if (clk->usecount > 1)
324 return 0;
325
326 pr_debug("clock: %s: enabling in hardware\n", clk->name);
327
328 if (clk->parent) {
329 ret = omap2_clk_enable(clk->parent);
330 if (ret) {
331 WARN(1, "clock: %s: could not enable parent %s: %d\n",
332 clk->name, clk->parent->name, ret);
333 goto oce_err1;
334 }
335 }
336
Paul Walmsley12706c52011-07-10 05:57:06 -0600337 if (clkdm_control && clk->clkdm) {
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700338 ret = clkdm_clk_enable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700339 if (ret) {
340 WARN(1, "clock: %s: could not enable clockdomain %s: "
341 "%d\n", clk->name, clk->clkdm->name, ret);
342 goto oce_err2;
343 }
344 }
345
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700346 if (clk->ops && clk->ops->enable) {
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100347 trace_clock_enable(clk->name, 1, smp_processor_id());
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700348 ret = clk->ops->enable(clk);
349 if (ret) {
350 WARN(1, "clock: %s: could not enable: %d\n",
351 clk->name, ret);
352 goto oce_err3;
353 }
Paul Walmsley30962d92010-02-22 22:09:38 -0700354 }
355
356 return 0;
357
358oce_err3:
Paul Walmsley12706c52011-07-10 05:57:06 -0600359 if (clkdm_control && clk->clkdm)
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700360 clkdm_clk_disable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700361oce_err2:
362 if (clk->parent)
363 omap2_clk_disable(clk->parent);
364oce_err1:
Russell Kinga7f8c592009-01-31 11:00:17 +0000365 clk->usecount--;
Paul Walmsley30962d92010-02-22 22:09:38 -0700366
Paul Walmsley543d9372008-03-18 10:22:06 +0200367 return ret;
368}
369
Paul Walmsley435699d2010-05-18 18:40:24 -0600370/* Given a clock and a rate apply a clock specific rounding function */
371long omap2_clk_round_rate(struct clk *clk, unsigned long rate)
372{
373 if (clk->round_rate)
374 return clk->round_rate(clk, rate);
375
376 return clk->rate;
377}
378
Paul Walmsley543d9372008-03-18 10:22:06 +0200379/* Set the clock rate for a clock source */
380int omap2_clk_set_rate(struct clk *clk, unsigned long rate)
381{
382 int ret = -EINVAL;
383
384 pr_debug("clock: set_rate for clock %s to rate %ld\n", clk->name, rate);
385
Paul Walmsley543d9372008-03-18 10:22:06 +0200386 /* dpll_ck, core_ck, virt_prcm_set; plus all clksel clocks */
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100387 if (clk->set_rate) {
388 trace_clock_set_rate(clk->name, rate, smp_processor_id());
Paul Walmsley543d9372008-03-18 10:22:06 +0200389 ret = clk->set_rate(clk, rate);
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100390 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200391
Paul Walmsley543d9372008-03-18 10:22:06 +0200392 return ret;
393}
394
Paul Walmsley543d9372008-03-18 10:22:06 +0200395int omap2_clk_set_parent(struct clk *clk, struct clk *new_parent)
396{
Paul Walmsley543d9372008-03-18 10:22:06 +0200397 if (!clk->clksel)
398 return -EINVAL;
399
Paul Walmsley1a337712010-02-22 22:09:16 -0700400 if (clk->parent == new_parent)
401 return 0;
402
Paul Walmsleydf791b32010-01-26 20:13:04 -0700403 return omap2_clksel_set_parent(clk, new_parent);
Paul Walmsley543d9372008-03-18 10:22:06 +0200404}
405
Paul Walmsley30962d92010-02-22 22:09:38 -0700406/*
407 * OMAP2+ clock reset and init functions
408 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200409
410#ifdef CONFIG_OMAP_RESET_CLOCKS
411void omap2_clk_disable_unused(struct clk *clk)
412{
413 u32 regval32, v;
414
415 v = (clk->flags & INVERT_ENABLE) ? (1 << clk->enable_bit) : 0;
416
417 regval32 = __raw_readl(clk->enable_reg);
418 if ((regval32 & (1 << clk->enable_bit)) == v)
419 return;
420
Paul Walmsley6041c272010-10-08 11:40:20 -0600421 pr_debug("Disabling unused clock \"%s\"\n", clk->name);
Tero Kristo8463e202009-01-28 12:27:45 -0700422 if (cpu_is_omap34xx()) {
423 omap2_clk_enable(clk);
424 omap2_clk_disable(clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700425 } else {
426 clk->ops->disable(clk);
427 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300428 if (clk->clkdm != NULL)
Santosh Shilimkar5a68a732012-05-07 23:55:38 -0600429 pwrdm_state_switch(clk->clkdm->pwrdm.ptr);
Paul Walmsley543d9372008-03-18 10:22:06 +0200430}
431#endif
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700432
Paul Walmsley4d30e822010-02-22 22:09:36 -0700433/**
434 * omap2_clk_switch_mpurate_at_boot - switch ARM MPU rate by boot-time argument
435 * @mpurate_ck_name: clk name of the clock to change rate
436 *
437 * Change the ARM MPU clock rate to the rate specified on the command
438 * line, if one was specified. @mpurate_ck_name should be
439 * "virt_prcm_set" on OMAP2xxx and "dpll1_ck" on OMAP34xx/OMAP36xx.
440 * XXX Does not handle voltage scaling - on OMAP2xxx this is currently
441 * handled by the virt_prcm_set clock, but this should be handled by
442 * the OPP layer. XXX This is intended to be handled by the OPP layer
443 * code in the near future and should be removed from the clock code.
444 * Returns -EINVAL if 'mpurate' is zero or if clk_set_rate() rejects
445 * the rate, -ENOENT if the struct clk referred to by @mpurate_ck_name
446 * cannot be found, or 0 upon success.
447 */
448int __init omap2_clk_switch_mpurate_at_boot(const char *mpurate_ck_name)
449{
450 struct clk *mpurate_ck;
451 int r;
452
453 if (!mpurate)
454 return -EINVAL;
455
456 mpurate_ck = clk_get(NULL, mpurate_ck_name);
457 if (WARN(IS_ERR(mpurate_ck), "Failed to get %s.\n", mpurate_ck_name))
458 return -ENOENT;
459
460 r = clk_set_rate(mpurate_ck, mpurate);
461 if (IS_ERR_VALUE(r)) {
462 WARN(1, "clock: %s: unable to set MPU rate to %d: %d\n",
463 mpurate_ck->name, mpurate, r);
Julia Lawallf6281f62011-07-04 04:08:10 -0700464 clk_put(mpurate_ck);
Paul Walmsley4d30e822010-02-22 22:09:36 -0700465 return -EINVAL;
466 }
467
468 calibrate_delay();
469 recalculate_root_clocks();
470
471 clk_put(mpurate_ck);
472
473 return 0;
474}
475
476/**
477 * omap2_clk_print_new_rates - print summary of current clock tree rates
478 * @hfclkin_ck_name: clk name for the off-chip HF oscillator
479 * @core_ck_name: clk name for the on-chip CORE_CLK
480 * @mpu_ck_name: clk name for the ARM MPU clock
481 *
482 * Prints a short message to the console with the HFCLKIN oscillator
483 * rate, the rate of the CORE clock, and the rate of the ARM MPU clock.
484 * Called by the boot-time MPU rate switching code. XXX This is intended
485 * to be handled by the OPP layer code in the near future and should be
486 * removed from the clock code. No return value.
487 */
488void __init omap2_clk_print_new_rates(const char *hfclkin_ck_name,
489 const char *core_ck_name,
490 const char *mpu_ck_name)
491{
492 struct clk *hfclkin_ck, *core_ck, *mpu_ck;
493 unsigned long hfclkin_rate;
494
495 mpu_ck = clk_get(NULL, mpu_ck_name);
496 if (WARN(IS_ERR(mpu_ck), "clock: failed to get %s.\n", mpu_ck_name))
497 return;
498
499 core_ck = clk_get(NULL, core_ck_name);
500 if (WARN(IS_ERR(core_ck), "clock: failed to get %s.\n", core_ck_name))
501 return;
502
503 hfclkin_ck = clk_get(NULL, hfclkin_ck_name);
504 if (WARN(IS_ERR(hfclkin_ck), "Failed to get %s.\n", hfclkin_ck_name))
505 return;
506
507 hfclkin_rate = clk_get_rate(hfclkin_ck);
508
509 pr_info("Switched to new clocking rate (Crystal/Core/MPU): "
510 "%ld.%01ld/%ld/%ld MHz\n",
511 (hfclkin_rate / 1000000),
512 ((hfclkin_rate / 100000) % 10),
513 (clk_get_rate(core_ck) / 1000000),
514 (clk_get_rate(mpu_ck) / 1000000));
515}
516
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700517/* Common data */
518
519struct clk_functions omap2_clk_functions = {
520 .clk_enable = omap2_clk_enable,
521 .clk_disable = omap2_clk_disable,
522 .clk_round_rate = omap2_clk_round_rate,
523 .clk_set_rate = omap2_clk_set_rate,
524 .clk_set_parent = omap2_clk_set_parent,
525 .clk_disable_unused = omap2_clk_disable_unused,
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700526};
527