2 * linux/arch/arm/mach-aaec2000/clock.c
4 * Copyright (C) 2005 Nicolas Bellido Y Ortega
6 * Based on linux/arch/arm/mach-integrator/clock.c
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/list.h>
15 #include <linux/errno.h>
16 #include <linux/err.h>
18 #include <asm/semaphore.h>
19 #include <asm/hardware/clock.h>
23 static LIST_HEAD(clocks);
24 static DECLARE_MUTEX(clocks_sem);
26 struct clk *clk_get(struct device *dev, const char *id)
28 struct clk *p, *clk = ERR_PTR(-ENOENT);
31 list_for_each_entry(p, &clocks, node) {
32 if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
41 EXPORT_SYMBOL(clk_get);
43 void clk_put(struct clk *clk)
45 module_put(clk->owner);
47 EXPORT_SYMBOL(clk_put);
49 int clk_enable(struct clk *clk)
53 EXPORT_SYMBOL(clk_enable);
55 void clk_disable(struct clk *clk)
58 EXPORT_SYMBOL(clk_disable);
60 int clk_use(struct clk *clk)
64 EXPORT_SYMBOL(clk_use);
66 void clk_unuse(struct clk *clk)
69 EXPORT_SYMBOL(clk_unuse);
71 unsigned long clk_get_rate(struct clk *clk)
75 EXPORT_SYMBOL(clk_get_rate);
77 long clk_round_rate(struct clk *clk, unsigned long rate)
81 EXPORT_SYMBOL(clk_round_rate);
83 int clk_set_rate(struct clk *clk, unsigned long rate)
87 EXPORT_SYMBOL(clk_set_rate);
89 int clk_register(struct clk *clk)
92 list_add(&clk->node, &clocks);
96 EXPORT_SYMBOL(clk_register);
98 void clk_unregister(struct clk *clk)
101 list_del(&clk->node);
104 EXPORT_SYMBOL(clk_unregister);
106 static int __init clk_init(void)
110 arch_initcall(clk_init);