2 * linux/arch/arm/mach-versatile/clock.c
4 * Copyright (C) 2004 ARM Limited.
5 * Written by Deep Blue Solutions Limited.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/list.h>
14 #include <linux/errno.h>
15 #include <linux/err.h>
16 #include <linux/string.h>
17 #include <linux/clk.h>
18 #include <linux/mutex.h>
20 #include <asm/hardware/icst307.h>
24 static LIST_HEAD(clocks);
25 static DEFINE_MUTEX(clocks_mutex);
27 struct clk *clk_get(struct device *dev, const char *id)
29 struct clk *p, *clk = ERR_PTR(-ENOENT);
31 mutex_lock(&clocks_mutex);
32 list_for_each_entry(p, &clocks, node) {
33 if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
38 mutex_unlock(&clocks_mutex);
42 EXPORT_SYMBOL(clk_get);
44 void clk_put(struct clk *clk)
46 module_put(clk->owner);
48 EXPORT_SYMBOL(clk_put);
50 int clk_enable(struct clk *clk)
54 EXPORT_SYMBOL(clk_enable);
56 void clk_disable(struct clk *clk)
59 EXPORT_SYMBOL(clk_disable);
61 unsigned long clk_get_rate(struct clk *clk)
65 EXPORT_SYMBOL(clk_get_rate);
67 long clk_round_rate(struct clk *clk, unsigned long rate)
71 EXPORT_SYMBOL(clk_round_rate);
73 int clk_set_rate(struct clk *clk, unsigned long rate)
78 struct icst307_vco vco;
80 vco = icst307_khz_to_vco(clk->params, rate / 1000);
81 clk->rate = icst307_khz(clk->params, vco) * 1000;
83 printk("Clock %s: setting VCO reg params: S=%d R=%d V=%d\n",
84 clk->name, vco.s, vco.r, vco.v);
86 clk->setvco(clk, vco);
91 EXPORT_SYMBOL(clk_set_rate);
94 * These are fixed clocks.
96 static struct clk kmi_clk = {
101 static struct clk uart_clk = {
106 static struct clk mmci_clk = {
111 int clk_register(struct clk *clk)
113 mutex_lock(&clocks_mutex);
114 list_add(&clk->node, &clocks);
115 mutex_unlock(&clocks_mutex);
118 EXPORT_SYMBOL(clk_register);
120 void clk_unregister(struct clk *clk)
122 mutex_lock(&clocks_mutex);
123 list_del(&clk->node);
124 mutex_unlock(&clocks_mutex);
126 EXPORT_SYMBOL(clk_unregister);
128 static int __init clk_init(void)
130 clk_register(&kmi_clk);
131 clk_register(&uart_clk);
132 clk_register(&mmci_clk);
135 arch_initcall(clk_init);