Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-integrator/clock.c |
| 3 | * |
| 4 | * Copyright (C) 2004 ARM Limited. |
| 5 | * Written by Deep Blue Solutions Limited. |
| 6 | * |
| 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. |
| 10 | */ |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/errno.h> |
Russell King | f8ce254 | 2006-01-07 16:15:52 +0000 | [diff] [blame] | 14 | #include <linux/clk.h> |
Arjan van de Ven | 0043170 | 2006-01-12 18:42:23 +0000 | [diff] [blame] | 15 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame^] | 17 | #include <asm/hardware/icst.h> |
Russell King | d72fbdf | 2008-11-08 20:08:08 +0000 | [diff] [blame] | 18 | #include <asm/clkdev.h> |
| 19 | #include <mach/clkdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | int clk_enable(struct clk *clk) |
| 22 | { |
| 23 | return 0; |
| 24 | } |
| 25 | EXPORT_SYMBOL(clk_enable); |
| 26 | |
| 27 | void clk_disable(struct clk *clk) |
| 28 | { |
| 29 | } |
| 30 | EXPORT_SYMBOL(clk_disable); |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | unsigned long clk_get_rate(struct clk *clk) |
| 33 | { |
| 34 | return clk->rate; |
| 35 | } |
| 36 | EXPORT_SYMBOL(clk_get_rate); |
| 37 | |
| 38 | long clk_round_rate(struct clk *clk, unsigned long rate) |
| 39 | { |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 40 | struct icst_vco vco; |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame^] | 41 | vco = icst_hz_to_vco(clk->params, rate); |
| 42 | return icst_hz(clk->params, vco); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } |
| 44 | EXPORT_SYMBOL(clk_round_rate); |
| 45 | |
| 46 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 47 | { |
| 48 | int ret = -EIO; |
Russell King | d72fbdf | 2008-11-08 20:08:08 +0000 | [diff] [blame] | 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | if (clk->setvco) { |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 51 | struct icst_vco vco; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame^] | 53 | vco = icst_hz_to_vco(clk->params, rate); |
| 54 | clk->rate = icst_hz(clk->params, vco); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | clk->setvco(clk, vco); |
| 56 | ret = 0; |
| 57 | } |
Russell King | d72fbdf | 2008-11-08 20:08:08 +0000 | [diff] [blame] | 58 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | EXPORT_SYMBOL(clk_set_rate); |