Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * NANO7240 SBC Watchdog device driver
4 *
5 * Based on w83877f.c by Scott Jennings,
6 *
7 * (c) Copyright 2007 Gilles GIGAN <gilles.gigan@jcu.edu.au>
8 */
9
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
12#include <linux/fs.h>
13#include <linux/init.h>
14#include <linux/ioport.h>
15#include <linux/jiffies.h>
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/miscdevice.h>
19#include <linux/notifier.h>
20#include <linux/reboot.h>
21#include <linux/types.h>
22#include <linux/watchdog.h>
23#include <linux/io.h>
24#include <linux/uaccess.h>
25#include <linux/atomic.h>
26
27#define SBC7240_ENABLE_PORT 0x443
28#define SBC7240_DISABLE_PORT 0x043
29#define SBC7240_SET_TIMEOUT_PORT SBC7240_ENABLE_PORT
30#define SBC7240_MAGIC_CHAR 'V'
31
32#define SBC7240_TIMEOUT 30
33#define SBC7240_MAX_TIMEOUT 255
34static int timeout = SBC7240_TIMEOUT; /* in seconds */
35module_param(timeout, int, 0);
36MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. (1<=timeout<="
37 __MODULE_STRING(SBC7240_MAX_TIMEOUT) ", default="
38 __MODULE_STRING(SBC7240_TIMEOUT) ")");
39
40static bool nowayout = WATCHDOG_NOWAYOUT;
41module_param(nowayout, bool, 0);
42MODULE_PARM_DESC(nowayout, "Disable watchdog when closing device file");
43
44#define SBC7240_OPEN_STATUS_BIT 0
45#define SBC7240_ENABLED_STATUS_BIT 1
46#define SBC7240_EXPECT_CLOSE_STATUS_BIT 2
47static unsigned long wdt_status;
48
49/*
50 * Utility routines
51 */
52
53static void wdt_disable(void)
54{
55 /* disable the watchdog */
56 if (test_and_clear_bit(SBC7240_ENABLED_STATUS_BIT, &wdt_status)) {
57 inb_p(SBC7240_DISABLE_PORT);
58 pr_info("Watchdog timer is now disabled\n");
59 }
60}
61
62static void wdt_enable(void)
63{
64 /* enable the watchdog */
65 if (!test_and_set_bit(SBC7240_ENABLED_STATUS_BIT, &wdt_status)) {
66 inb_p(SBC7240_ENABLE_PORT);
67 pr_info("Watchdog timer is now enabled\n");
68 }
69}
70
71static int wdt_set_timeout(int t)
72{
73 if (t < 1 || t > SBC7240_MAX_TIMEOUT) {
74 pr_err("timeout value must be 1<=x<=%d\n", SBC7240_MAX_TIMEOUT);
75 return -1;
76 }
77 /* set the timeout */
78 outb_p((unsigned)t, SBC7240_SET_TIMEOUT_PORT);
79 timeout = t;
80 pr_info("timeout set to %d seconds\n", t);
81 return 0;
82}
83
84/* Whack the dog */
85static inline void wdt_keepalive(void)
86{
87 if (test_bit(SBC7240_ENABLED_STATUS_BIT, &wdt_status))
88 inb_p(SBC7240_ENABLE_PORT);
89}
90
91/*
92 * /dev/watchdog handling
93 */
94static ssize_t fop_write(struct file *file, const char __user *buf,
95 size_t count, loff_t *ppos)
96{
97 size_t i;
98 char c;
99
100 if (count) {
101 if (!nowayout) {
102 clear_bit(SBC7240_EXPECT_CLOSE_STATUS_BIT,
103 &wdt_status);
104
105 /* is there a magic char ? */
106 for (i = 0; i != count; i++) {
107 if (get_user(c, buf + i))
108 return -EFAULT;
109 if (c == SBC7240_MAGIC_CHAR) {
110 set_bit(SBC7240_EXPECT_CLOSE_STATUS_BIT,
111 &wdt_status);
112 break;
113 }
114 }
115 }
116
117 wdt_keepalive();
118 }
119
120 return count;
121}
122
123static int fop_open(struct inode *inode, struct file *file)
124{
125 if (test_and_set_bit(SBC7240_OPEN_STATUS_BIT, &wdt_status))
126 return -EBUSY;
127
128 wdt_enable();
129
130 return stream_open(inode, file);
131}
132
133static int fop_close(struct inode *inode, struct file *file)
134{
135 if (test_and_clear_bit(SBC7240_EXPECT_CLOSE_STATUS_BIT, &wdt_status)
136 || !nowayout) {
137 wdt_disable();
138 } else {
139 pr_crit("Unexpected close, not stopping watchdog!\n");
140 wdt_keepalive();
141 }
142
143 clear_bit(SBC7240_OPEN_STATUS_BIT, &wdt_status);
144 return 0;
145}
146
147static const struct watchdog_info ident = {
148 .options = WDIOF_KEEPALIVEPING|
149 WDIOF_SETTIMEOUT|
150 WDIOF_MAGICCLOSE,
151 .firmware_version = 1,
152 .identity = "SBC7240",
153};
154
155
156static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
157{
158 switch (cmd) {
159 case WDIOC_GETSUPPORT:
160 return copy_to_user((void __user *)arg, &ident, sizeof(ident))
161 ? -EFAULT : 0;
162 case WDIOC_GETSTATUS:
163 case WDIOC_GETBOOTSTATUS:
164 return put_user(0, (int __user *)arg);
165 case WDIOC_SETOPTIONS:
166 {
167 int options;
168 int retval = -EINVAL;
169
170 if (get_user(options, (int __user *)arg))
171 return -EFAULT;
172
173 if (options & WDIOS_DISABLECARD) {
174 wdt_disable();
175 retval = 0;
176 }
177
178 if (options & WDIOS_ENABLECARD) {
179 wdt_enable();
180 retval = 0;
181 }
182
183 return retval;
184 }
185 case WDIOC_KEEPALIVE:
186 wdt_keepalive();
187 return 0;
188 case WDIOC_SETTIMEOUT:
189 {
190 int new_timeout;
191
192 if (get_user(new_timeout, (int __user *)arg))
193 return -EFAULT;
194
195 if (wdt_set_timeout(new_timeout))
196 return -EINVAL;
197 }
198 fallthrough;
199 case WDIOC_GETTIMEOUT:
200 return put_user(timeout, (int __user *)arg);
201 default:
202 return -ENOTTY;
203 }
204}
205
206static const struct file_operations wdt_fops = {
207 .owner = THIS_MODULE,
208 .llseek = no_llseek,
209 .write = fop_write,
210 .open = fop_open,
211 .release = fop_close,
212 .unlocked_ioctl = fop_ioctl,
213 .compat_ioctl = compat_ptr_ioctl,
214};
215
216static struct miscdevice wdt_miscdev = {
217 .minor = WATCHDOG_MINOR,
218 .name = "watchdog",
219 .fops = &wdt_fops,
220};
221
222/*
223 * Notifier for system down
224 */
225
226static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
227 void *unused)
228{
229 if (code == SYS_DOWN || code == SYS_HALT)
230 wdt_disable();
231 return NOTIFY_DONE;
232}
233
234static struct notifier_block wdt_notifier = {
235 .notifier_call = wdt_notify_sys,
236};
237
238static void __exit sbc7240_wdt_unload(void)
239{
240 pr_info("Removing watchdog\n");
241 misc_deregister(&wdt_miscdev);
242
243 unregister_reboot_notifier(&wdt_notifier);
244 release_region(SBC7240_ENABLE_PORT, 1);
245}
246
247static int __init sbc7240_wdt_init(void)
248{
249 int rc = -EBUSY;
250
251 if (!request_region(SBC7240_ENABLE_PORT, 1, "SBC7240 WDT")) {
252 pr_err("I/O address 0x%04x already in use\n",
253 SBC7240_ENABLE_PORT);
254 rc = -EIO;
255 goto err_out;
256 }
257
258 /* The IO port 0x043 used to disable the watchdog
259 * is already claimed by the system timer, so we
260 * can't request_region() it ...*/
261
262 if (timeout < 1 || timeout > SBC7240_MAX_TIMEOUT) {
263 timeout = SBC7240_TIMEOUT;
264 pr_info("timeout value must be 1<=x<=%d, using %d\n",
265 SBC7240_MAX_TIMEOUT, timeout);
266 }
267 wdt_set_timeout(timeout);
268 wdt_disable();
269
270 rc = register_reboot_notifier(&wdt_notifier);
271 if (rc) {
272 pr_err("cannot register reboot notifier (err=%d)\n", rc);
273 goto err_out_region;
274 }
275
276 rc = misc_register(&wdt_miscdev);
277 if (rc) {
278 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
279 wdt_miscdev.minor, rc);
280 goto err_out_reboot_notifier;
281 }
282
283 pr_info("Watchdog driver for SBC7240 initialised (nowayout=%d)\n",
284 nowayout);
285
286 return 0;
287
288err_out_reboot_notifier:
289 unregister_reboot_notifier(&wdt_notifier);
290err_out_region:
291 release_region(SBC7240_ENABLE_PORT, 1);
292err_out:
293 return rc;
294}
295
296module_init(sbc7240_wdt_init);
297module_exit(sbc7240_wdt_unload);
298
299MODULE_AUTHOR("Gilles Gigan");
300MODULE_DESCRIPTION("Watchdog device driver for single board"
301 " computers EPIC Nano 7240 from iEi");
302MODULE_LICENSE("GPL");
1/*
2 * NANO7240 SBC Watchdog device driver
3 *
4 * Based on w83877f.c by Scott Jennings,
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation;
9 *
10 * Software distributed under the License is distributed on an "AS IS"
11 * basis, WITHOUT WARRANTY OF ANY KIND, either express or
12 * implied. See the License for the specific language governing
13 * rights and limitations under the License.
14 *
15 * (c) Copyright 2007 Gilles GIGAN <gilles.gigan@jcu.edu.au>
16 *
17 */
18
19#include <linux/fs.h>
20#include <linux/init.h>
21#include <linux/ioport.h>
22#include <linux/jiffies.h>
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/miscdevice.h>
26#include <linux/notifier.h>
27#include <linux/reboot.h>
28#include <linux/types.h>
29#include <linux/watchdog.h>
30#include <linux/io.h>
31#include <linux/uaccess.h>
32#include <linux/atomic.h>
33#include <asm/system.h>
34
35#define SBC7240_PREFIX "sbc7240_wdt: "
36
37#define SBC7240_ENABLE_PORT 0x443
38#define SBC7240_DISABLE_PORT 0x043
39#define SBC7240_SET_TIMEOUT_PORT SBC7240_ENABLE_PORT
40#define SBC7240_MAGIC_CHAR 'V'
41
42#define SBC7240_TIMEOUT 30
43#define SBC7240_MAX_TIMEOUT 255
44static int timeout = SBC7240_TIMEOUT; /* in seconds */
45module_param(timeout, int, 0);
46MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. (1<=timeout<="
47 __MODULE_STRING(SBC7240_MAX_TIMEOUT) ", default="
48 __MODULE_STRING(SBC7240_TIMEOUT) ")");
49
50static int nowayout = WATCHDOG_NOWAYOUT;
51module_param(nowayout, int, 0);
52MODULE_PARM_DESC(nowayout, "Disable watchdog when closing device file");
53
54#define SBC7240_OPEN_STATUS_BIT 0
55#define SBC7240_ENABLED_STATUS_BIT 1
56#define SBC7240_EXPECT_CLOSE_STATUS_BIT 2
57static unsigned long wdt_status;
58
59/*
60 * Utility routines
61 */
62
63static void wdt_disable(void)
64{
65 /* disable the watchdog */
66 if (test_and_clear_bit(SBC7240_ENABLED_STATUS_BIT, &wdt_status)) {
67 inb_p(SBC7240_DISABLE_PORT);
68 printk(KERN_INFO SBC7240_PREFIX
69 "Watchdog timer is now disabled.\n");
70 }
71}
72
73static void wdt_enable(void)
74{
75 /* enable the watchdog */
76 if (!test_and_set_bit(SBC7240_ENABLED_STATUS_BIT, &wdt_status)) {
77 inb_p(SBC7240_ENABLE_PORT);
78 printk(KERN_INFO SBC7240_PREFIX
79 "Watchdog timer is now enabled.\n");
80 }
81}
82
83static int wdt_set_timeout(int t)
84{
85 if (t < 1 || t > SBC7240_MAX_TIMEOUT) {
86 printk(KERN_ERR SBC7240_PREFIX
87 "timeout value must be 1<=x<=%d\n",
88 SBC7240_MAX_TIMEOUT);
89 return -1;
90 }
91 /* set the timeout */
92 outb_p((unsigned)t, SBC7240_SET_TIMEOUT_PORT);
93 timeout = t;
94 printk(KERN_INFO SBC7240_PREFIX "timeout set to %d seconds\n", t);
95 return 0;
96}
97
98/* Whack the dog */
99static inline void wdt_keepalive(void)
100{
101 if (test_bit(SBC7240_ENABLED_STATUS_BIT, &wdt_status))
102 inb_p(SBC7240_ENABLE_PORT);
103}
104
105/*
106 * /dev/watchdog handling
107 */
108static ssize_t fop_write(struct file *file, const char __user *buf,
109 size_t count, loff_t *ppos)
110{
111 size_t i;
112 char c;
113
114 if (count) {
115 if (!nowayout) {
116 clear_bit(SBC7240_EXPECT_CLOSE_STATUS_BIT,
117 &wdt_status);
118
119 /* is there a magic char ? */
120 for (i = 0; i != count; i++) {
121 if (get_user(c, buf + i))
122 return -EFAULT;
123 if (c == SBC7240_MAGIC_CHAR) {
124 set_bit(SBC7240_EXPECT_CLOSE_STATUS_BIT,
125 &wdt_status);
126 break;
127 }
128 }
129 }
130
131 wdt_keepalive();
132 }
133
134 return count;
135}
136
137static int fop_open(struct inode *inode, struct file *file)
138{
139 if (test_and_set_bit(SBC7240_OPEN_STATUS_BIT, &wdt_status))
140 return -EBUSY;
141
142 wdt_enable();
143
144 return nonseekable_open(inode, file);
145}
146
147static int fop_close(struct inode *inode, struct file *file)
148{
149 if (test_and_clear_bit(SBC7240_EXPECT_CLOSE_STATUS_BIT, &wdt_status)
150 || !nowayout) {
151 wdt_disable();
152 } else {
153 printk(KERN_CRIT SBC7240_PREFIX
154 "Unexpected close, not stopping watchdog!\n");
155 wdt_keepalive();
156 }
157
158 clear_bit(SBC7240_OPEN_STATUS_BIT, &wdt_status);
159 return 0;
160}
161
162static const struct watchdog_info ident = {
163 .options = WDIOF_KEEPALIVEPING|
164 WDIOF_SETTIMEOUT|
165 WDIOF_MAGICCLOSE,
166 .firmware_version = 1,
167 .identity = "SBC7240",
168};
169
170
171static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
172{
173 switch (cmd) {
174 case WDIOC_GETSUPPORT:
175 return copy_to_user((void __user *)arg, &ident, sizeof(ident))
176 ? -EFAULT : 0;
177 case WDIOC_GETSTATUS:
178 case WDIOC_GETBOOTSTATUS:
179 return put_user(0, (int __user *)arg);
180 case WDIOC_SETOPTIONS:
181 {
182 int options;
183 int retval = -EINVAL;
184
185 if (get_user(options, (int __user *)arg))
186 return -EFAULT;
187
188 if (options & WDIOS_DISABLECARD) {
189 wdt_disable();
190 retval = 0;
191 }
192
193 if (options & WDIOS_ENABLECARD) {
194 wdt_enable();
195 retval = 0;
196 }
197
198 return retval;
199 }
200 case WDIOC_KEEPALIVE:
201 wdt_keepalive();
202 return 0;
203 case WDIOC_SETTIMEOUT:
204 {
205 int new_timeout;
206
207 if (get_user(new_timeout, (int __user *)arg))
208 return -EFAULT;
209
210 if (wdt_set_timeout(new_timeout))
211 return -EINVAL;
212
213 /* Fall through */
214 }
215 case WDIOC_GETTIMEOUT:
216 return put_user(timeout, (int __user *)arg);
217 default:
218 return -ENOTTY;
219 }
220}
221
222static const struct file_operations wdt_fops = {
223 .owner = THIS_MODULE,
224 .llseek = no_llseek,
225 .write = fop_write,
226 .open = fop_open,
227 .release = fop_close,
228 .unlocked_ioctl = fop_ioctl,
229};
230
231static struct miscdevice wdt_miscdev = {
232 .minor = WATCHDOG_MINOR,
233 .name = "watchdog",
234 .fops = &wdt_fops,
235};
236
237/*
238 * Notifier for system down
239 */
240
241static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
242 void *unused)
243{
244 if (code == SYS_DOWN || code == SYS_HALT)
245 wdt_disable();
246 return NOTIFY_DONE;
247}
248
249static struct notifier_block wdt_notifier = {
250 .notifier_call = wdt_notify_sys,
251};
252
253static void __exit sbc7240_wdt_unload(void)
254{
255 printk(KERN_INFO SBC7240_PREFIX "Removing watchdog\n");
256 misc_deregister(&wdt_miscdev);
257
258 unregister_reboot_notifier(&wdt_notifier);
259 release_region(SBC7240_ENABLE_PORT, 1);
260}
261
262static int __init sbc7240_wdt_init(void)
263{
264 int rc = -EBUSY;
265
266 if (!request_region(SBC7240_ENABLE_PORT, 1, "SBC7240 WDT")) {
267 printk(KERN_ERR SBC7240_PREFIX
268 "I/O address 0x%04x already in use\n",
269 SBC7240_ENABLE_PORT);
270 rc = -EIO;
271 goto err_out;
272 }
273
274 /* The IO port 0x043 used to disable the watchdog
275 * is already claimed by the system timer, so we
276 * can't request_region() it ...*/
277
278 if (timeout < 1 || timeout > SBC7240_MAX_TIMEOUT) {
279 timeout = SBC7240_TIMEOUT;
280 printk(KERN_INFO SBC7240_PREFIX
281 "timeout value must be 1<=x<=%d, using %d\n",
282 SBC7240_MAX_TIMEOUT, timeout);
283 }
284 wdt_set_timeout(timeout);
285 wdt_disable();
286
287 rc = register_reboot_notifier(&wdt_notifier);
288 if (rc) {
289 printk(KERN_ERR SBC7240_PREFIX
290 "cannot register reboot notifier (err=%d)\n", rc);
291 goto err_out_region;
292 }
293
294 rc = misc_register(&wdt_miscdev);
295 if (rc) {
296 printk(KERN_ERR SBC7240_PREFIX
297 "cannot register miscdev on minor=%d (err=%d)\n",
298 wdt_miscdev.minor, rc);
299 goto err_out_reboot_notifier;
300 }
301
302 printk(KERN_INFO SBC7240_PREFIX
303 "Watchdog driver for SBC7240 initialised (nowayout=%d)\n",
304 nowayout);
305
306 return 0;
307
308err_out_reboot_notifier:
309 unregister_reboot_notifier(&wdt_notifier);
310err_out_region:
311 release_region(SBC7240_ENABLE_PORT, 1);
312err_out:
313 return rc;
314}
315
316module_init(sbc7240_wdt_init);
317module_exit(sbc7240_wdt_unload);
318
319MODULE_AUTHOR("Gilles Gigan");
320MODULE_DESCRIPTION("Watchdog device driver for single board"
321 " computers EPIC Nano 7240 from iEi");
322MODULE_LICENSE("GPL");
323MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
324