blob: d0c6d9b066da083e4d1d42af4da23fdafa5adcfb [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 Walmsleyff4ae5d2012-10-21 01:01:11 -060036#include "cm2xxx.h"
37#include "cm3xxx.h"
Paul Walmsley543d9372008-03-18 10:22:06 +020038#include "cm-regbits-24xx.h"
39#include "cm-regbits-34xx.h"
40
Afzal Mohammed99541192011-12-13 10:46:43 -080041u16 cpu_mask;
Paul Walmsley543d9372008-03-18 10:22:06 +020042
Paul Walmsley30962d92010-02-22 22:09:38 -070043/*
Paul Walmsley12706c52011-07-10 05:57:06 -060044 * clkdm_control: if true, then when a clock is enabled in the
45 * hardware, its clockdomain will first be enabled; and when a clock
46 * is disabled in the hardware, its clockdomain will be disabled
47 * afterwards.
48 */
49static bool clkdm_control = true;
50
51/*
Paul Walmsley30962d92010-02-22 22:09:38 -070052 * OMAP2+ specific clock functions
53 */
Paul Walmsley543d9372008-03-18 10:22:06 +020054
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070055/* Private functions */
56
57/**
58 * _omap2_module_wait_ready - wait for an OMAP module to leave IDLE
59 * @clk: struct clk * belonging to the module
60 *
61 * If the necessary clocks for the OMAP hardware IP block that
62 * corresponds to clock @clk are enabled, then wait for the module to
63 * indicate readiness (i.e., to leave IDLE). This code does not
64 * belong in the clock code and will be moved in the medium term to
65 * module-dependent code. No return value.
66 */
67static void _omap2_module_wait_ready(struct clk *clk)
68{
69 void __iomem *companion_reg, *idlest_reg;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070070 u8 other_bit, idlest_bit, idlest_val;
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070071
72 /* Not all modules have multiple clocks that their IDLEST depends on */
73 if (clk->ops->find_companion) {
74 clk->ops->find_companion(clk, &companion_reg, &other_bit);
75 if (!(__raw_readl(companion_reg) & (1 << other_bit)))
76 return;
77 }
78
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070079 clk->ops->find_idlest(clk, &idlest_reg, &idlest_bit, &idlest_val);
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070080
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070081 omap2_cm_wait_idlest(idlest_reg, (1 << idlest_bit), idlest_val,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060082 __clk_get_name(clk));
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070083}
84
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070085/* Public functions */
86
Paul Walmsley543d9372008-03-18 10:22:06 +020087/**
Paul Walmsley333943b2008-08-19 11:08:45 +030088 * omap2_init_clk_clkdm - look up a clockdomain name, store pointer in clk
89 * @clk: OMAP clock struct ptr to use
90 *
91 * Convert a clockdomain name stored in a struct clk 'clk' into a
92 * clockdomain pointer, and save it into the struct clk. Intended to be
93 * called during clk_register(). No return value.
94 */
95void omap2_init_clk_clkdm(struct clk *clk)
96{
97 struct clockdomain *clkdm;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060098 const char *clk_name;
Paul Walmsley333943b2008-08-19 11:08:45 +030099
100 if (!clk->clkdm_name)
101 return;
102
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600103 clk_name = __clk_get_name(clk);
104
Paul Walmsley333943b2008-08-19 11:08:45 +0300105 clkdm = clkdm_lookup(clk->clkdm_name);
106 if (clkdm) {
107 pr_debug("clock: associated clk %s to clkdm %s\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600108 clk_name, clk->clkdm_name);
Paul Walmsley333943b2008-08-19 11:08:45 +0300109 clk->clkdm = clkdm;
110 } else {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600111 pr_debug("clock: could not associate clk %s to clkdm %s\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600112 clk_name, clk->clkdm_name);
Paul Walmsley333943b2008-08-19 11:08:45 +0300113 }
114}
115
116/**
Paul Walmsley12706c52011-07-10 05:57:06 -0600117 * omap2_clk_disable_clkdm_control - disable clkdm control on clk enable/disable
118 *
119 * Prevent the OMAP clock code from calling into the clockdomain code
120 * when a hardware clock in that clockdomain is enabled or disabled.
121 * Intended to be called at init time from omap*_clk_init(). No
122 * return value.
123 */
124void __init omap2_clk_disable_clkdm_control(void)
125{
126 clkdm_control = false;
127}
128
129/**
Paul Walmsley72350b22009-07-24 19:44:03 -0600130 * omap2_clk_dflt_find_companion - find companion clock to @clk
131 * @clk: struct clk * to find the companion clock of
132 * @other_reg: void __iomem ** to return the companion clock CM_*CLKEN va in
133 * @other_bit: u8 ** to return the companion clock bit shift in
Paul Walmsley543d9372008-03-18 10:22:06 +0200134 *
Paul Walmsley72350b22009-07-24 19:44:03 -0600135 * Note: We don't need special code here for INVERT_ENABLE for the
136 * time being since INVERT_ENABLE only applies to clocks enabled by
Paul Walmsley543d9372008-03-18 10:22:06 +0200137 * CM_CLKEN_PLL
Paul Walmsley72350b22009-07-24 19:44:03 -0600138 *
139 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes it's
140 * just a matter of XORing the bits.
141 *
142 * Some clocks don't have companion clocks. For example, modules with
143 * only an interface clock (such as MAILBOXES) don't have a companion
144 * clock. Right now, this code relies on the hardware exporting a bit
145 * in the correct companion register that indicates that the
146 * nonexistent 'companion clock' is active. Future patches will
147 * associate this type of code with per-module data structures to
148 * avoid this issue, and remove the casts. No return value.
Paul Walmsley543d9372008-03-18 10:22:06 +0200149 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600150void omap2_clk_dflt_find_companion(struct clk *clk, void __iomem **other_reg,
151 u8 *other_bit)
Paul Walmsley543d9372008-03-18 10:22:06 +0200152{
Paul Walmsley72350b22009-07-24 19:44:03 -0600153 u32 r;
Paul Walmsley543d9372008-03-18 10:22:06 +0200154
Russell Kingc1168dc2008-11-04 21:24:00 +0000155 /*
156 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes
157 * it's just a matter of XORing the bits.
158 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600159 r = ((__force u32)clk->enable_reg ^ (CM_FCLKEN ^ CM_ICLKEN));
Paul Walmsley543d9372008-03-18 10:22:06 +0200160
Paul Walmsley72350b22009-07-24 19:44:03 -0600161 *other_reg = (__force void __iomem *)r;
162 *other_bit = clk->enable_bit;
Paul Walmsley543d9372008-03-18 10:22:06 +0200163}
164
Paul Walmsley72350b22009-07-24 19:44:03 -0600165/**
166 * omap2_clk_dflt_find_idlest - find CM_IDLEST reg va, bit shift for @clk
167 * @clk: struct clk * to find IDLEST info for
168 * @idlest_reg: void __iomem ** to return the CM_IDLEST va in
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700169 * @idlest_bit: u8 * to return the CM_IDLEST bit shift in
170 * @idlest_val: u8 * to return the idle status indicator
Paul Walmsley72350b22009-07-24 19:44:03 -0600171 *
172 * Return the CM_IDLEST register address and bit shift corresponding
173 * to the module that "owns" this clock. This default code assumes
174 * that the CM_IDLEST bit shift is the CM_*CLKEN bit shift, and that
175 * the IDLEST register address ID corresponds to the CM_*CLKEN
176 * register address ID (e.g., that CM_FCLKEN2 corresponds to
177 * CM_IDLEST2). This is not true for all modules. No return value.
178 */
179void omap2_clk_dflt_find_idlest(struct clk *clk, void __iomem **idlest_reg,
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700180 u8 *idlest_bit, u8 *idlest_val)
Paul Walmsley72350b22009-07-24 19:44:03 -0600181{
182 u32 r;
183
184 r = (((__force u32)clk->enable_reg & ~0xf0) | 0x20);
185 *idlest_reg = (__force void __iomem *)r;
186 *idlest_bit = clk->enable_bit;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700187
188 /*
189 * 24xx uses 0 to indicate not ready, and 1 to indicate ready.
190 * 34xx reverses this, just to keep us on our toes
191 * AM35xx uses both, depending on the module.
192 */
193 if (cpu_is_omap24xx())
194 *idlest_val = OMAP24XX_CM_IDLEST_VAL;
195 else if (cpu_is_omap34xx())
196 *idlest_val = OMAP34XX_CM_IDLEST_VAL;
197 else
198 BUG();
199
Paul Walmsley72350b22009-07-24 19:44:03 -0600200}
201
Paul Walmsley72350b22009-07-24 19:44:03 -0600202int omap2_dflt_clk_enable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200203{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700204 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200205
Russell Kingc0fc18c52008-09-05 15:10:27 +0100206 if (unlikely(clk->enable_reg == NULL)) {
Paul Walmsley72350b22009-07-24 19:44:03 -0600207 pr_err("clock.c: Enable for %s without enable code\n",
Paul Walmsley543d9372008-03-18 10:22:06 +0200208 clk->name);
209 return 0; /* REVISIT: -EINVAL */
210 }
211
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700212 v = __raw_readl(clk->enable_reg);
Paul Walmsley543d9372008-03-18 10:22:06 +0200213 if (clk->flags & INVERT_ENABLE)
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700214 v &= ~(1 << clk->enable_bit);
Paul Walmsley543d9372008-03-18 10:22:06 +0200215 else
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700216 v |= (1 << clk->enable_bit);
217 __raw_writel(v, clk->enable_reg);
Paul Walmsleyf11fda62009-01-28 12:35:06 -0700218 v = __raw_readl(clk->enable_reg); /* OCP barrier */
Paul Walmsley543d9372008-03-18 10:22:06 +0200219
Paul Walmsley72350b22009-07-24 19:44:03 -0600220 if (clk->ops->find_idlest)
Paul Walmsley4b1f76e2010-01-26 20:13:04 -0700221 _omap2_module_wait_ready(clk);
Paul Walmsley72350b22009-07-24 19:44:03 -0600222
Paul Walmsley543d9372008-03-18 10:22:06 +0200223 return 0;
224}
225
Paul Walmsley72350b22009-07-24 19:44:03 -0600226void omap2_dflt_clk_disable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200227{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700228 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200229
Paul Walmsleyfecb4942009-01-27 19:12:50 -0700230 if (!clk->enable_reg) {
Paul Walmsley543d9372008-03-18 10:22:06 +0200231 /*
232 * 'Independent' here refers to a clock which is not
233 * controlled by its parent.
234 */
Paul Walmsley7852ec02012-07-26 00:54:26 -0600235 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 +0200236 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) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600278 WARN(1, "clock: %s: omap2_clk_disable() called, but usecount already 0?", clk->name);
Paul Walmsley30962d92010-02-22 22:09:38 -0700279 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200280 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200281
Paul Walmsley30962d92010-02-22 22:09:38 -0700282 pr_debug("clock: %s: decrementing usecount\n", clk->name);
Paul Walmsley543d9372008-03-18 10:22:06 +0200283
Paul Walmsley30962d92010-02-22 22:09:38 -0700284 clk->usecount--;
Paul Walmsley333943b2008-08-19 11:08:45 +0300285
Paul Walmsley30962d92010-02-22 22:09:38 -0700286 if (clk->usecount > 0)
287 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200288
Paul Walmsley30962d92010-02-22 22:09:38 -0700289 pr_debug("clock: %s: disabling in hardware\n", clk->name);
Russell Kinga7f8c592009-01-31 11:00:17 +0000290
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100291 if (clk->ops && clk->ops->disable) {
292 trace_clock_disable(clk->name, 0, smp_processor_id());
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700293 clk->ops->disable(clk);
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100294 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200295
Paul Walmsley12706c52011-07-10 05:57:06 -0600296 if (clkdm_control && clk->clkdm)
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700297 clkdm_clk_disable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700298
299 if (clk->parent)
300 omap2_clk_disable(clk->parent);
301}
302
303/**
304 * omap2_clk_enable - request that the system enable a clock
305 * @clk: struct clk * to enable
306 *
307 * Increments the usecount on struct clk @clk. If there were no users
308 * previously, then recurse up the clock tree, enabling all of the
309 * clock's parents and all of the parent clockdomains, and finally,
310 * enabling @clk's clockdomain, and @clk itself. Intended to be
311 * called with the clockfw_lock spinlock held. Returns 0 upon success
312 * or a negative error code upon failure.
313 */
314int omap2_clk_enable(struct clk *clk)
315{
316 int ret;
317
318 pr_debug("clock: %s: incrementing usecount\n", clk->name);
319
320 clk->usecount++;
321
322 if (clk->usecount > 1)
323 return 0;
324
325 pr_debug("clock: %s: enabling in hardware\n", clk->name);
326
327 if (clk->parent) {
328 ret = omap2_clk_enable(clk->parent);
329 if (ret) {
330 WARN(1, "clock: %s: could not enable parent %s: %d\n",
331 clk->name, clk->parent->name, ret);
332 goto oce_err1;
333 }
334 }
335
Paul Walmsley12706c52011-07-10 05:57:06 -0600336 if (clkdm_control && clk->clkdm) {
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700337 ret = clkdm_clk_enable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700338 if (ret) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600339 WARN(1, "clock: %s: could not enable clockdomain %s: %d\n",
340 clk->name, clk->clkdm->name, ret);
Paul Walmsley30962d92010-02-22 22:09:38 -0700341 goto oce_err2;
342 }
343 }
344
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700345 if (clk->ops && clk->ops->enable) {
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100346 trace_clock_enable(clk->name, 1, smp_processor_id());
Rajendra Nayak6c52f322011-02-25 15:48:36 -0700347 ret = clk->ops->enable(clk);
348 if (ret) {
349 WARN(1, "clock: %s: could not enable: %d\n",
350 clk->name, ret);
351 goto oce_err3;
352 }
Paul Walmsley30962d92010-02-22 22:09:38 -0700353 }
354
355 return 0;
356
357oce_err3:
Paul Walmsley12706c52011-07-10 05:57:06 -0600358 if (clkdm_control && clk->clkdm)
Rajendra Nayak4da71ae2011-02-25 16:06:48 -0700359 clkdm_clk_disable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700360oce_err2:
361 if (clk->parent)
362 omap2_clk_disable(clk->parent);
363oce_err1:
Russell Kinga7f8c592009-01-31 11:00:17 +0000364 clk->usecount--;
Paul Walmsley30962d92010-02-22 22:09:38 -0700365
Paul Walmsley543d9372008-03-18 10:22:06 +0200366 return ret;
367}
368
Paul Walmsley435699d2010-05-18 18:40:24 -0600369/* Given a clock and a rate apply a clock specific rounding function */
370long omap2_clk_round_rate(struct clk *clk, unsigned long rate)
371{
372 if (clk->round_rate)
373 return clk->round_rate(clk, rate);
374
375 return clk->rate;
376}
377
Paul Walmsley543d9372008-03-18 10:22:06 +0200378/* Set the clock rate for a clock source */
379int omap2_clk_set_rate(struct clk *clk, unsigned long rate)
380{
381 int ret = -EINVAL;
382
383 pr_debug("clock: set_rate for clock %s to rate %ld\n", clk->name, rate);
384
Paul Walmsley543d9372008-03-18 10:22:06 +0200385 /* dpll_ck, core_ck, virt_prcm_set; plus all clksel clocks */
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100386 if (clk->set_rate) {
387 trace_clock_set_rate(clk->name, rate, smp_processor_id());
Paul Walmsley543d9372008-03-18 10:22:06 +0200388 ret = clk->set_rate(clk, rate);
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100389 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200390
Paul Walmsley543d9372008-03-18 10:22:06 +0200391 return ret;
392}
393
Paul Walmsley543d9372008-03-18 10:22:06 +0200394int omap2_clk_set_parent(struct clk *clk, struct clk *new_parent)
395{
Paul Walmsley543d9372008-03-18 10:22:06 +0200396 if (!clk->clksel)
397 return -EINVAL;
398
Paul Walmsley1a337712010-02-22 22:09:16 -0700399 if (clk->parent == new_parent)
400 return 0;
401
Paul Walmsleydf791b32010-01-26 20:13:04 -0700402 return omap2_clksel_set_parent(clk, new_parent);
Paul Walmsley543d9372008-03-18 10:22:06 +0200403}
404
Paul Walmsley30962d92010-02-22 22:09:38 -0700405/*
406 * OMAP2+ clock reset and init functions
407 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200408
409#ifdef CONFIG_OMAP_RESET_CLOCKS
410void omap2_clk_disable_unused(struct clk *clk)
411{
412 u32 regval32, v;
413
414 v = (clk->flags & INVERT_ENABLE) ? (1 << clk->enable_bit) : 0;
415
416 regval32 = __raw_readl(clk->enable_reg);
417 if ((regval32 & (1 << clk->enable_bit)) == v)
418 return;
419
Paul Walmsley6041c272010-10-08 11:40:20 -0600420 pr_debug("Disabling unused clock \"%s\"\n", clk->name);
Tero Kristo8463e202009-01-28 12:27:45 -0700421 if (cpu_is_omap34xx()) {
422 omap2_clk_enable(clk);
423 omap2_clk_disable(clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700424 } else {
425 clk->ops->disable(clk);
426 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300427 if (clk->clkdm != NULL)
Santosh Shilimkar5a68a732012-05-07 23:55:38 -0600428 pwrdm_state_switch(clk->clkdm->pwrdm.ptr);
Paul Walmsley543d9372008-03-18 10:22:06 +0200429}
430#endif
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700431
Paul Walmsley4d30e822010-02-22 22:09:36 -0700432/**
433 * omap2_clk_switch_mpurate_at_boot - switch ARM MPU rate by boot-time argument
434 * @mpurate_ck_name: clk name of the clock to change rate
435 *
436 * Change the ARM MPU clock rate to the rate specified on the command
437 * line, if one was specified. @mpurate_ck_name should be
438 * "virt_prcm_set" on OMAP2xxx and "dpll1_ck" on OMAP34xx/OMAP36xx.
439 * XXX Does not handle voltage scaling - on OMAP2xxx this is currently
440 * handled by the virt_prcm_set clock, but this should be handled by
441 * the OPP layer. XXX This is intended to be handled by the OPP layer
442 * code in the near future and should be removed from the clock code.
443 * Returns -EINVAL if 'mpurate' is zero or if clk_set_rate() rejects
444 * the rate, -ENOENT if the struct clk referred to by @mpurate_ck_name
445 * cannot be found, or 0 upon success.
446 */
447int __init omap2_clk_switch_mpurate_at_boot(const char *mpurate_ck_name)
448{
449 struct clk *mpurate_ck;
450 int r;
451
452 if (!mpurate)
453 return -EINVAL;
454
455 mpurate_ck = clk_get(NULL, mpurate_ck_name);
456 if (WARN(IS_ERR(mpurate_ck), "Failed to get %s.\n", mpurate_ck_name))
457 return -ENOENT;
458
459 r = clk_set_rate(mpurate_ck, mpurate);
460 if (IS_ERR_VALUE(r)) {
461 WARN(1, "clock: %s: unable to set MPU rate to %d: %d\n",
462 mpurate_ck->name, mpurate, r);
Julia Lawallf6281f62011-07-04 04:08:10 -0700463 clk_put(mpurate_ck);
Paul Walmsley4d30e822010-02-22 22:09:36 -0700464 return -EINVAL;
465 }
466
467 calibrate_delay();
468 recalculate_root_clocks();
469
470 clk_put(mpurate_ck);
471
472 return 0;
473}
474
475/**
476 * omap2_clk_print_new_rates - print summary of current clock tree rates
477 * @hfclkin_ck_name: clk name for the off-chip HF oscillator
478 * @core_ck_name: clk name for the on-chip CORE_CLK
479 * @mpu_ck_name: clk name for the ARM MPU clock
480 *
481 * Prints a short message to the console with the HFCLKIN oscillator
482 * rate, the rate of the CORE clock, and the rate of the ARM MPU clock.
483 * Called by the boot-time MPU rate switching code. XXX This is intended
484 * to be handled by the OPP layer code in the near future and should be
485 * removed from the clock code. No return value.
486 */
487void __init omap2_clk_print_new_rates(const char *hfclkin_ck_name,
488 const char *core_ck_name,
489 const char *mpu_ck_name)
490{
491 struct clk *hfclkin_ck, *core_ck, *mpu_ck;
492 unsigned long hfclkin_rate;
493
494 mpu_ck = clk_get(NULL, mpu_ck_name);
495 if (WARN(IS_ERR(mpu_ck), "clock: failed to get %s.\n", mpu_ck_name))
496 return;
497
498 core_ck = clk_get(NULL, core_ck_name);
499 if (WARN(IS_ERR(core_ck), "clock: failed to get %s.\n", core_ck_name))
500 return;
501
502 hfclkin_ck = clk_get(NULL, hfclkin_ck_name);
503 if (WARN(IS_ERR(hfclkin_ck), "Failed to get %s.\n", hfclkin_ck_name))
504 return;
505
506 hfclkin_rate = clk_get_rate(hfclkin_ck);
507
Paul Walmsley7852ec02012-07-26 00:54:26 -0600508 pr_info("Switched to new clocking rate (Crystal/Core/MPU): %ld.%01ld/%ld/%ld MHz\n",
509 (hfclkin_rate / 1000000), ((hfclkin_rate / 100000) % 10),
Paul Walmsley4d30e822010-02-22 22:09:36 -0700510 (clk_get_rate(core_ck) / 1000000),
511 (clk_get_rate(mpu_ck) / 1000000));
512}
513
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700514/* Common data */
515
516struct clk_functions omap2_clk_functions = {
517 .clk_enable = omap2_clk_enable,
518 .clk_disable = omap2_clk_disable,
519 .clk_round_rate = omap2_clk_round_rate,
520 .clk_set_rate = omap2_clk_set_rate,
521 .clk_set_parent = omap2_clk_set_parent,
522 .clk_disable_unused = omap2_clk_disable_unused,
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700523};
524