blob: a6d0b34b799091cd1f0299225d60f8c181db204a [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
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/clock.h>
27#include <plat/clockdomain.h>
28#include <plat/cpu.h>
29#include <plat/prcm.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020030
Paul Walmsley543d9372008-03-18 10:22:06 +020031#include "clock.h"
32#include "prm.h"
33#include "prm-regbits-24xx.h"
34#include "cm.h"
35#include "cm-regbits-24xx.h"
36#include "cm-regbits-34xx.h"
37
Paul Walmsley543d9372008-03-18 10:22:06 +020038u8 cpu_mask;
39
Paul Walmsley30962d92010-02-22 22:09:38 -070040/*
41 * OMAP2+ specific clock functions
42 */
Paul Walmsley543d9372008-03-18 10:22:06 +020043
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070044/* Private functions */
45
46/**
47 * _omap2_module_wait_ready - wait for an OMAP module to leave IDLE
48 * @clk: struct clk * belonging to the module
49 *
50 * If the necessary clocks for the OMAP hardware IP block that
51 * corresponds to clock @clk are enabled, then wait for the module to
52 * indicate readiness (i.e., to leave IDLE). This code does not
53 * belong in the clock code and will be moved in the medium term to
54 * module-dependent code. No return value.
55 */
56static void _omap2_module_wait_ready(struct clk *clk)
57{
58 void __iomem *companion_reg, *idlest_reg;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070059 u8 other_bit, idlest_bit, idlest_val;
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070060
61 /* Not all modules have multiple clocks that their IDLEST depends on */
62 if (clk->ops->find_companion) {
63 clk->ops->find_companion(clk, &companion_reg, &other_bit);
64 if (!(__raw_readl(companion_reg) & (1 << other_bit)))
65 return;
66 }
67
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070068 clk->ops->find_idlest(clk, &idlest_reg, &idlest_bit, &idlest_val);
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070069
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070070 omap2_cm_wait_idlest(idlest_reg, (1 << idlest_bit), idlest_val,
71 clk->name);
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070072}
73
Paul Walmsley4b1f76e2010-01-26 20:13:04 -070074/* Public functions */
75
Paul Walmsley543d9372008-03-18 10:22:06 +020076/**
Paul Walmsley333943b2008-08-19 11:08:45 +030077 * omap2_init_clk_clkdm - look up a clockdomain name, store pointer in clk
78 * @clk: OMAP clock struct ptr to use
79 *
80 * Convert a clockdomain name stored in a struct clk 'clk' into a
81 * clockdomain pointer, and save it into the struct clk. Intended to be
82 * called during clk_register(). No return value.
83 */
84void omap2_init_clk_clkdm(struct clk *clk)
85{
86 struct clockdomain *clkdm;
87
88 if (!clk->clkdm_name)
89 return;
90
91 clkdm = clkdm_lookup(clk->clkdm_name);
92 if (clkdm) {
93 pr_debug("clock: associated clk %s to clkdm %s\n",
94 clk->name, clk->clkdm_name);
95 clk->clkdm = clkdm;
96 } else {
97 pr_debug("clock: could not associate clk %s to "
98 "clkdm %s\n", clk->name, clk->clkdm_name);
99 }
100}
101
102/**
Paul Walmsley72350b22009-07-24 19:44:03 -0600103 * omap2_clk_dflt_find_companion - find companion clock to @clk
104 * @clk: struct clk * to find the companion clock of
105 * @other_reg: void __iomem ** to return the companion clock CM_*CLKEN va in
106 * @other_bit: u8 ** to return the companion clock bit shift in
Paul Walmsley543d9372008-03-18 10:22:06 +0200107 *
Paul Walmsley72350b22009-07-24 19:44:03 -0600108 * Note: We don't need special code here for INVERT_ENABLE for the
109 * time being since INVERT_ENABLE only applies to clocks enabled by
Paul Walmsley543d9372008-03-18 10:22:06 +0200110 * CM_CLKEN_PLL
Paul Walmsley72350b22009-07-24 19:44:03 -0600111 *
112 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes it's
113 * just a matter of XORing the bits.
114 *
115 * Some clocks don't have companion clocks. For example, modules with
116 * only an interface clock (such as MAILBOXES) don't have a companion
117 * clock. Right now, this code relies on the hardware exporting a bit
118 * in the correct companion register that indicates that the
119 * nonexistent 'companion clock' is active. Future patches will
120 * associate this type of code with per-module data structures to
121 * avoid this issue, and remove the casts. No return value.
Paul Walmsley543d9372008-03-18 10:22:06 +0200122 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600123void omap2_clk_dflt_find_companion(struct clk *clk, void __iomem **other_reg,
124 u8 *other_bit)
Paul Walmsley543d9372008-03-18 10:22:06 +0200125{
Paul Walmsley72350b22009-07-24 19:44:03 -0600126 u32 r;
Paul Walmsley543d9372008-03-18 10:22:06 +0200127
Russell Kingc1168dc2008-11-04 21:24:00 +0000128 /*
129 * Convert CM_ICLKEN* <-> CM_FCLKEN*. This conversion assumes
130 * it's just a matter of XORing the bits.
131 */
Paul Walmsley72350b22009-07-24 19:44:03 -0600132 r = ((__force u32)clk->enable_reg ^ (CM_FCLKEN ^ CM_ICLKEN));
Paul Walmsley543d9372008-03-18 10:22:06 +0200133
Paul Walmsley72350b22009-07-24 19:44:03 -0600134 *other_reg = (__force void __iomem *)r;
135 *other_bit = clk->enable_bit;
Paul Walmsley543d9372008-03-18 10:22:06 +0200136}
137
Paul Walmsley72350b22009-07-24 19:44:03 -0600138/**
139 * omap2_clk_dflt_find_idlest - find CM_IDLEST reg va, bit shift for @clk
140 * @clk: struct clk * to find IDLEST info for
141 * @idlest_reg: void __iomem ** to return the CM_IDLEST va in
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700142 * @idlest_bit: u8 * to return the CM_IDLEST bit shift in
143 * @idlest_val: u8 * to return the idle status indicator
Paul Walmsley72350b22009-07-24 19:44:03 -0600144 *
145 * Return the CM_IDLEST register address and bit shift corresponding
146 * to the module that "owns" this clock. This default code assumes
147 * that the CM_IDLEST bit shift is the CM_*CLKEN bit shift, and that
148 * the IDLEST register address ID corresponds to the CM_*CLKEN
149 * register address ID (e.g., that CM_FCLKEN2 corresponds to
150 * CM_IDLEST2). This is not true for all modules. No return value.
151 */
152void omap2_clk_dflt_find_idlest(struct clk *clk, void __iomem **idlest_reg,
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700153 u8 *idlest_bit, u8 *idlest_val)
Paul Walmsley72350b22009-07-24 19:44:03 -0600154{
155 u32 r;
156
157 r = (((__force u32)clk->enable_reg & ~0xf0) | 0x20);
158 *idlest_reg = (__force void __iomem *)r;
159 *idlest_bit = clk->enable_bit;
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700160
161 /*
162 * 24xx uses 0 to indicate not ready, and 1 to indicate ready.
163 * 34xx reverses this, just to keep us on our toes
164 * AM35xx uses both, depending on the module.
165 */
166 if (cpu_is_omap24xx())
167 *idlest_val = OMAP24XX_CM_IDLEST_VAL;
168 else if (cpu_is_omap34xx())
169 *idlest_val = OMAP34XX_CM_IDLEST_VAL;
170 else
171 BUG();
172
Paul Walmsley72350b22009-07-24 19:44:03 -0600173}
174
Paul Walmsley72350b22009-07-24 19:44:03 -0600175int omap2_dflt_clk_enable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200176{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700177 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200178
Russell Kingc0fc18c52008-09-05 15:10:27 +0100179 if (unlikely(clk->enable_reg == NULL)) {
Paul Walmsley72350b22009-07-24 19:44:03 -0600180 pr_err("clock.c: Enable for %s without enable code\n",
Paul Walmsley543d9372008-03-18 10:22:06 +0200181 clk->name);
182 return 0; /* REVISIT: -EINVAL */
183 }
184
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700185 v = __raw_readl(clk->enable_reg);
Paul Walmsley543d9372008-03-18 10:22:06 +0200186 if (clk->flags & INVERT_ENABLE)
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700187 v &= ~(1 << clk->enable_bit);
Paul Walmsley543d9372008-03-18 10:22:06 +0200188 else
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700189 v |= (1 << clk->enable_bit);
190 __raw_writel(v, clk->enable_reg);
Paul Walmsleyf11fda62009-01-28 12:35:06 -0700191 v = __raw_readl(clk->enable_reg); /* OCP barrier */
Paul Walmsley543d9372008-03-18 10:22:06 +0200192
Paul Walmsley72350b22009-07-24 19:44:03 -0600193 if (clk->ops->find_idlest)
Paul Walmsley4b1f76e2010-01-26 20:13:04 -0700194 _omap2_module_wait_ready(clk);
Paul Walmsley72350b22009-07-24 19:44:03 -0600195
Paul Walmsley543d9372008-03-18 10:22:06 +0200196 return 0;
197}
198
Paul Walmsley72350b22009-07-24 19:44:03 -0600199void omap2_dflt_clk_disable(struct clk *clk)
Paul Walmsley543d9372008-03-18 10:22:06 +0200200{
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700201 u32 v;
Paul Walmsley543d9372008-03-18 10:22:06 +0200202
Paul Walmsleyfecb4942009-01-27 19:12:50 -0700203 if (!clk->enable_reg) {
Paul Walmsley543d9372008-03-18 10:22:06 +0200204 /*
205 * 'Independent' here refers to a clock which is not
206 * controlled by its parent.
207 */
208 printk(KERN_ERR "clock: clk_disable called on independent "
209 "clock %s which has no enable_reg\n", clk->name);
210 return;
211 }
212
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700213 v = __raw_readl(clk->enable_reg);
Paul Walmsley543d9372008-03-18 10:22:06 +0200214 if (clk->flags & INVERT_ENABLE)
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700215 v |= (1 << clk->enable_bit);
Paul Walmsley543d9372008-03-18 10:22:06 +0200216 else
Paul Walmsleyee1eec32009-01-28 12:18:19 -0700217 v &= ~(1 << clk->enable_bit);
218 __raw_writel(v, clk->enable_reg);
Paul Walmsleyde07fed2009-01-28 12:35:01 -0700219 /* No OCP barrier needed here since it is a disable operation */
Paul Walmsley543d9372008-03-18 10:22:06 +0200220}
221
Russell Kingb36ee722008-11-04 17:59:52 +0000222const struct clkops clkops_omap2_dflt_wait = {
Paul Walmsley72350b22009-07-24 19:44:03 -0600223 .enable = omap2_dflt_clk_enable,
Russell Kingb36ee722008-11-04 17:59:52 +0000224 .disable = omap2_dflt_clk_disable,
Paul Walmsley72350b22009-07-24 19:44:03 -0600225 .find_companion = omap2_clk_dflt_find_companion,
226 .find_idlest = omap2_clk_dflt_find_idlest,
Russell Kingb36ee722008-11-04 17:59:52 +0000227};
228
Russell Kingbc51da42008-11-04 18:59:32 +0000229const struct clkops clkops_omap2_dflt = {
230 .enable = omap2_dflt_clk_enable,
231 .disable = omap2_dflt_clk_disable,
232};
233
Paul Walmsley30962d92010-02-22 22:09:38 -0700234/**
235 * omap2_clk_disable - disable a clock, if the system is not using it
236 * @clk: struct clk * to disable
237 *
238 * Decrements the usecount on struct clk @clk. If there are no users
239 * left, call the clkops-specific clock disable function to disable it
240 * in hardware. If the clock is part of a clockdomain (which they all
241 * should be), request that the clockdomain be disabled. (It too has
242 * a usecount, and so will not be disabled in the hardware until it no
243 * longer has any users.) If the clock has a parent clock (most of
244 * them do), then call ourselves, recursing on the parent clock. This
245 * can cause an entire branch of the clock tree to be powered off by
246 * simply disabling one clock. Intended to be called with the clockfw_lock
247 * spinlock held. No return value.
248 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200249void omap2_clk_disable(struct clk *clk)
250{
Paul Walmsley30962d92010-02-22 22:09:38 -0700251 if (clk->usecount == 0) {
252 WARN(1, "clock: %s: omap2_clk_disable() called, but usecount "
253 "already 0?", clk->name);
254 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200255 }
Paul Walmsley543d9372008-03-18 10:22:06 +0200256
Paul Walmsley30962d92010-02-22 22:09:38 -0700257 pr_debug("clock: %s: decrementing usecount\n", clk->name);
Paul Walmsley543d9372008-03-18 10:22:06 +0200258
Paul Walmsley30962d92010-02-22 22:09:38 -0700259 clk->usecount--;
Paul Walmsley333943b2008-08-19 11:08:45 +0300260
Paul Walmsley30962d92010-02-22 22:09:38 -0700261 if (clk->usecount > 0)
262 return;
Paul Walmsley543d9372008-03-18 10:22:06 +0200263
Paul Walmsley30962d92010-02-22 22:09:38 -0700264 pr_debug("clock: %s: disabling in hardware\n", clk->name);
Russell Kinga7f8c592009-01-31 11:00:17 +0000265
Paul Walmsley30962d92010-02-22 22:09:38 -0700266 clk->ops->disable(clk);
Paul Walmsley543d9372008-03-18 10:22:06 +0200267
Russell King8263e5b2009-01-31 11:02:37 +0000268 if (clk->clkdm)
269 omap2_clkdm_clk_disable(clk->clkdm, clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700270
271 if (clk->parent)
272 omap2_clk_disable(clk->parent);
273}
274
275/**
276 * omap2_clk_enable - request that the system enable a clock
277 * @clk: struct clk * to enable
278 *
279 * Increments the usecount on struct clk @clk. If there were no users
280 * previously, then recurse up the clock tree, enabling all of the
281 * clock's parents and all of the parent clockdomains, and finally,
282 * enabling @clk's clockdomain, and @clk itself. Intended to be
283 * called with the clockfw_lock spinlock held. Returns 0 upon success
284 * or a negative error code upon failure.
285 */
286int omap2_clk_enable(struct clk *clk)
287{
288 int ret;
289
290 pr_debug("clock: %s: incrementing usecount\n", clk->name);
291
292 clk->usecount++;
293
294 if (clk->usecount > 1)
295 return 0;
296
297 pr_debug("clock: %s: enabling in hardware\n", clk->name);
298
299 if (clk->parent) {
300 ret = omap2_clk_enable(clk->parent);
301 if (ret) {
302 WARN(1, "clock: %s: could not enable parent %s: %d\n",
303 clk->name, clk->parent->name, ret);
304 goto oce_err1;
305 }
306 }
307
308 if (clk->clkdm) {
309 ret = omap2_clkdm_clk_enable(clk->clkdm, clk);
310 if (ret) {
311 WARN(1, "clock: %s: could not enable clockdomain %s: "
312 "%d\n", clk->name, clk->clkdm->name, ret);
313 goto oce_err2;
314 }
315 }
316
317 ret = clk->ops->enable(clk);
318 if (ret) {
319 WARN(1, "clock: %s: could not enable: %d\n", clk->name, ret);
320 goto oce_err3;
321 }
322
323 return 0;
324
325oce_err3:
326 if (clk->clkdm)
327 omap2_clkdm_clk_disable(clk->clkdm, clk);
328oce_err2:
329 if (clk->parent)
330 omap2_clk_disable(clk->parent);
331oce_err1:
Russell Kinga7f8c592009-01-31 11:00:17 +0000332 clk->usecount--;
Paul Walmsley30962d92010-02-22 22:09:38 -0700333
Paul Walmsley543d9372008-03-18 10:22:06 +0200334 return ret;
335}
336
Paul Walmsley543d9372008-03-18 10:22:06 +0200337/* Set the clock rate for a clock source */
338int omap2_clk_set_rate(struct clk *clk, unsigned long rate)
339{
340 int ret = -EINVAL;
341
342 pr_debug("clock: set_rate for clock %s to rate %ld\n", clk->name, rate);
343
Paul Walmsley543d9372008-03-18 10:22:06 +0200344 /* dpll_ck, core_ck, virt_prcm_set; plus all clksel clocks */
Paul Walmsleyfecb4942009-01-27 19:12:50 -0700345 if (clk->set_rate)
Paul Walmsley543d9372008-03-18 10:22:06 +0200346 ret = clk->set_rate(clk, rate);
347
Paul Walmsley543d9372008-03-18 10:22:06 +0200348 return ret;
349}
350
Paul Walmsley543d9372008-03-18 10:22:06 +0200351int omap2_clk_set_parent(struct clk *clk, struct clk *new_parent)
352{
Paul Walmsley543d9372008-03-18 10:22:06 +0200353 if (!clk->clksel)
354 return -EINVAL;
355
Paul Walmsley1a337712010-02-22 22:09:16 -0700356 if (clk->parent == new_parent)
357 return 0;
358
Paul Walmsleydf791b32010-01-26 20:13:04 -0700359 return omap2_clksel_set_parent(clk, new_parent);
Paul Walmsley543d9372008-03-18 10:22:06 +0200360}
361
Paul Walmsley657ebfa2010-02-22 22:09:20 -0700362/* OMAP3/4 non-CORE DPLL clkops */
363
364#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
365
366const struct clkops clkops_omap3_noncore_dpll_ops = {
367 .enable = omap3_noncore_dpll_enable,
368 .disable = omap3_noncore_dpll_disable,
369};
370
371#endif
372
373
Paul Walmsley30962d92010-02-22 22:09:38 -0700374/*
375 * OMAP2+ clock reset and init functions
376 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200377
378#ifdef CONFIG_OMAP_RESET_CLOCKS
379void omap2_clk_disable_unused(struct clk *clk)
380{
381 u32 regval32, v;
382
383 v = (clk->flags & INVERT_ENABLE) ? (1 << clk->enable_bit) : 0;
384
385 regval32 = __raw_readl(clk->enable_reg);
386 if ((regval32 & (1 << clk->enable_bit)) == v)
387 return;
388
Artem Bityutskiy0db4e822009-05-12 17:34:40 -0600389 printk(KERN_DEBUG "Disabling unused clock \"%s\"\n", clk->name);
Tero Kristo8463e202009-01-28 12:27:45 -0700390 if (cpu_is_omap34xx()) {
391 omap2_clk_enable(clk);
392 omap2_clk_disable(clk);
Paul Walmsley30962d92010-02-22 22:09:38 -0700393 } else {
394 clk->ops->disable(clk);
395 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300396 if (clk->clkdm != NULL)
397 pwrdm_clkdm_state_switch(clk->clkdm);
Paul Walmsley543d9372008-03-18 10:22:06 +0200398}
399#endif
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700400
Paul Walmsley4d30e822010-02-22 22:09:36 -0700401/**
402 * omap2_clk_switch_mpurate_at_boot - switch ARM MPU rate by boot-time argument
403 * @mpurate_ck_name: clk name of the clock to change rate
404 *
405 * Change the ARM MPU clock rate to the rate specified on the command
406 * line, if one was specified. @mpurate_ck_name should be
407 * "virt_prcm_set" on OMAP2xxx and "dpll1_ck" on OMAP34xx/OMAP36xx.
408 * XXX Does not handle voltage scaling - on OMAP2xxx this is currently
409 * handled by the virt_prcm_set clock, but this should be handled by
410 * the OPP layer. XXX This is intended to be handled by the OPP layer
411 * code in the near future and should be removed from the clock code.
412 * Returns -EINVAL if 'mpurate' is zero or if clk_set_rate() rejects
413 * the rate, -ENOENT if the struct clk referred to by @mpurate_ck_name
414 * cannot be found, or 0 upon success.
415 */
416int __init omap2_clk_switch_mpurate_at_boot(const char *mpurate_ck_name)
417{
418 struct clk *mpurate_ck;
419 int r;
420
421 if (!mpurate)
422 return -EINVAL;
423
424 mpurate_ck = clk_get(NULL, mpurate_ck_name);
425 if (WARN(IS_ERR(mpurate_ck), "Failed to get %s.\n", mpurate_ck_name))
426 return -ENOENT;
427
428 r = clk_set_rate(mpurate_ck, mpurate);
429 if (IS_ERR_VALUE(r)) {
430 WARN(1, "clock: %s: unable to set MPU rate to %d: %d\n",
431 mpurate_ck->name, mpurate, r);
432 return -EINVAL;
433 }
434
435 calibrate_delay();
436 recalculate_root_clocks();
437
438 clk_put(mpurate_ck);
439
440 return 0;
441}
442
443/**
444 * omap2_clk_print_new_rates - print summary of current clock tree rates
445 * @hfclkin_ck_name: clk name for the off-chip HF oscillator
446 * @core_ck_name: clk name for the on-chip CORE_CLK
447 * @mpu_ck_name: clk name for the ARM MPU clock
448 *
449 * Prints a short message to the console with the HFCLKIN oscillator
450 * rate, the rate of the CORE clock, and the rate of the ARM MPU clock.
451 * Called by the boot-time MPU rate switching code. XXX This is intended
452 * to be handled by the OPP layer code in the near future and should be
453 * removed from the clock code. No return value.
454 */
455void __init omap2_clk_print_new_rates(const char *hfclkin_ck_name,
456 const char *core_ck_name,
457 const char *mpu_ck_name)
458{
459 struct clk *hfclkin_ck, *core_ck, *mpu_ck;
460 unsigned long hfclkin_rate;
461
462 mpu_ck = clk_get(NULL, mpu_ck_name);
463 if (WARN(IS_ERR(mpu_ck), "clock: failed to get %s.\n", mpu_ck_name))
464 return;
465
466 core_ck = clk_get(NULL, core_ck_name);
467 if (WARN(IS_ERR(core_ck), "clock: failed to get %s.\n", core_ck_name))
468 return;
469
470 hfclkin_ck = clk_get(NULL, hfclkin_ck_name);
471 if (WARN(IS_ERR(hfclkin_ck), "Failed to get %s.\n", hfclkin_ck_name))
472 return;
473
474 hfclkin_rate = clk_get_rate(hfclkin_ck);
475
476 pr_info("Switched to new clocking rate (Crystal/Core/MPU): "
477 "%ld.%01ld/%ld/%ld MHz\n",
478 (hfclkin_rate / 1000000),
479 ((hfclkin_rate / 100000) % 10),
480 (clk_get_rate(core_ck) / 1000000),
481 (clk_get_rate(mpu_ck) / 1000000));
482}
483
Paul Walmsley69ecefc2010-01-26 20:13:04 -0700484/* Common data */
485
486struct clk_functions omap2_clk_functions = {
487 .clk_enable = omap2_clk_enable,
488 .clk_disable = omap2_clk_disable,
489 .clk_round_rate = omap2_clk_round_rate,
490 .clk_set_rate = omap2_clk_set_rate,
491 .clk_set_parent = omap2_clk_set_parent,
492 .clk_disable_unused = omap2_clk_disable_unused,
493#ifdef CONFIG_CPU_FREQ
494 /* These will be removed when the OPP code is integrated */
495 .clk_init_cpufreq_table = omap2_clk_init_cpufreq_table,
496 .clk_exit_cpufreq_table = omap2_clk_exit_cpufreq_table,
497#endif
498};
499