| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 1 | /* | 
 | 2 |  * adutux - driver for ADU devices from Ontrak Control Systems | 
 | 3 |  * This is an experimental driver. Use at your own risk. | 
 | 4 |  * This driver is not supported by Ontrak Control Systems. | 
 | 5 |  * | 
 | 6 |  * Copyright (c) 2003 John Homppi (SCO, leave this notice here) | 
 | 7 |  * | 
 | 8 |  * This program is free software; you can redistribute it and/or | 
 | 9 |  * modify it under the terms of the GNU General Public License as | 
 | 10 |  * published by the Free Software Foundation; either version 2 of | 
 | 11 |  * the License, or (at your option) any later version. | 
 | 12 |  * | 
 | 13 |  * derived from the Lego USB Tower driver 0.56: | 
 | 14 |  * Copyright (c) 2003 David Glance <davidgsf@sourceforge.net> | 
 | 15 |  *               2001 Juergen Stuber <stuber@loria.fr> | 
 | 16 |  * that was derived from USB Skeleton driver - 0.5 | 
 | 17 |  * Copyright (c) 2001 Greg Kroah-Hartman (greg@kroah.com) | 
 | 18 |  * | 
 | 19 |  */ | 
 | 20 |  | 
 | 21 | #include <linux/kernel.h> | 
 | 22 | #include <linux/errno.h> | 
 | 23 | #include <linux/init.h> | 
 | 24 | #include <linux/slab.h> | 
 | 25 | #include <linux/module.h> | 
 | 26 | #include <linux/usb.h> | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 27 | #include <linux/mutex.h> | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 28 | #include <asm/uaccess.h> | 
 | 29 |  | 
 | 30 | #ifdef CONFIG_USB_DEBUG | 
 | 31 | static int debug = 5; | 
 | 32 | #else | 
 | 33 | static int debug = 1; | 
 | 34 | #endif | 
 | 35 |  | 
 | 36 | /* Use our own dbg macro */ | 
 | 37 | #undef dbg | 
 | 38 | #define dbg(lvl, format, arg...) 					\ | 
 | 39 | do { 									\ | 
 | 40 | 	if (debug >= lvl)						\ | 
 | 41 | 		printk(KERN_DEBUG __FILE__ " : " format " \n", ## arg);	\ | 
 | 42 | } while (0) | 
 | 43 |  | 
 | 44 |  | 
 | 45 | /* Version Information */ | 
 | 46 | #define DRIVER_VERSION "v0.0.13" | 
 | 47 | #define DRIVER_AUTHOR "John Homppi" | 
 | 48 | #define DRIVER_DESC "adutux (see www.ontrak.net)" | 
 | 49 |  | 
 | 50 | /* Module parameters */ | 
 | 51 | module_param(debug, int, S_IRUGO | S_IWUSR); | 
 | 52 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | 
 | 53 |  | 
 | 54 | /* Define these values to match your device */ | 
 | 55 | #define ADU_VENDOR_ID 0x0a07 | 
 | 56 | #define ADU_PRODUCT_ID 0x0064 | 
 | 57 |  | 
 | 58 | /* table of devices that work with this driver */ | 
 | 59 | static struct usb_device_id device_table [] = { | 
 | 60 | 	{ USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID) },		/* ADU100 */ | 
 | 61 | 	{ USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID+20) }, 	/* ADU120 */ | 
 | 62 | 	{ USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID+30) }, 	/* ADU130 */ | 
 | 63 | 	{ USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID+100) },	/* ADU200 */ | 
 | 64 | 	{ USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID+108) },	/* ADU208 */ | 
 | 65 | 	{ USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID+118) },	/* ADU218 */ | 
 | 66 | 	{ }/* Terminating entry */ | 
 | 67 | }; | 
 | 68 |  | 
 | 69 | MODULE_DEVICE_TABLE(usb, device_table); | 
 | 70 |  | 
 | 71 | #ifdef CONFIG_USB_DYNAMIC_MINORS | 
 | 72 | #define ADU_MINOR_BASE	0 | 
 | 73 | #else | 
 | 74 | #define ADU_MINOR_BASE	67 | 
 | 75 | #endif | 
 | 76 |  | 
 | 77 | /* we can have up to this number of device plugged in at once */ | 
 | 78 | #define MAX_DEVICES	16 | 
 | 79 |  | 
 | 80 | #define COMMAND_TIMEOUT	(2*HZ)	/* 60 second timeout for a command */ | 
 | 81 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 82 | /* | 
 | 83 |  * The locking scheme is a vanilla 3-lock: | 
 | 84 |  *   adu_device.buflock: A spinlock, covers what IRQs touch. | 
 | 85 |  *   adutux_mutex:       A Static lock to cover open_count. It would also cover | 
 | 86 |  *                       any globals, but we don't have them in 2.6. | 
 | 87 |  *   adu_device.mtx:     A mutex to hold across sleepers like copy_from_user. | 
 | 88 |  *                       It covers all of adu_device, except the open_count | 
 | 89 |  *                       and what .buflock covers. | 
 | 90 |  */ | 
 | 91 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 92 | /* Structure to hold all of our device specific stuff */ | 
 | 93 | struct adu_device { | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 94 | 	struct mutex		mtx; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 95 | 	struct usb_device*	udev; /* save off the usb device pointer */ | 
 | 96 | 	struct usb_interface*	interface; | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 97 | 	unsigned int		minor; /* the starting minor number for this device */ | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 98 | 	char			serial_number[8]; | 
 | 99 |  | 
 | 100 | 	int			open_count; /* number of times this port has been opened */ | 
 | 101 |  | 
 | 102 | 	char*			read_buffer_primary; | 
 | 103 | 	int			read_buffer_length; | 
 | 104 | 	char*			read_buffer_secondary; | 
 | 105 | 	int			secondary_head; | 
 | 106 | 	int			secondary_tail; | 
 | 107 | 	spinlock_t		buflock; | 
 | 108 |  | 
 | 109 | 	wait_queue_head_t	read_wait; | 
 | 110 | 	wait_queue_head_t	write_wait; | 
 | 111 |  | 
 | 112 | 	char*			interrupt_in_buffer; | 
 | 113 | 	struct usb_endpoint_descriptor* interrupt_in_endpoint; | 
 | 114 | 	struct urb*		interrupt_in_urb; | 
 | 115 | 	int			read_urb_finished; | 
 | 116 |  | 
 | 117 | 	char*			interrupt_out_buffer; | 
 | 118 | 	struct usb_endpoint_descriptor* interrupt_out_endpoint; | 
 | 119 | 	struct urb*		interrupt_out_urb; | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 120 | 	int			out_urb_finished; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 121 | }; | 
 | 122 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 123 | static DEFINE_MUTEX(adutux_mutex); | 
 | 124 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 125 | static struct usb_driver adu_driver; | 
 | 126 |  | 
 | 127 | static void adu_debug_data(int level, const char *function, int size, | 
 | 128 | 			   const unsigned char *data) | 
 | 129 | { | 
 | 130 | 	int i; | 
 | 131 |  | 
 | 132 | 	if (debug < level) | 
 | 133 | 		return; | 
 | 134 |  | 
 | 135 | 	printk(KERN_DEBUG __FILE__": %s - length = %d, data = ", | 
 | 136 | 	       function, size); | 
 | 137 | 	for (i = 0; i < size; ++i) | 
 | 138 | 		printk("%.2x ", data[i]); | 
 | 139 | 	printk("\n"); | 
 | 140 | } | 
 | 141 |  | 
 | 142 | /** | 
 | 143 |  * adu_abort_transfers | 
 | 144 |  *      aborts transfers and frees associated data structures | 
 | 145 |  */ | 
 | 146 | static void adu_abort_transfers(struct adu_device *dev) | 
 | 147 | { | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 148 | 	unsigned long flags; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 149 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 150 | 	dbg(2," %s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 151 |  | 
 | 152 | 	if (dev->udev == NULL) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 153 | 		dbg(1," %s : udev is null", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 154 | 		goto exit; | 
 | 155 | 	} | 
 | 156 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 157 | 	/* shutdown transfer */ | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 158 |  | 
 | 159 | 	/* XXX Anchor these instead */ | 
 | 160 | 	spin_lock_irqsave(&dev->buflock, flags); | 
 | 161 | 	if (!dev->read_urb_finished) { | 
 | 162 | 		spin_unlock_irqrestore(&dev->buflock, flags); | 
 | 163 | 		usb_kill_urb(dev->interrupt_in_urb); | 
 | 164 | 	} else | 
 | 165 | 		spin_unlock_irqrestore(&dev->buflock, flags); | 
 | 166 |  | 
 | 167 | 	spin_lock_irqsave(&dev->buflock, flags); | 
 | 168 | 	if (!dev->out_urb_finished) { | 
 | 169 | 		spin_unlock_irqrestore(&dev->buflock, flags); | 
 | 170 | 		usb_kill_urb(dev->interrupt_out_urb); | 
 | 171 | 	} else | 
 | 172 | 		spin_unlock_irqrestore(&dev->buflock, flags); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 173 |  | 
 | 174 | exit: | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 175 | 	dbg(2," %s : leave", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 176 | } | 
 | 177 |  | 
 | 178 | static void adu_delete(struct adu_device *dev) | 
 | 179 | { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 180 | 	dbg(2, "%s enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 181 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 182 | 	/* free data structures */ | 
 | 183 | 	usb_free_urb(dev->interrupt_in_urb); | 
 | 184 | 	usb_free_urb(dev->interrupt_out_urb); | 
 | 185 | 	kfree(dev->read_buffer_primary); | 
 | 186 | 	kfree(dev->read_buffer_secondary); | 
 | 187 | 	kfree(dev->interrupt_in_buffer); | 
 | 188 | 	kfree(dev->interrupt_out_buffer); | 
 | 189 | 	kfree(dev); | 
 | 190 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 191 | 	dbg(2, "%s : leave", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 192 | } | 
 | 193 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 194 | static void adu_interrupt_in_callback(struct urb *urb) | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 195 | { | 
 | 196 | 	struct adu_device *dev = urb->context; | 
| Greg Kroah-Hartman | 24497a0 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 197 | 	int status = urb->status; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 198 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 199 | 	dbg(4," %s : enter, status %d", __func__, status); | 
 | 200 | 	adu_debug_data(5, __func__, urb->actual_length, | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 201 | 		       urb->transfer_buffer); | 
 | 202 |  | 
 | 203 | 	spin_lock(&dev->buflock); | 
 | 204 |  | 
| Greg Kroah-Hartman | 24497a0 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 205 | 	if (status != 0) { | 
| Oliver Neukum | f6c1cea | 2007-08-16 16:02:08 +0200 | [diff] [blame] | 206 | 		if ((status != -ENOENT) && (status != -ECONNRESET) && | 
 | 207 | 			(status != -ESHUTDOWN)) { | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 208 | 			dbg(1," %s : nonzero status received: %d", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 209 | 			    __func__, status); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 210 | 		} | 
 | 211 | 		goto exit; | 
 | 212 | 	} | 
 | 213 |  | 
 | 214 | 	if (urb->actual_length > 0 && dev->interrupt_in_buffer[0] != 0x00) { | 
 | 215 | 		if (dev->read_buffer_length < | 
 | 216 | 		    (4 * le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize)) - | 
 | 217 | 		     (urb->actual_length)) { | 
 | 218 | 			memcpy (dev->read_buffer_primary + | 
 | 219 | 				dev->read_buffer_length, | 
 | 220 | 				dev->interrupt_in_buffer, urb->actual_length); | 
 | 221 |  | 
 | 222 | 			dev->read_buffer_length += urb->actual_length; | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 223 | 			dbg(2," %s reading  %d ", __func__, | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 224 | 			    urb->actual_length); | 
 | 225 | 		} else { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 226 | 			dbg(1," %s : read_buffer overflow", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 227 | 		} | 
 | 228 | 	} | 
 | 229 |  | 
 | 230 | exit: | 
 | 231 | 	dev->read_urb_finished = 1; | 
 | 232 | 	spin_unlock(&dev->buflock); | 
 | 233 | 	/* always wake up so we recover from errors */ | 
 | 234 | 	wake_up_interruptible(&dev->read_wait); | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 235 | 	adu_debug_data(5, __func__, urb->actual_length, | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 236 | 		       urb->transfer_buffer); | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 237 | 	dbg(4," %s : leave, status %d", __func__, status); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 238 | } | 
 | 239 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 240 | static void adu_interrupt_out_callback(struct urb *urb) | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 241 | { | 
 | 242 | 	struct adu_device *dev = urb->context; | 
| Greg Kroah-Hartman | 24497a0 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 243 | 	int status = urb->status; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 244 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 245 | 	dbg(4," %s : enter, status %d", __func__, status); | 
 | 246 | 	adu_debug_data(5,__func__, urb->actual_length, urb->transfer_buffer); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 247 |  | 
| Greg Kroah-Hartman | 24497a0 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 248 | 	if (status != 0) { | 
 | 249 | 		if ((status != -ENOENT) && | 
 | 250 | 		    (status != -ECONNRESET)) { | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 251 | 			dbg(1, " %s :nonzero status received: %d", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 252 | 			    __func__, status); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 253 | 		} | 
 | 254 | 		goto exit; | 
 | 255 | 	} | 
 | 256 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 257 | 	spin_lock(&dev->buflock); | 
 | 258 | 	dev->out_urb_finished = 1; | 
 | 259 | 	wake_up(&dev->write_wait); | 
 | 260 | 	spin_unlock(&dev->buflock); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 261 | exit: | 
 | 262 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 263 | 	adu_debug_data(5, __func__, urb->actual_length, | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 264 | 		       urb->transfer_buffer); | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 265 | 	dbg(4," %s : leave, status %d", __func__, status); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 266 | } | 
 | 267 |  | 
 | 268 | static int adu_open(struct inode *inode, struct file *file) | 
 | 269 | { | 
 | 270 | 	struct adu_device *dev = NULL; | 
 | 271 | 	struct usb_interface *interface; | 
 | 272 | 	int subminor; | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 273 | 	int retval; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 274 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 275 | 	dbg(2,"%s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 276 |  | 
 | 277 | 	subminor = iminor(inode); | 
 | 278 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 279 | 	if ((retval = mutex_lock_interruptible(&adutux_mutex))) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 280 | 		dbg(2, "%s : mutex lock failed", __func__); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 281 | 		goto exit_no_lock; | 
 | 282 | 	} | 
 | 283 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 284 | 	interface = usb_find_interface(&adu_driver, subminor); | 
 | 285 | 	if (!interface) { | 
| Greg Kroah-Hartman | fd3f191 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 286 | 		printk(KERN_ERR "adutux: %s - error, can't find device for " | 
 | 287 | 		       "minor %d\n", __func__, subminor); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 288 | 		retval = -ENODEV; | 
 | 289 | 		goto exit_no_device; | 
 | 290 | 	} | 
 | 291 |  | 
 | 292 | 	dev = usb_get_intfdata(interface); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 293 | 	if (!dev || !dev->udev) { | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 294 | 		retval = -ENODEV; | 
 | 295 | 		goto exit_no_device; | 
 | 296 | 	} | 
 | 297 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 298 | 	/* check that nobody else is using the device */ | 
 | 299 | 	if (dev->open_count) { | 
 | 300 | 		retval = -EBUSY; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 301 | 		goto exit_no_device; | 
 | 302 | 	} | 
 | 303 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 304 | 	++dev->open_count; | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 305 | 	dbg(2,"%s : open count %d", __func__, dev->open_count); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 306 |  | 
 | 307 | 	/* save device in the file's private structure */ | 
 | 308 | 	file->private_data = dev; | 
 | 309 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 310 | 	/* initialize in direction */ | 
 | 311 | 	dev->read_buffer_length = 0; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 312 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 313 | 	/* fixup first read by having urb waiting for it */ | 
 | 314 | 	usb_fill_int_urb(dev->interrupt_in_urb,dev->udev, | 
 | 315 | 			 usb_rcvintpipe(dev->udev, | 
 | 316 | 					dev->interrupt_in_endpoint->bEndpointAddress), | 
 | 317 | 			 dev->interrupt_in_buffer, | 
 | 318 | 			 le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize), | 
 | 319 | 			 adu_interrupt_in_callback, dev, | 
 | 320 | 			 dev->interrupt_in_endpoint->bInterval); | 
 | 321 | 	dev->read_urb_finished = 0; | 
 | 322 | 	if (usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL)) | 
 | 323 | 		dev->read_urb_finished = 1; | 
 | 324 | 	/* we ignore failure */ | 
 | 325 | 	/* end of fixup for first read */ | 
 | 326 |  | 
 | 327 | 	/* initialize out direction */ | 
 | 328 | 	dev->out_urb_finished = 1; | 
 | 329 |  | 
 | 330 | 	retval = 0; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 331 |  | 
 | 332 | exit_no_device: | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 333 | 	mutex_unlock(&adutux_mutex); | 
 | 334 | exit_no_lock: | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 335 | 	dbg(2,"%s : leave, return value %d ", __func__, retval); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 336 | 	return retval; | 
 | 337 | } | 
 | 338 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 339 | static void adu_release_internal(struct adu_device *dev) | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 340 | { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 341 | 	dbg(2," %s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 342 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 343 | 	/* decrement our usage count for the device */ | 
 | 344 | 	--dev->open_count; | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 345 | 	dbg(2," %s : open count %d", __func__, dev->open_count); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 346 | 	if (dev->open_count <= 0) { | 
 | 347 | 		adu_abort_transfers(dev); | 
 | 348 | 		dev->open_count = 0; | 
 | 349 | 	} | 
 | 350 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 351 | 	dbg(2," %s : leave", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 352 | } | 
 | 353 |  | 
 | 354 | static int adu_release(struct inode *inode, struct file *file) | 
 | 355 | { | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 356 | 	struct adu_device *dev; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 357 | 	int retval = 0; | 
 | 358 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 359 | 	dbg(2," %s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 360 |  | 
 | 361 | 	if (file == NULL) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 362 |  		dbg(1," %s : file is NULL", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 363 | 		retval = -ENODEV; | 
 | 364 | 		goto exit; | 
 | 365 | 	} | 
 | 366 |  | 
 | 367 | 	dev = file->private_data; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 368 | 	if (dev == NULL) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 369 |  		dbg(1," %s : object is NULL", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 370 | 		retval = -ENODEV; | 
 | 371 | 		goto exit; | 
 | 372 | 	} | 
 | 373 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 374 | 	mutex_lock(&adutux_mutex); /* not interruptible */ | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 375 |  | 
 | 376 | 	if (dev->open_count <= 0) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 377 | 		dbg(1," %s : device not opened", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 378 | 		retval = -ENODEV; | 
| Jiri Slaby | 46c9844 | 2009-03-11 21:47:38 +0100 | [diff] [blame] | 379 | 		goto unlock; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 380 | 	} | 
 | 381 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 382 | 	adu_release_internal(dev); | 
| Alan Stern | d4ead16 | 2007-05-22 11:46:41 -0400 | [diff] [blame] | 383 | 	if (dev->udev == NULL) { | 
 | 384 | 		/* the device was unplugged before the file was released */ | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 385 | 		if (!dev->open_count)	/* ... and we're the last user */ | 
 | 386 | 			adu_delete(dev); | 
| Alan Stern | d4ead16 | 2007-05-22 11:46:41 -0400 | [diff] [blame] | 387 | 	} | 
| Jiri Slaby | 46c9844 | 2009-03-11 21:47:38 +0100 | [diff] [blame] | 388 | unlock: | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 389 | 	mutex_unlock(&adutux_mutex); | 
| Jiri Slaby | 46c9844 | 2009-03-11 21:47:38 +0100 | [diff] [blame] | 390 | exit: | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 391 | 	dbg(2," %s : leave, return value %d", __func__, retval); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 392 | 	return retval; | 
 | 393 | } | 
 | 394 |  | 
 | 395 | static ssize_t adu_read(struct file *file, __user char *buffer, size_t count, | 
 | 396 | 			loff_t *ppos) | 
 | 397 | { | 
 | 398 | 	struct adu_device *dev; | 
 | 399 | 	size_t bytes_read = 0; | 
 | 400 | 	size_t bytes_to_read = count; | 
 | 401 | 	int i; | 
 | 402 | 	int retval = 0; | 
 | 403 | 	int timeout = 0; | 
 | 404 | 	int should_submit = 0; | 
 | 405 | 	unsigned long flags; | 
 | 406 | 	DECLARE_WAITQUEUE(wait, current); | 
 | 407 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 408 | 	dbg(2," %s : enter, count = %Zd, file=%p", __func__, count, file); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 409 |  | 
 | 410 | 	dev = file->private_data; | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 411 | 	dbg(2," %s : dev=%p", __func__, dev); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 412 |  | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 413 | 	if (mutex_lock_interruptible(&dev->mtx)) | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 414 | 		return -ERESTARTSYS; | 
 | 415 |  | 
 | 416 | 	/* verify that the device wasn't unplugged */ | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 417 | 	if (dev->udev == NULL) { | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 418 | 		retval = -ENODEV; | 
| Greg Kroah-Hartman | fd3f191 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 419 | 		printk(KERN_ERR "adutux: No device or device unplugged %d\n", | 
 | 420 | 		       retval); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 421 | 		goto exit; | 
 | 422 | 	} | 
 | 423 |  | 
 | 424 | 	/* verify that some data was requested */ | 
 | 425 | 	if (count == 0) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 426 | 		dbg(1," %s : read request of 0 bytes", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 427 | 		goto exit; | 
 | 428 | 	} | 
 | 429 |  | 
 | 430 | 	timeout = COMMAND_TIMEOUT; | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 431 | 	dbg(2," %s : about to start looping", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 432 | 	while (bytes_to_read) { | 
 | 433 | 		int data_in_secondary = dev->secondary_tail - dev->secondary_head; | 
 | 434 | 		dbg(2," %s : while, data_in_secondary=%d, status=%d", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 435 | 		    __func__, data_in_secondary, | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 436 | 		    dev->interrupt_in_urb->status); | 
 | 437 |  | 
 | 438 | 		if (data_in_secondary) { | 
 | 439 | 			/* drain secondary buffer */ | 
 | 440 | 			int amount = bytes_to_read < data_in_secondary ? bytes_to_read : data_in_secondary; | 
 | 441 | 			i = copy_to_user(buffer, dev->read_buffer_secondary+dev->secondary_head, amount); | 
 | 442 | 			if (i < 0) { | 
 | 443 | 				retval = -EFAULT; | 
 | 444 | 				goto exit; | 
 | 445 | 			} | 
 | 446 | 			dev->secondary_head += (amount - i); | 
 | 447 | 			bytes_read += (amount - i); | 
 | 448 | 			bytes_to_read -= (amount - i); | 
 | 449 | 			if (i) { | 
 | 450 | 				retval = bytes_read ? bytes_read : -EFAULT; | 
 | 451 | 				goto exit; | 
 | 452 | 			} | 
 | 453 | 		} else { | 
 | 454 | 			/* we check the primary buffer */ | 
 | 455 | 			spin_lock_irqsave (&dev->buflock, flags); | 
 | 456 | 			if (dev->read_buffer_length) { | 
 | 457 | 				/* we secure access to the primary */ | 
 | 458 | 				char *tmp; | 
 | 459 | 				dbg(2," %s : swap, read_buffer_length = %d", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 460 | 				    __func__, dev->read_buffer_length); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 461 | 				tmp = dev->read_buffer_secondary; | 
 | 462 | 				dev->read_buffer_secondary = dev->read_buffer_primary; | 
 | 463 | 				dev->read_buffer_primary = tmp; | 
 | 464 | 				dev->secondary_head = 0; | 
 | 465 | 				dev->secondary_tail = dev->read_buffer_length; | 
 | 466 | 				dev->read_buffer_length = 0; | 
 | 467 | 				spin_unlock_irqrestore(&dev->buflock, flags); | 
 | 468 | 				/* we have a free buffer so use it */ | 
 | 469 | 				should_submit = 1; | 
 | 470 | 			} else { | 
 | 471 | 				/* even the primary was empty - we may need to do IO */ | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 472 | 				if (!dev->read_urb_finished) { | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 473 | 					/* somebody is doing IO */ | 
 | 474 | 					spin_unlock_irqrestore(&dev->buflock, flags); | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 475 | 					dbg(2," %s : submitted already", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 476 | 				} else { | 
 | 477 | 					/* we must initiate input */ | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 478 | 					dbg(2," %s : initiate input", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 479 | 					dev->read_urb_finished = 0; | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 480 | 					spin_unlock_irqrestore(&dev->buflock, flags); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 481 |  | 
 | 482 | 					usb_fill_int_urb(dev->interrupt_in_urb,dev->udev, | 
 | 483 | 							 usb_rcvintpipe(dev->udev, | 
 | 484 | 							 		dev->interrupt_in_endpoint->bEndpointAddress), | 
 | 485 | 							 dev->interrupt_in_buffer, | 
 | 486 | 							 le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize), | 
 | 487 | 							 adu_interrupt_in_callback, | 
 | 488 | 							 dev, | 
 | 489 | 							 dev->interrupt_in_endpoint->bInterval); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 490 | 					retval = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL); | 
 | 491 | 					if (retval) { | 
 | 492 | 						dev->read_urb_finished = 1; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 493 | 						if (retval == -ENOMEM) { | 
 | 494 | 							retval = bytes_read ? bytes_read : -ENOMEM; | 
 | 495 | 						} | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 496 | 						dbg(2," %s : submit failed", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 497 | 						goto exit; | 
 | 498 | 					} | 
 | 499 | 				} | 
 | 500 |  | 
 | 501 | 				/* we wait for I/O to complete */ | 
 | 502 | 				set_current_state(TASK_INTERRUPTIBLE); | 
 | 503 | 				add_wait_queue(&dev->read_wait, &wait); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 504 | 				spin_lock_irqsave(&dev->buflock, flags); | 
 | 505 | 				if (!dev->read_urb_finished) { | 
 | 506 | 					spin_unlock_irqrestore(&dev->buflock, flags); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 507 | 					timeout = schedule_timeout(COMMAND_TIMEOUT); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 508 | 				} else { | 
 | 509 | 					spin_unlock_irqrestore(&dev->buflock, flags); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 510 | 					set_current_state(TASK_RUNNING); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 511 | 				} | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 512 | 				remove_wait_queue(&dev->read_wait, &wait); | 
 | 513 |  | 
 | 514 | 				if (timeout <= 0) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 515 | 					dbg(2," %s : timeout", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 516 | 					retval = bytes_read ? bytes_read : -ETIMEDOUT; | 
 | 517 | 					goto exit; | 
 | 518 | 				} | 
 | 519 |  | 
 | 520 | 				if (signal_pending(current)) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 521 | 					dbg(2," %s : signal pending", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 522 | 					retval = bytes_read ? bytes_read : -EINTR; | 
 | 523 | 					goto exit; | 
 | 524 | 				} | 
 | 525 | 			} | 
 | 526 | 		} | 
 | 527 | 	} | 
 | 528 |  | 
 | 529 | 	retval = bytes_read; | 
 | 530 | 	/* if the primary buffer is empty then use it */ | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 531 | 	spin_lock_irqsave(&dev->buflock, flags); | 
 | 532 | 	if (should_submit && dev->read_urb_finished) { | 
 | 533 | 		dev->read_urb_finished = 0; | 
 | 534 | 		spin_unlock_irqrestore(&dev->buflock, flags); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 535 | 		usb_fill_int_urb(dev->interrupt_in_urb,dev->udev, | 
 | 536 | 				 usb_rcvintpipe(dev->udev, | 
 | 537 | 				 		dev->interrupt_in_endpoint->bEndpointAddress), | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 538 | 				dev->interrupt_in_buffer, | 
 | 539 | 				le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize), | 
 | 540 | 				adu_interrupt_in_callback, | 
 | 541 | 				dev, | 
 | 542 | 				dev->interrupt_in_endpoint->bInterval); | 
 | 543 | 		if (usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL) != 0) | 
 | 544 | 			dev->read_urb_finished = 1; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 545 | 		/* we ignore failure */ | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 546 | 	} else { | 
 | 547 | 		spin_unlock_irqrestore(&dev->buflock, flags); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 548 | 	} | 
 | 549 |  | 
 | 550 | exit: | 
 | 551 | 	/* unlock the device */ | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 552 | 	mutex_unlock(&dev->mtx); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 553 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 554 | 	dbg(2," %s : leave, return value %d", __func__, retval); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 555 | 	return retval; | 
 | 556 | } | 
 | 557 |  | 
 | 558 | static ssize_t adu_write(struct file *file, const __user char *buffer, | 
 | 559 | 			 size_t count, loff_t *ppos) | 
 | 560 | { | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 561 | 	DECLARE_WAITQUEUE(waita, current); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 562 | 	struct adu_device *dev; | 
 | 563 | 	size_t bytes_written = 0; | 
 | 564 | 	size_t bytes_to_write; | 
 | 565 | 	size_t buffer_size; | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 566 | 	unsigned long flags; | 
| Oliver Neukum | ebc3ac1 | 2007-04-02 15:16:36 +0200 | [diff] [blame] | 567 | 	int retval; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 568 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 569 | 	dbg(2," %s : enter, count = %Zd", __func__, count); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 570 |  | 
 | 571 | 	dev = file->private_data; | 
 | 572 |  | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 573 | 	retval = mutex_lock_interruptible(&dev->mtx); | 
| Oliver Neukum | ebc3ac1 | 2007-04-02 15:16:36 +0200 | [diff] [blame] | 574 | 	if (retval) | 
 | 575 | 		goto exit_nolock; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 576 |  | 
 | 577 | 	/* verify that the device wasn't unplugged */ | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 578 | 	if (dev->udev == NULL) { | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 579 | 		retval = -ENODEV; | 
| Greg Kroah-Hartman | fd3f191 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 580 | 		printk(KERN_ERR "adutux: No device or device unplugged %d\n", | 
 | 581 | 		       retval); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 582 | 		goto exit; | 
 | 583 | 	} | 
 | 584 |  | 
 | 585 | 	/* verify that we actually have some data to write */ | 
 | 586 | 	if (count == 0) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 587 | 		dbg(1," %s : write request of 0 bytes", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 588 | 		goto exit; | 
 | 589 | 	} | 
 | 590 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 591 | 	while (count > 0) { | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 592 | 		add_wait_queue(&dev->write_wait, &waita); | 
 | 593 | 		set_current_state(TASK_INTERRUPTIBLE); | 
 | 594 | 		spin_lock_irqsave(&dev->buflock, flags); | 
 | 595 | 		if (!dev->out_urb_finished) { | 
 | 596 | 			spin_unlock_irqrestore(&dev->buflock, flags); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 597 |  | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 598 | 			mutex_unlock(&dev->mtx); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 599 | 			if (signal_pending(current)) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 600 | 				dbg(1," %s : interrupted", __func__); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 601 | 				set_current_state(TASK_RUNNING); | 
 | 602 | 				retval = -EINTR; | 
 | 603 | 				goto exit_onqueue; | 
 | 604 | 			} | 
 | 605 | 			if (schedule_timeout(COMMAND_TIMEOUT) == 0) { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 606 | 				dbg(1, "%s - command timed out.", __func__); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 607 | 				retval = -ETIMEDOUT; | 
 | 608 | 				goto exit_onqueue; | 
 | 609 | 			} | 
 | 610 | 			remove_wait_queue(&dev->write_wait, &waita); | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 611 | 			retval = mutex_lock_interruptible(&dev->mtx); | 
| Oliver Neukum | ebc3ac1 | 2007-04-02 15:16:36 +0200 | [diff] [blame] | 612 | 			if (retval) { | 
 | 613 | 				retval = bytes_written ? bytes_written : retval; | 
 | 614 | 				goto exit_nolock; | 
 | 615 | 			} | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 616 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 617 | 			dbg(4," %s : in progress, count = %Zd", __func__, count); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 618 | 		} else { | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 619 | 			spin_unlock_irqrestore(&dev->buflock, flags); | 
 | 620 | 			set_current_state(TASK_RUNNING); | 
 | 621 | 			remove_wait_queue(&dev->write_wait, &waita); | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 622 | 			dbg(4," %s : sending, count = %Zd", __func__, count); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 623 |  | 
 | 624 | 			/* write the data into interrupt_out_buffer from userspace */ | 
 | 625 | 			buffer_size = le16_to_cpu(dev->interrupt_out_endpoint->wMaxPacketSize); | 
 | 626 | 			bytes_to_write = count > buffer_size ? buffer_size : count; | 
 | 627 | 			dbg(4," %s : buffer_size = %Zd, count = %Zd, bytes_to_write = %Zd", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 628 | 			    __func__, buffer_size, count, bytes_to_write); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 629 |  | 
 | 630 | 			if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write) != 0) { | 
 | 631 | 				retval = -EFAULT; | 
 | 632 | 				goto exit; | 
 | 633 | 			} | 
 | 634 |  | 
 | 635 | 			/* send off the urb */ | 
 | 636 | 			usb_fill_int_urb( | 
 | 637 | 				dev->interrupt_out_urb, | 
 | 638 | 				dev->udev, | 
 | 639 | 				usb_sndintpipe(dev->udev, dev->interrupt_out_endpoint->bEndpointAddress), | 
 | 640 | 				dev->interrupt_out_buffer, | 
 | 641 | 				bytes_to_write, | 
 | 642 | 				adu_interrupt_out_callback, | 
 | 643 | 				dev, | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 644 | 				dev->interrupt_out_endpoint->bInterval); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 645 | 			dev->interrupt_out_urb->actual_length = bytes_to_write; | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 646 | 			dev->out_urb_finished = 0; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 647 | 			retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL); | 
 | 648 | 			if (retval < 0) { | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 649 | 				dev->out_urb_finished = 1; | 
| Greg Kroah-Hartman | fd3f191 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 650 | 				dev_err(&dev->udev->dev, "Couldn't submit " | 
 | 651 | 					"interrupt_out_urb %d\n", retval); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 652 | 				goto exit; | 
 | 653 | 			} | 
 | 654 |  | 
 | 655 | 			buffer += bytes_to_write; | 
 | 656 | 			count -= bytes_to_write; | 
 | 657 |  | 
 | 658 | 			bytes_written += bytes_to_write; | 
 | 659 | 		} | 
 | 660 | 	} | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 661 | 	mutex_unlock(&dev->mtx); | 
 | 662 | 	return bytes_written; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 663 |  | 
 | 664 | exit: | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 665 | 	mutex_unlock(&dev->mtx); | 
| Oliver Neukum | ebc3ac1 | 2007-04-02 15:16:36 +0200 | [diff] [blame] | 666 | exit_nolock: | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 667 | 	dbg(2," %s : leave, return value %d", __func__, retval); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 668 | 	return retval; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 669 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 670 | exit_onqueue: | 
 | 671 | 	remove_wait_queue(&dev->write_wait, &waita); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 672 | 	return retval; | 
 | 673 | } | 
 | 674 |  | 
 | 675 | /* file operations needed when we register this driver */ | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 676 | static const struct file_operations adu_fops = { | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 677 | 	.owner = THIS_MODULE, | 
 | 678 | 	.read  = adu_read, | 
 | 679 | 	.write = adu_write, | 
 | 680 | 	.open = adu_open, | 
 | 681 | 	.release = adu_release, | 
 | 682 | }; | 
 | 683 |  | 
 | 684 | /* | 
 | 685 |  * usb class driver info in order to get a minor number from the usb core, | 
 | 686 |  * and to have the device registered with devfs and the driver core | 
 | 687 |  */ | 
 | 688 | static struct usb_class_driver adu_class = { | 
 | 689 | 	.name = "usb/adutux%d", | 
 | 690 | 	.fops = &adu_fops, | 
 | 691 | 	.minor_base = ADU_MINOR_BASE, | 
 | 692 | }; | 
 | 693 |  | 
 | 694 | /** | 
 | 695 |  * adu_probe | 
 | 696 |  * | 
 | 697 |  * Called by the usb core when a new device is connected that it thinks | 
 | 698 |  * this driver might be interested in. | 
 | 699 |  */ | 
 | 700 | static int adu_probe(struct usb_interface *interface, | 
 | 701 | 		     const struct usb_device_id *id) | 
 | 702 | { | 
 | 703 | 	struct usb_device *udev = interface_to_usbdev(interface); | 
 | 704 | 	struct adu_device *dev = NULL; | 
 | 705 | 	struct usb_host_interface *iface_desc; | 
 | 706 | 	struct usb_endpoint_descriptor *endpoint; | 
 | 707 | 	int retval = -ENODEV; | 
 | 708 | 	int in_end_size; | 
 | 709 | 	int out_end_size; | 
 | 710 | 	int i; | 
 | 711 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 712 | 	dbg(2," %s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 713 |  | 
 | 714 | 	if (udev == NULL) { | 
 | 715 | 		dev_err(&interface->dev, "udev is NULL.\n"); | 
 | 716 | 		goto exit; | 
 | 717 | 	} | 
 | 718 |  | 
 | 719 | 	/* allocate memory for our device state and intialize it */ | 
 | 720 | 	dev = kzalloc(sizeof(struct adu_device), GFP_KERNEL); | 
 | 721 | 	if (dev == NULL) { | 
 | 722 | 		dev_err(&interface->dev, "Out of memory\n"); | 
 | 723 | 		retval = -ENOMEM; | 
 | 724 | 		goto exit; | 
 | 725 | 	} | 
 | 726 |  | 
| Matthias Kaehlcke | 8293c56 | 2007-07-13 21:28:31 +0200 | [diff] [blame] | 727 | 	mutex_init(&dev->mtx); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 728 | 	spin_lock_init(&dev->buflock); | 
 | 729 | 	dev->udev = udev; | 
 | 730 | 	init_waitqueue_head(&dev->read_wait); | 
 | 731 | 	init_waitqueue_head(&dev->write_wait); | 
 | 732 |  | 
 | 733 | 	iface_desc = &interface->altsetting[0]; | 
 | 734 |  | 
 | 735 | 	/* set up the endpoint information */ | 
 | 736 | 	for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) { | 
 | 737 | 		endpoint = &iface_desc->endpoint[i].desc; | 
 | 738 |  | 
 | 739 | 		if (usb_endpoint_is_int_in(endpoint)) | 
 | 740 | 			dev->interrupt_in_endpoint = endpoint; | 
 | 741 |  | 
 | 742 | 		if (usb_endpoint_is_int_out(endpoint)) | 
 | 743 | 			dev->interrupt_out_endpoint = endpoint; | 
 | 744 | 	} | 
 | 745 | 	if (dev->interrupt_in_endpoint == NULL) { | 
 | 746 | 		dev_err(&interface->dev, "interrupt in endpoint not found\n"); | 
 | 747 | 		goto error; | 
 | 748 | 	} | 
 | 749 | 	if (dev->interrupt_out_endpoint == NULL) { | 
 | 750 | 		dev_err(&interface->dev, "interrupt out endpoint not found\n"); | 
 | 751 | 		goto error; | 
 | 752 | 	} | 
 | 753 |  | 
 | 754 | 	in_end_size = le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize); | 
 | 755 | 	out_end_size = le16_to_cpu(dev->interrupt_out_endpoint->wMaxPacketSize); | 
 | 756 |  | 
 | 757 | 	dev->read_buffer_primary = kmalloc((4 * in_end_size), GFP_KERNEL); | 
 | 758 | 	if (!dev->read_buffer_primary) { | 
 | 759 | 		dev_err(&interface->dev, "Couldn't allocate read_buffer_primary\n"); | 
 | 760 | 		retval = -ENOMEM; | 
 | 761 | 		goto error; | 
 | 762 | 	} | 
 | 763 |  | 
 | 764 | 	/* debug code prime the buffer */ | 
 | 765 | 	memset(dev->read_buffer_primary, 'a', in_end_size); | 
 | 766 | 	memset(dev->read_buffer_primary + in_end_size, 'b', in_end_size); | 
 | 767 | 	memset(dev->read_buffer_primary + (2 * in_end_size), 'c', in_end_size); | 
 | 768 | 	memset(dev->read_buffer_primary + (3 * in_end_size), 'd', in_end_size); | 
 | 769 |  | 
 | 770 | 	dev->read_buffer_secondary = kmalloc((4 * in_end_size), GFP_KERNEL); | 
 | 771 | 	if (!dev->read_buffer_secondary) { | 
 | 772 | 		dev_err(&interface->dev, "Couldn't allocate read_buffer_secondary\n"); | 
 | 773 | 		retval = -ENOMEM; | 
 | 774 | 		goto error; | 
 | 775 | 	} | 
 | 776 |  | 
 | 777 | 	/* debug code prime the buffer */ | 
 | 778 | 	memset(dev->read_buffer_secondary, 'e', in_end_size); | 
 | 779 | 	memset(dev->read_buffer_secondary + in_end_size, 'f', in_end_size); | 
 | 780 | 	memset(dev->read_buffer_secondary + (2 * in_end_size), 'g', in_end_size); | 
 | 781 | 	memset(dev->read_buffer_secondary + (3 * in_end_size), 'h', in_end_size); | 
 | 782 |  | 
 | 783 | 	dev->interrupt_in_buffer = kmalloc(in_end_size, GFP_KERNEL); | 
 | 784 | 	if (!dev->interrupt_in_buffer) { | 
 | 785 | 		dev_err(&interface->dev, "Couldn't allocate interrupt_in_buffer\n"); | 
 | 786 | 		goto error; | 
 | 787 | 	} | 
 | 788 |  | 
 | 789 | 	/* debug code prime the buffer */ | 
 | 790 | 	memset(dev->interrupt_in_buffer, 'i', in_end_size); | 
 | 791 |  | 
 | 792 | 	dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL); | 
 | 793 | 	if (!dev->interrupt_in_urb) { | 
 | 794 | 		dev_err(&interface->dev, "Couldn't allocate interrupt_in_urb\n"); | 
 | 795 | 		goto error; | 
 | 796 | 	} | 
 | 797 | 	dev->interrupt_out_buffer = kmalloc(out_end_size, GFP_KERNEL); | 
 | 798 | 	if (!dev->interrupt_out_buffer) { | 
 | 799 | 		dev_err(&interface->dev, "Couldn't allocate interrupt_out_buffer\n"); | 
 | 800 | 		goto error; | 
 | 801 | 	} | 
 | 802 | 	dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); | 
 | 803 | 	if (!dev->interrupt_out_urb) { | 
 | 804 | 		dev_err(&interface->dev, "Couldn't allocate interrupt_out_urb\n"); | 
 | 805 | 		goto error; | 
 | 806 | 	} | 
 | 807 |  | 
 | 808 | 	if (!usb_string(udev, udev->descriptor.iSerialNumber, dev->serial_number, | 
 | 809 | 			sizeof(dev->serial_number))) { | 
 | 810 | 		dev_err(&interface->dev, "Could not retrieve serial number\n"); | 
 | 811 | 		goto error; | 
 | 812 | 	} | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 813 | 	dbg(2," %s : serial_number=%s", __func__, dev->serial_number); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 814 |  | 
 | 815 | 	/* we can register the device now, as it is ready */ | 
 | 816 | 	usb_set_intfdata(interface, dev); | 
 | 817 |  | 
 | 818 | 	retval = usb_register_dev(interface, &adu_class); | 
 | 819 |  | 
 | 820 | 	if (retval) { | 
 | 821 | 		/* something prevented us from registering this driver */ | 
 | 822 | 		dev_err(&interface->dev, "Not able to get a minor for this device.\n"); | 
 | 823 | 		usb_set_intfdata(interface, NULL); | 
 | 824 | 		goto error; | 
 | 825 | 	} | 
 | 826 |  | 
 | 827 | 	dev->minor = interface->minor; | 
 | 828 |  | 
 | 829 | 	/* let the user know what node this device is now attached to */ | 
| Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 830 | 	dev_info(&interface->dev, "ADU%d %s now attached to /dev/usb/adutux%d\n", | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 831 | 		 udev->descriptor.idProduct, dev->serial_number, | 
 | 832 | 		 (dev->minor - ADU_MINOR_BASE)); | 
 | 833 | exit: | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 834 | 	dbg(2," %s : leave, return value %p (dev)", __func__, dev); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 835 |  | 
 | 836 | 	return retval; | 
 | 837 |  | 
 | 838 | error: | 
 | 839 | 	adu_delete(dev); | 
 | 840 | 	return retval; | 
 | 841 | } | 
 | 842 |  | 
 | 843 | /** | 
 | 844 |  * adu_disconnect | 
 | 845 |  * | 
 | 846 |  * Called by the usb core when the device is removed from the system. | 
 | 847 |  */ | 
 | 848 | static void adu_disconnect(struct usb_interface *interface) | 
 | 849 | { | 
 | 850 | 	struct adu_device *dev; | 
 | 851 | 	int minor; | 
 | 852 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 853 | 	dbg(2," %s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 854 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 855 | 	dev = usb_get_intfdata(interface); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 856 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 857 | 	mutex_lock(&dev->mtx);	/* not interruptible */ | 
 | 858 | 	dev->udev = NULL;	/* poison */ | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 859 | 	minor = dev->minor; | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 860 | 	usb_deregister_dev(interface, &adu_class); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 861 | 	mutex_unlock(&dev->mtx); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 862 |  | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 863 | 	mutex_lock(&adutux_mutex); | 
 | 864 | 	usb_set_intfdata(interface, NULL); | 
| Alan Stern | d4ead16 | 2007-05-22 11:46:41 -0400 | [diff] [blame] | 865 |  | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 866 | 	/* if the device is not opened, then we clean up right now */ | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 867 | 	dbg(2," %s : open count %d", __func__, dev->open_count); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 868 | 	if (!dev->open_count) | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 869 | 		adu_delete(dev); | 
| Pete Zaitcev | f08812d | 2007-10-31 15:59:30 -0700 | [diff] [blame] | 870 |  | 
 | 871 | 	mutex_unlock(&adutux_mutex); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 872 |  | 
| Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 873 | 	dev_info(&interface->dev, "ADU device adutux%d now disconnected\n", | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 874 | 		 (minor - ADU_MINOR_BASE)); | 
 | 875 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 876 | 	dbg(2," %s : leave", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 877 | } | 
 | 878 |  | 
 | 879 | /* usb specific object needed to register this driver with the usb subsystem */ | 
 | 880 | static struct usb_driver adu_driver = { | 
 | 881 | 	.name = "adutux", | 
 | 882 | 	.probe = adu_probe, | 
 | 883 | 	.disconnect = adu_disconnect, | 
 | 884 | 	.id_table = device_table, | 
 | 885 | }; | 
 | 886 |  | 
 | 887 | static int __init adu_init(void) | 
 | 888 | { | 
 | 889 | 	int result; | 
 | 890 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 891 | 	dbg(2," %s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 892 |  | 
 | 893 | 	/* register this driver with the USB subsystem */ | 
 | 894 | 	result = usb_register(&adu_driver); | 
 | 895 | 	if (result < 0) { | 
| Greg Kroah-Hartman | fd3f191 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 896 | 		printk(KERN_ERR "usb_register failed for the "__FILE__ | 
 | 897 | 		       " driver. Error number %d\n", result); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 898 | 		goto exit; | 
 | 899 | 	} | 
 | 900 |  | 
| Greg Kroah-Hartman | 1b29a37 | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 901 | 	printk(KERN_INFO "adutux " DRIVER_DESC " " DRIVER_VERSION "\n"); | 
 | 902 | 	printk(KERN_INFO "adutux is an experimental driver. " | 
 | 903 | 	       "Use at your own risk\n"); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 904 |  | 
 | 905 | exit: | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 906 | 	dbg(2," %s : leave, return value %d", __func__, result); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 907 |  | 
 | 908 | 	return result; | 
 | 909 | } | 
 | 910 |  | 
 | 911 | static void __exit adu_exit(void) | 
 | 912 | { | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 913 | 	dbg(2," %s : enter", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 914 | 	/* deregister this driver with the USB subsystem */ | 
 | 915 | 	usb_deregister(&adu_driver); | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 916 | 	dbg(2," %s : leave", __func__); | 
| Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 917 | } | 
 | 918 |  | 
 | 919 | module_init(adu_init); | 
 | 920 | module_exit(adu_exit); | 
 | 921 |  | 
 | 922 | MODULE_AUTHOR(DRIVER_AUTHOR); | 
 | 923 | MODULE_DESCRIPTION(DRIVER_DESC); | 
 | 924 | MODULE_LICENSE("GPL"); |