2006-03-15 15:54:37 +00:00
/*
* linux / arch / arm / mach - sa1100 / clock . c
*/
# include <linux/module.h>
# include <linux/kernel.h>
2008-11-08 20:48:27 +00:00
# include <linux/device.h>
2006-03-15 15:54:37 +00:00
# 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-04-22 10:08:58 +01:00
# include <linux/mutex.h>
2011-11-30 14:32:36 +08:00
# include <linux/io.h>
# include <linux/clkdev.h>
2006-03-15 15:54:37 +00:00
2008-08-05 16:14:15 +01:00
# include <mach/hardware.h>
2006-03-15 15:54:37 +00:00
2011-11-30 14:32:36 +08:00
struct clkops {
void ( * enable ) ( struct clk * ) ;
void ( * disable ) ( struct clk * ) ;
} ;
2006-03-15 15:54:37 +00:00
struct clk {
2011-11-30 14:32:36 +08:00
const struct clkops * ops ;
2006-03-15 15:54:37 +00:00
unsigned int enabled ;
} ;
2011-11-30 14:32:36 +08:00
# define DEFINE_CLK(_name, _ops) \
struct clk clk_ # # _name = { \
. ops = _ops , \
}
static DEFINE_SPINLOCK ( clocks_lock ) ;
static void clk_gpio27_enable ( struct clk * clk )
2008-11-08 20:48:27 +00:00
{
/*
* First , set up the 3.6864 MHz clock on GPIO 27 for the SA - 1111 :
* ( SA - 1110 Developer ' s Manual , section 9.1 .2 .1 )
*/
GAFR | = GPIO_32_768kHz ;
GPDR | = GPIO_32_768kHz ;
TUCR = TUCR_3_6864MHz ;
}
2011-11-30 14:32:36 +08:00
static void clk_gpio27_disable ( struct clk * clk )
2008-11-08 20:48:27 +00:00
{
TUCR = 0 ;
GPDR & = ~ GPIO_32_768kHz ;
GAFR & = ~ GPIO_32_768kHz ;
}
2006-03-15 15:54:37 +00:00
int clk_enable ( struct clk * clk )
{
unsigned long flags ;
2011-11-30 14:32:36 +08:00
if ( clk ) {
spin_lock_irqsave ( & clocks_lock , flags ) ;
if ( clk - > enabled + + = = 0 )
clk - > ops - > enable ( clk ) ;
spin_unlock_irqrestore ( & clocks_lock , flags ) ;
}
2006-03-15 15:54:37 +00:00
return 0 ;
}
EXPORT_SYMBOL ( clk_enable ) ;
void clk_disable ( struct clk * clk )
{
unsigned long flags ;
2011-11-30 14:32:36 +08:00
if ( clk ) {
WARN_ON ( clk - > enabled = = 0 ) ;
spin_lock_irqsave ( & clocks_lock , flags ) ;
if ( - - clk - > enabled = = 0 )
clk - > ops - > disable ( clk ) ;
spin_unlock_irqrestore ( & clocks_lock , flags ) ;
}
2006-03-15 15:54:37 +00:00
}
EXPORT_SYMBOL ( clk_disable ) ;
2011-11-30 14:32:36 +08:00
const struct clkops clk_gpio27_ops = {
. enable = clk_gpio27_enable ,
. disable = clk_gpio27_disable ,
} ;
static DEFINE_CLK ( gpio27 , & clk_gpio27_ops ) ;
static struct clk_lookup sa11xx_clkregs [ ] = {
CLKDEV_INIT ( " sa1111.0 " , NULL , & clk_gpio27 ) ,
CLKDEV_INIT ( " sa1100-rtc " , NULL , NULL ) ,
} ;
static int __init sa11xx_clk_init ( void )
2006-03-15 15:54:37 +00:00
{
2011-11-30 14:32:36 +08:00
clkdev_add_table ( sa11xx_clkregs , ARRAY_SIZE ( sa11xx_clkregs ) ) ;
return 0 ;
2006-03-15 15:54:37 +00:00
}
2011-11-30 14:32:36 +08:00
core_initcall ( sa11xx_clk_init ) ;