2 * linux/arch/arm/mach-sa1100/clock.c
4 #include <linux/module.h>
5 #include <linux/kernel.h>
6 #include <linux/list.h>
7 #include <linux/errno.h>
9 #include <linux/string.h>
10 #include <linux/clk.h>
11 #include <linux/spinlock.h>
13 #include <asm/arch/pxa-regs.h>
14 #include <asm/hardware.h>
17 struct list_head node;
23 void (*disable)(void);
26 static LIST_HEAD(clocks);
27 static DEFINE_MUTEX(clocks_mutex);
28 static DEFINE_SPINLOCK(clocks_lock);
30 struct clk *clk_get(struct device *dev, const char *id)
32 struct clk *p, *clk = ERR_PTR(-ENOENT);
34 mutex_lock(&clocks_mutex);
35 list_for_each_entry(p, &clocks, node) {
36 if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
41 mutex_unlock(&clocks_mutex);
45 EXPORT_SYMBOL(clk_get);
47 void clk_put(struct clk *clk)
49 module_put(clk->owner);
51 EXPORT_SYMBOL(clk_put);
53 int clk_enable(struct clk *clk)
57 spin_lock_irqsave(&clocks_lock, flags);
58 if (clk->enabled++ == 0)
60 spin_unlock_irqrestore(&clocks_lock, flags);
63 EXPORT_SYMBOL(clk_enable);
65 void clk_disable(struct clk *clk)
69 WARN_ON(clk->enabled == 0);
71 spin_lock_irqsave(&clocks_lock, flags);
72 if (--clk->enabled == 0)
74 spin_unlock_irqrestore(&clocks_lock, flags);
76 EXPORT_SYMBOL(clk_disable);
78 unsigned long clk_get_rate(struct clk *clk)
82 EXPORT_SYMBOL(clk_get_rate);
85 static void clk_gpio27_enable(void)
87 pxa_gpio_mode(GPIO11_3_6MHz_MD);
90 static void clk_gpio27_disable(void)
94 static struct clk clk_gpio27 = {
97 .enable = clk_gpio27_enable,
98 .disable = clk_gpio27_disable,
101 int clk_register(struct clk *clk)
103 mutex_lock(&clocks_mutex);
104 list_add(&clk->node, &clocks);
105 mutex_unlock(&clocks_mutex);
108 EXPORT_SYMBOL(clk_register);
110 void clk_unregister(struct clk *clk)
112 mutex_lock(&clocks_mutex);
113 list_del(&clk->node);
114 mutex_unlock(&clocks_mutex);
116 EXPORT_SYMBOL(clk_unregister);
118 static int __init clk_init(void)
120 clk_register(&clk_gpio27);
123 arch_initcall(clk_init);