2006-03-15 15:54:37 +00:00
/*
* linux / arch / arm / mach - sa1100 / clock . c
*/
# include <linux/module.h>
# include <linux/kernel.h>
# include <linux/list.h>
# include <linux/errno.h>
# include <linux/err.h>
# include <linux/string.h>
# include <linux/clk.h>
# include <linux/spinlock.h>
2007-08-20 10:18:02 +01:00
# include <linux/platform_device.h>
# include <linux/delay.h>
2006-03-15 15:54:37 +00:00
2008-11-08 20:25:21 +00:00
# include <asm/clkdev.h>
2008-08-05 16:14:15 +01:00
# include <mach/pxa2xx-regs.h>
# include <mach/hardware.h>
2006-03-15 15:54:37 +00:00
2007-08-20 10:18:02 +01:00
# include "devices.h"
# include "generic.h"
# include "clock.h"
2006-03-15 15:54:37 +00:00
static DEFINE_SPINLOCK ( clocks_lock ) ;
int clk_enable ( struct clk * clk )
{
unsigned long flags ;
spin_lock_irqsave ( & clocks_lock , flags ) ;
if ( clk - > enabled + + = = 0 )
2007-08-20 10:18:02 +01:00
clk - > ops - > enable ( clk ) ;
2006-03-15 15:54:37 +00:00
spin_unlock_irqrestore ( & clocks_lock , flags ) ;
2007-08-20 10:18:02 +01:00
if ( clk - > delay )
udelay ( clk - > delay ) ;
2006-03-15 15:54:37 +00:00
return 0 ;
}
EXPORT_SYMBOL ( clk_enable ) ;
void clk_disable ( struct clk * clk )
{
unsigned long flags ;
WARN_ON ( clk - > enabled = = 0 ) ;
spin_lock_irqsave ( & clocks_lock , flags ) ;
if ( - - clk - > enabled = = 0 )
2007-08-20 10:18:02 +01:00
clk - > ops - > disable ( clk ) ;
2006-03-15 15:54:37 +00:00
spin_unlock_irqrestore ( & clocks_lock , flags ) ;
}
EXPORT_SYMBOL ( clk_disable ) ;
unsigned long clk_get_rate ( struct clk * clk )
{
2007-08-20 10:18:02 +01:00
unsigned long rate ;
rate = clk - > rate ;
if ( clk - > ops - > getrate )
rate = clk - > ops - > getrate ( clk ) ;
return rate ;
2006-03-15 15:54:37 +00:00
}
EXPORT_SYMBOL ( clk_get_rate ) ;
2007-08-20 10:18:02 +01:00
void clk_cken_enable ( struct clk * clk )
2006-03-15 15:54:37 +00:00
{
2007-08-20 10:18:02 +01:00
CKEN | = 1 < < clk - > cken ;
2006-03-15 15:54:37 +00:00
}
2007-08-20 10:18:02 +01:00
void clk_cken_disable ( struct clk * clk )
2006-03-15 15:54:37 +00:00
{
2007-08-20 10:18:02 +01:00
CKEN & = ~ ( 1 < < clk - > cken ) ;
}
const struct clkops clk_cken_ops = {
. enable = clk_cken_enable ,
. disable = clk_cken_disable ,
} ;