2 * Watchdog driver for the RTC based watchdog in STMP3xxx and i.MX23/28
4 * Author: Wolfram Sang <kernel@pengutronix.de>
6 * Copyright (C) 2011-12 Wolfram Sang, Pengutronix
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/watchdog.h>
15 #include <linux/platform_device.h>
16 #include <linux/stmp3xxx_rtc_wdt.h>
17 #include <linux/notifier.h>
18 #include <linux/reboot.h>
20 #define WDOG_TICK_RATE 1000 /* 1 kHz clock */
21 #define STMP3XXX_DEFAULT_TIMEOUT 19
22 #define STMP3XXX_MAX_TIMEOUT (UINT_MAX / WDOG_TICK_RATE)
24 static int heartbeat
= STMP3XXX_DEFAULT_TIMEOUT
;
25 module_param(heartbeat
, uint
, 0);
26 MODULE_PARM_DESC(heartbeat
, "Watchdog heartbeat period in seconds from 1 to "
27 __MODULE_STRING(STMP3XXX_MAX_TIMEOUT
) ", default "
28 __MODULE_STRING(STMP3XXX_DEFAULT_TIMEOUT
));
30 static int wdt_start(struct watchdog_device
*wdd
)
32 struct device
*dev
= watchdog_get_drvdata(wdd
);
33 struct stmp3xxx_wdt_pdata
*pdata
= dev_get_platdata(dev
);
35 pdata
->wdt_set_timeout(dev
->parent
, wdd
->timeout
* WDOG_TICK_RATE
);
39 static int wdt_stop(struct watchdog_device
*wdd
)
41 struct device
*dev
= watchdog_get_drvdata(wdd
);
42 struct stmp3xxx_wdt_pdata
*pdata
= dev_get_platdata(dev
);
44 pdata
->wdt_set_timeout(dev
->parent
, 0);
48 static int wdt_set_timeout(struct watchdog_device
*wdd
, unsigned new_timeout
)
50 wdd
->timeout
= new_timeout
;
51 return wdt_start(wdd
);
54 static const struct watchdog_info stmp3xxx_wdt_ident
= {
55 .options
= WDIOF_MAGICCLOSE
| WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
,
56 .identity
= "STMP3XXX RTC Watchdog",
59 static const struct watchdog_ops stmp3xxx_wdt_ops
= {
63 .set_timeout
= wdt_set_timeout
,
66 static struct watchdog_device stmp3xxx_wdd
= {
67 .info
= &stmp3xxx_wdt_ident
,
68 .ops
= &stmp3xxx_wdt_ops
,
70 .max_timeout
= STMP3XXX_MAX_TIMEOUT
,
71 .status
= WATCHDOG_NOWAYOUT_INIT_STATUS
,
74 static int wdt_notify_sys(struct notifier_block
*nb
, unsigned long code
,
78 case SYS_DOWN
: /* keep enabled, system might crash while going down */
80 case SYS_HALT
: /* allow the system to actually halt */
82 wdt_stop(&stmp3xxx_wdd
);
89 static struct notifier_block wdt_notifier
= {
90 .notifier_call
= wdt_notify_sys
,
93 static int stmp3xxx_wdt_probe(struct platform_device
*pdev
)
97 watchdog_set_drvdata(&stmp3xxx_wdd
, &pdev
->dev
);
99 stmp3xxx_wdd
.timeout
= clamp_t(unsigned, heartbeat
, 1, STMP3XXX_MAX_TIMEOUT
);
100 stmp3xxx_wdd
.parent
= &pdev
->dev
;
102 ret
= watchdog_register_device(&stmp3xxx_wdd
);
104 dev_err(&pdev
->dev
, "cannot register watchdog device\n");
108 if (register_reboot_notifier(&wdt_notifier
))
109 dev_warn(&pdev
->dev
, "cannot register reboot notifier\n");
111 dev_info(&pdev
->dev
, "initialized watchdog with heartbeat %ds\n",
112 stmp3xxx_wdd
.timeout
);
116 static int stmp3xxx_wdt_remove(struct platform_device
*pdev
)
118 unregister_reboot_notifier(&wdt_notifier
);
119 watchdog_unregister_device(&stmp3xxx_wdd
);
123 static int __maybe_unused
stmp3xxx_wdt_suspend(struct device
*dev
)
125 struct watchdog_device
*wdd
= &stmp3xxx_wdd
;
127 if (watchdog_active(wdd
))
128 return wdt_stop(wdd
);
133 static int __maybe_unused
stmp3xxx_wdt_resume(struct device
*dev
)
135 struct watchdog_device
*wdd
= &stmp3xxx_wdd
;
137 if (watchdog_active(wdd
))
138 return wdt_start(wdd
);
143 static SIMPLE_DEV_PM_OPS(stmp3xxx_wdt_pm_ops
,
144 stmp3xxx_wdt_suspend
, stmp3xxx_wdt_resume
);
146 static struct platform_driver stmp3xxx_wdt_driver
= {
148 .name
= "stmp3xxx_rtc_wdt",
149 .pm
= &stmp3xxx_wdt_pm_ops
,
151 .probe
= stmp3xxx_wdt_probe
,
152 .remove
= stmp3xxx_wdt_remove
,
154 module_platform_driver(stmp3xxx_wdt_driver
);
156 MODULE_DESCRIPTION("STMP3XXX RTC Watchdog Driver");
157 MODULE_LICENSE("GPL v2");
158 MODULE_AUTHOR("Wolfram Sang <kernel@pengutronix.de>");