2011-01-24 15:19:12 +03:00
/*
* Copyright 2010 - 2011 Picochip Ltd . , Jamie Iles
* http : //www.picochip.com
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation ; either version
* 2 of the License , or ( at your option ) any later version .
*
* This file implements a driver for the Synopsys DesignWare watchdog device
2013-12-30 16:25:54 +04:00
* in the many subsystems . The watchdog has 16 different timeout periods
2011-01-24 15:19:12 +03:00
* and these are a function of the input clock frequency .
*
* The DesignWare watchdog cannot be stopped once it has been started so we
* use a software timer to implement a ping that will keep the watchdog alive .
* If we receive an expected close for the watchdog then we keep the timer
* running , otherwise the timer is stopped and the watchdog will expire .
*/
2012-02-16 03:06:19 +04:00
# define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2011-01-24 15:19:12 +03:00
# include <linux/bitops.h>
# include <linux/clk.h>
2014-09-23 11:42:12 +04:00
# include <linux/delay.h>
2011-01-24 15:19:12 +03:00
# include <linux/device.h>
# include <linux/err.h>
# include <linux/fs.h>
# include <linux/io.h>
# include <linux/kernel.h>
# include <linux/miscdevice.h>
# include <linux/module.h>
# include <linux/moduleparam.h>
2014-09-23 11:42:12 +04:00
# include <linux/notifier.h>
2013-10-22 20:59:12 +04:00
# include <linux/of.h>
2011-01-24 15:19:12 +03:00
# include <linux/pm.h>
# include <linux/platform_device.h>
2014-09-23 11:42:12 +04:00
# include <linux/reboot.h>
2011-01-24 15:19:12 +03:00
# include <linux/spinlock.h>
# include <linux/timer.h>
# include <linux/uaccess.h>
# include <linux/watchdog.h>
# define WDOG_CONTROL_REG_OFFSET 0x00
# define WDOG_CONTROL_REG_WDT_EN_MASK 0x01
# define WDOG_TIMEOUT_RANGE_REG_OFFSET 0x04
2014-09-23 11:42:11 +04:00
# define WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT 4
2011-01-24 15:19:12 +03:00
# define WDOG_CURRENT_COUNT_REG_OFFSET 0x08
# define WDOG_COUNTER_RESTART_REG_OFFSET 0x0c
# define WDOG_COUNTER_RESTART_KICK_VALUE 0x76
/* The maximum TOP (timeout period) value that can be set in the watchdog. */
# define DW_WDT_MAX_TOP 15
2015-01-28 01:25:17 +03:00
# define DW_WDT_DEFAULT_SECONDS 30
2012-03-05 19:51:11 +04:00
static bool nowayout = WATCHDOG_NOWAYOUT ;
module_param ( nowayout , bool , 0 ) ;
2011-01-24 15:19:12 +03:00
MODULE_PARM_DESC ( nowayout , " Watchdog cannot be stopped once started "
" (default= " __MODULE_STRING ( WATCHDOG_NOWAYOUT ) " ) " ) ;
# define WDT_TIMEOUT (HZ / 2)
static struct {
spinlock_t lock ;
void __iomem * regs ;
struct clk * clk ;
unsigned long in_use ;
unsigned long next_heartbeat ;
struct timer_list timer ;
int expect_close ;
2014-09-23 11:42:12 +04:00
struct notifier_block restart_handler ;
2011-01-24 15:19:12 +03:00
} dw_wdt ;
static inline int dw_wdt_is_enabled ( void )
{
return readl ( dw_wdt . regs + WDOG_CONTROL_REG_OFFSET ) &
WDOG_CONTROL_REG_WDT_EN_MASK ;
}
static inline int dw_wdt_top_in_seconds ( unsigned top )
{
/*
* There are 16 possible timeout values in 0. .15 where the number of
* cycles is 2 ^ ( 16 + i ) and the watchdog counts down .
*/
return ( 1 < < ( 16 + top ) ) / clk_get_rate ( dw_wdt . clk ) ;
}
static int dw_wdt_get_top ( void )
{
int top = readl ( dw_wdt . regs + WDOG_TIMEOUT_RANGE_REG_OFFSET ) & 0xF ;
return dw_wdt_top_in_seconds ( top ) ;
}
static inline void dw_wdt_set_next_heartbeat ( void )
{
dw_wdt . next_heartbeat = jiffies + dw_wdt_get_top ( ) * HZ ;
}
2015-01-28 01:25:16 +03:00
static void dw_wdt_keepalive ( void )
{
writel ( WDOG_COUNTER_RESTART_KICK_VALUE , dw_wdt . regs +
WDOG_COUNTER_RESTART_REG_OFFSET ) ;
}
2011-01-24 15:19:12 +03:00
static int dw_wdt_set_top ( unsigned top_s )
{
int i , top_val = DW_WDT_MAX_TOP ;
/*
* Iterate over the timeout values until we find the closest match . We
* always look for > = .
*/
for ( i = 0 ; i < = DW_WDT_MAX_TOP ; + + i )
if ( dw_wdt_top_in_seconds ( i ) > = top_s ) {
top_val = i ;
break ;
}
2015-01-28 01:25:16 +03:00
/*
* Set the new value in the watchdog . Some versions of dw_wdt
* have have TOPINIT in the TIMEOUT_RANGE register ( as per
* CP_WDT_DUAL_TOP in WDT_COMP_PARAMS_1 ) . On those we
* effectively get a pat of the watchdog right here .
*/
2014-09-23 11:42:11 +04:00
writel ( top_val | top_val < < WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT ,
dw_wdt . regs + WDOG_TIMEOUT_RANGE_REG_OFFSET ) ;
2011-01-24 15:19:12 +03:00
2015-01-28 01:25:16 +03:00
/*
* Add an explicit pat to handle versions of the watchdog that
* don ' t have TOPINIT . This won ' t hurt on versions that have
* it .
*/
dw_wdt_keepalive ( ) ;
2011-01-24 15:19:12 +03:00
dw_wdt_set_next_heartbeat ( ) ;
return dw_wdt_top_in_seconds ( top_val ) ;
}
2014-09-23 11:42:12 +04:00
static int dw_wdt_restart_handle ( struct notifier_block * this ,
unsigned long mode , void * cmd )
{
u32 val ;
writel ( 0 , dw_wdt . regs + WDOG_TIMEOUT_RANGE_REG_OFFSET ) ;
val = readl ( dw_wdt . regs + WDOG_CONTROL_REG_OFFSET ) ;
if ( val & WDOG_CONTROL_REG_WDT_EN_MASK )
writel ( WDOG_COUNTER_RESTART_KICK_VALUE , dw_wdt . regs +
WDOG_COUNTER_RESTART_REG_OFFSET ) ;
else
writel ( WDOG_CONTROL_REG_WDT_EN_MASK ,
dw_wdt . regs + WDOG_CONTROL_REG_OFFSET ) ;
/* wait for reset to assert... */
mdelay ( 500 ) ;
return NOTIFY_DONE ;
}
2011-01-24 15:19:12 +03:00
static void dw_wdt_ping ( unsigned long data )
{
if ( time_before ( jiffies , dw_wdt . next_heartbeat ) | |
( ! nowayout & & ! dw_wdt . in_use ) ) {
dw_wdt_keepalive ( ) ;
mod_timer ( & dw_wdt . timer , jiffies + WDT_TIMEOUT ) ;
} else
pr_crit ( " keepalive missed, machine will reset \n " ) ;
}
static int dw_wdt_open ( struct inode * inode , struct file * filp )
{
if ( test_and_set_bit ( 0 , & dw_wdt . in_use ) )
return - EBUSY ;
/* Make sure we don't get unloaded. */
__module_get ( THIS_MODULE ) ;
spin_lock ( & dw_wdt . lock ) ;
if ( ! dw_wdt_is_enabled ( ) ) {
/*
* The watchdog is not currently enabled . Set the timeout to
2015-01-28 01:25:17 +03:00
* something reasonable and then start it .
2011-01-24 15:19:12 +03:00
*/
2015-01-28 01:25:17 +03:00
dw_wdt_set_top ( DW_WDT_DEFAULT_SECONDS ) ;
2011-01-24 15:19:12 +03:00
writel ( WDOG_CONTROL_REG_WDT_EN_MASK ,
dw_wdt . regs + WDOG_CONTROL_REG_OFFSET ) ;
}
dw_wdt_set_next_heartbeat ( ) ;
spin_unlock ( & dw_wdt . lock ) ;
return nonseekable_open ( inode , filp ) ;
}
2013-05-14 10:41:03 +04:00
static ssize_t dw_wdt_write ( struct file * filp , const char __user * buf ,
size_t len , loff_t * offset )
2011-01-24 15:19:12 +03:00
{
if ( ! len )
return 0 ;
if ( ! nowayout ) {
size_t i ;
dw_wdt . expect_close = 0 ;
for ( i = 0 ; i < len ; + + i ) {
char c ;
if ( get_user ( c , buf + i ) )
return - EFAULT ;
if ( c = = ' V ' ) {
dw_wdt . expect_close = 1 ;
break ;
}
}
}
dw_wdt_set_next_heartbeat ( ) ;
mod_timer ( & dw_wdt . timer , jiffies + WDT_TIMEOUT ) ;
return len ;
}
static u32 dw_wdt_time_left ( void )
{
return readl ( dw_wdt . regs + WDOG_CURRENT_COUNT_REG_OFFSET ) /
clk_get_rate ( dw_wdt . clk ) ;
}
static const struct watchdog_info dw_wdt_ident = {
. options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT |
WDIOF_MAGICCLOSE ,
. identity = " Synopsys DesignWare Watchdog " ,
} ;
static long dw_wdt_ioctl ( struct file * filp , unsigned int cmd , unsigned long arg )
{
unsigned long val ;
int timeout ;
switch ( cmd ) {
case WDIOC_GETSUPPORT :
2013-08-01 09:38:36 +04:00
return copy_to_user ( ( void __user * ) arg , & dw_wdt_ident ,
2011-01-24 15:19:12 +03:00
sizeof ( dw_wdt_ident ) ) ? - EFAULT : 0 ;
case WDIOC_GETSTATUS :
case WDIOC_GETBOOTSTATUS :
2013-08-01 09:38:36 +04:00
return put_user ( 0 , ( int __user * ) arg ) ;
2011-01-24 15:19:12 +03:00
case WDIOC_KEEPALIVE :
dw_wdt_set_next_heartbeat ( ) ;
return 0 ;
case WDIOC_SETTIMEOUT :
if ( get_user ( val , ( int __user * ) arg ) )
return - EFAULT ;
timeout = dw_wdt_set_top ( val ) ;
return put_user ( timeout , ( int __user * ) arg ) ;
case WDIOC_GETTIMEOUT :
return put_user ( dw_wdt_get_top ( ) , ( int __user * ) arg ) ;
case WDIOC_GETTIMELEFT :
/* Get the time left until expiry. */
if ( get_user ( val , ( int __user * ) arg ) )
return - EFAULT ;
return put_user ( dw_wdt_time_left ( ) , ( int __user * ) arg ) ;
default :
return - ENOTTY ;
}
}
static int dw_wdt_release ( struct inode * inode , struct file * filp )
{
clear_bit ( 0 , & dw_wdt . in_use ) ;
if ( ! dw_wdt . expect_close ) {
del_timer ( & dw_wdt . timer ) ;
if ( ! nowayout )
pr_crit ( " unexpected close, system will reboot soon \n " ) ;
else
pr_crit ( " watchdog cannot be disabled, system will reboot soon \n " ) ;
}
dw_wdt . expect_close = 0 ;
return 0 ;
}
2013-06-26 22:03:52 +04:00
# ifdef CONFIG_PM_SLEEP
2011-01-24 15:19:12 +03:00
static int dw_wdt_suspend ( struct device * dev )
{
2013-06-26 22:04:31 +04:00
clk_disable_unprepare ( dw_wdt . clk ) ;
2011-01-24 15:19:12 +03:00
return 0 ;
}
static int dw_wdt_resume ( struct device * dev )
{
2013-06-26 22:04:31 +04:00
int err = clk_prepare_enable ( dw_wdt . clk ) ;
2011-01-24 15:19:12 +03:00
if ( err )
return err ;
dw_wdt_keepalive ( ) ;
return 0 ;
}
2013-06-26 22:03:52 +04:00
# endif /* CONFIG_PM_SLEEP */
2011-01-24 15:19:12 +03:00
2013-06-26 22:03:52 +04:00
static SIMPLE_DEV_PM_OPS ( dw_wdt_pm_ops , dw_wdt_suspend , dw_wdt_resume ) ;
2011-01-24 15:19:12 +03:00
static const struct file_operations wdt_fops = {
. owner = THIS_MODULE ,
. llseek = no_llseek ,
. open = dw_wdt_open ,
. write = dw_wdt_write ,
. unlocked_ioctl = dw_wdt_ioctl ,
. release = dw_wdt_release
} ;
static struct miscdevice dw_wdt_miscdev = {
. fops = & wdt_fops ,
. name = " watchdog " ,
. minor = WATCHDOG_MINOR ,
} ;
2012-11-19 22:21:41 +04:00
static int dw_wdt_drv_probe ( struct platform_device * pdev )
2011-01-24 15:19:12 +03:00
{
int ret ;
struct resource * mem = platform_get_resource ( pdev , IORESOURCE_MEM , 0 ) ;
2013-01-21 14:09:25 +04:00
dw_wdt . regs = devm_ioremap_resource ( & pdev - > dev , mem ) ;
if ( IS_ERR ( dw_wdt . regs ) )
return PTR_ERR ( dw_wdt . regs ) ;
2011-01-24 15:19:12 +03:00
2013-04-29 13:15:26 +04:00
dw_wdt . clk = devm_clk_get ( & pdev - > dev , NULL ) ;
2011-01-24 15:19:12 +03:00
if ( IS_ERR ( dw_wdt . clk ) )
return PTR_ERR ( dw_wdt . clk ) ;
2013-06-26 22:04:31 +04:00
ret = clk_prepare_enable ( dw_wdt . clk ) ;
2011-01-24 15:19:12 +03:00
if ( ret )
2013-04-29 13:15:26 +04:00
return ret ;
2011-01-24 15:19:12 +03:00
spin_lock_init ( & dw_wdt . lock ) ;
ret = misc_register ( & dw_wdt_miscdev ) ;
if ( ret )
goto out_disable_clk ;
2014-09-23 11:42:12 +04:00
dw_wdt . restart_handler . notifier_call = dw_wdt_restart_handle ;
dw_wdt . restart_handler . priority = 128 ;
ret = register_restart_handler ( & dw_wdt . restart_handler ) ;
if ( ret )
pr_warn ( " cannot register restart handler \n " ) ;
2011-01-24 15:19:12 +03:00
dw_wdt_set_next_heartbeat ( ) ;
setup_timer ( & dw_wdt . timer , dw_wdt_ping , 0 ) ;
mod_timer ( & dw_wdt . timer , jiffies + WDT_TIMEOUT ) ;
return 0 ;
out_disable_clk :
2013-06-26 22:04:31 +04:00
clk_disable_unprepare ( dw_wdt . clk ) ;
2011-01-24 15:19:12 +03:00
return ret ;
}
2012-11-19 22:26:24 +04:00
static int dw_wdt_drv_remove ( struct platform_device * pdev )
2011-01-24 15:19:12 +03:00
{
2014-09-23 11:42:12 +04:00
unregister_restart_handler ( & dw_wdt . restart_handler ) ;
2011-01-24 15:19:12 +03:00
misc_deregister ( & dw_wdt_miscdev ) ;
2013-06-26 22:04:31 +04:00
clk_disable_unprepare ( dw_wdt . clk ) ;
2011-01-24 15:19:12 +03:00
return 0 ;
}
2013-10-22 20:59:12 +04:00
# ifdef CONFIG_OF
static const struct of_device_id dw_wdt_of_match [ ] = {
{ . compatible = " snps,dw-wdt " , } ,
{ /* sentinel */ }
} ;
MODULE_DEVICE_TABLE ( of , dw_wdt_of_match ) ;
# endif
2011-01-24 15:19:12 +03:00
static struct platform_driver dw_wdt_driver = {
. probe = dw_wdt_drv_probe ,
2012-11-19 22:21:12 +04:00
. remove = dw_wdt_drv_remove ,
2011-01-24 15:19:12 +03:00
. driver = {
. name = " dw_wdt " ,
2013-10-22 20:59:12 +04:00
. of_match_table = of_match_ptr ( dw_wdt_of_match ) ,
2011-01-24 15:19:12 +03:00
. pm = & dw_wdt_pm_ops ,
} ,
} ;
2011-11-29 09:56:27 +04:00
module_platform_driver ( dw_wdt_driver ) ;
2011-01-24 15:19:12 +03:00
MODULE_AUTHOR ( " Jamie Iles " ) ;
MODULE_DESCRIPTION ( " Synopsys DesignWare Watchdog Driver " ) ;
MODULE_LICENSE ( " GPL " ) ;