Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-integrator / clock.c
blob56200594db3c2898255c281960014cbd709f817a
1 /*
2 * linux/arch/arm/mach-integrator/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>
17 #include <asm/semaphore.h>
18 #include <asm/hardware/clock.h>
19 #include <asm/hardware/icst525.h>
21 #include "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);
30 down(&clocks_sem);
31 list_for_each_entry(p, &clocks, node) {
32 if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
33 clk = p;
34 break;
37 up(&clocks_sem);
39 return clk;
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)
51 return 0;
53 EXPORT_SYMBOL(clk_enable);
55 void clk_disable(struct clk *clk)
58 EXPORT_SYMBOL(clk_disable);
60 int clk_use(struct clk *clk)
62 return 0;
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)
73 return clk->rate;
75 EXPORT_SYMBOL(clk_get_rate);
77 long clk_round_rate(struct clk *clk, unsigned long rate)
79 struct icst525_vco vco;
81 vco = icst525_khz_to_vco(clk->params, rate / 1000);
82 return icst525_khz(clk->params, vco) * 1000;
84 EXPORT_SYMBOL(clk_round_rate);
86 int clk_set_rate(struct clk *clk, unsigned long rate)
88 int ret = -EIO;
89 if (clk->setvco) {
90 struct icst525_vco vco;
92 vco = icst525_khz_to_vco(clk->params, rate / 1000);
93 clk->rate = icst525_khz(clk->params, vco) * 1000;
95 printk("Clock %s: setting VCO reg params: S=%d R=%d V=%d\n",
96 clk->name, vco.s, vco.r, vco.v);
98 clk->setvco(clk, vco);
99 ret = 0;
101 return 0;
103 EXPORT_SYMBOL(clk_set_rate);
106 * These are fixed clocks.
108 static struct clk kmi_clk = {
109 .name = "KMIREFCLK",
110 .rate = 24000000,
113 static struct clk uart_clk = {
114 .name = "UARTCLK",
115 .rate = 14745600,
118 int clk_register(struct clk *clk)
120 down(&clocks_sem);
121 list_add(&clk->node, &clocks);
122 up(&clocks_sem);
123 return 0;
125 EXPORT_SYMBOL(clk_register);
127 void clk_unregister(struct clk *clk)
129 down(&clocks_sem);
130 list_del(&clk->node);
131 up(&clocks_sem);
133 EXPORT_SYMBOL(clk_unregister);
135 static int __init clk_init(void)
137 clk_register(&kmi_clk);
138 clk_register(&uart_clk);
139 return 0;
141 arch_initcall(clk_init);