blob: 74aa7a39bb68d9d09c281dd7c97612c206291afd [file] [log] [blame]
Bellido Nicolas4224b672005-10-28 16:51:43 +01001/*
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>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080017#include <linux/string.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000018#include <linux/clk.h>
Arjan van de Ven00431702006-01-12 18:42:23 +000019#include <linux/mutex.h>
Bellido Nicolas4224b672005-10-28 16:51:43 +010020
21#include <asm/semaphore.h>
Bellido Nicolas4224b672005-10-28 16:51:43 +010022
23#include "clock.h"
24
25static LIST_HEAD(clocks);
Arjan van de Ven00431702006-01-12 18:42:23 +000026static DEFINE_MUTEX(clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010027
28struct clk *clk_get(struct device *dev, const char *id)
29{
30 struct clk *p, *clk = ERR_PTR(-ENOENT);
31
Arjan van de Ven00431702006-01-12 18:42:23 +000032 mutex_lock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010033 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 }
Arjan van de Ven00431702006-01-12 18:42:23 +000039 mutex_unlock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010040
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
Bellido Nicolas4224b672005-10-28 16:51:43 +010062unsigned 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{
Arjan van de Ven00431702006-01-12 18:42:23 +000082 mutex_lock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010083 list_add(&clk->node, &clocks);
Arjan van de Ven00431702006-01-12 18:42:23 +000084 mutex_unlock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010085 return 0;
86}
87EXPORT_SYMBOL(clk_register);
88
89void clk_unregister(struct clk *clk)
90{
Arjan van de Ven00431702006-01-12 18:42:23 +000091 mutex_lock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010092 list_del(&clk->node);
Arjan van de Ven00431702006-01-12 18:42:23 +000093 mutex_unlock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010094}
95EXPORT_SYMBOL(clk_unregister);
96
97static int __init clk_init(void)
98{
99 return 0;
100}
101arch_initcall(clk_init);