blob: f1c016d015b3bff4297ce7d245c92f89c14239a5 [file] [log] [blame]
Jan Beulich066d6c72010-10-04 10:37:26 +01001/*
2 * Xen Watchdog Driver
3 *
4 * (c) Copyright 2010 Novell, Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Radu Rendec18cffd62017-11-15 19:34:41 +000012#define DRV_NAME "xen_wdt"
Jan Beulich066d6c72010-10-04 10:37:26 +010013
14#include <linux/bug.h>
15#include <linux/errno.h>
16#include <linux/fs.h>
17#include <linux/hrtimer.h>
18#include <linux/kernel.h>
19#include <linux/ktime.h>
20#include <linux/init.h>
Jan Beulich066d6c72010-10-04 10:37:26 +010021#include <linux/module.h>
22#include <linux/moduleparam.h>
23#include <linux/platform_device.h>
Jan Beulich066d6c72010-10-04 10:37:26 +010024#include <linux/watchdog.h>
25#include <xen/xen.h>
26#include <asm/xen/hypercall.h>
27#include <xen/interface/sched.h>
28
29static struct platform_device *platform_device;
Jan Beulich066d6c72010-10-04 10:37:26 +010030static struct sched_watchdog wdt;
Arnd Bergmannb6c84c92017-10-19 17:05:48 +020031static time64_t wdt_expires;
Jan Beulich066d6c72010-10-04 10:37:26 +010032
33#define WATCHDOG_TIMEOUT 60 /* in seconds */
Radu Rendec18cffd62017-11-15 19:34:41 +000034static unsigned int timeout;
Jan Beulich066d6c72010-10-04 10:37:26 +010035module_param(timeout, uint, S_IRUGO);
36MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds "
37 "(default=" __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
38
39static bool nowayout = WATCHDOG_NOWAYOUT;
40module_param(nowayout, bool, S_IRUGO);
41MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
42 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
43
Radu Rendec18cffd62017-11-15 19:34:41 +000044static inline time64_t set_timeout(struct watchdog_device *wdd)
Jan Beulich066d6c72010-10-04 10:37:26 +010045{
Radu Rendec18cffd62017-11-15 19:34:41 +000046 wdt.timeout = wdd->timeout;
47 return ktime_get_seconds() + wdd->timeout;
Jan Beulich066d6c72010-10-04 10:37:26 +010048}
49
Radu Rendec18cffd62017-11-15 19:34:41 +000050static int xen_wdt_start(struct watchdog_device *wdd)
Jan Beulich066d6c72010-10-04 10:37:26 +010051{
Arnd Bergmannb6c84c92017-10-19 17:05:48 +020052 time64_t expires;
Jan Beulich066d6c72010-10-04 10:37:26 +010053 int err;
54
Radu Rendec18cffd62017-11-15 19:34:41 +000055 expires = set_timeout(wdd);
Jan Beulich066d6c72010-10-04 10:37:26 +010056 if (!wdt.id)
57 err = HYPERVISOR_sched_op(SCHEDOP_watchdog, &wdt);
58 else
59 err = -EBUSY;
60 if (err > 0) {
61 wdt.id = err;
62 wdt_expires = expires;
63 err = 0;
64 } else
65 BUG_ON(!err);
66
Jan Beulich066d6c72010-10-04 10:37:26 +010067 return err;
68}
69
Radu Rendec18cffd62017-11-15 19:34:41 +000070static int xen_wdt_stop(struct watchdog_device *wdd)
Jan Beulich066d6c72010-10-04 10:37:26 +010071{
72 int err = 0;
73
Jan Beulich066d6c72010-10-04 10:37:26 +010074 wdt.timeout = 0;
75 if (wdt.id)
76 err = HYPERVISOR_sched_op(SCHEDOP_watchdog, &wdt);
77 if (!err)
78 wdt.id = 0;
79
Jan Beulich066d6c72010-10-04 10:37:26 +010080 return err;
81}
82
Radu Rendec18cffd62017-11-15 19:34:41 +000083static int xen_wdt_kick(struct watchdog_device *wdd)
Jan Beulich066d6c72010-10-04 10:37:26 +010084{
Arnd Bergmannb6c84c92017-10-19 17:05:48 +020085 time64_t expires;
Jan Beulich066d6c72010-10-04 10:37:26 +010086 int err;
87
Radu Rendec18cffd62017-11-15 19:34:41 +000088 expires = set_timeout(wdd);
Jan Beulich066d6c72010-10-04 10:37:26 +010089 if (wdt.id)
90 err = HYPERVISOR_sched_op(SCHEDOP_watchdog, &wdt);
91 else
92 err = -ENXIO;
93 if (!err)
94 wdt_expires = expires;
95
Jan Beulich066d6c72010-10-04 10:37:26 +010096 return err;
97}
98
Radu Rendec18cffd62017-11-15 19:34:41 +000099static unsigned int xen_wdt_get_timeleft(struct watchdog_device *wdd)
Jan Beulich066d6c72010-10-04 10:37:26 +0100100{
Radu Rendec18cffd62017-11-15 19:34:41 +0000101 return wdt_expires - ktime_get_seconds();
Jan Beulich066d6c72010-10-04 10:37:26 +0100102}
103
Radu Rendec18cffd62017-11-15 19:34:41 +0000104static struct watchdog_info xen_wdt_info = {
105 .identity = DRV_NAME,
106 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
Jan Beulich066d6c72010-10-04 10:37:26 +0100107};
108
Radu Rendec18cffd62017-11-15 19:34:41 +0000109static const struct watchdog_ops xen_wdt_ops = {
110 .owner = THIS_MODULE,
111 .start = xen_wdt_start,
112 .stop = xen_wdt_stop,
113 .ping = xen_wdt_kick,
114 .get_timeleft = xen_wdt_get_timeleft,
Jan Beulich066d6c72010-10-04 10:37:26 +0100115};
116
Radu Rendec18cffd62017-11-15 19:34:41 +0000117static struct watchdog_device xen_wdt_dev = {
118 .info = &xen_wdt_info,
119 .ops = &xen_wdt_ops,
120 .timeout = WATCHDOG_TIMEOUT,
121};
122
123static int xen_wdt_probe(struct platform_device *pdev)
Jan Beulich066d6c72010-10-04 10:37:26 +0100124{
125 struct sched_watchdog wd = { .id = ~0 };
126 int ret = HYPERVISOR_sched_op(SCHEDOP_watchdog, &wd);
127
Radu Rendec18cffd62017-11-15 19:34:41 +0000128 if (ret == -ENOSYS) {
129 dev_err(&pdev->dev, "watchdog not supported by hypervisor\n");
130 return -ENODEV;
Jan Beulich066d6c72010-10-04 10:37:26 +0100131 }
132
Radu Rendec18cffd62017-11-15 19:34:41 +0000133 if (ret != -EINVAL) {
134 dev_err(&pdev->dev, "unexpected hypervisor error (%d)\n", ret);
135 return -ENODEV;
136 }
Jan Beulich066d6c72010-10-04 10:37:26 +0100137
Radu Rendec18cffd62017-11-15 19:34:41 +0000138 if (watchdog_init_timeout(&xen_wdt_dev, timeout, NULL))
139 dev_info(&pdev->dev, "timeout value invalid, using %d\n",
140 xen_wdt_dev.timeout);
141 watchdog_set_nowayout(&xen_wdt_dev, nowayout);
142 watchdog_stop_on_reboot(&xen_wdt_dev);
143 watchdog_stop_on_unregister(&xen_wdt_dev);
Jan Beulich066d6c72010-10-04 10:37:26 +0100144
Radu Rendec18cffd62017-11-15 19:34:41 +0000145 ret = devm_watchdog_register_device(&pdev->dev, &xen_wdt_dev);
146 if (ret) {
147 dev_err(&pdev->dev, "cannot register watchdog device (%d)\n",
148 ret);
149 return ret;
150 }
151
152 dev_info(&pdev->dev, "initialized (timeout=%ds, nowayout=%d)\n",
153 xen_wdt_dev.timeout, nowayout);
Jan Beulich066d6c72010-10-04 10:37:26 +0100154
155 return 0;
156}
157
Jan Beulich066d6c72010-10-04 10:37:26 +0100158static int xen_wdt_suspend(struct platform_device *dev, pm_message_t state)
159{
Jan Beulich83448bf2012-03-19 09:30:33 +0000160 typeof(wdt.id) id = wdt.id;
Radu Rendec18cffd62017-11-15 19:34:41 +0000161 int rc = xen_wdt_stop(&xen_wdt_dev);
Jan Beulich83448bf2012-03-19 09:30:33 +0000162
163 wdt.id = id;
164 return rc;
Jan Beulich066d6c72010-10-04 10:37:26 +0100165}
166
167static int xen_wdt_resume(struct platform_device *dev)
168{
Jan Beulich83448bf2012-03-19 09:30:33 +0000169 if (!wdt.id)
170 return 0;
171 wdt.id = 0;
Radu Rendec18cffd62017-11-15 19:34:41 +0000172 return xen_wdt_start(&xen_wdt_dev);
Jan Beulich066d6c72010-10-04 10:37:26 +0100173}
174
175static struct platform_driver xen_wdt_driver = {
176 .probe = xen_wdt_probe,
Jan Beulich066d6c72010-10-04 10:37:26 +0100177 .suspend = xen_wdt_suspend,
178 .resume = xen_wdt_resume,
179 .driver = {
Jan Beulich066d6c72010-10-04 10:37:26 +0100180 .name = DRV_NAME,
181 },
182};
183
184static int __init xen_wdt_init_module(void)
185{
186 int err;
187
188 if (!xen_domain())
189 return -ENODEV;
190
Jan Beulich066d6c72010-10-04 10:37:26 +0100191 err = platform_driver_register(&xen_wdt_driver);
192 if (err)
193 return err;
194
195 platform_device = platform_device_register_simple(DRV_NAME,
196 -1, NULL, 0);
197 if (IS_ERR(platform_device)) {
198 err = PTR_ERR(platform_device);
199 platform_driver_unregister(&xen_wdt_driver);
200 }
201
202 return err;
203}
204
205static void __exit xen_wdt_cleanup_module(void)
206{
207 platform_device_unregister(platform_device);
208 platform_driver_unregister(&xen_wdt_driver);
Jan Beulich066d6c72010-10-04 10:37:26 +0100209}
210
211module_init(xen_wdt_init_module);
212module_exit(xen_wdt_cleanup_module);
213
214MODULE_AUTHOR("Jan Beulich <jbeulich@novell.com>");
215MODULE_DESCRIPTION("Xen WatchDog Timer Driver");
Jan Beulich066d6c72010-10-04 10:37:26 +0100216MODULE_LICENSE("GPL");