blob: b731b5d129bedee728ca195bc032bb24918f5ef0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Berkshire USB-PC Watchdog Card Driver
3 *
Wim Van Sebroeck2ef473d2007-01-08 22:45:30 +01004 * (c) Copyright 2004-2007 Wim Van Sebroeck <wim@iguana.be>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Based on source code of the following authors:
7 * Ken Hollis <kenji@bitgate.com>,
Alan Cox29fa0582008-10-27 15:17:56 +00008 * Alan Cox <alan@lxorguk.ukuu.org.uk>,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Matt Domsch <Matt_Domsch@dell.com>,
10 * Rob Radez <rob@osinvestor.com>,
11 * Greg Kroah-Hartman <greg@kroah.com>
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
17 *
18 * Neither Wim Van Sebroeck nor Iguana vzw. admit liability nor
19 * provide warranty for any of this software. This material is
20 * provided "AS-IS" and at no charge.
21 *
22 * Thanks also to Simon Machell at Berkshire Products Inc. for
23 * providing the test hardware. More info is available at
24 * http://www.berkprod.com/ or http://www.pcwatchdog.com/
25 */
26
Joe Perches27c766a2012-02-15 15:06:19 -080027#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28
Wim Van Sebroeckd26d9092007-01-08 22:40:33 +010029#include <linux/module.h> /* For module specific items */
30#include <linux/moduleparam.h> /* For new moduleparam's */
31#include <linux/types.h> /* For standard types (like size_t) */
32#include <linux/errno.h> /* For the -ENODEV/... values */
33#include <linux/kernel.h> /* For printk/panic/... */
34#include <linux/delay.h> /* For mdelay function */
Jean Delvare487722c2013-10-21 17:38:49 +020035#include <linux/miscdevice.h> /* For struct miscdevice */
Wim Van Sebroeckd26d9092007-01-08 22:40:33 +010036#include <linux/watchdog.h> /* For the watchdog specific items */
37#include <linux/notifier.h> /* For notifier support */
38#include <linux/reboot.h> /* For reboot_notifier stuff */
39#include <linux/init.h> /* For __init/__exit/... */
40#include <linux/fs.h> /* For file operations */
41#include <linux/usb.h> /* For USB functions */
42#include <linux/slab.h> /* For kmalloc, ... */
43#include <linux/mutex.h> /* For mutex locking */
Wim Van Sebroeckd4b87592006-12-12 23:46:47 +010044#include <linux/hid.h> /* For HID_REQ_SET_REPORT & HID_DT_REPORT */
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000045#include <linux/uaccess.h> /* For copy_to_user/put_user/... */
Wim Van Sebroeckd26d9092007-01-08 22:40:33 +010046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#ifdef CONFIG_USB_DEBUG
Joe Perches27c766a2012-02-15 15:06:19 -080048static int debug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#else
Joe Perches27c766a2012-02-15 15:06:19 -080050static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif
52
53/* Use our own dbg macro */
Joe Perches27c766a2012-02-15 15:06:19 -080054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#undef dbg
Joe Perches27c766a2012-02-15 15:06:19 -080056#ifndef DEBUG
57#define DEBUG
58#endif
59#define dbg(format, ...) \
60do { \
61 if (debug) \
62 pr_debug(format "\n", ##__VA_ARGS__); \
63} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* Module and Version Information */
Wim Van Sebroeck2ef473d2007-01-08 22:45:30 +010066#define DRIVER_VERSION "1.02"
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define DRIVER_AUTHOR "Wim Van Sebroeck <wim@iguana.be>"
68#define DRIVER_DESC "Berkshire USB-PC Watchdog driver"
69#define DRIVER_LICENSE "GPL"
70#define DRIVER_NAME "pcwd_usb"
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72MODULE_AUTHOR(DRIVER_AUTHOR);
73MODULE_DESCRIPTION(DRIVER_DESC);
74MODULE_LICENSE(DRIVER_LICENSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* Module Parameters */
77module_param(debug, int, 0);
78MODULE_PARM_DESC(debug, "Debug enabled or not");
79
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000080#define WATCHDOG_HEARTBEAT 0 /* default heartbeat =
81 delay-time from dip-switches */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static int heartbeat = WATCHDOG_HEARTBEAT;
83module_param(heartbeat, int, 0);
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000084MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. "
85 "(0<heartbeat<65536 or 0=delay-time from dip-switches, default="
86 __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010088static bool nowayout = WATCHDOG_NOWAYOUT;
89module_param(nowayout, bool, 0);
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000090MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
91 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* The vendor and product id's for the USB-PC Watchdog card */
94#define USB_PCWD_VENDOR_ID 0x0c98
95#define USB_PCWD_PRODUCT_ID 0x1140
96
97/* table of devices that work with this driver */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000098static struct usb_device_id usb_pcwd_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 { USB_DEVICE(USB_PCWD_VENDOR_ID, USB_PCWD_PRODUCT_ID) },
100 { } /* Terminating entry */
101};
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000102MODULE_DEVICE_TABLE(usb, usb_pcwd_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/* according to documentation max. time to process a command for the USB
105 * watchdog card is 100 or 200 ms, so we give it 250 ms to do it's job */
106#define USB_COMMAND_TIMEOUT 250
107
108/* Watchdog's internal commands */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000109#define CMD_READ_TEMP 0x02 /* Read Temperature;
110 Re-trigger Watchdog */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define CMD_TRIGGER CMD_READ_TEMP
112#define CMD_GET_STATUS 0x04 /* Get Status Information */
113#define CMD_GET_FIRMWARE_VERSION 0x08 /* Get Firmware Version */
114#define CMD_GET_DIP_SWITCH_SETTINGS 0x0c /* Get Dip Switch Settings */
115#define CMD_READ_WATCHDOG_TIMEOUT 0x18 /* Read Current Watchdog Time */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000116#define CMD_WRITE_WATCHDOG_TIMEOUT 0x19 /* Write Current WatchdogTime */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define CMD_ENABLE_WATCHDOG 0x30 /* Enable / Disable Watchdog */
118#define CMD_DISABLE_WATCHDOG CMD_ENABLE_WATCHDOG
119
Wim Van Sebroeck2ef473d2007-01-08 22:45:30 +0100120/* Watchdog's Dip Switch heartbeat values */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000121static const int heartbeat_tbl[] = {
Wim Van Sebroeck2ef473d2007-01-08 22:45:30 +0100122 5, /* OFF-OFF-OFF = 5 Sec */
123 10, /* OFF-OFF-ON = 10 Sec */
124 30, /* OFF-ON-OFF = 30 Sec */
125 60, /* OFF-ON-ON = 1 Min */
126 300, /* ON-OFF-OFF = 5 Min */
127 600, /* ON-OFF-ON = 10 Min */
128 1800, /* ON-ON-OFF = 30 Min */
129 3600, /* ON-ON-ON = 1 hour */
130};
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* We can only use 1 card due to the /dev/watchdog restriction */
133static int cards_found;
134
135/* some internal variables */
136static unsigned long is_active;
137static char expect_release;
138
139/* Structure to hold all of our device specific stuff */
140struct usb_pcwd_private {
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000141 /* save off the usb device pointer */
142 struct usb_device *udev;
143 /* the interface for this device */
144 struct usb_interface *interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000146 /* the interface number used for cmd's */
147 unsigned int interface_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000149 /* the buffer to intr data */
150 unsigned char *intr_buffer;
151 /* the dma address for the intr buffer */
152 dma_addr_t intr_dma;
153 /* the size of the intr buffer */
154 size_t intr_size;
155 /* the urb used for the intr pipe */
156 struct urb *intr_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000158 /* The command that is reported back */
159 unsigned char cmd_command;
160 /* The data MSB that is reported back */
161 unsigned char cmd_data_msb;
162 /* The data LSB that is reported back */
163 unsigned char cmd_data_lsb;
164 /* true if we received a report after a command */
165 atomic_t cmd_received;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000167 /* Wether or not the device exists */
168 int exists;
169 /* locks this structure */
170 struct mutex mtx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172static struct usb_pcwd_private *usb_pcwd_device;
173
174/* prevent races between open() and disconnect() */
Ingo Molnar6f87f0d2006-03-23 03:00:27 -0800175static DEFINE_MUTEX(disconnect_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/* local function prototypes */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000178static int usb_pcwd_probe(struct usb_interface *interface,
179 const struct usb_device_id *id);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000180static void usb_pcwd_disconnect(struct usb_interface *interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182/* usb specific object needed to register this driver with the usb subsystem */
183static struct usb_driver usb_pcwd_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 .name = DRIVER_NAME,
185 .probe = usb_pcwd_probe,
186 .disconnect = usb_pcwd_disconnect,
187 .id_table = usb_pcwd_table,
188};
189
190
David Howells7d12e782006-10-05 14:55:46 +0100191static void usb_pcwd_intr_done(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000193 struct usb_pcwd_private *usb_pcwd =
194 (struct usb_pcwd_private *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 unsigned char *data = usb_pcwd->intr_buffer;
196 int retval;
197
198 switch (urb->status) {
199 case 0: /* success */
200 break;
201 case -ECONNRESET: /* unlink */
202 case -ENOENT:
203 case -ESHUTDOWN:
204 /* this urb is terminated, clean up */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000205 dbg("%s - urb shutting down with status: %d", __func__,
206 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return;
208 /* -EPIPE: should clear the halt */
209 default: /* error */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000210 dbg("%s - nonzero urb status received: %d", __func__,
211 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto resubmit;
213 }
214
215 dbg("received following data cmd=0x%02x msb=0x%02x lsb=0x%02x",
216 data[0], data[1], data[2]);
217
218 usb_pcwd->cmd_command = data[0];
219 usb_pcwd->cmd_data_msb = data[1];
220 usb_pcwd->cmd_data_lsb = data[2];
221
222 /* notify anyone waiting that the cmd has finished */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000223 atomic_set(&usb_pcwd->cmd_received, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225resubmit:
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000226 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (retval)
Joe Perches27c766a2012-02-15 15:06:19 -0800228 pr_err("can't resubmit intr, usb_submit_urb failed with result %d\n",
229 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000232static int usb_pcwd_send_command(struct usb_pcwd_private *usb_pcwd,
233 unsigned char cmd, unsigned char *msb, unsigned char *lsb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 int got_response, count;
Guenter Roeck5412df02013-10-14 09:29:34 -0700236 unsigned char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000238 /* We will not send any commands if the USB PCWD device does
239 * not exist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if ((!usb_pcwd) || (!usb_pcwd->exists))
241 return -1;
242
Guenter Roeck5412df02013-10-14 09:29:34 -0700243 buf = kmalloc(6, GFP_KERNEL);
244 if (buf == NULL)
245 return 0;
246
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000247 /* The USB PC Watchdog uses a 6 byte report format.
248 * The board currently uses only 3 of the six bytes of the report. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 buf[0] = cmd; /* Byte 0 = CMD */
250 buf[1] = *msb; /* Byte 1 = Data MSB */
251 buf[2] = *lsb; /* Byte 2 = Data LSB */
252 buf[3] = buf[4] = buf[5] = 0; /* All other bytes not used */
253
254 dbg("sending following data cmd=0x%02x msb=0x%02x lsb=0x%02x",
255 buf[0], buf[1], buf[2]);
256
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000257 atomic_set(&usb_pcwd->cmd_received, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (usb_control_msg(usb_pcwd->udev, usb_sndctrlpipe(usb_pcwd->udev, 0),
260 HID_REQ_SET_REPORT, HID_DT_REPORT,
Dan Carpenterab5bbdc2013-11-08 01:24:19 -0800261 0x0200, usb_pcwd->interface_number, buf, 6,
262 USB_COMMAND_TIMEOUT) != 6) {
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000263 dbg("usb_pcwd_send_command: error in usb_control_msg for "
264 "cmd 0x%x 0x%x 0x%x\n", cmd, *msb, *lsb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266 /* wait till the usb card processed the command,
267 * with a max. timeout of USB_COMMAND_TIMEOUT */
268 got_response = 0;
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000269 for (count = 0; (count < USB_COMMAND_TIMEOUT) && (!got_response);
270 count++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 mdelay(1);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000272 if (atomic_read(&usb_pcwd->cmd_received))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 got_response = 1;
274 }
275
276 if ((got_response) && (cmd == usb_pcwd->cmd_command)) {
277 /* read back response */
278 *msb = usb_pcwd->cmd_data_msb;
279 *lsb = usb_pcwd->cmd_data_lsb;
280 }
281
Guenter Roeck5412df02013-10-14 09:29:34 -0700282 kfree(buf);
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return got_response;
285}
286
287static int usb_pcwd_start(struct usb_pcwd_private *usb_pcwd)
288{
289 unsigned char msb = 0x00;
290 unsigned char lsb = 0x00;
291 int retval;
292
293 /* Enable Watchdog */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000294 retval = usb_pcwd_send_command(usb_pcwd, CMD_ENABLE_WATCHDOG,
295 &msb, &lsb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 if ((retval == 0) || (lsb == 0)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800298 pr_err("Card did not acknowledge enable attempt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return -1;
300 }
301
302 return 0;
303}
304
305static int usb_pcwd_stop(struct usb_pcwd_private *usb_pcwd)
306{
307 unsigned char msb = 0xA5;
308 unsigned char lsb = 0xC3;
309 int retval;
310
311 /* Disable Watchdog */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000312 retval = usb_pcwd_send_command(usb_pcwd, CMD_DISABLE_WATCHDOG,
313 &msb, &lsb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if ((retval == 0) || (lsb != 0)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800316 pr_err("Card did not acknowledge disable attempt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return -1;
318 }
319
320 return 0;
321}
322
323static int usb_pcwd_keepalive(struct usb_pcwd_private *usb_pcwd)
324{
325 unsigned char dummy;
326
327 /* Re-trigger Watchdog */
328 usb_pcwd_send_command(usb_pcwd, CMD_TRIGGER, &dummy, &dummy);
329
330 return 0;
331}
332
333static int usb_pcwd_set_heartbeat(struct usb_pcwd_private *usb_pcwd, int t)
334{
335 unsigned char msb = t / 256;
336 unsigned char lsb = t % 256;
337
338 if ((t < 0x0001) || (t > 0xFFFF))
339 return -EINVAL;
340
341 /* Write new heartbeat to watchdog */
342 usb_pcwd_send_command(usb_pcwd, CMD_WRITE_WATCHDOG_TIMEOUT, &msb, &lsb);
343
344 heartbeat = t;
345 return 0;
346}
347
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000348static int usb_pcwd_get_temperature(struct usb_pcwd_private *usb_pcwd,
349 int *temperature)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 unsigned char msb, lsb;
352
353 usb_pcwd_send_command(usb_pcwd, CMD_READ_TEMP, &msb, &lsb);
354
355 /*
356 * Convert celsius to fahrenheit, since this was
357 * the decided 'standard' for this return value.
358 */
359 *temperature = (lsb * 9 / 5) + 32;
360
361 return 0;
362}
363
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000364static int usb_pcwd_get_timeleft(struct usb_pcwd_private *usb_pcwd,
365 int *time_left)
Wim Van Sebroeck58b519f2006-05-21 12:48:44 +0200366{
367 unsigned char msb, lsb;
368
369 /* Read the time that's left before rebooting */
370 /* Note: if the board is not yet armed then we will read 0xFFFF */
371 usb_pcwd_send_command(usb_pcwd, CMD_READ_WATCHDOG_TIMEOUT, &msb, &lsb);
372
373 *time_left = (msb << 8) + lsb;
374
375 return 0;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
379 * /dev/watchdog handling
380 */
381
382static ssize_t usb_pcwd_write(struct file *file, const char __user *data,
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000383 size_t len, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 /* See if we got the magic character 'V' and reload the timer */
386 if (len) {
387 if (!nowayout) {
388 size_t i;
389
390 /* note: just in case someone wrote the magic character
391 * five months ago... */
392 expect_release = 0;
393
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000394 /* scan to see whether or not we got the
395 * magic character */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 for (i = 0; i != len; i++) {
397 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000398 if (get_user(c, data + i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -EFAULT;
400 if (c == 'V')
401 expect_release = 42;
402 }
403 }
404
405 /* someone wrote to us, we should reload the timer */
406 usb_pcwd_keepalive(usb_pcwd_device);
407 }
408 return len;
409}
410
Alan Coxc9488522008-07-03 23:51:32 -0700411static long usb_pcwd_ioctl(struct file *file, unsigned int cmd,
412 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 void __user *argp = (void __user *)arg;
415 int __user *p = argp;
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000416 static const struct watchdog_info ident = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 .options = WDIOF_KEEPALIVEPING |
418 WDIOF_SETTIMEOUT |
419 WDIOF_MAGICCLOSE,
420 .firmware_version = 1,
421 .identity = DRIVER_NAME,
422 };
423
424 switch (cmd) {
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000425 case WDIOC_GETSUPPORT:
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000426 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000428 case WDIOC_GETSTATUS:
429 case WDIOC_GETBOOTSTATUS:
430 return put_user(0, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000432 case WDIOC_GETTEMP:
433 {
434 int temperature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000436 if (usb_pcwd_get_temperature(usb_pcwd_device, &temperature))
437 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000439 return put_user(temperature, p);
440 }
441
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000442 case WDIOC_SETOPTIONS:
443 {
444 int new_options, retval = -EINVAL;
445
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000446 if (get_user(new_options, p))
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000447 return -EFAULT;
448
449 if (new_options & WDIOS_DISABLECARD) {
450 usb_pcwd_stop(usb_pcwd_device);
451 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000454 if (new_options & WDIOS_ENABLECARD) {
455 usb_pcwd_start(usb_pcwd_device);
456 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000459 return retval;
460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000462 case WDIOC_KEEPALIVE:
463 usb_pcwd_keepalive(usb_pcwd_device);
464 return 0;
465
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000466 case WDIOC_SETTIMEOUT:
467 {
468 int new_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000470 if (get_user(new_heartbeat, p))
471 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000473 if (usb_pcwd_set_heartbeat(usb_pcwd_device, new_heartbeat))
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000474 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000476 usb_pcwd_keepalive(usb_pcwd_device);
477 /* Fall */
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000480 case WDIOC_GETTIMEOUT:
481 return put_user(heartbeat, p);
Wim Van Sebroeck58b519f2006-05-21 12:48:44 +0200482
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000483 case WDIOC_GETTIMELEFT:
484 {
485 int time_left;
Wim Van Sebroeck58b519f2006-05-21 12:48:44 +0200486
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000487 if (usb_pcwd_get_timeleft(usb_pcwd_device, &time_left))
488 return -EFAULT;
Wim Van Sebroeck58b519f2006-05-21 12:48:44 +0200489
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000490 return put_user(time_left, p);
491 }
492
493 default:
494 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496}
497
498static int usb_pcwd_open(struct inode *inode, struct file *file)
499{
500 /* /dev/watchdog can only be opened once */
501 if (test_and_set_bit(0, &is_active))
502 return -EBUSY;
503
504 /* Activate */
505 usb_pcwd_start(usb_pcwd_device);
506 usb_pcwd_keepalive(usb_pcwd_device);
507 return nonseekable_open(inode, file);
508}
509
510static int usb_pcwd_release(struct inode *inode, struct file *file)
511{
512 /*
513 * Shut off the timer.
514 */
515 if (expect_release == 42) {
516 usb_pcwd_stop(usb_pcwd_device);
517 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800518 pr_crit("Unexpected close, not stopping watchdog!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 usb_pcwd_keepalive(usb_pcwd_device);
520 }
521 expect_release = 0;
522 clear_bit(0, &is_active);
523 return 0;
524}
525
526/*
527 * /dev/temperature handling
528 */
529
530static ssize_t usb_pcwd_temperature_read(struct file *file, char __user *data,
531 size_t len, loff_t *ppos)
532{
533 int temperature;
534
535 if (usb_pcwd_get_temperature(usb_pcwd_device, &temperature))
536 return -EFAULT;
537
538 if (copy_to_user(data, &temperature, 1))
539 return -EFAULT;
540
541 return 1;
542}
543
544static int usb_pcwd_temperature_open(struct inode *inode, struct file *file)
545{
546 return nonseekable_open(inode, file);
547}
548
549static int usb_pcwd_temperature_release(struct inode *inode, struct file *file)
550{
551 return 0;
552}
553
554/*
555 * Notify system
556 */
557
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000558static int usb_pcwd_notify_sys(struct notifier_block *this, unsigned long code,
559 void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000561 if (code == SYS_DOWN || code == SYS_HALT)
562 usb_pcwd_stop(usb_pcwd_device); /* Turn the WDT off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 return NOTIFY_DONE;
565}
566
567/*
568 * Kernel Interfaces
569 */
570
Arjan van de Ven62322d22006-07-03 00:24:21 -0700571static const struct file_operations usb_pcwd_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 .owner = THIS_MODULE,
573 .llseek = no_llseek,
574 .write = usb_pcwd_write,
Alan Coxc9488522008-07-03 23:51:32 -0700575 .unlocked_ioctl = usb_pcwd_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 .open = usb_pcwd_open,
577 .release = usb_pcwd_release,
578};
579
580static struct miscdevice usb_pcwd_miscdev = {
581 .minor = WATCHDOG_MINOR,
582 .name = "watchdog",
583 .fops = &usb_pcwd_fops,
584};
585
Arjan van de Ven62322d22006-07-03 00:24:21 -0700586static const struct file_operations usb_pcwd_temperature_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 .owner = THIS_MODULE,
588 .llseek = no_llseek,
589 .read = usb_pcwd_temperature_read,
590 .open = usb_pcwd_temperature_open,
591 .release = usb_pcwd_temperature_release,
592};
593
594static struct miscdevice usb_pcwd_temperature_miscdev = {
595 .minor = TEMP_MINOR,
596 .name = "temperature",
597 .fops = &usb_pcwd_temperature_fops,
598};
599
600static struct notifier_block usb_pcwd_notifier = {
601 .notifier_call = usb_pcwd_notify_sys,
602};
603
604/**
605 * usb_pcwd_delete
606 */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000607static inline void usb_pcwd_delete(struct usb_pcwd_private *usb_pcwd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Mariusz Kozlowski6265d622006-11-08 15:34:02 +0100609 usb_free_urb(usb_pcwd->intr_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (usb_pcwd->intr_buffer != NULL)
Daniel Mack997ea582010-04-12 13:17:25 +0200611 usb_free_coherent(usb_pcwd->udev, usb_pcwd->intr_size,
612 usb_pcwd->intr_buffer, usb_pcwd->intr_dma);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000613 kfree(usb_pcwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616/**
617 * usb_pcwd_probe
618 *
619 * Called by the usb core when a new device is connected that it thinks
620 * this driver might be interested in.
621 */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000622static int usb_pcwd_probe(struct usb_interface *interface,
623 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct usb_device *udev = interface_to_usbdev(interface);
626 struct usb_host_interface *iface_desc;
627 struct usb_endpoint_descriptor *endpoint;
628 struct usb_pcwd_private *usb_pcwd = NULL;
629 int pipe, maxp;
630 int retval = -ENOMEM;
631 int got_fw_rev;
632 unsigned char fw_rev_major, fw_rev_minor;
633 char fw_ver_str[20];
634 unsigned char option_switches, dummy;
635
636 cards_found++;
637 if (cards_found > 1) {
Joe Perches27c766a2012-02-15 15:06:19 -0800638 pr_err("This driver only supports 1 device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return -ENODEV;
640 }
641
642 /* get the active interface descriptor */
643 iface_desc = interface->cur_altsetting;
644
645 /* check out that we have a HID device */
646 if (!(iface_desc->desc.bInterfaceClass == USB_CLASS_HID)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800647 pr_err("The device isn't a Human Interface Device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return -ENODEV;
649 }
650
651 /* check out the endpoint: it has to be Interrupt & IN */
652 endpoint = &iface_desc->endpoint[0].desc;
653
Julia Lawall2855d282008-12-29 11:23:47 +0100654 if (!usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 /* we didn't find a Interrupt endpoint with direction IN */
Joe Perches27c766a2012-02-15 15:06:19 -0800656 pr_err("Couldn't find an INTR & IN endpoint\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return -ENODEV;
658 }
659
660 /* get a handle to the interrupt data pipe */
661 pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);
662 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
663
664 /* allocate memory for our device and initialize it */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000665 usb_pcwd = kzalloc(sizeof(struct usb_pcwd_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (usb_pcwd == NULL) {
Joe Perches27c766a2012-02-15 15:06:19 -0800667 pr_err("Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 goto error;
669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 usb_pcwd_device = usb_pcwd;
672
Matthias Kaehlcke9f7afa62007-05-03 20:15:14 -0700673 mutex_init(&usb_pcwd->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 usb_pcwd->udev = udev;
675 usb_pcwd->interface = interface;
676 usb_pcwd->interface_number = iface_desc->desc.bInterfaceNumber;
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000677 usb_pcwd->intr_size = (le16_to_cpu(endpoint->wMaxPacketSize) > 8 ?
678 le16_to_cpu(endpoint->wMaxPacketSize) : 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 /* set up the memory buffer's */
Daniel Mack997ea582010-04-12 13:17:25 +0200681 usb_pcwd->intr_buffer = usb_alloc_coherent(udev, usb_pcwd->intr_size,
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000682 GFP_ATOMIC, &usb_pcwd->intr_dma);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000683 if (!usb_pcwd->intr_buffer) {
Joe Perches27c766a2012-02-15 15:06:19 -0800684 pr_err("Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 goto error;
686 }
687
688 /* allocate the urb's */
689 usb_pcwd->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
690 if (!usb_pcwd->intr_urb) {
Joe Perches27c766a2012-02-15 15:06:19 -0800691 pr_err("Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 goto error;
693 }
694
695 /* initialise the intr urb's */
696 usb_fill_int_urb(usb_pcwd->intr_urb, udev, pipe,
697 usb_pcwd->intr_buffer, usb_pcwd->intr_size,
698 usb_pcwd_intr_done, usb_pcwd, endpoint->bInterval);
699 usb_pcwd->intr_urb->transfer_dma = usb_pcwd->intr_dma;
700 usb_pcwd->intr_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
701
702 /* register our interrupt URB with the USB system */
703 if (usb_submit_urb(usb_pcwd->intr_urb, GFP_KERNEL)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800704 pr_err("Problem registering interrupt URB\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 retval = -EIO; /* failure */
706 goto error;
707 }
708
709 /* The device exists and can be communicated with */
710 usb_pcwd->exists = 1;
711
712 /* disable card */
713 usb_pcwd_stop(usb_pcwd);
714
715 /* Get the Firmware Version */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000716 got_fw_rev = usb_pcwd_send_command(usb_pcwd, CMD_GET_FIRMWARE_VERSION,
717 &fw_rev_major, &fw_rev_minor);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000718 if (got_fw_rev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 sprintf(fw_ver_str, "%u.%02u", fw_rev_major, fw_rev_minor);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000720 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 sprintf(fw_ver_str, "<card no answer>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Joe Perches27c766a2012-02-15 15:06:19 -0800723 pr_info("Found card (Firmware: %s) with temp option\n", fw_ver_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* Get switch settings */
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000726 usb_pcwd_send_command(usb_pcwd, CMD_GET_DIP_SWITCH_SETTINGS, &dummy,
727 &option_switches);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Joe Perches27c766a2012-02-15 15:06:19 -0800729 pr_info("Option switches (0x%02x): Temperature Reset Enable=%s, Power On Delay=%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 option_switches,
731 ((option_switches & 0x10) ? "ON" : "OFF"),
732 ((option_switches & 0x08) ? "ON" : "OFF"));
733
Wim Van Sebroeck2ef473d2007-01-08 22:45:30 +0100734 /* If heartbeat = 0 then we use the heartbeat from the dip-switches */
735 if (heartbeat == 0)
736 heartbeat = heartbeat_tbl[(option_switches & 0x07)];
737
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000738 /* Check that the heartbeat value is within it's range ;
739 * if not reset to the default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (usb_pcwd_set_heartbeat(usb_pcwd, heartbeat)) {
741 usb_pcwd_set_heartbeat(usb_pcwd, WATCHDOG_HEARTBEAT);
Joe Perches27c766a2012-02-15 15:06:19 -0800742 pr_info("heartbeat value must be 0<heartbeat<65536, using %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 WATCHDOG_HEARTBEAT);
744 }
745
746 retval = register_reboot_notifier(&usb_pcwd_notifier);
747 if (retval != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800748 pr_err("cannot register reboot notifier (err=%d)\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 goto error;
750 }
751
752 retval = misc_register(&usb_pcwd_temperature_miscdev);
753 if (retval != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800754 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
755 TEMP_MINOR, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 goto err_out_unregister_reboot;
757 }
758
759 retval = misc_register(&usb_pcwd_miscdev);
760 if (retval != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800761 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
762 WATCHDOG_MINOR, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 goto err_out_misc_deregister;
764 }
765
766 /* we can register the device now, as it is ready */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000767 usb_set_intfdata(interface, usb_pcwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Joe Perches27c766a2012-02-15 15:06:19 -0800769 pr_info("initialized. heartbeat=%d sec (nowayout=%d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 heartbeat, nowayout);
771
772 return 0;
773
774err_out_misc_deregister:
775 misc_deregister(&usb_pcwd_temperature_miscdev);
776err_out_unregister_reboot:
777 unregister_reboot_notifier(&usb_pcwd_notifier);
778error:
Adrian Bunkc9d1a0b2006-03-10 19:04:38 +0100779 if (usb_pcwd)
780 usb_pcwd_delete(usb_pcwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 usb_pcwd_device = NULL;
782 return retval;
783}
784
785
786/**
787 * usb_pcwd_disconnect
788 *
789 * Called by the usb core when the device is removed from the system.
790 *
791 * This routine guarantees that the driver will not submit any more urbs
792 * by clearing dev->udev.
793 */
794static void usb_pcwd_disconnect(struct usb_interface *interface)
795{
796 struct usb_pcwd_private *usb_pcwd;
797
798 /* prevent races with open() */
Ingo Molnar6f87f0d2006-03-23 03:00:27 -0800799 mutex_lock(&disconnect_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000801 usb_pcwd = usb_get_intfdata(interface);
802 usb_set_intfdata(interface, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Matthias Kaehlcke9f7afa62007-05-03 20:15:14 -0700804 mutex_lock(&usb_pcwd->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* Stop the timer before we leave */
807 if (!nowayout)
808 usb_pcwd_stop(usb_pcwd);
809
810 /* We should now stop communicating with the USB PCWD device */
811 usb_pcwd->exists = 0;
812
813 /* Deregister */
814 misc_deregister(&usb_pcwd_miscdev);
815 misc_deregister(&usb_pcwd_temperature_miscdev);
816 unregister_reboot_notifier(&usb_pcwd_notifier);
817
Matthias Kaehlcke9f7afa62007-05-03 20:15:14 -0700818 mutex_unlock(&usb_pcwd->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 /* Delete the USB PCWD device */
821 usb_pcwd_delete(usb_pcwd);
822
823 cards_found--;
824
Ingo Molnar6f87f0d2006-03-23 03:00:27 -0800825 mutex_unlock(&disconnect_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Joe Perches27c766a2012-02-15 15:06:19 -0800827 pr_info("USB PC Watchdog disconnected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Greg Kroah-Hartmanfe748482011-11-18 09:52:10 -0800830module_usb_driver(usb_pcwd_driver);