Pull cpu-hotplug into release branch
[linux-block.git] / arch / arm / mach-aaec2000 / clock.c
CommitLineData
4224b67c
BN
1/*
2 * linux/arch/arm/mach-aaec2000/clock.c
3 *
4 * Copyright (C) 2005 Nicolas Bellido Y Ortega
5 *
6 * Based on linux/arch/arm/mach-integrator/clock.c
7 *
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.
11 */
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>
8c65b4a6 17#include <linux/string.h>
f8ce2547 18#include <linux/clk.h>
00431707 19#include <linux/mutex.h>
4224b67c
BN
20
21#include <asm/semaphore.h>
4224b67c
BN
22
23#include "clock.h"
24
25static LIST_HEAD(clocks);
00431707 26static DEFINE_MUTEX(clocks_mutex);
4224b67c
BN
27
28struct clk *clk_get(struct device *dev, const char *id)
29{
30 struct clk *p, *clk = ERR_PTR(-ENOENT);
31
00431707 32 mutex_lock(&clocks_mutex);
4224b67c
BN
33 list_for_each_entry(p, &clocks, node) {
34 if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
35 clk = p;
36 break;
37 }
38 }
00431707 39 mutex_unlock(&clocks_mutex);
4224b67c
BN
40
41 return clk;
42}
43EXPORT_SYMBOL(clk_get);
44
45void clk_put(struct clk *clk)
46{
47 module_put(clk->owner);
48}
49EXPORT_SYMBOL(clk_put);
50
51int clk_enable(struct clk *clk)
52{
53 return 0;
54}
55EXPORT_SYMBOL(clk_enable);
56
57void clk_disable(struct clk *clk)
58{
59}
60EXPORT_SYMBOL(clk_disable);
61
4224b67c
BN
62unsigned long clk_get_rate(struct clk *clk)
63{
64 return clk->rate;
65}
66EXPORT_SYMBOL(clk_get_rate);
67
68long clk_round_rate(struct clk *clk, unsigned long rate)
69{
70 return rate;
71}
72EXPORT_SYMBOL(clk_round_rate);
73
74int clk_set_rate(struct clk *clk, unsigned long rate)
75{
76 return 0;
77}
78EXPORT_SYMBOL(clk_set_rate);
79
80int clk_register(struct clk *clk)
81{
00431707 82 mutex_lock(&clocks_mutex);
4224b67c 83 list_add(&clk->node, &clocks);
00431707 84 mutex_unlock(&clocks_mutex);
4224b67c
BN
85 return 0;
86}
87EXPORT_SYMBOL(clk_register);
88
89void clk_unregister(struct clk *clk)
90{
00431707 91 mutex_lock(&clocks_mutex);
4224b67c 92 list_del(&clk->node);
00431707 93 mutex_unlock(&clocks_mutex);
4224b67c
BN
94}
95EXPORT_SYMBOL(clk_unregister);
96
97static int __init clk_init(void)
98{
99 return 0;
100}
101arch_initcall(clk_init);