blob: d387bad377c45fcf70fde0f688a8c830ca415dcf [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * MixCom Watchdog: A Simple Hardware Watchdog Device
4 * Based on Softdog driver by Alan Cox and PC Watchdog driver by Ken Hollis
5 *
6 * Author: Gergely Madarasz <gorgo@itc.hu>
7 *
8 * Copyright (c) 1999 ITConsult-Pro Co. <info@itc.hu>
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Version 0.1 (99/04/15):
11 * - first version
12 *
13 * Version 0.2 (99/06/16):
14 * - added kernel timer watchdog ping after close
15 * since the hardware does not support watchdog shutdown
16 *
17 * Version 0.3 (99/06/21):
18 * - added WDIOC_GETSTATUS and WDIOC_GETSUPPORT ioctl calls
19 *
20 * Version 0.3.1 (99/06/22):
21 * - allow module removal while internal timer is active,
22 * print warning about probable reset
23 *
24 * Version 0.4 (99/11/15):
25 * - support for one more type board
26 *
27 * Version 0.5 (2001/12/14) Matt Domsch <Matt_Domsch@dell.com>
Alan Cox39309642008-05-19 14:07:04 +010028 * - added nowayout module option to override
29 * CONFIG_WATCHDOG_NOWAYOUT
Wim Van Sebroeckb10958d2007-06-03 15:22:32 +000030 *
31 * Version 0.6 (2002/04/12): Rob Radez <rob@osinvestor.com>
32 * - make mixcomwd_opened unsigned,
33 * removed lock_kernel/unlock_kernel from mixcomwd_release,
34 * modified ioctl a bit to conform to API
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
Joe Perches27c766a2012-02-15 15:06:19 -080037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Wim Van Sebroeckb10958d2007-06-03 15:22:32 +000039#define VERSION "0.6"
Wim Van Sebroeck1c067312007-06-04 18:35:41 +000040#define WATCHDOG_NAME "mixcomwd"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/module.h>
43#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/types.h>
45#include <linux/miscdevice.h>
46#include <linux/ioport.h>
47#include <linux/watchdog.h>
48#include <linux/fs.h>
49#include <linux/reboot.h>
50#include <linux/init.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080051#include <linux/jiffies.h>
52#include <linux/timer.h>
Alan Cox39309642008-05-19 14:07:04 +010053#include <linux/uaccess.h>
54#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Wim Van Sebroeck63e6e172007-06-03 15:39:25 +000056/*
57 * We have two types of cards that can be probed:
58 * 1) The Mixcom cards: these cards can be found at addresses
59 * 0x180, 0x280, 0x380 with an additional offset of 0xc10.
60 * (Or 0xd90, 0xe90, 0xf90).
61 * 2) The FlashCOM cards: these cards can be set up at
62 * 0x300 -> 0x378, in 0x8 jumps with an offset of 0x04.
63 * (Or 0x304 -> 0x37c in 0x8 jumps).
64 * Each card has it's own ID.
65 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define MIXCOM_ID 0x11
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define FLASHCOM_ID 0x18
Wim Van Sebroeck21baf3c2007-06-03 20:46:05 +000068static struct {
69 int ioport;
70 int id;
Bill Pemberton1d131362012-11-19 13:24:05 -050071} mixcomwd_io_info[] = {
Wim Van Sebroeck21baf3c2007-06-03 20:46:05 +000072 /* The Mixcom cards */
73 {0x0d90, MIXCOM_ID},
74 {0x0e90, MIXCOM_ID},
75 {0x0f90, MIXCOM_ID},
76 /* The FlashCOM cards */
77 {0x0304, FLASHCOM_ID},
78 {0x030c, FLASHCOM_ID},
79 {0x0314, FLASHCOM_ID},
80 {0x031c, FLASHCOM_ID},
81 {0x0324, FLASHCOM_ID},
82 {0x032c, FLASHCOM_ID},
83 {0x0334, FLASHCOM_ID},
84 {0x033c, FLASHCOM_ID},
85 {0x0344, FLASHCOM_ID},
86 {0x034c, FLASHCOM_ID},
87 {0x0354, FLASHCOM_ID},
88 {0x035c, FLASHCOM_ID},
89 {0x0364, FLASHCOM_ID},
90 {0x036c, FLASHCOM_ID},
91 {0x0374, FLASHCOM_ID},
92 {0x037c, FLASHCOM_ID},
93 /* The end of the list */
94 {0x0000, 0},
95};
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Kees Cook24ed9602017-08-28 11:28:21 -070097static void mixcomwd_timerfun(struct timer_list *unused);
Jiri Slaby82eb7c52007-02-08 18:39:36 +010098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static unsigned long mixcomwd_opened; /* long req'd for setbit --RR */
100
101static int watchdog_port;
102static int mixcomwd_timer_alive;
Kees Cook1d27e3e2017-10-04 16:27:04 -0700103static DEFINE_TIMER(mixcomwd_timer, mixcomwd_timerfun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static char expect_close;
105
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100106static bool nowayout = WATCHDOG_NOWAYOUT;
107module_param(nowayout, bool, 0);
Alan Cox39309642008-05-19 14:07:04 +0100108MODULE_PARM_DESC(nowayout,
109 "Watchdog cannot be stopped once started (default="
110 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112static void mixcomwd_ping(void)
113{
Alan Cox39309642008-05-19 14:07:04 +0100114 outb_p(55, watchdog_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return;
116}
117
Kees Cook24ed9602017-08-28 11:28:21 -0700118static void mixcomwd_timerfun(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 mixcomwd_ping();
Jiri Slaby82eb7c52007-02-08 18:39:36 +0100121 mod_timer(&mixcomwd_timer, jiffies + 5 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124/*
125 * Allow only one person to hold it open
126 */
127
128static int mixcomwd_open(struct inode *inode, struct file *file)
129{
Alan Cox39309642008-05-19 14:07:04 +0100130 if (test_and_set_bit(0, &mixcomwd_opened))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return -EBUSY;
Alan Cox39309642008-05-19 14:07:04 +0100132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 mixcomwd_ping();
134
Alan Cox39309642008-05-19 14:07:04 +0100135 if (nowayout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /*
137 * fops_get() code via open() has already done
138 * a try_module_get() so it is safe to do the
139 * __module_get().
140 */
141 __module_get(THIS_MODULE);
Alan Cox39309642008-05-19 14:07:04 +0100142 else {
143 if (mixcomwd_timer_alive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 del_timer(&mixcomwd_timer);
Alan Cox39309642008-05-19 14:07:04 +0100145 mixcomwd_timer_alive = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147 }
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +0300148 return stream_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151static int mixcomwd_release(struct inode *inode, struct file *file)
152{
153 if (expect_close == 42) {
Alan Cox39309642008-05-19 14:07:04 +0100154 if (mixcomwd_timer_alive) {
Joe Perches27c766a2012-02-15 15:06:19 -0800155 pr_err("release called while internal timer alive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return -EBUSY;
157 }
Alan Cox39309642008-05-19 14:07:04 +0100158 mixcomwd_timer_alive = 1;
Jiri Slaby82eb7c52007-02-08 18:39:36 +0100159 mod_timer(&mixcomwd_timer, jiffies + 5 * HZ);
Alan Cox39309642008-05-19 14:07:04 +0100160 } else
Joe Perches27c766a2012-02-15 15:06:19 -0800161 pr_crit("WDT device closed unexpectedly. WDT will not stop!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Alan Cox39309642008-05-19 14:07:04 +0100163 clear_bit(0, &mixcomwd_opened);
164 expect_close = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return 0;
166}
167
168
Alan Cox39309642008-05-19 14:07:04 +0100169static ssize_t mixcomwd_write(struct file *file, const char __user *data,
170 size_t len, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Alan Cox39309642008-05-19 14:07:04 +0100172 if (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (!nowayout) {
174 size_t i;
175
176 /* In case it was set long ago */
177 expect_close = 0;
178
179 for (i = 0; i != len; i++) {
180 char c;
181 if (get_user(c, data + i))
182 return -EFAULT;
183 if (c == 'V')
184 expect_close = 42;
185 }
186 }
187 mixcomwd_ping();
188 }
189 return len;
190}
191
Alan Cox39309642008-05-19 14:07:04 +0100192static long mixcomwd_ioctl(struct file *file,
193 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 void __user *argp = (void __user *)arg;
196 int __user *p = argp;
197 int status;
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000198 static const struct watchdog_info ident = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
200 .firmware_version = 1,
201 .identity = "MixCOM watchdog",
202 };
203
Alan Cox39309642008-05-19 14:07:04 +0100204 switch (cmd) {
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000205 case WDIOC_GETSUPPORT:
206 if (copy_to_user(argp, &ident, sizeof(ident)))
207 return -EFAULT;
208 break;
Alan Cox39309642008-05-19 14:07:04 +0100209 case WDIOC_GETSTATUS:
210 status = mixcomwd_opened;
211 if (!nowayout)
212 status |= mixcomwd_timer_alive;
213 return put_user(status, p);
214 case WDIOC_GETBOOTSTATUS:
215 return put_user(0, p);
Alan Cox39309642008-05-19 14:07:04 +0100216 case WDIOC_KEEPALIVE:
217 mixcomwd_ping();
218 break;
219 default:
220 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222 return 0;
223}
224
Wim Van Sebroeck10a29302007-06-04 19:13:28 +0000225static const struct file_operations mixcomwd_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .owner = THIS_MODULE,
227 .llseek = no_llseek,
228 .write = mixcomwd_write,
Alan Cox39309642008-05-19 14:07:04 +0100229 .unlocked_ioctl = mixcomwd_ioctl,
Arnd Bergmannb6dfb242019-06-03 14:23:09 +0200230 .compat_ioctl = compat_ptr_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 .open = mixcomwd_open,
232 .release = mixcomwd_release,
233};
234
Wim Van Sebroeck10a29302007-06-04 19:13:28 +0000235static struct miscdevice mixcomwd_miscdev = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 .minor = WATCHDOG_MINOR,
237 .name = "watchdog",
238 .fops = &mixcomwd_fops,
239};
240
Wim Van Sebroeck4194db12007-06-03 19:01:38 +0000241static int __init checkcard(int port, int card_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 int id;
244
Alan Cox39309642008-05-19 14:07:04 +0100245 if (!request_region(port, 1, "MixCOM watchdog"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Alan Cox39309642008-05-19 14:07:04 +0100248 id = inb_p(port);
249 if (card_id == MIXCOM_ID)
Wim Van Sebroeck4194db12007-06-03 19:01:38 +0000250 id &= 0x3f;
251
Alan Cox39309642008-05-19 14:07:04 +0100252 if (id != card_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 release_region(port, 1);
254 return 0;
255 }
Wim Van Sebroeck4194db12007-06-03 19:01:38 +0000256 return 1;
257}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259static int __init mixcomwd_init(void)
260{
Alan Cox39309642008-05-19 14:07:04 +0100261 int i, ret, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Wim Van Sebroeck21baf3c2007-06-03 20:46:05 +0000263 for (i = 0; !found && mixcomwd_io_info[i].ioport != 0; i++) {
264 if (checkcard(mixcomwd_io_info[i].ioport,
265 mixcomwd_io_info[i].id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 found = 1;
Wim Van Sebroeck21baf3c2007-06-03 20:46:05 +0000267 watchdog_port = mixcomwd_io_info[i].ioport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269 }
270
271 if (!found) {
Joe Perches27c766a2012-02-15 15:06:19 -0800272 pr_err("No card detected, or port not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return -ENODEV;
274 }
275
276 ret = misc_register(&mixcomwd_miscdev);
Alan Cox39309642008-05-19 14:07:04 +0100277 if (ret) {
Joe Perches27c766a2012-02-15 15:06:19 -0800278 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
279 WATCHDOG_MINOR, ret);
Wim Van Sebroeck27c77422007-06-04 18:35:41 +0000280 goto error_misc_register_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282
Joe Perches27c766a2012-02-15 15:06:19 -0800283 pr_info("MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",
284 VERSION, watchdog_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 return 0;
Wim Van Sebroeck27c77422007-06-04 18:35:41 +0000287
288error_misc_register_watchdog:
289 release_region(watchdog_port, 1);
290 watchdog_port = 0x0000;
291 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static void __exit mixcomwd_exit(void)
295{
296 if (!nowayout) {
Alan Cox39309642008-05-19 14:07:04 +0100297 if (mixcomwd_timer_alive) {
Joe Perches27c766a2012-02-15 15:06:19 -0800298 pr_warn("I quit now, hardware will probably reboot!\n");
Jiri Slaby82eb7c52007-02-08 18:39:36 +0100299 del_timer_sync(&mixcomwd_timer);
Alan Cox39309642008-05-19 14:07:04 +0100300 mixcomwd_timer_alive = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 misc_deregister(&mixcomwd_miscdev);
Alan Cox39309642008-05-19 14:07:04 +0100304 release_region(watchdog_port, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307module_init(mixcomwd_init);
308module_exit(mixcomwd_exit);
309
310MODULE_AUTHOR("Gergely Madarasz <gorgo@itc.hu>");
311MODULE_DESCRIPTION("MixCom Watchdog driver");
Wim Van Sebroeck1c067312007-06-04 18:35:41 +0000312MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313MODULE_LICENSE("GPL");