| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 2 |  * USB Skeleton driver - 2.2 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 |  * | 
 | 4 |  * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com) | 
 | 5 |  * | 
 | 6 |  *	This program is free software; you can redistribute it and/or | 
 | 7 |  *	modify it under the terms of the GNU General Public License as | 
 | 8 |  *	published by the Free Software Foundation, version 2. | 
 | 9 |  * | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 10 |  * This driver is based on the 2.6.3 version of drivers/usb/usb-skeleton.c | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 11 |  * but has been rewritten to be easier to read and use. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 |  * | 
 | 13 |  */ | 
 | 14 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/kernel.h> | 
 | 16 | #include <linux/errno.h> | 
 | 17 | #include <linux/init.h> | 
 | 18 | #include <linux/slab.h> | 
 | 19 | #include <linux/module.h> | 
 | 20 | #include <linux/kref.h> | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 21 | #include <linux/uaccess.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/usb.h> | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 23 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 |  | 
 | 25 |  | 
 | 26 | /* Define these values to match your devices */ | 
 | 27 | #define USB_SKEL_VENDOR_ID	0xfff0 | 
 | 28 | #define USB_SKEL_PRODUCT_ID	0xfff0 | 
 | 29 |  | 
 | 30 | /* table of devices that work with this driver */ | 
| Németh Márton | 1bd4f29 | 2010-01-10 15:33:33 +0100 | [diff] [blame] | 31 | static const struct usb_device_id skel_table[] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | 	{ USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) }, | 
 | 33 | 	{ }					/* Terminating entry */ | 
 | 34 | }; | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 35 | MODULE_DEVICE_TABLE(usb, skel_table); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 |  | 
 | 37 |  | 
 | 38 | /* Get a minor range for your devices from the usb maintainer */ | 
 | 39 | #define USB_SKEL_MINOR_BASE	192 | 
 | 40 |  | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 41 | /* our private defines. if this grows any larger, use your own .h file */ | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 42 | #define MAX_TRANSFER		(PAGE_SIZE - 512) | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 43 | /* MAX_TRANSFER is chosen so that the VM is not stressed by | 
 | 44 |    allocations > PAGE_SIZE and the number of packets in a page | 
 | 45 |    is an integer 512 is the largest possible packet on EHCI */ | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 46 | #define WRITES_IN_FLIGHT	8 | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 47 | /* arbitrarily chosen */ | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 48 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* Structure to hold all of our device specific stuff */ | 
 | 50 | struct usb_skel { | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 51 | 	struct usb_device	*udev;			/* the usb device for this device */ | 
 | 52 | 	struct usb_interface	*interface;		/* the interface for this device */ | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 53 | 	struct semaphore	limit_sem;		/* limiting the number of writes in progress */ | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 54 | 	struct usb_anchor	submitted;		/* in case we need to retract our submissions */ | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 55 | 	struct urb		*bulk_in_urb;		/* the urb to read data with */ | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 56 | 	unsigned char           *bulk_in_buffer;	/* the buffer to receive data */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | 	size_t			bulk_in_size;		/* the size of the receive buffer */ | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 58 | 	size_t			bulk_in_filled;		/* number of bytes in the buffer */ | 
 | 59 | 	size_t			bulk_in_copied;		/* already copied to user space */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | 	__u8			bulk_in_endpointAddr;	/* the address of the bulk in endpoint */ | 
 | 61 | 	__u8			bulk_out_endpointAddr;	/* the address of the bulk out endpoint */ | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 62 | 	int			errors;			/* the last request tanked */ | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 63 | 	bool			ongoing_read;		/* a read is going on */ | 
 | 64 | 	bool			processed_urb;		/* indicates we haven't processed the urb */ | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 65 | 	spinlock_t		err_lock;		/* lock for errors */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 	struct kref		kref; | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 67 | 	struct mutex		io_mutex;		/* synchronize I/O with disconnect */ | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 68 | 	struct completion	bulk_in_completion;	/* to wait for an ongoing read */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | }; | 
 | 70 | #define to_skel_dev(d) container_of(d, struct usb_skel, kref) | 
 | 71 |  | 
 | 72 | static struct usb_driver skel_driver; | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 73 | static void skel_draw_down(struct usb_skel *dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 |  | 
 | 75 | static void skel_delete(struct kref *kref) | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 76 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | 	struct usb_skel *dev = to_skel_dev(kref); | 
 | 78 |  | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 79 | 	usb_free_urb(dev->bulk_in_urb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | 	usb_put_dev(dev->udev); | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 81 | 	kfree(dev->bulk_in_buffer); | 
 | 82 | 	kfree(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | } | 
 | 84 |  | 
 | 85 | static int skel_open(struct inode *inode, struct file *file) | 
 | 86 | { | 
 | 87 | 	struct usb_skel *dev; | 
 | 88 | 	struct usb_interface *interface; | 
 | 89 | 	int subminor; | 
 | 90 | 	int retval = 0; | 
 | 91 |  | 
 | 92 | 	subminor = iminor(inode); | 
 | 93 |  | 
 | 94 | 	interface = usb_find_interface(&skel_driver, subminor); | 
 | 95 | 	if (!interface) { | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 96 | 		pr_err("%s - error, can't find device for minor %d\n", | 
 | 97 | 			__func__, subminor); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | 		retval = -ENODEV; | 
 | 99 | 		goto exit; | 
 | 100 | 	} | 
 | 101 |  | 
 | 102 | 	dev = usb_get_intfdata(interface); | 
 | 103 | 	if (!dev) { | 
 | 104 | 		retval = -ENODEV; | 
 | 105 | 		goto exit; | 
 | 106 | 	} | 
 | 107 |  | 
 | 108 | 	/* increment our usage count for the device */ | 
 | 109 | 	kref_get(&dev->kref); | 
 | 110 |  | 
| Oliver Neukum | 758f7e16 | 2007-06-11 14:55:08 +0200 | [diff] [blame] | 111 | 	/* lock the device to allow correctly handling errors | 
 | 112 | 	 * in resumption */ | 
 | 113 | 	mutex_lock(&dev->io_mutex); | 
 | 114 |  | 
| Ming Lei | e28dbb0 | 2011-12-16 22:20:44 +0800 | [diff] [blame] | 115 | 	retval = usb_autopm_get_interface(interface); | 
 | 116 | 	if (retval) | 
 | 117 | 		goto out_err; | 
| Oliver Neukum | 5b06470 | 2007-02-08 15:42:53 +0100 | [diff] [blame] | 118 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | 	/* save our object in the file's private structure */ | 
 | 120 | 	file->private_data = dev; | 
| Mark Gross | f729405 | 2007-09-24 09:28:14 -0700 | [diff] [blame] | 121 | 	mutex_unlock(&dev->io_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 |  | 
 | 123 | exit: | 
 | 124 | 	return retval; | 
 | 125 | } | 
 | 126 |  | 
 | 127 | static int skel_release(struct inode *inode, struct file *file) | 
 | 128 | { | 
 | 129 | 	struct usb_skel *dev; | 
 | 130 |  | 
| Joe Perches | e53e841 | 2010-07-12 13:50:13 -0700 | [diff] [blame] | 131 | 	dev = file->private_data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | 	if (dev == NULL) | 
 | 133 | 		return -ENODEV; | 
 | 134 |  | 
| Alan Stern | 01d883d | 2006-08-30 15:47:18 -0400 | [diff] [blame] | 135 | 	/* allow the device to be autosuspended */ | 
 | 136 | 	mutex_lock(&dev->io_mutex); | 
| Ming Lei | e28dbb0 | 2011-12-16 22:20:44 +0800 | [diff] [blame] | 137 | 	if (dev->interface) | 
| Alan Stern | 01d883d | 2006-08-30 15:47:18 -0400 | [diff] [blame] | 138 | 		usb_autopm_put_interface(dev->interface); | 
 | 139 | 	mutex_unlock(&dev->io_mutex); | 
 | 140 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | 	/* decrement the count on our device */ | 
 | 142 | 	kref_put(&dev->kref, skel_delete); | 
 | 143 | 	return 0; | 
 | 144 | } | 
 | 145 |  | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 146 | static int skel_flush(struct file *file, fl_owner_t id) | 
 | 147 | { | 
 | 148 | 	struct usb_skel *dev; | 
 | 149 | 	int res; | 
 | 150 |  | 
| Joe Perches | e53e841 | 2010-07-12 13:50:13 -0700 | [diff] [blame] | 151 | 	dev = file->private_data; | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 152 | 	if (dev == NULL) | 
 | 153 | 		return -ENODEV; | 
 | 154 |  | 
 | 155 | 	/* wait for io to stop */ | 
 | 156 | 	mutex_lock(&dev->io_mutex); | 
 | 157 | 	skel_draw_down(dev); | 
 | 158 |  | 
 | 159 | 	/* read out errors, leave subsequent opens a clean slate */ | 
 | 160 | 	spin_lock_irq(&dev->err_lock); | 
 | 161 | 	res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0; | 
 | 162 | 	dev->errors = 0; | 
 | 163 | 	spin_unlock_irq(&dev->err_lock); | 
 | 164 |  | 
 | 165 | 	mutex_unlock(&dev->io_mutex); | 
 | 166 |  | 
 | 167 | 	return res; | 
 | 168 | } | 
 | 169 |  | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 170 | static void skel_read_bulk_callback(struct urb *urb) | 
 | 171 | { | 
 | 172 | 	struct usb_skel *dev; | 
 | 173 |  | 
 | 174 | 	dev = urb->context; | 
 | 175 |  | 
 | 176 | 	spin_lock(&dev->err_lock); | 
 | 177 | 	/* sync/async unlink faults aren't errors */ | 
 | 178 | 	if (urb->status) { | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 179 | 		if (!(urb->status == -ENOENT || | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 180 | 		    urb->status == -ECONNRESET || | 
 | 181 | 		    urb->status == -ESHUTDOWN)) | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 182 | 			dev_err(&dev->interface->dev, | 
 | 183 | 				"%s - nonzero write bulk status received: %d\n", | 
 | 184 | 				__func__, urb->status); | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 185 |  | 
 | 186 | 		dev->errors = urb->status; | 
 | 187 | 	} else { | 
 | 188 | 		dev->bulk_in_filled = urb->actual_length; | 
 | 189 | 	} | 
 | 190 | 	dev->ongoing_read = 0; | 
 | 191 | 	spin_unlock(&dev->err_lock); | 
 | 192 |  | 
 | 193 | 	complete(&dev->bulk_in_completion); | 
 | 194 | } | 
 | 195 |  | 
 | 196 | static int skel_do_read_io(struct usb_skel *dev, size_t count) | 
 | 197 | { | 
 | 198 | 	int rv; | 
 | 199 |  | 
 | 200 | 	/* prepare a read */ | 
 | 201 | 	usb_fill_bulk_urb(dev->bulk_in_urb, | 
 | 202 | 			dev->udev, | 
 | 203 | 			usb_rcvbulkpipe(dev->udev, | 
 | 204 | 				dev->bulk_in_endpointAddr), | 
 | 205 | 			dev->bulk_in_buffer, | 
 | 206 | 			min(dev->bulk_in_size, count), | 
 | 207 | 			skel_read_bulk_callback, | 
 | 208 | 			dev); | 
 | 209 | 	/* tell everybody to leave the URB alone */ | 
 | 210 | 	spin_lock_irq(&dev->err_lock); | 
 | 211 | 	dev->ongoing_read = 1; | 
 | 212 | 	spin_unlock_irq(&dev->err_lock); | 
 | 213 |  | 
 | 214 | 	/* do it */ | 
 | 215 | 	rv = usb_submit_urb(dev->bulk_in_urb, GFP_KERNEL); | 
 | 216 | 	if (rv < 0) { | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 217 | 		dev_err(&dev->interface->dev, | 
 | 218 | 			"%s - failed submitting read urb, error %d\n", | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 219 | 			__func__, rv); | 
 | 220 | 		dev->bulk_in_filled = 0; | 
 | 221 | 		rv = (rv == -ENOMEM) ? rv : -EIO; | 
 | 222 | 		spin_lock_irq(&dev->err_lock); | 
 | 223 | 		dev->ongoing_read = 0; | 
 | 224 | 		spin_unlock_irq(&dev->err_lock); | 
 | 225 | 	} | 
 | 226 |  | 
 | 227 | 	return rv; | 
 | 228 | } | 
 | 229 |  | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 230 | static ssize_t skel_read(struct file *file, char *buffer, size_t count, | 
 | 231 | 			 loff_t *ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { | 
 | 233 | 	struct usb_skel *dev; | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 234 | 	int rv; | 
 | 235 | 	bool ongoing_io; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 |  | 
| Joe Perches | e53e841 | 2010-07-12 13:50:13 -0700 | [diff] [blame] | 237 | 	dev = file->private_data; | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 238 |  | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 239 | 	/* if we cannot read at all, return EOF */ | 
 | 240 | 	if (!dev->bulk_in_urb || !count) | 
 | 241 | 		return 0; | 
 | 242 |  | 
 | 243 | 	/* no concurrent readers */ | 
 | 244 | 	rv = mutex_lock_interruptible(&dev->io_mutex); | 
 | 245 | 	if (rv < 0) | 
 | 246 | 		return rv; | 
 | 247 |  | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 248 | 	if (!dev->interface) {		/* disconnect() was called */ | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 249 | 		rv = -ENODEV; | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 250 | 		goto exit; | 
 | 251 | 	} | 
 | 252 |  | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 253 | 	/* if IO is under way, we must not touch things */ | 
 | 254 | retry: | 
 | 255 | 	spin_lock_irq(&dev->err_lock); | 
 | 256 | 	ongoing_io = dev->ongoing_read; | 
 | 257 | 	spin_unlock_irq(&dev->err_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 259 | 	if (ongoing_io) { | 
| Oliver Neukum | 8cd0166 | 2009-09-09 17:08:50 +0200 | [diff] [blame] | 260 | 		/* nonblocking IO shall not wait */ | 
 | 261 | 		if (file->f_flags & O_NONBLOCK) { | 
 | 262 | 			rv = -EAGAIN; | 
 | 263 | 			goto exit; | 
 | 264 | 		} | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 265 | 		/* | 
 | 266 | 		 * IO may take forever | 
 | 267 | 		 * hence wait in an interruptible state | 
 | 268 | 		 */ | 
 | 269 | 		rv = wait_for_completion_interruptible(&dev->bulk_in_completion); | 
 | 270 | 		if (rv < 0) | 
 | 271 | 			goto exit; | 
 | 272 | 		/* | 
 | 273 | 		 * by waiting we also semiprocessed the urb | 
 | 274 | 		 * we must finish now | 
 | 275 | 		 */ | 
 | 276 | 		dev->bulk_in_copied = 0; | 
 | 277 | 		dev->processed_urb = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | 	} | 
 | 279 |  | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 280 | 	if (!dev->processed_urb) { | 
 | 281 | 		/* | 
 | 282 | 		 * the URB hasn't been processed | 
 | 283 | 		 * do it now | 
 | 284 | 		 */ | 
 | 285 | 		wait_for_completion(&dev->bulk_in_completion); | 
 | 286 | 		dev->bulk_in_copied = 0; | 
 | 287 | 		dev->processed_urb = 1; | 
 | 288 | 	} | 
 | 289 |  | 
 | 290 | 	/* errors must be reported */ | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 291 | 	rv = dev->errors; | 
 | 292 | 	if (rv < 0) { | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 293 | 		/* any error is reported once */ | 
 | 294 | 		dev->errors = 0; | 
 | 295 | 		/* to preserve notifications about reset */ | 
 | 296 | 		rv = (rv == -EPIPE) ? rv : -EIO; | 
 | 297 | 		/* no data to deliver */ | 
 | 298 | 		dev->bulk_in_filled = 0; | 
 | 299 | 		/* report it */ | 
 | 300 | 		goto exit; | 
 | 301 | 	} | 
 | 302 |  | 
 | 303 | 	/* | 
 | 304 | 	 * if the buffer is filled we may satisfy the read | 
 | 305 | 	 * else we need to start IO | 
 | 306 | 	 */ | 
 | 307 |  | 
 | 308 | 	if (dev->bulk_in_filled) { | 
 | 309 | 		/* we had read data */ | 
 | 310 | 		size_t available = dev->bulk_in_filled - dev->bulk_in_copied; | 
 | 311 | 		size_t chunk = min(available, count); | 
 | 312 |  | 
 | 313 | 		if (!available) { | 
 | 314 | 			/* | 
 | 315 | 			 * all data has been used | 
 | 316 | 			 * actual IO needs to be done | 
 | 317 | 			 */ | 
 | 318 | 			rv = skel_do_read_io(dev, count); | 
 | 319 | 			if (rv < 0) | 
 | 320 | 				goto exit; | 
 | 321 | 			else | 
 | 322 | 				goto retry; | 
 | 323 | 		} | 
 | 324 | 		/* | 
 | 325 | 		 * data is available | 
 | 326 | 		 * chunk tells us how much shall be copied | 
 | 327 | 		 */ | 
 | 328 |  | 
 | 329 | 		if (copy_to_user(buffer, | 
 | 330 | 				 dev->bulk_in_buffer + dev->bulk_in_copied, | 
 | 331 | 				 chunk)) | 
 | 332 | 			rv = -EFAULT; | 
 | 333 | 		else | 
 | 334 | 			rv = chunk; | 
 | 335 |  | 
 | 336 | 		dev->bulk_in_copied += chunk; | 
 | 337 |  | 
 | 338 | 		/* | 
 | 339 | 		 * if we are asked for more than we have, | 
 | 340 | 		 * we start IO but don't wait | 
 | 341 | 		 */ | 
 | 342 | 		if (available < count) | 
 | 343 | 			skel_do_read_io(dev, count - chunk); | 
 | 344 | 	} else { | 
 | 345 | 		/* no data in the buffer */ | 
 | 346 | 		rv = skel_do_read_io(dev, count); | 
 | 347 | 		if (rv < 0) | 
 | 348 | 			goto exit; | 
| Julia Lawall | 4de8405 | 2009-09-19 09:13:43 +0200 | [diff] [blame] | 349 | 		else if (!(file->f_flags & O_NONBLOCK)) | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 350 | 			goto retry; | 
| Oliver Neukum | 8cd0166 | 2009-09-09 17:08:50 +0200 | [diff] [blame] | 351 | 		rv = -EAGAIN; | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 352 | 	} | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 353 | exit: | 
 | 354 | 	mutex_unlock(&dev->io_mutex); | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 355 | 	return rv; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } | 
 | 357 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 358 | static void skel_write_bulk_callback(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { | 
 | 360 | 	struct usb_skel *dev; | 
 | 361 |  | 
| Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 362 | 	dev = urb->context; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 |  | 
 | 364 | 	/* sync/async unlink faults aren't errors */ | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 365 | 	if (urb->status) { | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 366 | 		if (!(urb->status == -ENOENT || | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 367 | 		    urb->status == -ECONNRESET || | 
 | 368 | 		    urb->status == -ESHUTDOWN)) | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 369 | 			dev_err(&dev->interface->dev, | 
 | 370 | 				"%s - nonzero write bulk status received: %d\n", | 
 | 371 | 				__func__, urb->status); | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 372 |  | 
 | 373 | 		spin_lock(&dev->err_lock); | 
 | 374 | 		dev->errors = urb->status; | 
 | 375 | 		spin_unlock(&dev->err_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | 	} | 
 | 377 |  | 
 | 378 | 	/* free up our allocated buffer */ | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 379 | 	usb_free_coherent(urb->dev, urb->transfer_buffer_length, | 
 | 380 | 			  urb->transfer_buffer, urb->transfer_dma); | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 381 | 	up(&dev->limit_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } | 
 | 383 |  | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 384 | static ssize_t skel_write(struct file *file, const char *user_buffer, | 
 | 385 | 			  size_t count, loff_t *ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | { | 
 | 387 | 	struct usb_skel *dev; | 
 | 388 | 	int retval = 0; | 
 | 389 | 	struct urb *urb = NULL; | 
 | 390 | 	char *buf = NULL; | 
| Sam Bishop | c8dd770 | 2005-12-22 17:11:02 -0700 | [diff] [blame] | 391 | 	size_t writesize = min(count, (size_t)MAX_TRANSFER); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 |  | 
| Joe Perches | e53e841 | 2010-07-12 13:50:13 -0700 | [diff] [blame] | 393 | 	dev = file->private_data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 |  | 
 | 395 | 	/* verify that we actually have some data to write */ | 
 | 396 | 	if (count == 0) | 
 | 397 | 		goto exit; | 
 | 398 |  | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 399 | 	/* | 
 | 400 | 	 * limit the number of URBs in flight to stop a user from using up all | 
 | 401 | 	 * RAM | 
 | 402 | 	 */ | 
| Julia Lawall | 4de8405 | 2009-09-19 09:13:43 +0200 | [diff] [blame] | 403 | 	if (!(file->f_flags & O_NONBLOCK)) { | 
| Oliver Neukum | 7981998 | 2009-09-09 10:23:35 +0200 | [diff] [blame] | 404 | 		if (down_interruptible(&dev->limit_sem)) { | 
 | 405 | 			retval = -ERESTARTSYS; | 
 | 406 | 			goto exit; | 
 | 407 | 		} | 
 | 408 | 	} else { | 
 | 409 | 		if (down_trylock(&dev->limit_sem)) { | 
 | 410 | 			retval = -EAGAIN; | 
 | 411 | 			goto exit; | 
 | 412 | 		} | 
| Sam Bishop | c8dd770 | 2005-12-22 17:11:02 -0700 | [diff] [blame] | 413 | 	} | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 414 |  | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 415 | 	spin_lock_irq(&dev->err_lock); | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 416 | 	retval = dev->errors; | 
 | 417 | 	if (retval < 0) { | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 418 | 		/* any error is reported once */ | 
 | 419 | 		dev->errors = 0; | 
 | 420 | 		/* to preserve notifications about reset */ | 
 | 421 | 		retval = (retval == -EPIPE) ? retval : -EIO; | 
 | 422 | 	} | 
 | 423 | 	spin_unlock_irq(&dev->err_lock); | 
 | 424 | 	if (retval < 0) | 
 | 425 | 		goto error; | 
 | 426 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | 	/* create a urb, and a buffer for it, and copy the data to the urb */ | 
 | 428 | 	urb = usb_alloc_urb(0, GFP_KERNEL); | 
 | 429 | 	if (!urb) { | 
 | 430 | 		retval = -ENOMEM; | 
 | 431 | 		goto error; | 
 | 432 | 	} | 
 | 433 |  | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 434 | 	buf = usb_alloc_coherent(dev->udev, writesize, GFP_KERNEL, | 
 | 435 | 				 &urb->transfer_dma); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | 	if (!buf) { | 
 | 437 | 		retval = -ENOMEM; | 
 | 438 | 		goto error; | 
 | 439 | 	} | 
 | 440 |  | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 441 | 	if (copy_from_user(buf, user_buffer, writesize)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | 		retval = -EFAULT; | 
 | 443 | 		goto error; | 
 | 444 | 	} | 
 | 445 |  | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 446 | 	/* this lock makes sure we don't submit URBs to gone devices */ | 
 | 447 | 	mutex_lock(&dev->io_mutex); | 
 | 448 | 	if (!dev->interface) {		/* disconnect() was called */ | 
 | 449 | 		mutex_unlock(&dev->io_mutex); | 
 | 450 | 		retval = -ENODEV; | 
 | 451 | 		goto error; | 
 | 452 | 	} | 
 | 453 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | 	/* initialize the urb properly */ | 
 | 455 | 	usb_fill_bulk_urb(urb, dev->udev, | 
 | 456 | 			  usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr), | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 457 | 			  buf, writesize, skel_write_bulk_callback, dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | 	urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 459 | 	usb_anchor_urb(urb, &dev->submitted); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 |  | 
 | 461 | 	/* send the data out the bulk port */ | 
 | 462 | 	retval = usb_submit_urb(urb, GFP_KERNEL); | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 463 | 	mutex_unlock(&dev->io_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | 	if (retval) { | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 465 | 		dev_err(&dev->interface->dev, | 
 | 466 | 			"%s - failed submitting write urb, error %d\n", | 
 | 467 | 			__func__, retval); | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 468 | 		goto error_unanchor; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | 	} | 
 | 470 |  | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 471 | 	/* | 
 | 472 | 	 * release our reference to this urb, the USB core will eventually free | 
 | 473 | 	 * it entirely | 
 | 474 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | 	usb_free_urb(urb); | 
 | 476 |  | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 477 |  | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 478 | 	return writesize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 |  | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 480 | error_unanchor: | 
 | 481 | 	usb_unanchor_urb(urb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | error: | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 483 | 	if (urb) { | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 484 | 		usb_free_coherent(dev->udev, writesize, buf, urb->transfer_dma); | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 485 | 		usb_free_urb(urb); | 
 | 486 | 	} | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 487 | 	up(&dev->limit_sem); | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 488 |  | 
 | 489 | exit: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | 	return retval; | 
 | 491 | } | 
 | 492 |  | 
| Luiz Fernando N. Capitulino | 066202d | 2006-08-05 20:37:11 -0300 | [diff] [blame] | 493 | static const struct file_operations skel_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | 	.owner =	THIS_MODULE, | 
 | 495 | 	.read =		skel_read, | 
 | 496 | 	.write =	skel_write, | 
 | 497 | 	.open =		skel_open, | 
 | 498 | 	.release =	skel_release, | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 499 | 	.flush =	skel_flush, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 500 | 	.llseek =	noop_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | }; | 
 | 502 |  | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 503 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 |  * usb class driver info in order to get a minor number from the usb core, | 
| Greg Kroah-Hartman | 595b14c | 2006-01-18 17:36:58 -0500 | [diff] [blame] | 505 |  * and to have the device registered with the driver core | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 |  */ | 
 | 507 | static struct usb_class_driver skel_class = { | 
| Greg Kroah-Hartman | d6e5bcf | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 508 | 	.name =		"skel%d", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | 	.fops =		&skel_fops, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | 	.minor_base =	USB_SKEL_MINOR_BASE, | 
 | 511 | }; | 
 | 512 |  | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 513 | static int skel_probe(struct usb_interface *interface, | 
 | 514 | 		      const struct usb_device_id *id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 516 | 	struct usb_skel *dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | 	struct usb_host_interface *iface_desc; | 
 | 518 | 	struct usb_endpoint_descriptor *endpoint; | 
 | 519 | 	size_t buffer_size; | 
 | 520 | 	int i; | 
 | 521 | 	int retval = -ENOMEM; | 
 | 522 |  | 
 | 523 | 	/* allocate memory for our device state and initialize it */ | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 524 | 	dev = kzalloc(sizeof(*dev), GFP_KERNEL); | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 525 | 	if (!dev) { | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 526 | 		dev_err(&interface->dev, "Out of memory\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | 		goto error; | 
 | 528 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | 	kref_init(&dev->kref); | 
| Oliver Neukum | ff90651 | 2005-12-21 19:27:29 +0100 | [diff] [blame] | 530 | 	sema_init(&dev->limit_sem, WRITES_IN_FLIGHT); | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 531 | 	mutex_init(&dev->io_mutex); | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 532 | 	spin_lock_init(&dev->err_lock); | 
 | 533 | 	init_usb_anchor(&dev->submitted); | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 534 | 	init_completion(&dev->bulk_in_completion); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 |  | 
 | 536 | 	dev->udev = usb_get_dev(interface_to_usbdev(interface)); | 
 | 537 | 	dev->interface = interface; | 
 | 538 |  | 
 | 539 | 	/* set up the endpoint information */ | 
 | 540 | 	/* use only the first bulk-in and bulk-out endpoints */ | 
 | 541 | 	iface_desc = interface->cur_altsetting; | 
 | 542 | 	for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) { | 
 | 543 | 		endpoint = &iface_desc->endpoint[i].desc; | 
 | 544 |  | 
 | 545 | 		if (!dev->bulk_in_endpointAddr && | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 546 | 		    usb_endpoint_is_bulk_in(endpoint)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | 			/* we found a bulk in endpoint */ | 
| Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 548 | 			buffer_size = usb_endpoint_maxp(endpoint); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | 			dev->bulk_in_size = buffer_size; | 
 | 550 | 			dev->bulk_in_endpointAddr = endpoint->bEndpointAddress; | 
 | 551 | 			dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL); | 
 | 552 | 			if (!dev->bulk_in_buffer) { | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 553 | 				dev_err(&interface->dev, | 
 | 554 | 					"Could not allocate bulk_in_buffer\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | 				goto error; | 
 | 556 | 			} | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 557 | 			dev->bulk_in_urb = usb_alloc_urb(0, GFP_KERNEL); | 
 | 558 | 			if (!dev->bulk_in_urb) { | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 559 | 				dev_err(&interface->dev, | 
 | 560 | 					"Could not allocate bulk_in_urb\n"); | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 561 | 				goto error; | 
 | 562 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | 		} | 
 | 564 |  | 
 | 565 | 		if (!dev->bulk_out_endpointAddr && | 
| Luiz Fernando N. Capitulino | c070454 | 2006-08-14 22:44:29 -0300 | [diff] [blame] | 566 | 		    usb_endpoint_is_bulk_out(endpoint)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | 			/* we found a bulk out endpoint */ | 
 | 568 | 			dev->bulk_out_endpointAddr = endpoint->bEndpointAddress; | 
 | 569 | 		} | 
 | 570 | 	} | 
 | 571 | 	if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) { | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 572 | 		dev_err(&interface->dev, | 
 | 573 | 			"Could not find both bulk-in and bulk-out endpoints\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | 		goto error; | 
 | 575 | 	} | 
 | 576 |  | 
 | 577 | 	/* save our data pointer in this interface device */ | 
 | 578 | 	usb_set_intfdata(interface, dev); | 
 | 579 |  | 
 | 580 | 	/* we can register the device now, as it is ready */ | 
 | 581 | 	retval = usb_register_dev(interface, &skel_class); | 
 | 582 | 	if (retval) { | 
 | 583 | 		/* something prevented us from registering this driver */ | 
| Greg Kroah-Hartman | 4212cd7 | 2012-04-27 11:24:45 -0700 | [diff] [blame] | 584 | 		dev_err(&interface->dev, | 
 | 585 | 			"Not able to get a minor for this device.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | 		usb_set_intfdata(interface, NULL); | 
 | 587 | 		goto error; | 
 | 588 | 	} | 
 | 589 |  | 
 | 590 | 	/* let the user know what node this device is now attached to */ | 
| Matt Kraai | a5f5ea2 | 2009-02-06 19:38:51 -0800 | [diff] [blame] | 591 | 	dev_info(&interface->dev, | 
 | 592 | 		 "USB Skeleton device now attached to USBSkel-%d", | 
 | 593 | 		 interface->minor); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | 	return 0; | 
 | 595 |  | 
 | 596 | error: | 
 | 597 | 	if (dev) | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 598 | 		/* this frees allocated memory */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | 		kref_put(&dev->kref, skel_delete); | 
 | 600 | 	return retval; | 
 | 601 | } | 
 | 602 |  | 
 | 603 | static void skel_disconnect(struct usb_interface *interface) | 
 | 604 | { | 
 | 605 | 	struct usb_skel *dev; | 
 | 606 | 	int minor = interface->minor; | 
 | 607 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | 	dev = usb_get_intfdata(interface); | 
| Greg Kroah-Hartman | 52a7499 | 2012-01-24 12:02:38 -0800 | [diff] [blame] | 609 | 	usb_set_intfdata(interface, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 |  | 
 | 611 | 	/* give back our minor */ | 
 | 612 | 	usb_deregister_dev(interface, &skel_class); | 
 | 613 |  | 
| Alan Stern | 121e287 | 2006-07-01 22:06:36 -0400 | [diff] [blame] | 614 | 	/* prevent more I/O from starting */ | 
 | 615 | 	mutex_lock(&dev->io_mutex); | 
 | 616 | 	dev->interface = NULL; | 
 | 617 | 	mutex_unlock(&dev->io_mutex); | 
 | 618 |  | 
| Oliver Neukum | e73c724 | 2007-06-11 14:54:02 +0200 | [diff] [blame] | 619 | 	usb_kill_anchored_urbs(&dev->submitted); | 
 | 620 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | 	/* decrement our usage count */ | 
 | 622 | 	kref_put(&dev->kref, skel_delete); | 
 | 623 |  | 
| Matt Kraai | a5f5ea2 | 2009-02-06 19:38:51 -0800 | [diff] [blame] | 624 | 	dev_info(&interface->dev, "USB Skeleton #%d now disconnected", minor); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } | 
 | 626 |  | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 627 | static void skel_draw_down(struct usb_skel *dev) | 
 | 628 | { | 
 | 629 | 	int time; | 
 | 630 |  | 
 | 631 | 	time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000); | 
 | 632 | 	if (!time) | 
 | 633 | 		usb_kill_anchored_urbs(&dev->submitted); | 
| Oliver Neukum | e7389cc | 2009-09-09 17:06:53 +0200 | [diff] [blame] | 634 | 	usb_kill_urb(dev->bulk_in_urb); | 
| Oliver Neukum | 403dfb5 | 2007-05-25 13:42:56 +0200 | [diff] [blame] | 635 | } | 
 | 636 |  | 
| Oliver Neukum | 758f7e16 | 2007-06-11 14:55:08 +0200 | [diff] [blame] | 637 | static int skel_suspend(struct usb_interface *intf, pm_message_t message) | 
 | 638 | { | 
 | 639 | 	struct usb_skel *dev = usb_get_intfdata(intf); | 
 | 640 |  | 
 | 641 | 	if (!dev) | 
 | 642 | 		return 0; | 
 | 643 | 	skel_draw_down(dev); | 
 | 644 | 	return 0; | 
 | 645 | } | 
 | 646 |  | 
| Greg Kroah-Hartman | 3ae9da1 | 2009-09-11 16:07:30 -0700 | [diff] [blame] | 647 | static int skel_resume(struct usb_interface *intf) | 
| Oliver Neukum | 758f7e16 | 2007-06-11 14:55:08 +0200 | [diff] [blame] | 648 | { | 
 | 649 | 	return 0; | 
 | 650 | } | 
 | 651 |  | 
| Oliver Neukum | 87d093e | 2007-06-11 14:55:51 +0200 | [diff] [blame] | 652 | static int skel_pre_reset(struct usb_interface *intf) | 
 | 653 | { | 
 | 654 | 	struct usb_skel *dev = usb_get_intfdata(intf); | 
 | 655 |  | 
 | 656 | 	mutex_lock(&dev->io_mutex); | 
 | 657 | 	skel_draw_down(dev); | 
 | 658 |  | 
 | 659 | 	return 0; | 
 | 660 | } | 
 | 661 |  | 
 | 662 | static int skel_post_reset(struct usb_interface *intf) | 
 | 663 | { | 
 | 664 | 	struct usb_skel *dev = usb_get_intfdata(intf); | 
 | 665 |  | 
 | 666 | 	/* we are sure no URBs are active - no locking needed */ | 
 | 667 | 	dev->errors = -EPIPE; | 
 | 668 | 	mutex_unlock(&dev->io_mutex); | 
 | 669 |  | 
 | 670 | 	return 0; | 
 | 671 | } | 
 | 672 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | static struct usb_driver skel_driver = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | 	.name =		"skeleton", | 
 | 675 | 	.probe =	skel_probe, | 
 | 676 | 	.disconnect =	skel_disconnect, | 
| Oliver Neukum | 758f7e16 | 2007-06-11 14:55:08 +0200 | [diff] [blame] | 677 | 	.suspend =	skel_suspend, | 
 | 678 | 	.resume =	skel_resume, | 
| Oliver Neukum | 87d093e | 2007-06-11 14:55:51 +0200 | [diff] [blame] | 679 | 	.pre_reset =	skel_pre_reset, | 
 | 680 | 	.post_reset =	skel_post_reset, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | 	.id_table =	skel_table, | 
| Oliver Neukum | ba35e02 | 2007-03-01 14:31:02 +0100 | [diff] [blame] | 682 | 	.supports_autosuspend = 1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | }; | 
 | 684 |  | 
| Greg Kroah-Hartman | 65db430 | 2011-11-18 09:34:02 -0800 | [diff] [blame] | 685 | module_usb_driver(skel_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 |  | 
 | 687 | MODULE_LICENSE("GPL"); |