2 * TI DaVinci clock config file
4 * Copyright (C) 2006 Texas Instruments.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/errno.h>
16 #include <linux/err.h>
17 #include <linux/mutex.h>
18 #include <linux/platform_device.h>
20 #include <asm/hardware.h>
23 #include <asm/arch/psc.h>
26 /* PLL/Reset register offsets */
29 static LIST_HEAD(clocks
);
30 static DEFINE_MUTEX(clocks_mutex
);
31 static DEFINE_SPINLOCK(clockfw_lock
);
33 static unsigned int commonrate
;
34 static unsigned int armrate
;
35 static unsigned int fixedrate
= 27000000; /* 27 MHZ */
37 extern void davinci_psc_config(unsigned int domain
, unsigned int id
, char enable
);
40 * Returns a clock. Note that we first try to use device id on the bus
41 * and clock name. If this fails, we try to use clock name only.
43 struct clk
*clk_get(struct device
*dev
, const char *id
)
45 struct clk
*p
, *clk
= ERR_PTR(-ENOENT
);
48 if (dev
== NULL
|| dev
->bus
!= &platform_bus_type
)
51 idno
= to_platform_device(dev
)->id
;
53 mutex_lock(&clocks_mutex
);
55 list_for_each_entry(p
, &clocks
, node
) {
57 strcmp(id
, p
->name
) == 0 && try_module_get(p
->owner
)) {
63 list_for_each_entry(p
, &clocks
, node
) {
64 if (strcmp(id
, p
->name
) == 0 && try_module_get(p
->owner
)) {
71 mutex_unlock(&clocks_mutex
);
75 EXPORT_SYMBOL(clk_get
);
77 void clk_put(struct clk
*clk
)
79 if (clk
&& !IS_ERR(clk
))
80 module_put(clk
->owner
);
82 EXPORT_SYMBOL(clk_put
);
84 static int __clk_enable(struct clk
*clk
)
86 if (clk
->flags
& ALWAYS_ENABLED
)
89 davinci_psc_config(DAVINCI_GPSC_ARMDOMAIN
, clk
->lpsc
, 1);
93 static void __clk_disable(struct clk
*clk
)
98 davinci_psc_config(DAVINCI_GPSC_ARMDOMAIN
, clk
->lpsc
, 0);
101 int clk_enable(struct clk
*clk
)
106 if (clk
== NULL
|| IS_ERR(clk
))
109 if (clk
->usecount
++ == 0) {
110 spin_lock_irqsave(&clockfw_lock
, flags
);
111 ret
= __clk_enable(clk
);
112 spin_unlock_irqrestore(&clockfw_lock
, flags
);
117 EXPORT_SYMBOL(clk_enable
);
119 void clk_disable(struct clk
*clk
)
123 if (clk
== NULL
|| IS_ERR(clk
))
126 if (clk
->usecount
> 0 && !(--clk
->usecount
)) {
127 spin_lock_irqsave(&clockfw_lock
, flags
);
129 spin_unlock_irqrestore(&clockfw_lock
, flags
);
132 EXPORT_SYMBOL(clk_disable
);
134 unsigned long clk_get_rate(struct clk
*clk
)
136 if (clk
== NULL
|| IS_ERR(clk
))
141 EXPORT_SYMBOL(clk_get_rate
);
143 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
145 if (clk
== NULL
|| IS_ERR(clk
))
150 EXPORT_SYMBOL(clk_round_rate
);
152 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
154 if (clk
== NULL
|| IS_ERR(clk
))
157 /* changing the clk rate is not supported */
160 EXPORT_SYMBOL(clk_set_rate
);
162 int clk_register(struct clk
*clk
)
164 if (clk
== NULL
|| IS_ERR(clk
))
167 mutex_lock(&clocks_mutex
);
168 list_add(&clk
->node
, &clocks
);
169 mutex_unlock(&clocks_mutex
);
173 EXPORT_SYMBOL(clk_register
);
175 void clk_unregister(struct clk
*clk
)
177 if (clk
== NULL
|| IS_ERR(clk
))
180 mutex_lock(&clocks_mutex
);
181 list_del(&clk
->node
);
182 mutex_unlock(&clocks_mutex
);
184 EXPORT_SYMBOL(clk_unregister
);
186 static struct clk davinci_clks
[] = {
191 .flags
= ALWAYS_ENABLED
,
196 .lpsc
= DAVINCI_LPSC_UART0
,
201 .lpsc
= DAVINCI_LPSC_EMAC_WRAPPER
,
206 .lpsc
= DAVINCI_LPSC_I2C
,
211 .lpsc
= DAVINCI_LPSC_ATA
,
216 .lpsc
= DAVINCI_LPSC_McBSP
,
221 .lpsc
= DAVINCI_LPSC_MMC_SD
,
226 .lpsc
= DAVINCI_LPSC_SPI
,
231 .lpsc
= DAVINCI_LPSC_GPIO
,
236 .lpsc
= DAVINCI_LPSC_AEMIF
,
241 int __init
davinci_clk_init(void)
247 pll_mult
= davinci_readl(DAVINCI_PLL_CNTRL0_BASE
+ PLLM
);
248 commonrate
= ((pll_mult
+ 1) * 27000000) / 6;
249 armrate
= ((pll_mult
+ 1) * 27000000) / 2;
251 for (clkp
= davinci_clks
; count
< ARRAY_SIZE(davinci_clks
);
255 /* Turn on clocks that have been enabled in the
264 #ifdef CONFIG_PROC_FS
265 #include <linux/proc_fs.h>
266 #include <linux/seq_file.h>
268 static void *davinci_ck_start(struct seq_file
*m
, loff_t
*pos
)
270 return *pos
< 1 ? (void *)1 : NULL
;
273 static void *davinci_ck_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
279 static void davinci_ck_stop(struct seq_file
*m
, void *v
)
283 static int davinci_ck_show(struct seq_file
*m
, void *v
)
287 list_for_each_entry(cp
, &clocks
, node
)
288 seq_printf(m
,"%s %d %d\n", cp
->name
, *(cp
->rate
), cp
->usecount
);
293 static struct seq_operations davinci_ck_op
= {
294 .start
= davinci_ck_start
,
295 .next
= davinci_ck_next
,
296 .stop
= davinci_ck_stop
,
297 .show
= davinci_ck_show
300 static int davinci_ck_open(struct inode
*inode
, struct file
*file
)
302 return seq_open(file
, &davinci_ck_op
);
305 static struct file_operations proc_davinci_ck_operations
= {
306 .open
= davinci_ck_open
,
309 .release
= seq_release
,
312 static int __init
davinci_ck_proc_init(void)
314 struct proc_dir_entry
*entry
;
316 entry
= create_proc_entry("davinci_clocks", 0, NULL
);
318 entry
->proc_fops
= &proc_davinci_ck_operations
;
322 __initcall(davinci_ck_proc_init
);
323 #endif /* CONFIG_DEBUG_PROC_FS */