blob: eeaf35367c801d1ef5522ca8ad6b65eb0e69ec6d [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>
Jean Pihet5e7c58d2011-03-03 11:25:43 +010025#include <trace/events/power.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020026
Jean Pihet5e7c58d2011-03-03 11:25:43 +010027#include <asm/cpu.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/clock.h>
Paul Walmsley1540f2142010-12-21 21:05:15 -070029#include "clockdomain.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070030#include <plat/cpu.h>
31#include <plat/prcm.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020032
Paul Walmsley543d9372008-03-18 10:22:06 +020033#include "clock.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070034#include "cm2xxx_3xxx.h"
Paul Walmsley543d9372008-03-18 10:22:06 +020035#include "cm-regbits-24xx.h"
36#include "cm-regbits-34xx.h"
37
Afzal Mohammed99541192011-12-13 10:46:43 -080038u16 cpu_mask;
Paul Walmsley543d9372008-03-18 10:22:06 +020039
Paul Walmsley30962d92010-02-22 22:09:38 -070040/*
Paul Walmsley12706c52011-07-10 05:57:06 -060041 * clkdm_control: if true, then when a clock is enabled in the
42 * hardware, its clockdomain will first be enabled; and when a clock
43 * is disabled in the hardware, its clockdomain will be disabled
44 * afterwards.
45 */
46static bool clkdm_control = true;
47
48/*
Paul Walmsley30962d92010-02-22 22:09:38 -070049 * OMAP2+ specific clock functions
50 */
Paul Walmsley543d9372008-03-18 10:22:06 +020051
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070052/* Private functions */
53
54/**
55 * _omap2_module_wait_ready - wait for an OMAP module to leave IDLE
56 * @clk: struct clk * belonging to the module
57 *
58 * If the necessary clocks for the OMAP hardware IP block that
59 * corresponds to clock @clk are enabled, then wait for the module to
60 * indicate readiness (i.e., to leave IDLE). This code does not
61 * belong in the clock code and will be moved in the medium term to
62 * module-dependent code. No return value.
63 */
64static void _omap2_module_wait_ready(struct clk *clk)
65{
66 void __iomem *companion_reg, *idlest_reg;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070067 u8 other_bit, idlest_bit, idlest_val;
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070068
69 /* Not all modules have multiple clocks that their IDLEST depends on */
70 if (clk->ops->find_companion) {
71 clk->ops->find_companion(clk, &companion_reg, &other_bit);
72 if (!(__raw_readl(companion_reg) & (1 << other_bit)))
73 return;
74 }
75
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070076 clk->ops->find_idlest(clk, &idlest_reg, &idlest_bit, &idlest_val);
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070077
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070078 omap2_cm_wait_idlest(idlest_reg, (1 << idlest_bit), idlest_val,
79 clk->name);
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070080}
81
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070082/* Public functions */
83
Paul Walmsley543d9372008-03-18 10:22:06 +020084/**
Paul Walmsley333943b2008-08-19 11:08:45 +030085 * omap2_init_clk_clkdm - look up a clockdomain name, store pointer in clk
86 * @clk: OMAP clock struct ptr to use
87 *
88 * Convert a clockdomain name stored in a struct clk 'clk' into a
89 * clockdomain pointer, and save it into the struct clk. Intended to be
90 * called during clk_register(). No return value.
91 */
92void omap2_init_clk_clkdm(struct clk *clk)
93{
94 struct clockdomain *clkdm;
95
96 if (!clk->clkdm_name)
97 return;
98
99 clkdm = clkdm_lookup(clk->clkdm_name);
100 if (clkdm) {
101 pr_debug("clock: associated clk %s to clkdm %s\n",
102 clk->name, clk->clkdm_name);
103 clk->clkdm = clkdm;
104 } else {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600105 pr_debug("clock: could not associate clk %s to clkdm %s\n",
106 clk->name, clk->clkdm_name);
Paul Walmsley333943b2008-08-19 11:08:45 +0300107 }
108}
109
110/**
Paul Walmsley12706c52011-07-10 05:57:06 -0600111 * omap2_clk_disable_clkdm_control - disable clkdm control on clk enable/disable
112 *
113 * Prevent the OMAP clock code from calling into the clockdomain code
114 * when a hardware clock in that clockdomain is enabled or disabled.
115 * Intended to be called at init time from omap*_clk_init(). No
116 * return value.
117 */
118void __init omap2_clk_disable_clkdm_control(void)
119{
120 clkdm_control = false;
121}
122
123/**
Paul Walmsley72350b22009-07-24 19:44:03 -0600124 * omap2_clk_dflt_find_companion - find companion clock to @clk
125 * @clk: struct clk * to find the companion clock of
126 * @other_reg: void __iomem ** to return the companion clock CM_*CLKEN va in
127 * @other_bit: u8 ** to return the companion clock bit shift in
Paul Walmsley543d9372008-03-18 10:22:06 +0200128 *
Paul Walmsley72350b22009-07-24 19:44:03 -0600129 * Note: We don't need special code here for INVERT_ENABLE for the
130 * time being since INVERT_ENABLE only applies to clocks enabled by
Paul Walmsley543d9372008-03-18 10:22:06 +0200131 * CM_CLKEN_PLL
Paul Walmsley72350b22009-07-24 19:44:03 -0600132 *
133 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes it's
134 * just a matter of XORing the bits.
135 *
136 * Some clocks don't have companion clocks. For example, modules with
137 * only an interface clock (such as MAILBOXES) don't have a companion
138 * clock. Right now, this code relies on the hardware exporting a bit
139 * in the correct companion register that indicates that the
140 * nonexistent 'companion clock' is active. Future patches will
141 * associate this type of code with per-module data structures to
142 * avoid this issue, and remove the casts. No return value.
Paul Walmsley543d9372008-03-18 10:22:06 +0200143 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600144void omap2_clk_dflt_find_companion(struct clk *clk, void __iomem **other_reg,
145 u8 *other_bit)
Paul Walmsley543d9372008-03-18 10:22:06 +0200146{
Paul Walmsley72350b22009-07-24 19:44:03 -0600147 u32 r;
Paul Walmsley543d9372008-03-18 10:22:06 +0200148
Russell Kingc1168dc2008-11-04 21:24:00 +0000149 /*
150 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes
151 * it's just a matter of XORing the bits.
152 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600153 r = ((__force u32)clk->enable_reg ^ (CM_FCLKEN ^ CM_ICLKEN));
Paul Walmsley543d9372008-03-18 10:22:06 +0200154
Paul Walmsley72350b22009-07-24 19:44:03 -0600155 *other_reg = (__force void __iomem *)r;
156 *other_bit = clk->enable_bit;
Paul Walmsley543d9372008-03-18 10:22:06 +0200157}
158
Paul Walmsley72350b22009-07-24 19:44:03 -0600159/**
160 * omap2_clk_dflt_find_idlest - find CM_IDLEST reg va, bit shift for @clk
161 * @clk: struct clk * to find IDLEST info for
162 * @idlest_reg: void __iomem ** to return the CM_IDLEST va in
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700163 * @idlest_bit: u8 * to return the CM_IDLEST bit shift in
164 * @idlest_val: u8 * to return the idle status indicator
Paul Walmsley72350b22009-07-24 19:44:03 -0600165 *
166 * Return the CM_IDLEST register address and bit shift corresponding
167 * to the module that "owns" this clock. This default code assumes
168 * that the CM_IDLEST bit shift is the CM_*CLKEN bit shift, and that
169 * the IDLEST register address ID corresponds to the CM_*CLKEN
170 * register address ID (e.g., that CM_FCLKEN2 corresponds to
171 * CM_IDLEST2). This is not true for all modules. No return value.
172 */
173void omap2_clk_dflt_find_idlest(struct clk *clk, void __iomem **idlest_reg,
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700174 u8 *idlest_bit, u8 *idlest_val)
Paul Walmsley72350b22009-07-24 19:44:03 -0600175{
176 u32 r;
177
178 r = (((__force u32)clk->enable_reg & ~0xf0) | 0x20);
179 *idlest_reg = (__force void __iomem *)r;
180 *idlest_bit = clk->enable_bit;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700181
182 /*
183 * 24xx uses 0 to indicate not ready, and 1 to indicate ready.
184 * 34xx reverses this, just to keep us on our toes
185 * AM35xx uses both, depending on the module.
186 */
187 if (cpu_is_omap24xx())
188 *idlest_val = OMAP24XX_CM_IDLEST_VAL;
189 else if (cpu_is_omap34xx())
190 *idlest_val = OMAP34XX_CM_IDLEST_VAL;
191 else
192 BUG();
193
Paul Walmsley72350b22009-07-24 19:44:03 -0600194}
195
Paul Walmsley72350b22009-07-24 19:44:03 -0600196int omap2_dflt_clk_enable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200197{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700198 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200199
Russell Kingc0fc18c52008-09-05 15:10:27 +0100200 if (unlikely(clk->enable_reg == NULL)) {
Paul Walmsley72350b22009-07-24 19:44:03 -0600201 pr_err("clock.c: Enable for %s without enable code\n",
Paul Walmsley543d9372008-03-18 10:22:06 +0200202 clk->name);
203 return 0; /* REVISIT: -EINVAL */
204 }
205
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700206 v = __raw_readl(clk->enable_reg);
Paul Walmsley543d9372008-03-18 10:22:06 +0200207 if (clk->flags & INVERT_ENABLE)
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700208 v &= ~(1 << clk->enable_bit);
Paul Walmsley543d9372008-03-18 10:22:06 +0200209 else
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700210 v |= (1 << clk->enable_bit);
211 __raw_writel(v, clk->enable_reg);
Paul Walmsleyf11fda62009-01-28 12:35:06 -0700212 v = __raw_readl(clk->enable_reg); /* OCP barrier */
Paul Walmsley543d9372008-03-18 10:22:06 +0200213
Paul Walmsley72350b22009-07-24 19:44:03 -0600214 if (clk->ops->find_idlest)
Paul Walmsley4b1f76e2010-01-26 20:13:04 -0700215 _omap2_module_wait_ready(clk);
Paul Walmsley72350b22009-07-24 19:44:03 -0600216
Paul Walmsley543d9372008-03-18 10:22:06 +0200217 return 0;
218}
219
Paul Walmsley72350b22009-07-24 19:44:03 -0600220void omap2_dflt_clk_disable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200221{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700222 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200223
Paul Walmsleyfecb4942009-01-27 19:12:50 -0700224 if (!clk->enable_reg) {
Paul Walmsley543d9372008-03-18 10:22:06 +0200225 /*
226 * 'Independent' here refers to a clock which is not
227 * controlled by its parent.
228 */
Paul Walmsley7852ec02012-07-26 00:54:26 -0600229 pr_err("clock: clk_disable called on independent clock %s which has no enable_reg\n", clk->name);
Paul Walmsley543d9372008-03-18 10:22:06 +0200230 return;
231 }
232
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700233 v = __raw_readl(clk->enable_reg);
Paul Walmsley543d9372008-03-18 10:22:06 +0200234 if (clk->flags & INVERT_ENABLE)
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700235 v |= (1 << clk->enable_bit);
Paul Walmsley543d9372008-03-18 10:22:06 +0200236 else
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700237 v &= ~(1 << clk->enable_bit);
238 __raw_writel(v, clk->enable_reg);
Paul Walmsleyde07fed2009-01-28 12:35:01 -0700239 /* No OCP barrier needed here since it is a disable operation */
Paul Walmsley543d9372008-03-18 10:22:06 +0200240}
241
Russell Kingb36ee722008-11-04 17:59:52 +0000242const struct clkops clkops_omap2_dflt_wait = {
Paul Walmsley72350b22009-07-24 19:44:03 -0600243 .enable = omap2_dflt_clk_enable,
Russell Kingb36ee722008-11-04 17:59:52 +0000244 .disable = omap2_dflt_clk_disable,
Paul Walmsley72350b22009-07-24 19:44:03 -0600245 .find_companion = omap2_clk_dflt_find_companion,
246 .find_idlest = omap2_clk_dflt_find_idlest,
Russell Kingb36ee722008-11-04 17:59:52 +0000247};
248
Russell Kingbc51da42008-11-04 18:59:32 +0000249const struct clkops clkops_omap2_dflt = {
250 .enable = omap2_dflt_clk_enable,
251 .disable = omap2_dflt_clk_disable,
252};
253
Paul Walmsley30962d92010-02-22 22:09:38 -0700254/**
255 * omap2_clk_disable - disable a clock, if the system is not using it
256 * @clk: struct clk * to disable
257 *
258 * Decrements the usecount on struct clk @clk. If there are no users
259 * left, call the clkops-specific clock disable function to disable it
260 * in hardware. If the clock is part of a clockdomain (which they all
261 * should be), request that the clockdomain be disabled. (It too has
262 * a usecount, and so will not be disabled in the hardware until it no
263 * longer has any users.) If the clock has a parent clock (most of
264 * them do), then call ourselves, recursing on the parent clock. This
265 * can cause an entire branch of the clock tree to be powered off by
266 * simply disabling one clock. Intended to be called with the clockfw_lock
267 * spinlock held. No return value.
268 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200269void omap2_clk_disable(struct clk *clk)
270{
Paul Walmsley30962d92010-02-22 22:09:38 -0700271 if (clk->usecount == 0) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600272 WARN(1, "clock: %s: omap2_clk_disable() called, but usecount already 0?", clk->name);
Paul Walmsley30962d92010-02-22 22:09:38 -0700273 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200274 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200275
Paul Walmsley30962d92010-02-22 22:09:38 -0700276 pr_debug("clock: %s: decrementing usecount\n", clk->name);
Paul Walmsley543d9372008-03-18 10:22:06 +0200277
Paul Walmsley30962d92010-02-22 22:09:38 -0700278 clk->usecount--;
Paul Walmsley333943b2008-08-19 11:08:45 +0300279
Paul Walmsley30962d92010-02-22 22:09:38 -0700280 if (clk->usecount > 0)
281 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200282
Paul Walmsley30962d92010-02-22 22:09:38 -0700283 pr_debug("clock: %s: disabling in hardware\n", clk->name);
Russell Kinga7f8c592009-01-31 11:00:17 +0000284
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100285 if (clk->ops && clk->ops->disable) {
286 trace_clock_disable(clk->name, 0, smp_processor_id());
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700287 clk->ops->disable(clk);
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100288 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200289
Paul Walmsley12706c52011-07-10 05:57:06 -0600290 if (clkdm_control && clk->clkdm)
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700291 clkdm_clk_disable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700292
293 if (clk->parent)
294 omap2_clk_disable(clk->parent);
295}
296
297/**
298 * omap2_clk_enable - request that the system enable a clock
299 * @clk: struct clk * to enable
300 *
301 * Increments the usecount on struct clk @clk. If there were no users
302 * previously, then recurse up the clock tree, enabling all of the
303 * clock's parents and all of the parent clockdomains, and finally,
304 * enabling @clk's clockdomain, and @clk itself. Intended to be
305 * called with the clockfw_lock spinlock held. Returns 0 upon success
306 * or a negative error code upon failure.
307 */
308int omap2_clk_enable(struct clk *clk)
309{
310 int ret;
311
312 pr_debug("clock: %s: incrementing usecount\n", clk->name);
313
314 clk->usecount++;
315
316 if (clk->usecount > 1)
317 return 0;
318
319 pr_debug("clock: %s: enabling in hardware\n", clk->name);
320
321 if (clk->parent) {
322 ret = omap2_clk_enable(clk->parent);
323 if (ret) {
324 WARN(1, "clock: %s: could not enable parent %s: %d\n",
325 clk->name, clk->parent->name, ret);
326 goto oce_err1;
327 }
328 }
329
Paul Walmsley12706c52011-07-10 05:57:06 -0600330 if (clkdm_control && clk->clkdm) {
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700331 ret = clkdm_clk_enable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700332 if (ret) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600333 WARN(1, "clock: %s: could not enable clockdomain %s: %d\n",
334 clk->name, clk->clkdm->name, ret);
Paul Walmsley30962d92010-02-22 22:09:38 -0700335 goto oce_err2;
336 }
337 }
338
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700339 if (clk->ops && clk->ops->enable) {
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100340 trace_clock_enable(clk->name, 1, smp_processor_id());
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700341 ret = clk->ops->enable(clk);
342 if (ret) {
343 WARN(1, "clock: %s: could not enable: %d\n",
344 clk->name, ret);
345 goto oce_err3;
346 }
Paul Walmsley30962d92010-02-22 22:09:38 -0700347 }
348
349 return 0;
350
351oce_err3:
Paul Walmsley12706c52011-07-10 05:57:06 -0600352 if (clkdm_control && clk->clkdm)
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700353 clkdm_clk_disable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700354oce_err2:
355 if (clk->parent)
356 omap2_clk_disable(clk->parent);
357oce_err1:
Russell Kinga7f8c592009-01-31 11:00:17 +0000358 clk->usecount--;
Paul Walmsley30962d92010-02-22 22:09:38 -0700359
Paul Walmsley543d9372008-03-18 10:22:06 +0200360 return ret;
361}
362
Paul Walmsley435699d2010-05-18 18:40:24 -0600363/* Given a clock and a rate apply a clock specific rounding function */
364long omap2_clk_round_rate(struct clk *clk, unsigned long rate)
365{
366 if (clk->round_rate)
367 return clk->round_rate(clk, rate);
368
369 return clk->rate;
370}
371
Paul Walmsley543d9372008-03-18 10:22:06 +0200372/* Set the clock rate for a clock source */
373int omap2_clk_set_rate(struct clk *clk, unsigned long rate)
374{
375 int ret = -EINVAL;
376
377 pr_debug("clock: set_rate for clock %s to rate %ld\n", clk->name, rate);
378
Paul Walmsley543d9372008-03-18 10:22:06 +0200379 /* dpll_ck, core_ck, virt_prcm_set; plus all clksel clocks */
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100380 if (clk->set_rate) {
381 trace_clock_set_rate(clk->name, rate, smp_processor_id());
Paul Walmsley543d9372008-03-18 10:22:06 +0200382 ret = clk->set_rate(clk, rate);
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100383 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200384
Paul Walmsley543d9372008-03-18 10:22:06 +0200385 return ret;
386}
387
Paul Walmsley543d9372008-03-18 10:22:06 +0200388int omap2_clk_set_parent(struct clk *clk, struct clk *new_parent)
389{
Paul Walmsley543d9372008-03-18 10:22:06 +0200390 if (!clk->clksel)
391 return -EINVAL;
392
Paul Walmsley1a337712010-02-22 22:09:16 -0700393 if (clk->parent == new_parent)
394 return 0;
395
Paul Walmsleydf791b32010-01-26 20:13:04 -0700396 return omap2_clksel_set_parent(clk, new_parent);
Paul Walmsley543d9372008-03-18 10:22:06 +0200397}
398
Paul Walmsley30962d92010-02-22 22:09:38 -0700399/*
400 * OMAP2+ clock reset and init functions
401 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200402
403#ifdef CONFIG_OMAP_RESET_CLOCKS
404void omap2_clk_disable_unused(struct clk *clk)
405{
406 u32 regval32, v;
407
408 v = (clk->flags & INVERT_ENABLE) ? (1 << clk->enable_bit) : 0;
409
410 regval32 = __raw_readl(clk->enable_reg);
411 if ((regval32 & (1 << clk->enable_bit)) == v)
412 return;
413
Paul Walmsley6041c272010-10-08 11:40:20 -0600414 pr_debug("Disabling unused clock \"%s\"\n", clk->name);
Tero Kristo8463e202009-01-28 12:27:45 -0700415 if (cpu_is_omap34xx()) {
416 omap2_clk_enable(clk);
417 omap2_clk_disable(clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700418 } else {
419 clk->ops->disable(clk);
420 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300421 if (clk->clkdm != NULL)
Santosh Shilimkar5a68a732012-05-07 23:55:38 -0600422 pwrdm_state_switch(clk->clkdm->pwrdm.ptr);
Paul Walmsley543d9372008-03-18 10:22:06 +0200423}
424#endif
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700425
Paul Walmsley4d30e822010-02-22 22:09:36 -0700426/**
427 * omap2_clk_switch_mpurate_at_boot - switch ARM MPU rate by boot-time argument
428 * @mpurate_ck_name: clk name of the clock to change rate
429 *
430 * Change the ARM MPU clock rate to the rate specified on the command
431 * line, if one was specified. @mpurate_ck_name should be
432 * "virt_prcm_set" on OMAP2xxx and "dpll1_ck" on OMAP34xx/OMAP36xx.
433 * XXX Does not handle voltage scaling - on OMAP2xxx this is currently
434 * handled by the virt_prcm_set clock, but this should be handled by
435 * the OPP layer. XXX This is intended to be handled by the OPP layer
436 * code in the near future and should be removed from the clock code.
437 * Returns -EINVAL if 'mpurate' is zero or if clk_set_rate() rejects
438 * the rate, -ENOENT if the struct clk referred to by @mpurate_ck_name
439 * cannot be found, or 0 upon success.
440 */
441int __init omap2_clk_switch_mpurate_at_boot(const char *mpurate_ck_name)
442{
443 struct clk *mpurate_ck;
444 int r;
445
446 if (!mpurate)
447 return -EINVAL;
448
449 mpurate_ck = clk_get(NULL, mpurate_ck_name);
450 if (WARN(IS_ERR(mpurate_ck), "Failed to get %s.\n", mpurate_ck_name))
451 return -ENOENT;
452
453 r = clk_set_rate(mpurate_ck, mpurate);
454 if (IS_ERR_VALUE(r)) {
455 WARN(1, "clock: %s: unable to set MPU rate to %d: %d\n",
456 mpurate_ck->name, mpurate, r);
Julia Lawallf6281f62011-07-04 04:08:10 -0700457 clk_put(mpurate_ck);
Paul Walmsley4d30e822010-02-22 22:09:36 -0700458 return -EINVAL;
459 }
460
461 calibrate_delay();
462 recalculate_root_clocks();
463
464 clk_put(mpurate_ck);
465
466 return 0;
467}
468
469/**
470 * omap2_clk_print_new_rates - print summary of current clock tree rates
471 * @hfclkin_ck_name: clk name for the off-chip HF oscillator
472 * @core_ck_name: clk name for the on-chip CORE_CLK
473 * @mpu_ck_name: clk name for the ARM MPU clock
474 *
475 * Prints a short message to the console with the HFCLKIN oscillator
476 * rate, the rate of the CORE clock, and the rate of the ARM MPU clock.
477 * Called by the boot-time MPU rate switching code. XXX This is intended
478 * to be handled by the OPP layer code in the near future and should be
479 * removed from the clock code. No return value.
480 */
481void __init omap2_clk_print_new_rates(const char *hfclkin_ck_name,
482 const char *core_ck_name,
483 const char *mpu_ck_name)
484{
485 struct clk *hfclkin_ck, *core_ck, *mpu_ck;
486 unsigned long hfclkin_rate;
487
488 mpu_ck = clk_get(NULL, mpu_ck_name);
489 if (WARN(IS_ERR(mpu_ck), "clock: failed to get %s.\n", mpu_ck_name))
490 return;
491
492 core_ck = clk_get(NULL, core_ck_name);
493 if (WARN(IS_ERR(core_ck), "clock: failed to get %s.\n", core_ck_name))
494 return;
495
496 hfclkin_ck = clk_get(NULL, hfclkin_ck_name);
497 if (WARN(IS_ERR(hfclkin_ck), "Failed to get %s.\n", hfclkin_ck_name))
498 return;
499
500 hfclkin_rate = clk_get_rate(hfclkin_ck);
501
Paul Walmsley7852ec02012-07-26 00:54:26 -0600502 pr_info("Switched to new clocking rate (Crystal/Core/MPU): %ld.%01ld/%ld/%ld MHz\n",
503 (hfclkin_rate / 1000000), ((hfclkin_rate / 100000) % 10),
Paul Walmsley4d30e822010-02-22 22:09:36 -0700504 (clk_get_rate(core_ck) / 1000000),
505 (clk_get_rate(mpu_ck) / 1000000));
506}
507
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700508/* Common data */
509
510struct clk_functions omap2_clk_functions = {
511 .clk_enable = omap2_clk_enable,
512 .clk_disable = omap2_clk_disable,
513 .clk_round_rate = omap2_clk_round_rate,
514 .clk_set_rate = omap2_clk_set_rate,
515 .clk_set_parent = omap2_clk_set_parent,
516 .clk_disable_unused = omap2_clk_disable_unused,
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700517};
518