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