2019-05-27 09:55:01 +03:00
// SPDX-License-Identifier: GPL-2.0-or-later
2016-02-26 20:19:28 +03:00
/*
* PIC32 watchdog driver
*
* Joshua Henderson < joshua . henderson @ microchip . com >
* Copyright ( c ) 2016 , Microchip Technology Inc .
*/
# include <linux/clk.h>
# include <linux/device.h>
# include <linux/err.h>
# include <linux/io.h>
# include <linux/kernel.h>
# include <linux/module.h>
# include <linux/of.h>
# include <linux/platform_device.h>
# include <linux/pm.h>
# include <linux/watchdog.h>
# include <asm/mach-pic32/pic32.h>
/* Watchdog Timer Registers */
# define WDTCON_REG 0x00
/* Watchdog Timer Control Register fields */
# define WDTCON_WIN_EN BIT(0)
# define WDTCON_RMCS_MASK 0x0003
# define WDTCON_RMCS_SHIFT 0x0006
# define WDTCON_RMPS_MASK 0x001F
# define WDTCON_RMPS_SHIFT 0x0008
# define WDTCON_ON BIT(15)
# define WDTCON_CLR_KEY 0x5743
/* Reset Control Register fields for watchdog */
# define RESETCON_TIMEOUT_IDLE BIT(2)
# define RESETCON_TIMEOUT_SLEEP BIT(3)
# define RESETCON_WDT_TIMEOUT BIT(4)
struct pic32_wdt {
void __iomem * regs ;
void __iomem * rst_base ;
struct clk * clk ;
} ;
static inline bool pic32_wdt_is_win_enabled ( struct pic32_wdt * wdt )
{
return ! ! ( readl ( wdt - > regs + WDTCON_REG ) & WDTCON_WIN_EN ) ;
}
static inline u32 pic32_wdt_get_post_scaler ( struct pic32_wdt * wdt )
{
u32 v = readl ( wdt - > regs + WDTCON_REG ) ;
return ( v > > WDTCON_RMPS_SHIFT ) & WDTCON_RMPS_MASK ;
}
static inline u32 pic32_wdt_get_clk_id ( struct pic32_wdt * wdt )
{
u32 v = readl ( wdt - > regs + WDTCON_REG ) ;
return ( v > > WDTCON_RMCS_SHIFT ) & WDTCON_RMCS_MASK ;
}
static int pic32_wdt_bootstatus ( struct pic32_wdt * wdt )
{
u32 v = readl ( wdt - > rst_base ) ;
writel ( RESETCON_WDT_TIMEOUT , PIC32_CLR ( wdt - > rst_base ) ) ;
return v & RESETCON_WDT_TIMEOUT ;
}
static u32 pic32_wdt_get_timeout_secs ( struct pic32_wdt * wdt , struct device * dev )
{
unsigned long rate ;
u32 period , ps , terminal ;
rate = clk_get_rate ( wdt - > clk ) ;
dev_dbg ( dev , " wdt: clk_id %d, clk_rate %lu (prescale) \n " ,
pic32_wdt_get_clk_id ( wdt ) , rate ) ;
/* default, prescaler of 32 (i.e. div-by-32) is implicit. */
rate > > = 5 ;
if ( ! rate )
return 0 ;
/* calculate terminal count from postscaler. */
ps = pic32_wdt_get_post_scaler ( wdt ) ;
terminal = BIT ( ps ) ;
/* find time taken (in secs) to reach terminal count */
period = terminal / rate ;
dev_dbg ( dev ,
" wdt: clk_rate %lu (postscale) / terminal %d, timeout %dsec \n " ,
rate , terminal , period ) ;
return period ;
}
static void pic32_wdt_keepalive ( struct pic32_wdt * wdt )
{
/* write key through single half-word */
writew ( WDTCON_CLR_KEY , wdt - > regs + WDTCON_REG + 2 ) ;
}
static int pic32_wdt_start ( struct watchdog_device * wdd )
{
struct pic32_wdt * wdt = watchdog_get_drvdata ( wdd ) ;
writel ( WDTCON_ON , PIC32_SET ( wdt - > regs + WDTCON_REG ) ) ;
pic32_wdt_keepalive ( wdt ) ;
return 0 ;
}
static int pic32_wdt_stop ( struct watchdog_device * wdd )
{
struct pic32_wdt * wdt = watchdog_get_drvdata ( wdd ) ;
writel ( WDTCON_ON , PIC32_CLR ( wdt - > regs + WDTCON_REG ) ) ;
/*
* Cannot touch registers in the CPU cycle following clearing the
* ON bit .
*/
nop ( ) ;
return 0 ;
}
static int pic32_wdt_ping ( struct watchdog_device * wdd )
{
struct pic32_wdt * wdt = watchdog_get_drvdata ( wdd ) ;
pic32_wdt_keepalive ( wdt ) ;
return 0 ;
}
static const struct watchdog_ops pic32_wdt_fops = {
. owner = THIS_MODULE ,
. start = pic32_wdt_start ,
. stop = pic32_wdt_stop ,
. ping = pic32_wdt_ping ,
} ;
static const struct watchdog_info pic32_wdt_ident = {
. options = WDIOF_KEEPALIVEPING |
WDIOF_MAGICCLOSE | WDIOF_CARDRESET ,
. identity = " PIC32 Watchdog " ,
} ;
static struct watchdog_device pic32_wdd = {
. info = & pic32_wdt_ident ,
. ops = & pic32_wdt_fops ,
} ;
static const struct of_device_id pic32_wdt_dt_ids [ ] = {
{ . compatible = " microchip,pic32mzda-wdt " , } ,
{ /* sentinel */ }
} ;
MODULE_DEVICE_TABLE ( of , pic32_wdt_dt_ids ) ;
static int pic32_wdt_drv_probe ( struct platform_device * pdev )
{
2019-04-10 19:27:57 +03:00
struct device * dev = & pdev - > dev ;
2016-02-26 20:19:28 +03:00
int ret ;
struct watchdog_device * wdd = & pic32_wdd ;
struct pic32_wdt * wdt ;
2019-04-10 19:27:57 +03:00
wdt = devm_kzalloc ( dev , sizeof ( * wdt ) , GFP_KERNEL ) ;
2016-06-17 20:11:35 +03:00
if ( ! wdt )
return - ENOMEM ;
2016-02-26 20:19:28 +03: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
wdt - > regs = devm_platform_ioremap_resource ( pdev , 0 ) ;
2016-02-26 20:19:28 +03:00
if ( IS_ERR ( wdt - > regs ) )
return PTR_ERR ( wdt - > regs ) ;
2019-04-10 19:27:57 +03:00
wdt - > rst_base = devm_ioremap ( dev , PIC32_BASE_RESET , 0x10 ) ;
2016-07-19 14:21:56 +03:00
if ( ! wdt - > rst_base )
return - ENOMEM ;
2016-02-26 20:19:28 +03:00
2022-12-31 17:22:57 +03:00
wdt - > clk = devm_clk_get_enabled ( dev , NULL ) ;
2016-02-26 20:19:28 +03:00
if ( IS_ERR ( wdt - > clk ) ) {
2019-04-10 19:27:57 +03:00
dev_err ( dev , " clk not found \n " ) ;
2016-02-26 20:19:28 +03:00
return PTR_ERR ( wdt - > clk ) ;
}
if ( pic32_wdt_is_win_enabled ( wdt ) ) {
2019-04-10 19:27:57 +03:00
dev_err ( dev , " windowed-clear mode is not supported. \n " ) ;
return - ENODEV ;
2016-02-26 20:19:28 +03:00
}
2019-04-10 19:27:57 +03:00
wdd - > timeout = pic32_wdt_get_timeout_secs ( wdt , dev ) ;
2016-02-26 20:19:28 +03:00
if ( ! wdd - > timeout ) {
2019-04-10 19:27:57 +03:00
dev_err ( dev , " failed to read watchdog register timeout \n " ) ;
return - EINVAL ;
2016-02-26 20:19:28 +03:00
}
2019-04-10 19:27:57 +03:00
dev_info ( dev , " timeout %d \n " , wdd - > timeout ) ;
2016-02-26 20:19:28 +03:00
wdd - > bootstatus = pic32_wdt_bootstatus ( wdt ) ? WDIOF_CARDRESET : 0 ;
watchdog_set_nowayout ( wdd , WATCHDOG_NOWAYOUT ) ;
watchdog_set_drvdata ( wdd , wdt ) ;
2019-04-10 19:27:57 +03:00
ret = devm_watchdog_register_device ( dev , wdd ) ;
2019-05-19 00:27:46 +03:00
if ( ret )
2019-04-10 19:27:57 +03:00
return ret ;
2016-02-26 20:19:28 +03:00
platform_set_drvdata ( pdev , wdd ) ;
return 0 ;
}
static struct platform_driver pic32_wdt_driver = {
. probe = pic32_wdt_drv_probe ,
. driver = {
. name = " pic32-wdt " ,
. of_match_table = of_match_ptr ( pic32_wdt_dt_ids ) ,
}
} ;
module_platform_driver ( pic32_wdt_driver ) ;
MODULE_AUTHOR ( " Joshua Henderson <joshua.henderson@microchip.com> " ) ;
MODULE_DESCRIPTION ( " Microchip PIC32 Watchdog Timer " ) ;
MODULE_LICENSE ( " GPL " ) ;