blob: e10ee158d72058dcaee136eb198ff8383110df96 [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
Bellido Nicolas4224b672005-10-28 16:51:43 +010021#include "clock.h"
22
23static LIST_HEAD(clocks);
Arjan van de Ven00431702006-01-12 18:42:23 +000024static DEFINE_MUTEX(clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010025
26struct clk *clk_get(struct device *dev, const char *id)
27{
28 struct clk *p, *clk = ERR_PTR(-ENOENT);
29
Arjan van de Ven00431702006-01-12 18:42:23 +000030 mutex_lock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010031 list_for_each_entry(p, &clocks, node) {
32 if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
33 clk = p;
34 break;
35 }
36 }
Arjan van de Ven00431702006-01-12 18:42:23 +000037 mutex_unlock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010038
39 return clk;
40}
41EXPORT_SYMBOL(clk_get);
42
43void clk_put(struct clk *clk)
44{
45 module_put(clk->owner);
46}
47EXPORT_SYMBOL(clk_put);
48
49int clk_enable(struct clk *clk)
50{
51 return 0;
52}
53EXPORT_SYMBOL(clk_enable);
54
55void clk_disable(struct clk *clk)
56{
57}
58EXPORT_SYMBOL(clk_disable);
59
Bellido Nicolas4224b672005-10-28 16:51:43 +010060unsigned long clk_get_rate(struct clk *clk)
61{
62 return clk->rate;
63}
64EXPORT_SYMBOL(clk_get_rate);
65
66long clk_round_rate(struct clk *clk, unsigned long rate)
67{
68 return rate;
69}
70EXPORT_SYMBOL(clk_round_rate);
71
72int clk_set_rate(struct clk *clk, unsigned long rate)
73{
74 return 0;
75}
76EXPORT_SYMBOL(clk_set_rate);
77
78int clk_register(struct clk *clk)
79{
Arjan van de Ven00431702006-01-12 18:42:23 +000080 mutex_lock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010081 list_add(&clk->node, &clocks);
Arjan van de Ven00431702006-01-12 18:42:23 +000082 mutex_unlock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010083 return 0;
84}
85EXPORT_SYMBOL(clk_register);
86
87void clk_unregister(struct clk *clk)
88{
Arjan van de Ven00431702006-01-12 18:42:23 +000089 mutex_lock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010090 list_del(&clk->node);
Arjan van de Ven00431702006-01-12 18:42:23 +000091 mutex_unlock(&clocks_mutex);
Bellido Nicolas4224b672005-10-28 16:51:43 +010092}
93EXPORT_SYMBOL(clk_unregister);
94
95static int __init clk_init(void)
96{
97 return 0;
98}
99arch_initcall(clk_init);