2 * Based on arch/arm/plat-omap/clock.c
4 * Copyright (C) 2004 - 2005 Nokia corporation
5 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
6 * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com>
7 * Copyright 2007 Freescale Semiconductor, Inc. All Rights Reserved.
8 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
27 #include <linux/clk.h>
28 #include <linux/err.h>
29 #include <linux/errno.h>
30 #include <linux/init.h>
32 #include <linux/kernel.h>
33 #include <linux/list.h>
34 #include <linux/module.h>
35 #include <linux/mutex.h>
36 #include <linux/platform_device.h>
37 #include <linux/proc_fs.h>
38 #include <linux/semaphore.h>
39 #include <linux/string.h>
41 #include <mach/clock.h>
43 static LIST_HEAD(clocks
);
44 static DEFINE_MUTEX(clocks_mutex
);
46 /*-------------------------------------------------------------------------
47 * Standard clock functions defined in include/linux/clk.h
48 *-------------------------------------------------------------------------*/
51 * All the code inside #ifndef CONFIG_COMMON_CLKDEV can be removed once all
52 * MXC architectures have switched to using clkdev.
54 #ifndef CONFIG_COMMON_CLKDEV
56 * Retrieve a clock by name.
58 * Note that we first try to use device id on the bus
59 * and clock name. If this fails, we try to use "<name>.<id>". If this fails,
60 * we try to use clock name only.
61 * The reference count to the clock's module owner ref count is incremented.
63 struct clk
*clk_get(struct device
*dev
, const char *id
)
65 struct clk
*p
, *clk
= ERR_PTR(-ENOENT
);
72 if (dev
== NULL
|| dev
->bus
!= &platform_bus_type
)
75 idno
= to_platform_device(dev
)->id
;
77 mutex_lock(&clocks_mutex
);
79 list_for_each_entry(p
, &clocks
, node
) {
81 strcmp(id
, p
->name
) == 0 && try_module_get(p
->owner
)) {
87 str
= strrchr(id
, '.');
91 idno
= simple_strtol(str
, NULL
, 10);
92 list_for_each_entry(p
, &clocks
, node
) {
94 strlen(p
->name
) == cnt
&&
95 strncmp(id
, p
->name
, cnt
) == 0 &&
96 try_module_get(p
->owner
)) {
103 list_for_each_entry(p
, &clocks
, node
) {
104 if (strcmp(id
, p
->name
) == 0 && try_module_get(p
->owner
)) {
110 printk(KERN_WARNING
"clk: Unable to get requested clock: %s\n", id
);
113 mutex_unlock(&clocks_mutex
);
117 EXPORT_SYMBOL(clk_get
);
120 static void __clk_disable(struct clk
*clk
)
122 if (clk
== NULL
|| IS_ERR(clk
))
125 __clk_disable(clk
->parent
);
126 __clk_disable(clk
->secondary
);
128 if (!(--clk
->usecount
) && clk
->disable
)
132 static int __clk_enable(struct clk
*clk
)
134 if (clk
== NULL
|| IS_ERR(clk
))
137 __clk_enable(clk
->parent
);
138 __clk_enable(clk
->secondary
);
140 if (clk
->usecount
++ == 0 && clk
->enable
)
146 /* This function increments the reference count on the clock and enables the
147 * clock if not already enabled. The parent clock tree is recursively enabled
149 int clk_enable(struct clk
*clk
)
153 if (clk
== NULL
|| IS_ERR(clk
))
156 mutex_lock(&clocks_mutex
);
157 ret
= __clk_enable(clk
);
158 mutex_unlock(&clocks_mutex
);
162 EXPORT_SYMBOL(clk_enable
);
164 /* This function decrements the reference count on the clock and disables
165 * the clock when reference count is 0. The parent clock tree is
166 * recursively disabled
168 void clk_disable(struct clk
*clk
)
170 if (clk
== NULL
|| IS_ERR(clk
))
173 mutex_lock(&clocks_mutex
);
175 mutex_unlock(&clocks_mutex
);
177 EXPORT_SYMBOL(clk_disable
);
179 /* Retrieve the *current* clock rate. If the clock itself
180 * does not provide a special calculation routine, ask
181 * its parent and so on, until one is able to return
184 unsigned long clk_get_rate(struct clk
*clk
)
186 if (clk
== NULL
|| IS_ERR(clk
))
190 return clk
->get_rate(clk
);
192 return clk_get_rate(clk
->parent
);
194 EXPORT_SYMBOL(clk_get_rate
);
196 #ifndef CONFIG_COMMON_CLKDEV
197 /* Decrement the clock's module reference count */
198 void clk_put(struct clk
*clk
)
200 if (clk
&& !IS_ERR(clk
))
201 module_put(clk
->owner
);
203 EXPORT_SYMBOL(clk_put
);
206 /* Round the requested clock rate to the nearest supported
207 * rate that is less than or equal to the requested rate.
208 * This is dependent on the clock's current parent.
210 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
212 if (clk
== NULL
|| IS_ERR(clk
) || !clk
->round_rate
)
215 return clk
->round_rate(clk
, rate
);
217 EXPORT_SYMBOL(clk_round_rate
);
219 /* Set the clock to the requested clock rate. The rate must
220 * match a supported rate exactly based on what clk_round_rate returns
222 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
226 if (clk
== NULL
|| IS_ERR(clk
) || clk
->set_rate
== NULL
|| rate
== 0)
229 mutex_lock(&clocks_mutex
);
230 ret
= clk
->set_rate(clk
, rate
);
231 mutex_unlock(&clocks_mutex
);
235 EXPORT_SYMBOL(clk_set_rate
);
237 /* Set the clock's parent to another clock source */
238 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
242 if (clk
== NULL
|| IS_ERR(clk
) || parent
== NULL
||
243 IS_ERR(parent
) || clk
->set_parent
== NULL
)
246 mutex_lock(&clocks_mutex
);
247 ret
= clk
->set_parent(clk
, parent
);
249 clk
->parent
= parent
;
250 mutex_unlock(&clocks_mutex
);
254 EXPORT_SYMBOL(clk_set_parent
);
256 /* Retrieve the clock's parent clock source */
257 struct clk
*clk_get_parent(struct clk
*clk
)
259 struct clk
*ret
= NULL
;
261 if (clk
== NULL
|| IS_ERR(clk
))
266 EXPORT_SYMBOL(clk_get_parent
);
268 #ifndef CONFIG_COMMON_CLKDEV
270 * Add a new clock to the clock tree.
272 int clk_register(struct clk
*clk
)
274 if (clk
== NULL
|| IS_ERR(clk
))
277 mutex_lock(&clocks_mutex
);
278 list_add(&clk
->node
, &clocks
);
279 mutex_unlock(&clocks_mutex
);
283 EXPORT_SYMBOL(clk_register
);
285 /* Remove a clock from the clock tree */
286 void clk_unregister(struct clk
*clk
)
288 if (clk
== NULL
|| IS_ERR(clk
))
291 mutex_lock(&clocks_mutex
);
292 list_del(&clk
->node
);
293 mutex_unlock(&clocks_mutex
);
295 EXPORT_SYMBOL(clk_unregister
);
297 #ifdef CONFIG_PROC_FS
298 static int mxc_clock_read_proc(char *page
, char **start
, off_t off
,
299 int count
, int *eof
, void *data
)
305 list_for_each_entry(clkp
, &clocks
, node
) {
306 p
+= sprintf(p
, "%s-%d:\t\t%lu, %d", clkp
->name
, clkp
->id
,
307 clk_get_rate(clkp
), clkp
->usecount
);
309 p
+= sprintf(p
, ", %s-%d\n", clkp
->parent
->name
,
312 p
+= sprintf(p
, "\n");
315 len
= (p
- page
) - off
;
319 *eof
= (len
<= count
) ? 1 : 0;
325 static int __init
mxc_setup_proc_entry(void)
327 struct proc_dir_entry
*res
;
329 res
= create_proc_read_entry("cpu/clocks", 0, NULL
,
330 mxc_clock_read_proc
, NULL
);
332 printk(KERN_ERR
"Failed to create proc/cpu/clocks\n");
338 late_initcall(mxc_setup_proc_entry
);
339 #endif /* CONFIG_PROC_FS */
343 * Get the resulting clock rate from a PLL register value and the input
344 * frequency. PLLs with this register layout can at least be found on
345 * MX1, MX21, MX27 and MX31
347 * mfi + mfn / (mfd + 1)
348 * f = 2 * f_ref * --------------------
351 unsigned long mxc_decode_pll(unsigned int reg_val
, u32 freq
)
355 unsigned int mfi
, mfn
, mfd
, pd
;
357 mfi
= (reg_val
>> 10) & 0xf;
358 mfn
= reg_val
& 0x3ff;
359 mfd
= (reg_val
>> 16) & 0x3ff;
360 pd
= (reg_val
>> 26) & 0xf;
362 mfi
= mfi
<= 5 ? 5 : mfi
;
366 #if !defined CONFIG_ARCH_MX1 && !defined CONFIG_ARCH_MX21
376 ll
= (unsigned long long)freq
* mfn_abs
;
381 ll
= (freq
* mfi
) + ll
;