1 /* linux/arch/arm/plat-s3c24xx/clock.c
3 * Copyright (c) 2004-2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * S3C24XX Core clock control support
8 * Based on, and code from linux/arch/arm/mach-versatile/clock.c
10 ** Copyright (C) 2004 ARM Limited.
11 ** Written by Deep Blue Solutions Limited.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include <linux/init.h>
30 #include <linux/module.h>
31 #include <linux/kernel.h>
32 #include <linux/list.h>
33 #include <linux/errno.h>
34 #include <linux/err.h>
35 #include <linux/platform_device.h>
36 #include <linux/sysdev.h>
37 #include <linux/interrupt.h>
38 #include <linux/ioport.h>
39 #include <linux/clk.h>
40 #include <linux/spinlock.h>
43 #include <mach/hardware.h>
46 #include <plat/cpu-freq.h>
48 #include <plat/clock.h>
51 /* clock information */
53 static LIST_HEAD(clocks
);
55 /* We originally used an mutex here, but some contexts (see resume)
56 * are calling functions such as clk_set_parent() with IRQs disabled
57 * causing an BUG to be triggered.
59 DEFINE_SPINLOCK(clocks_lock
);
61 /* enable and disable calls for use with the clk struct */
63 static int clk_null_enable(struct clk
*clk
, int enable
)
70 struct clk
*clk_get(struct device
*dev
, const char *id
)
73 struct clk
*clk
= ERR_PTR(-ENOENT
);
76 if (dev
== NULL
|| dev
->bus
!= &platform_bus_type
)
79 idno
= to_platform_device(dev
)->id
;
81 spin_lock(&clocks_lock
);
83 list_for_each_entry(p
, &clocks
, list
) {
85 strcmp(id
, p
->name
) == 0 &&
86 try_module_get(p
->owner
)) {
92 /* check for the case where a device was supplied, but the
93 * clock that was being searched for is not device specific */
96 list_for_each_entry(p
, &clocks
, list
) {
97 if (p
->id
== -1 && strcmp(id
, p
->name
) == 0 &&
98 try_module_get(p
->owner
)) {
105 spin_unlock(&clocks_lock
);
109 void clk_put(struct clk
*clk
)
111 module_put(clk
->owner
);
114 int clk_enable(struct clk
*clk
)
116 if (IS_ERR(clk
) || clk
== NULL
)
119 clk_enable(clk
->parent
);
121 spin_lock(&clocks_lock
);
123 if ((clk
->usage
++) == 0)
124 (clk
->enable
)(clk
, 1);
126 spin_unlock(&clocks_lock
);
130 void clk_disable(struct clk
*clk
)
132 if (IS_ERR(clk
) || clk
== NULL
)
135 spin_lock(&clocks_lock
);
137 if ((--clk
->usage
) == 0)
138 (clk
->enable
)(clk
, 0);
140 spin_unlock(&clocks_lock
);
141 clk_disable(clk
->parent
);
145 unsigned long clk_get_rate(struct clk
*clk
)
153 if (clk
->get_rate
!= NULL
)
154 return (clk
->get_rate
)(clk
);
156 if (clk
->parent
!= NULL
)
157 return clk_get_rate(clk
->parent
);
162 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
164 if (!IS_ERR(clk
) && clk
->round_rate
)
165 return (clk
->round_rate
)(clk
, rate
);
170 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
177 /* We do not default just do a clk->rate = rate as
178 * the clock may have been made this way by choice.
181 WARN_ON(clk
->set_rate
== NULL
);
183 if (clk
->set_rate
== NULL
)
186 spin_lock(&clocks_lock
);
187 ret
= (clk
->set_rate
)(clk
, rate
);
188 spin_unlock(&clocks_lock
);
193 struct clk
*clk_get_parent(struct clk
*clk
)
198 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
205 spin_lock(&clocks_lock
);
208 ret
= (clk
->set_parent
)(clk
, parent
);
210 spin_unlock(&clocks_lock
);
215 EXPORT_SYMBOL(clk_get
);
216 EXPORT_SYMBOL(clk_put
);
217 EXPORT_SYMBOL(clk_enable
);
218 EXPORT_SYMBOL(clk_disable
);
219 EXPORT_SYMBOL(clk_get_rate
);
220 EXPORT_SYMBOL(clk_round_rate
);
221 EXPORT_SYMBOL(clk_set_rate
);
222 EXPORT_SYMBOL(clk_get_parent
);
223 EXPORT_SYMBOL(clk_set_parent
);
227 static int clk_default_setrate(struct clk
*clk
, unsigned long rate
)
233 struct clk clk_xtal
= {
241 struct clk clk_ext
= {
246 struct clk clk_epll
= {
251 struct clk clk_mpll
= {
254 .set_rate
= clk_default_setrate
,
257 struct clk clk_upll
= {
270 .set_rate
= clk_default_setrate
,
279 .set_rate
= clk_default_setrate
,
288 .set_rate
= clk_default_setrate
,
291 struct clk clk_usb_bus
= {
300 struct clk s3c24xx_uclk
= {
305 /* initialise the clock system */
307 int s3c24xx_register_clock(struct clk
*clk
)
309 clk
->owner
= THIS_MODULE
;
311 if (clk
->enable
== NULL
)
312 clk
->enable
= clk_null_enable
;
314 /* add to the list of available clocks */
316 /* Quick check to see if this clock has already been registered. */
317 BUG_ON(clk
->list
.prev
!= clk
->list
.next
);
319 spin_lock(&clocks_lock
);
320 list_add(&clk
->list
, &clocks
);
321 spin_unlock(&clocks_lock
);
326 int s3c24xx_register_clocks(struct clk
**clks
, int nr_clks
)
330 for (; nr_clks
> 0; nr_clks
--, clks
++) {
331 if (s3c24xx_register_clock(*clks
) < 0)
338 /* initalise all the clocks */
340 int __init
s3c24xx_register_baseclocks(unsigned long xtal
)
342 printk(KERN_INFO
"S3C24XX Clocks, (c) 2004 Simtec Electronics\n");
344 clk_xtal
.rate
= xtal
;
346 /* register our clocks */
348 if (s3c24xx_register_clock(&clk_xtal
) < 0)
349 printk(KERN_ERR
"failed to register master xtal\n");
351 if (s3c24xx_register_clock(&clk_mpll
) < 0)
352 printk(KERN_ERR
"failed to register mpll clock\n");
354 if (s3c24xx_register_clock(&clk_upll
) < 0)
355 printk(KERN_ERR
"failed to register upll clock\n");
357 if (s3c24xx_register_clock(&clk_f
) < 0)
358 printk(KERN_ERR
"failed to register cpu fclk\n");
360 if (s3c24xx_register_clock(&clk_h
) < 0)
361 printk(KERN_ERR
"failed to register cpu hclk\n");
363 if (s3c24xx_register_clock(&clk_p
) < 0)
364 printk(KERN_ERR
"failed to register cpu pclk\n");