2019-06-20 19:28:46 +03:00
// SPDX-License-Identifier: GPL-2.0
2007-06-12 18:09:50 +04:00
/*
* drivers / char / watchdog / davinci_wdt . c
*
* Watchdog driver for DaVinci DM644x / DM646x processors
*
2013-12-05 15:26:24 +04:00
* Copyright ( C ) 2006 - 2013 Texas Instruments .
2007-06-12 18:09:50 +04:00
*
2019-06-20 19:28:46 +03:00
* 2007 ( c ) MontaVista Software , Inc .
2007-06-12 18:09:50 +04:00
*/
# include <linux/module.h>
# include <linux/moduleparam.h>
2018-06-20 08:47:28 +03:00
# include <linux/mod_devicetable.h>
2007-06-12 18:09:50 +04:00
# include <linux/types.h>
# include <linux/kernel.h>
# include <linux/watchdog.h>
# include <linux/platform_device.h>
2008-05-19 17:05:30 +04:00
# include <linux/io.h>
2009-01-30 01:14:30 +03:00
# include <linux/device.h>
2009-02-11 07:30:37 +03:00
# include <linux/clk.h>
2013-03-04 09:06:41 +04:00
# include <linux/err.h>
2007-06-12 18:09:50 +04:00
# define MODULE_NAME "DAVINCI-WDT: "
# define DEFAULT_HEARTBEAT 60
# define MAX_HEARTBEAT 600 /* really the max margin is 264/27MHz*/
/* Timer register set definition */
# define PID12 (0x0)
# define EMUMGT (0x4)
# define TIM12 (0x10)
# define TIM34 (0x14)
# define PRD12 (0x18)
# define PRD34 (0x1C)
# define TCR (0x20)
# define TGCR (0x24)
# define WDTCR (0x28)
/* TCR bit definitions */
# define ENAMODE12_DISABLED (0 << 6)
# define ENAMODE12_ONESHOT (1 << 6)
# define ENAMODE12_PERIODIC (2 << 6)
/* TGCR bit definitions */
# define TIM12RS_UNRESET (1 << 0)
# define TIM34RS_UNRESET (1 << 1)
# define TIMMODE_64BIT_WDOG (2 << 2)
/* WDTCR bit definitions */
# define WDEN (1 << 14)
# define WDFLAG (1 << 15)
# define WDKEY_SEQ0 (0xa5c6 << 16)
# define WDKEY_SEQ1 (0xda7e << 16)
2013-12-05 15:26:24 +04:00
static int heartbeat ;
2013-12-04 23:39:27 +04:00
/*
* struct to hold data for each WDT device
* @ base - base io address of WD device
* @ clk - source clock of WDT
* @ wdd - hold watchdog device as is in WDT core
*/
struct davinci_wdt_device {
void __iomem * base ;
struct clk * clk ;
struct watchdog_device wdd ;
} ;
2007-06-12 18:09:50 +04:00
2013-12-05 15:26:24 +04:00
static int davinci_wdt_start ( struct watchdog_device * wdd )
2007-06-12 18:09:50 +04:00
{
u32 tgcr ;
u32 timer_margin ;
2009-02-11 07:30:37 +03:00
unsigned long wdt_freq ;
2013-12-04 23:39:27 +04:00
struct davinci_wdt_device * davinci_wdt = watchdog_get_drvdata ( wdd ) ;
2009-02-11 07:30:37 +03:00
2013-12-04 23:39:27 +04:00
wdt_freq = clk_get_rate ( davinci_wdt - > clk ) ;
2007-06-12 18:09:50 +04:00
/* disable, internal clock source */
2013-12-04 23:39:27 +04:00
iowrite32 ( 0 , davinci_wdt - > base + TCR ) ;
2007-06-12 18:09:50 +04:00
/* reset timer, set mode to 64-bit watchdog, and unreset */
2013-12-04 23:39:27 +04:00
iowrite32 ( 0 , davinci_wdt - > base + TGCR ) ;
2007-06-12 18:09:50 +04:00
tgcr = TIMMODE_64BIT_WDOG | TIM12RS_UNRESET | TIM34RS_UNRESET ;
2013-12-04 23:39:27 +04:00
iowrite32 ( tgcr , davinci_wdt - > base + TGCR ) ;
2007-06-12 18:09:50 +04:00
/* clear counter regs */
2013-12-04 23:39:27 +04:00
iowrite32 ( 0 , davinci_wdt - > base + TIM12 ) ;
iowrite32 ( 0 , davinci_wdt - > base + TIM34 ) ;
2007-06-12 18:09:50 +04:00
/* set timeout period */
2013-12-05 15:26:24 +04:00
timer_margin = ( ( ( u64 ) wdd - > timeout * wdt_freq ) & 0xffffffff ) ;
2013-12-04 23:39:27 +04:00
iowrite32 ( timer_margin , davinci_wdt - > base + PRD12 ) ;
2013-12-05 15:26:24 +04:00
timer_margin = ( ( ( u64 ) wdd - > timeout * wdt_freq ) > > 32 ) ;
2013-12-04 23:39:27 +04:00
iowrite32 ( timer_margin , davinci_wdt - > base + PRD34 ) ;
2007-06-12 18:09:50 +04:00
/* enable run continuously */
2013-12-04 23:39:27 +04:00
iowrite32 ( ENAMODE12_PERIODIC , davinci_wdt - > base + TCR ) ;
2007-06-12 18:09:50 +04:00
/* Once the WDT is in pre-active state write to
* TIM12 , TIM34 , PRD12 , PRD34 , TCR , TGCR , WDTCR are
* write protected ( except for the WDKEY field )
*/
/* put watchdog in pre-active state */
2013-12-04 23:39:27 +04:00
iowrite32 ( WDKEY_SEQ0 | WDEN , davinci_wdt - > base + WDTCR ) ;
2007-06-12 18:09:50 +04:00
/* put watchdog in active state */
2013-12-04 23:39:27 +04:00
iowrite32 ( WDKEY_SEQ1 | WDEN , davinci_wdt - > base + WDTCR ) ;
2013-12-05 15:26:24 +04:00
return 0 ;
2007-06-12 18:09:50 +04:00
}
2013-12-05 15:26:24 +04:00
static int davinci_wdt_ping ( struct watchdog_device * wdd )
2007-06-12 18:09:50 +04:00
{
2013-12-04 23:39:27 +04:00
struct davinci_wdt_device * davinci_wdt = watchdog_get_drvdata ( wdd ) ;
2013-12-05 15:26:24 +04:00
/* put watchdog in service state */
2013-12-04 23:39:27 +04:00
iowrite32 ( WDKEY_SEQ0 , davinci_wdt - > base + WDTCR ) ;
2013-12-05 15:26:24 +04:00
/* put watchdog in active state */
2013-12-04 23:39:27 +04:00
iowrite32 ( WDKEY_SEQ1 , davinci_wdt - > base + WDTCR ) ;
2013-12-05 15:26:24 +04:00
return 0 ;
2007-06-12 18:09:50 +04:00
}
2013-12-04 23:39:28 +04:00
static unsigned int davinci_wdt_get_timeleft ( struct watchdog_device * wdd )
{
u64 timer_counter ;
unsigned long freq ;
u32 val ;
struct davinci_wdt_device * davinci_wdt = watchdog_get_drvdata ( wdd ) ;
/* if timeout has occured then return 0 */
val = ioread32 ( davinci_wdt - > base + WDTCR ) ;
if ( val & WDFLAG )
return 0 ;
freq = clk_get_rate ( davinci_wdt - > clk ) ;
if ( ! freq )
return 0 ;
timer_counter = ioread32 ( davinci_wdt - > base + TIM12 ) ;
timer_counter | = ( ( u64 ) ioread32 ( davinci_wdt - > base + TIM34 ) < < 32 ) ;
do_div ( timer_counter , freq ) ;
return wdd - > timeout - timer_counter ;
}
2017-12-11 20:21:08 +03:00
static int davinci_wdt_restart ( struct watchdog_device * wdd ,
unsigned long action , void * data )
{
struct davinci_wdt_device * davinci_wdt = watchdog_get_drvdata ( wdd ) ;
u32 tgcr , wdtcr ;
/* disable, internal clock source */
iowrite32 ( 0 , davinci_wdt - > base + TCR ) ;
/* reset timer, set mode to 64-bit watchdog, and unreset */
tgcr = 0 ;
iowrite32 ( tgcr , davinci_wdt - > base + TGCR ) ;
tgcr = TIMMODE_64BIT_WDOG | TIM12RS_UNRESET | TIM34RS_UNRESET ;
iowrite32 ( tgcr , davinci_wdt - > base + TGCR ) ;
/* clear counter and period regs */
iowrite32 ( 0 , davinci_wdt - > base + TIM12 ) ;
iowrite32 ( 0 , davinci_wdt - > base + TIM34 ) ;
iowrite32 ( 0 , davinci_wdt - > base + PRD12 ) ;
iowrite32 ( 0 , davinci_wdt - > base + PRD34 ) ;
/* put watchdog in pre-active state */
wdtcr = WDKEY_SEQ0 | WDEN ;
iowrite32 ( wdtcr , davinci_wdt - > base + WDTCR ) ;
/* put watchdog in active state */
wdtcr = WDKEY_SEQ1 | WDEN ;
iowrite32 ( wdtcr , davinci_wdt - > base + WDTCR ) ;
/* write an invalid value to the WDKEY field to trigger a restart */
wdtcr = 0x00004000 ;
iowrite32 ( wdtcr , davinci_wdt - > base + WDTCR ) ;
return 0 ;
}
2013-12-05 15:26:24 +04:00
static const struct watchdog_info davinci_wdt_info = {
2007-07-21 01:47:55 +04:00
. options = WDIOF_KEEPALIVEPING ,
2013-12-04 23:39:30 +04:00
. identity = " DaVinci/Keystone Watchdog " ,
2007-06-12 18:09:50 +04:00
} ;
2013-12-05 15:26:24 +04:00
static const struct watchdog_ops davinci_wdt_ops = {
. owner = THIS_MODULE ,
. start = davinci_wdt_start ,
. stop = davinci_wdt_ping ,
. ping = davinci_wdt_ping ,
2013-12-04 23:39:28 +04:00
. get_timeleft = davinci_wdt_get_timeleft ,
2017-12-11 20:21:08 +03:00
. restart = davinci_wdt_restart ,
2007-06-12 18:09:50 +04:00
} ;
2019-04-08 22:38:37 +03:00
static void davinci_clk_disable_unprepare ( void * data )
{
clk_disable_unprepare ( data ) ;
}
2012-11-19 22:21:41 +04:00
static int davinci_wdt_probe ( struct platform_device * pdev )
2007-06-12 18:09:50 +04:00
{
2013-02-08 11:39:30 +04:00
int ret = 0 ;
2009-01-30 01:14:30 +03:00
struct device * dev = & pdev - > dev ;
2013-12-05 15:26:24 +04:00
struct watchdog_device * wdd ;
2013-12-04 23:39:27 +04:00
struct davinci_wdt_device * davinci_wdt ;
davinci_wdt = devm_kzalloc ( dev , sizeof ( * davinci_wdt ) , GFP_KERNEL ) ;
if ( ! davinci_wdt )
return - ENOMEM ;
2007-06-12 18:09:50 +04:00
2013-12-04 23:39:27 +04:00
davinci_wdt - > clk = devm_clk_get ( dev , NULL ) ;
2016-11-24 15:58:28 +03:00
if ( IS_ERR ( davinci_wdt - > clk ) ) {
if ( PTR_ERR ( davinci_wdt - > clk ) ! = - EPROBE_DEFER )
2019-04-08 22:38:37 +03:00
dev_err ( dev , " failed to get clock node \n " ) ;
2013-12-04 23:39:27 +04:00
return PTR_ERR ( davinci_wdt - > clk ) ;
2016-11-24 15:58:28 +03:00
}
2009-02-11 07:30:37 +03:00
2017-06-06 13:17:53 +03:00
ret = clk_prepare_enable ( davinci_wdt - > clk ) ;
if ( ret ) {
2019-04-08 22:38:37 +03:00
dev_err ( dev , " failed to prepare clock \n " ) ;
2017-06-06 13:17:53 +03:00
return ret ;
}
2019-04-08 22:38:37 +03:00
ret = devm_add_action_or_reset ( dev , davinci_clk_disable_unprepare ,
davinci_wdt - > clk ) ;
if ( ret )
return ret ;
2009-02-11 07:30:37 +03:00
2013-12-04 23:39:27 +04:00
platform_set_drvdata ( pdev , davinci_wdt ) ;
wdd = & davinci_wdt - > wdd ;
2013-12-05 15:26:24 +04:00
wdd - > info = & davinci_wdt_info ;
wdd - > ops = & davinci_wdt_ops ;
wdd - > min_timeout = 1 ;
wdd - > max_timeout = MAX_HEARTBEAT ;
wdd - > timeout = DEFAULT_HEARTBEAT ;
2019-04-08 22:38:37 +03:00
wdd - > parent = dev ;
2013-12-05 15:26:24 +04:00
watchdog_init_timeout ( wdd , heartbeat , dev ) ;
dev_info ( dev , " heartbeat %d sec \n " , wdd - > timeout ) ;
2007-06-12 18:09:50 +04:00
2013-12-04 23:39:27 +04:00
watchdog_set_drvdata ( wdd , davinci_wdt ) ;
2013-12-05 15:26:24 +04:00
watchdog_set_nowayout ( wdd , 1 ) ;
2017-12-11 20:21:08 +03:00
watchdog_set_restart_priority ( wdd , 128 ) ;
2007-06-12 18:09:50 +04:00
watchdog: Convert to use devm_platform_ioremap_resource
Use devm_platform_ioremap_resource to reduce source code size,
improve readability, and reduce the likelyhood of bugs.
The conversion was done automatically with coccinelle using the
following semantic patch.
@r@
identifier res, pdev;
expression a;
expression index;
expression e;
@@
<+...
- res = platform_get_resource(pdev, IORESOURCE_MEM, index);
- a = devm_ioremap_resource(e, res);
+ a = devm_platform_ioremap_resource(pdev, index);
...+>
@depends on r@
identifier r.res;
@@
- struct resource *res;
... when != res
@@
identifier res, pdev;
expression index;
expression a;
@@
- struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, index);
- a = devm_ioremap_resource(&pdev->dev, res);
+ a = devm_platform_ioremap_resource(pdev, index);
Cc: Joel Stanley <joel@jms.id.au>
Cc: Nicolas Ferre <nicolas.ferre@microchip.com>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Baruch Siach <baruch@tkos.co.il>
Cc: Keguang Zhang <keguang.zhang@gmail.com>
Cc: Vladimir Zapolskiy <vz@mleia.com>
Cc: Kevin Hilman <khilman@baylibre.com>
Cc: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Avi Fishman <avifishman70@gmail.com>
Cc: Nancy Yuen <yuenn@google.com>
Cc: Brendan Higgins <brendanhiggins@google.com>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Sylvain Lemieux <slemieux.tyco@gmail.com>
Cc: Kukjin Kim <kgene@kernel.org>
Cc: Barry Song <baohua@kernel.org>
Cc: Orson Zhai <orsonzhai@gmail.com>
Cc: Patrice Chotard <patrice.chotard@st.com>
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Cc: Maxime Ripard <maxime.ripard@bootlin.com>
Cc: Chen-Yu Tsai <wens@csie.org>
Cc: Marc Gonzalez <marc.w.gonzalez@free.fr>
Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Tested-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Acked-by: Joel Stanley <joel@jms.id.au>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Acked-by: Michal Simek <michal.simek@xilinx.com> (cadence/xilinx wdts)
Acked-by: Thierry Reding <treding@nvidia.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Acked-by: Patrice Chotard <patrice.chotard@st.com>
Acked-by: Vladimir Zapolskiy <vz@mleia.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
2019-04-02 22:01:53 +03:00
davinci_wdt - > base = devm_platform_ioremap_resource ( pdev , 0 ) ;
2019-04-08 22:38:37 +03:00
if ( IS_ERR ( davinci_wdt - > base ) )
return PTR_ERR ( davinci_wdt - > base ) ;
2007-06-12 18:09:50 +04:00
2019-05-19 00:27:25 +03:00
return devm_watchdog_register_device ( dev , wdd ) ;
2007-06-12 18:09:50 +04:00
}
2012-11-27 01:41:35 +04:00
static const struct of_device_id davinci_wdt_of_match [ ] = {
{ . compatible = " ti,davinci-wdt " , } ,
{ } ,
} ;
MODULE_DEVICE_TABLE ( of , davinci_wdt_of_match ) ;
2007-06-12 18:09:50 +04:00
static struct platform_driver platform_wdt_driver = {
. driver = {
2013-11-27 17:31:53 +04:00
. name = " davinci-wdt " ,
2012-11-27 01:41:35 +04:00
. of_match_table = davinci_wdt_of_match ,
2007-06-12 18:09:50 +04:00
} ,
. probe = davinci_wdt_probe ,
} ;
2011-11-29 09:56:27 +04:00
module_platform_driver ( platform_wdt_driver ) ;
2007-06-12 18:09:50 +04:00
MODULE_AUTHOR ( " Texas Instruments " ) ;
MODULE_DESCRIPTION ( " DaVinci Watchdog Driver " ) ;
module_param ( heartbeat , int , 0 ) ;
MODULE_PARM_DESC ( heartbeat ,
" Watchdog heartbeat period in seconds from 1 to "
__MODULE_STRING ( MAX_HEARTBEAT ) " , default "
__MODULE_STRING ( DEFAULT_HEARTBEAT ) ) ;
MODULE_LICENSE ( " GPL " ) ;
2013-11-27 17:31:53 +04:00
MODULE_ALIAS ( " platform:davinci-wdt " ) ;