2006-03-25 14:06:37 +03:00
/*
* Watchdog driver for Cirrus Logic EP93xx family of devices .
*
* Copyright ( c ) 2004 Ray Lehtiniemi
* Copyright ( c ) 2006 Tower Technologies
* Based on ep93xx driver , bits from alim7101_wdt . c
*
* Authors : Ray Lehtiniemi < rayl @ mail . com > ,
* Alessandro Zummo < a . zummo @ towertech . it >
*
2012-03-14 21:31:50 +04:00
* Copyright ( c ) 2012 H Hartley Sweeten < hsweeten @ visionengravers . com >
* Convert to a platform device and use the watchdog framework API
*
2006-03-25 14:06:37 +03:00
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed " as is " without any
* warranty of any kind , whether express or implied .
*
* This watchdog fires after 250 msec , which is a too short interval
* for us to rely on the user space daemon alone . So we ping the
* wdt each ~ 200 msec and eventually stop doing it if the user space
* daemon dies .
*
* TODO :
*
* - Test last reset from watchdog status
* - Add a few missing ioctls
*/
2012-03-13 02:48:16 +04:00
# include <linux/platform_device.h>
2006-03-25 14:06:37 +03:00
# include <linux/module.h>
# include <linux/miscdevice.h>
# include <linux/watchdog.h>
# include <linux/timer.h>
2009-07-16 00:33:22 +04:00
# include <linux/io.h>
2006-03-25 14:06:37 +03:00
2012-03-14 21:31:50 +04:00
# define WDT_VERSION "0.4"
2006-03-25 14:06:37 +03:00
/* default timeout (secs) */
# define WDT_TIMEOUT 30
2012-03-05 19:51:11 +04:00
static bool nowayout = WATCHDOG_NOWAYOUT ;
2012-03-14 21:31:50 +04:00
module_param ( nowayout , bool , 0 ) ;
MODULE_PARM_DESC ( nowayout , " Watchdog cannot be stopped once started " ) ;
2012-03-22 12:37:10 +04:00
static unsigned int timeout = WDT_TIMEOUT ;
module_param ( timeout , uint , 0 ) ;
2012-03-14 21:31:50 +04:00
MODULE_PARM_DESC ( timeout ,
" Watchdog timeout in seconds. (1<=timeout<=3600, default= "
__MODULE_STRING ( WDT_TIMEOUT ) " ) " ) ;
2006-03-25 14:06:37 +03:00
2012-03-13 02:48:16 +04:00
static void __iomem * mmio_base ;
2006-03-25 14:06:37 +03:00
static struct timer_list timer ;
static unsigned long next_heartbeat ;
2012-03-13 02:48:16 +04:00
# define EP93XX_WATCHDOG 0x00
# define EP93XX_WDSTATUS 0x04
2006-03-25 14:06:37 +03:00
2012-03-22 12:37:10 +04:00
/* reset the wdt every ~200ms - the heartbeat of the device is 0.250 seconds*/
2006-03-25 14:06:37 +03:00
# define WDT_INTERVAL (HZ / 5)
2012-03-14 21:31:50 +04:00
static void ep93xx_wdt_timer_ping ( unsigned long data )
2006-03-25 14:06:37 +03:00
{
2012-03-14 21:31:50 +04:00
if ( time_before ( jiffies , next_heartbeat ) )
writel ( 0x5555 , mmio_base + EP93XX_WATCHDOG ) ;
2006-03-25 14:06:37 +03:00
2012-03-14 21:31:50 +04:00
/* Re-set the timer interval */
mod_timer ( & timer , jiffies + WDT_INTERVAL ) ;
2006-03-25 14:06:37 +03:00
}
2012-03-14 21:31:50 +04:00
static int ep93xx_wdt_start ( struct watchdog_device * wdd )
2006-03-25 14:06:37 +03:00
{
next_heartbeat = jiffies + ( timeout * HZ ) ;
2012-03-14 21:31:50 +04:00
writel ( 0xaaaa , mmio_base + EP93XX_WATCHDOG ) ;
2006-03-25 14:06:37 +03:00
mod_timer ( & timer , jiffies + WDT_INTERVAL ) ;
2012-03-14 21:31:50 +04:00
return 0 ;
2006-03-25 14:06:37 +03:00
}
2012-03-14 21:31:50 +04:00
static int ep93xx_wdt_stop ( struct watchdog_device * wdd )
2006-03-25 14:06:37 +03:00
{
del_timer_sync ( & timer ) ;
2012-03-14 21:31:50 +04:00
writel ( 0xaa55 , mmio_base + EP93XX_WATCHDOG ) ;
return 0 ;
2006-03-25 14:06:37 +03:00
}
2012-03-14 21:31:50 +04:00
static int ep93xx_wdt_keepalive ( struct watchdog_device * wdd )
2006-03-25 14:06:37 +03:00
{
/* user land ping */
next_heartbeat = jiffies + ( timeout * HZ ) ;
2012-03-14 21:31:50 +04:00
return 0 ;
2006-03-25 14:06:37 +03:00
}
2012-03-14 21:31:50 +04:00
static const struct watchdog_info ep93xx_wdt_ident = {
. options = WDIOF_CARDRESET |
WDIOF_MAGICCLOSE |
WDIOF_KEEPALIVEPING ,
. identity = " EP93xx Watchdog " ,
2006-03-25 14:06:37 +03:00
} ;
2012-03-14 21:31:50 +04:00
static struct watchdog_ops ep93xx_wdt_ops = {
2006-03-25 14:06:37 +03:00
. owner = THIS_MODULE ,
2012-03-14 21:31:50 +04:00
. start = ep93xx_wdt_start ,
. stop = ep93xx_wdt_stop ,
. ping = ep93xx_wdt_keepalive ,
2006-03-25 14:06:37 +03:00
} ;
2012-03-14 21:31:50 +04:00
static struct watchdog_device ep93xx_wdt_wdd = {
. info = & ep93xx_wdt_ident ,
. ops = & ep93xx_wdt_ops ,
2006-03-25 14:06:37 +03:00
} ;
2012-11-19 22:21:41 +04:00
static int ep93xx_wdt_probe ( struct platform_device * pdev )
2006-03-25 14:06:37 +03:00
{
2012-03-13 02:48:16 +04:00
struct resource * res ;
unsigned long val ;
2006-03-25 14:06:37 +03:00
int err ;
2012-03-13 02:48:16 +04:00
res = platform_get_resource ( pdev , IORESOURCE_MEM , 0 ) ;
if ( ! res )
return - ENXIO ;
if ( ! devm_request_mem_region ( & pdev - > dev , res - > start ,
resource_size ( res ) , pdev - > name ) )
return - EBUSY ;
mmio_base = devm_ioremap ( & pdev - > dev , res - > start , resource_size ( res ) ) ;
if ( ! mmio_base )
return - ENXIO ;
2006-03-25 14:06:37 +03:00
if ( timeout < 1 | | timeout > 3600 ) {
timeout = WDT_TIMEOUT ;
2012-03-14 21:31:50 +04:00
dev_warn ( & pdev - > dev ,
" timeout value must be 1<=x<=3600, using %d \n " ,
2006-03-25 14:06:37 +03:00
timeout ) ;
}
2012-03-13 12:06:12 +04:00
val = readl ( mmio_base + EP93XX_WATCHDOG ) ;
2012-03-14 21:31:50 +04:00
ep93xx_wdt_wdd . bootstatus = ( val & 0x01 ) ? WDIOF_CARDRESET : 0 ;
2012-03-18 15:09:52 +04:00
ep93xx_wdt_wdd . timeout = timeout ;
2012-03-14 21:31:50 +04:00
watchdog_set_nowayout ( & ep93xx_wdt_wdd , nowayout ) ;
2012-03-13 12:06:12 +04:00
2012-03-14 21:31:50 +04:00
setup_timer ( & timer , ep93xx_wdt_timer_ping , 1 ) ;
2012-03-13 12:06:12 +04:00
2012-03-14 21:31:50 +04:00
err = watchdog_register_device ( & ep93xx_wdt_wdd ) ;
if ( err )
return err ;
2012-03-13 12:06:12 +04:00
2012-03-14 21:31:50 +04:00
dev_info ( & pdev - > dev ,
" EP93XX watchdog, driver version " WDT_VERSION " %s \n " ,
2012-03-13 12:06:12 +04:00
( val & 0x08 ) ? " (nCS1 disable detected) " : " " ) ;
2012-03-14 21:31:50 +04:00
return 0 ;
2006-03-25 14:06:37 +03:00
}
2012-11-19 22:26:24 +04:00
static int ep93xx_wdt_remove ( struct platform_device * pdev )
2006-03-25 14:06:37 +03:00
{
2012-03-14 21:31:50 +04:00
watchdog_unregister_device ( & ep93xx_wdt_wdd ) ;
2012-03-13 02:48:16 +04:00
return 0 ;
2006-03-25 14:06:37 +03:00
}
2012-03-13 02:48:16 +04:00
static struct platform_driver ep93xx_wdt_driver = {
. driver = {
. owner = THIS_MODULE ,
. name = " ep93xx-wdt " ,
} ,
. probe = ep93xx_wdt_probe ,
2012-11-19 22:21:12 +04:00
. remove = ep93xx_wdt_remove ,
2012-03-13 02:48:16 +04:00
} ;
module_platform_driver ( ep93xx_wdt_driver ) ;
2006-03-25 14:06:37 +03:00
MODULE_AUTHOR ( " Ray Lehtiniemi <rayl@mail.com>, "
2012-03-14 21:31:50 +04:00
" Alessandro Zummo <a.zummo@towertech.it>, "
" H Hartley Sweeten <hsweeten@visionengravers.com> " ) ;
2006-03-25 14:06:37 +03:00
MODULE_DESCRIPTION ( " EP93xx Watchdog " ) ;
MODULE_LICENSE ( " GPL " ) ;
MODULE_VERSION ( WDT_VERSION ) ;