blob: 7ed3b039dbe878a8a7c7db038e6150c3395e5bec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -03002 * USB Skeleton driver - 2.2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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. Capitulinoc0704542006-08-14 22:44:29 -030010 * This driver is based on the 2.6.3 version of drivers/usb/usb-skeleton.c
Alan Stern121e2872006-07-01 22:06:36 -040011 * but has been rewritten to be easier to read and use.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#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-Hartman3ae9da12009-09-11 16:07:30 -070021#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/usb.h>
Alan Stern121e2872006-07-01 22:06:36 -040023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
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árton1bd4f292010-01-10 15:33:33 +010031static const struct usb_device_id skel_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 { USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
33 { } /* Terminating entry */
34};
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030035MODULE_DEVICE_TABLE(usb, skel_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37
38/* Get a minor range for your devices from the usb maintainer */
39#define USB_SKEL_MINOR_BASE 192
40
Oliver Neukumff906512005-12-21 19:27:29 +010041/* our private defines. if this grows any larger, use your own .h file */
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030042#define MAX_TRANSFER (PAGE_SIZE - 512)
Oliver Neukumba35e022007-03-01 14:31:02 +010043/* 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 Neukumff906512005-12-21 19:27:29 +010046#define WRITES_IN_FLIGHT 8
Oliver Neukumba35e022007-03-01 14:31:02 +010047/* arbitrarily chosen */
Oliver Neukumff906512005-12-21 19:27:29 +010048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Structure to hold all of our device specific stuff */
50struct usb_skel {
Oliver Neukumba35e022007-03-01 14:31:02 +010051 struct usb_device *udev; /* the usb device for this device */
52 struct usb_interface *interface; /* the interface for this device */
Oliver Neukumff906512005-12-21 19:27:29 +010053 struct semaphore limit_sem; /* limiting the number of writes in progress */
Oliver Neukum403dfb52007-05-25 13:42:56 +020054 struct usb_anchor submitted; /* in case we need to retract our submissions */
Oliver Neukume7389cc2009-09-09 17:06:53 +020055 struct urb *bulk_in_urb; /* the urb to read data with */
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030056 unsigned char *bulk_in_buffer; /* the buffer to receive data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 size_t bulk_in_size; /* the size of the receive buffer */
Oliver Neukume7389cc2009-09-09 17:06:53 +020058 size_t bulk_in_filled; /* number of bytes in the buffer */
59 size_t bulk_in_copied; /* already copied to user space */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 __u8 bulk_in_endpointAddr; /* the address of the bulk in endpoint */
61 __u8 bulk_out_endpointAddr; /* the address of the bulk out endpoint */
Oliver Neukum403dfb52007-05-25 13:42:56 +020062 int errors; /* the last request tanked */
Oliver Neukume7389cc2009-09-09 17:06:53 +020063 bool ongoing_read; /* a read is going on */
Oliver Neukum403dfb52007-05-25 13:42:56 +020064 spinlock_t err_lock; /* lock for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct kref kref;
Alan Stern121e2872006-07-01 22:06:36 -040066 struct mutex io_mutex; /* synchronize I/O with disconnect */
Du Xingc79041a2013-03-20 20:47:46 +080067 wait_queue_head_t bulk_in_wait; /* to wait for an ongoing read */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69#define to_skel_dev(d) container_of(d, struct usb_skel, kref)
70
71static struct usb_driver skel_driver;
Oliver Neukum403dfb52007-05-25 13:42:56 +020072static void skel_draw_down(struct usb_skel *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static void skel_delete(struct kref *kref)
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030075{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct usb_skel *dev = to_skel_dev(kref);
77
Oliver Neukume7389cc2009-09-09 17:06:53 +020078 usb_free_urb(dev->bulk_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 usb_put_dev(dev->udev);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030080 kfree(dev->bulk_in_buffer);
81 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84static 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-Hartman4212cd72012-04-27 11:24:45 -070095 pr_err("%s - error, can't find device for minor %d\n",
96 __func__, subminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 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 Shulyupine8cebb92012-10-10 16:14:00 +0200107 retval = usb_autopm_get_interface(interface);
108 if (retval)
109 goto exit;
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 /* 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
117exit:
118 return retval;
119}
120
121static int skel_release(struct inode *inode, struct file *file)
122{
123 struct usb_skel *dev;
124
Joe Perchese53e8412010-07-12 13:50:13 -0700125 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (dev == NULL)
127 return -ENODEV;
128
Alan Stern01d883d2006-08-30 15:47:18 -0400129 /* allow the device to be autosuspended */
130 mutex_lock(&dev->io_mutex);
Ming Leie28dbb02011-12-16 22:20:44 +0800131 if (dev->interface)
Alan Stern01d883d2006-08-30 15:47:18 -0400132 usb_autopm_put_interface(dev->interface);
133 mutex_unlock(&dev->io_mutex);
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /* decrement the count on our device */
136 kref_put(&dev->kref, skel_delete);
137 return 0;
138}
139
Oliver Neukum403dfb52007-05-25 13:42:56 +0200140static int skel_flush(struct file *file, fl_owner_t id)
141{
142 struct usb_skel *dev;
143 int res;
144
Joe Perchese53e8412010-07-12 13:50:13 -0700145 dev = file->private_data;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200146 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 Neukume7389cc2009-09-09 17:06:53 +0200164static 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-Hartman3ae9da12009-09-11 16:07:30 -0700173 if (!(urb->status == -ENOENT ||
Oliver Neukume7389cc2009-09-09 17:06:53 +0200174 urb->status == -ECONNRESET ||
175 urb->status == -ESHUTDOWN))
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700176 dev_err(&dev->interface->dev,
177 "%s - nonzero write bulk status received: %d\n",
178 __func__, urb->status);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200179
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 Xingc79041a2013-03-20 20:47:46 +0800187 wake_up_interruptible(&dev->bulk_in_wait);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200188}
189
190static 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 Xingc79041a2013-03-20 20:47:46 +0800208 /* submit bulk in urb, which means no data to deliver */
209 dev->bulk_in_filled = 0;
210 dev->bulk_in_copied = 0;
211
Oliver Neukume7389cc2009-09-09 17:06:53 +0200212 /* do it */
213 rv = usb_submit_urb(dev->bulk_in_urb, GFP_KERNEL);
214 if (rv < 0) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700215 dev_err(&dev->interface->dev,
216 "%s - failed submitting read urb, error %d\n",
Oliver Neukume7389cc2009-09-09 17:06:53 +0200217 __func__, rv);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200218 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-Hartman3ae9da12009-09-11 16:07:30 -0700227static ssize_t skel_read(struct file *file, char *buffer, size_t count,
228 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 struct usb_skel *dev;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200231 int rv;
232 bool ongoing_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Joe Perchese53e8412010-07-12 13:50:13 -0700234 dev = file->private_data;
Alan Stern121e2872006-07-01 22:06:36 -0400235
Oliver Neukume7389cc2009-09-09 17:06:53 +0200236 /* 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 Stern121e2872006-07-01 22:06:36 -0400245 if (!dev->interface) { /* disconnect() was called */
Oliver Neukume7389cc2009-09-09 17:06:53 +0200246 rv = -ENODEV;
Alan Stern121e2872006-07-01 22:06:36 -0400247 goto exit;
248 }
249
Oliver Neukume7389cc2009-09-09 17:06:53 +0200250 /* if IO is under way, we must not touch things */
251retry:
252 spin_lock_irq(&dev->err_lock);
253 ongoing_io = dev->ongoing_read;
254 spin_unlock_irq(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Oliver Neukume7389cc2009-09-09 17:06:53 +0200256 if (ongoing_io) {
Oliver Neukum8cd01662009-09-09 17:08:50 +0200257 /* nonblocking IO shall not wait */
258 if (file->f_flags & O_NONBLOCK) {
259 rv = -EAGAIN;
260 goto exit;
261 }
Oliver Neukume7389cc2009-09-09 17:06:53 +0200262 /*
263 * IO may take forever
264 * hence wait in an interruptible state
265 */
Du Xingc79041a2013-03-20 20:47:46 +0800266 rv = wait_event_interruptible(dev->bulk_in_wait, (!dev->ongoing_read));
Oliver Neukume7389cc2009-09-09 17:06:53 +0200267 if (rv < 0)
268 goto exit;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200269 }
270
271 /* errors must be reported */
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700272 rv = dev->errors;
273 if (rv < 0) {
Oliver Neukume7389cc2009-09-09 17:06:53 +0200274 /* any error is reported once */
275 dev->errors = 0;
276 /* to preserve notifications about reset */
277 rv = (rv == -EPIPE) ? rv : -EIO;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200278 /* 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;
Julia Lawall4de84052009-09-19 09:13:43 +0200328 else if (!(file->f_flags & O_NONBLOCK))
Oliver Neukume7389cc2009-09-09 17:06:53 +0200329 goto retry;
Oliver Neukum8cd01662009-09-09 17:08:50 +0200330 rv = -EAGAIN;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200331 }
Alan Stern121e2872006-07-01 22:06:36 -0400332exit:
333 mutex_unlock(&dev->io_mutex);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200334 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
David Howells7d12e782006-10-05 14:55:46 +0100337static void skel_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 struct usb_skel *dev;
340
Ming Leicdc97792008-02-24 18:41:47 +0800341 dev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /* sync/async unlink faults aren't errors */
Oliver Neukum403dfb52007-05-25 13:42:56 +0200344 if (urb->status) {
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700345 if (!(urb->status == -ENOENT ||
Oliver Neukum403dfb52007-05-25 13:42:56 +0200346 urb->status == -ECONNRESET ||
347 urb->status == -ESHUTDOWN))
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700348 dev_err(&dev->interface->dev,
349 "%s - nonzero write bulk status received: %d\n",
350 __func__, urb->status);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200351
352 spin_lock(&dev->err_lock);
353 dev->errors = urb->status;
354 spin_unlock(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 /* free up our allocated buffer */
Daniel Mack997ea582010-04-12 13:17:25 +0200358 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
359 urb->transfer_buffer, urb->transfer_dma);
Oliver Neukumff906512005-12-21 19:27:29 +0100360 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700363static ssize_t skel_write(struct file *file, const char *user_buffer,
364 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 struct usb_skel *dev;
367 int retval = 0;
368 struct urb *urb = NULL;
369 char *buf = NULL;
Sam Bishopc8dd7702005-12-22 17:11:02 -0700370 size_t writesize = min(count, (size_t)MAX_TRANSFER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Joe Perchese53e8412010-07-12 13:50:13 -0700372 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* verify that we actually have some data to write */
375 if (count == 0)
376 goto exit;
377
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700378 /*
379 * limit the number of URBs in flight to stop a user from using up all
380 * RAM
381 */
Julia Lawall4de84052009-09-19 09:13:43 +0200382 if (!(file->f_flags & O_NONBLOCK)) {
Oliver Neukum79819982009-09-09 10:23:35 +0200383 if (down_interruptible(&dev->limit_sem)) {
384 retval = -ERESTARTSYS;
385 goto exit;
386 }
387 } else {
388 if (down_trylock(&dev->limit_sem)) {
389 retval = -EAGAIN;
390 goto exit;
391 }
Sam Bishopc8dd7702005-12-22 17:11:02 -0700392 }
Oliver Neukumff906512005-12-21 19:27:29 +0100393
Oliver Neukum403dfb52007-05-25 13:42:56 +0200394 spin_lock_irq(&dev->err_lock);
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700395 retval = dev->errors;
396 if (retval < 0) {
Oliver Neukum403dfb52007-05-25 13:42:56 +0200397 /* any error is reported once */
398 dev->errors = 0;
399 /* to preserve notifications about reset */
400 retval = (retval == -EPIPE) ? retval : -EIO;
401 }
402 spin_unlock_irq(&dev->err_lock);
403 if (retval < 0)
404 goto error;
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /* create a urb, and a buffer for it, and copy the data to the urb */
407 urb = usb_alloc_urb(0, GFP_KERNEL);
408 if (!urb) {
409 retval = -ENOMEM;
410 goto error;
411 }
412
Daniel Mack997ea582010-04-12 13:17:25 +0200413 buf = usb_alloc_coherent(dev->udev, writesize, GFP_KERNEL,
414 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (!buf) {
416 retval = -ENOMEM;
417 goto error;
418 }
419
Oliver Neukumff906512005-12-21 19:27:29 +0100420 if (copy_from_user(buf, user_buffer, writesize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 retval = -EFAULT;
422 goto error;
423 }
424
Oliver Neukumba35e022007-03-01 14:31:02 +0100425 /* this lock makes sure we don't submit URBs to gone devices */
426 mutex_lock(&dev->io_mutex);
427 if (!dev->interface) { /* disconnect() was called */
428 mutex_unlock(&dev->io_mutex);
429 retval = -ENODEV;
430 goto error;
431 }
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /* initialize the urb properly */
434 usb_fill_bulk_urb(urb, dev->udev,
435 usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr),
Oliver Neukumff906512005-12-21 19:27:29 +0100436 buf, writesize, skel_write_bulk_callback, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200438 usb_anchor_urb(urb, &dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* send the data out the bulk port */
441 retval = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukumba35e022007-03-01 14:31:02 +0100442 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (retval) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700444 dev_err(&dev->interface->dev,
445 "%s - failed submitting write urb, error %d\n",
446 __func__, retval);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200447 goto error_unanchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700450 /*
451 * release our reference to this urb, the USB core will eventually free
452 * it entirely
453 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 usb_free_urb(urb);
455
Oliver Neukumba35e022007-03-01 14:31:02 +0100456
Oliver Neukumff906512005-12-21 19:27:29 +0100457 return writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Oliver Neukum403dfb52007-05-25 13:42:56 +0200459error_unanchor:
460 usb_unanchor_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461error:
Alan Stern121e2872006-07-01 22:06:36 -0400462 if (urb) {
Daniel Mack997ea582010-04-12 13:17:25 +0200463 usb_free_coherent(dev->udev, writesize, buf, urb->transfer_dma);
Alan Stern121e2872006-07-01 22:06:36 -0400464 usb_free_urb(urb);
465 }
Oliver Neukumff906512005-12-21 19:27:29 +0100466 up(&dev->limit_sem);
Alan Stern121e2872006-07-01 22:06:36 -0400467
468exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return retval;
470}
471
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300472static const struct file_operations skel_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 .owner = THIS_MODULE,
474 .read = skel_read,
475 .write = skel_write,
476 .open = skel_open,
477 .release = skel_release,
Oliver Neukum403dfb52007-05-25 13:42:56 +0200478 .flush = skel_flush,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200479 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480};
481
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300482/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartman595b14c2006-01-18 17:36:58 -0500484 * and to have the device registered with the driver core
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 */
486static struct usb_class_driver skel_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700487 .name = "skel%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 .fops = &skel_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 .minor_base = USB_SKEL_MINOR_BASE,
490};
491
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700492static int skel_probe(struct usb_interface *interface,
493 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300495 struct usb_skel *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 struct usb_host_interface *iface_desc;
497 struct usb_endpoint_descriptor *endpoint;
498 size_t buffer_size;
499 int i;
500 int retval = -ENOMEM;
501
502 /* allocate memory for our device state and initialize it */
Oliver Neukumff906512005-12-21 19:27:29 +0100503 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300504 if (!dev) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700505 dev_err(&interface->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 goto error;
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 kref_init(&dev->kref);
Oliver Neukumff906512005-12-21 19:27:29 +0100509 sema_init(&dev->limit_sem, WRITES_IN_FLIGHT);
Alan Stern121e2872006-07-01 22:06:36 -0400510 mutex_init(&dev->io_mutex);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200511 spin_lock_init(&dev->err_lock);
512 init_usb_anchor(&dev->submitted);
Du Xingc79041a2013-03-20 20:47:46 +0800513 init_waitqueue_head(&dev->bulk_in_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 dev->udev = usb_get_dev(interface_to_usbdev(interface));
516 dev->interface = interface;
517
518 /* set up the endpoint information */
519 /* use only the first bulk-in and bulk-out endpoints */
520 iface_desc = interface->cur_altsetting;
521 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
522 endpoint = &iface_desc->endpoint[i].desc;
523
524 if (!dev->bulk_in_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300525 usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* we found a bulk in endpoint */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700527 buffer_size = usb_endpoint_maxp(endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 dev->bulk_in_size = buffer_size;
529 dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
530 dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
531 if (!dev->bulk_in_buffer) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700532 dev_err(&interface->dev,
533 "Could not allocate bulk_in_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 goto error;
535 }
Oliver Neukume7389cc2009-09-09 17:06:53 +0200536 dev->bulk_in_urb = usb_alloc_urb(0, GFP_KERNEL);
537 if (!dev->bulk_in_urb) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700538 dev_err(&interface->dev,
539 "Could not allocate bulk_in_urb\n");
Oliver Neukume7389cc2009-09-09 17:06:53 +0200540 goto error;
541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
544 if (!dev->bulk_out_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300545 usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* we found a bulk out endpoint */
547 dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
548 }
549 }
550 if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700551 dev_err(&interface->dev,
552 "Could not find both bulk-in and bulk-out endpoints\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto error;
554 }
555
556 /* save our data pointer in this interface device */
557 usb_set_intfdata(interface, dev);
558
559 /* we can register the device now, as it is ready */
560 retval = usb_register_dev(interface, &skel_class);
561 if (retval) {
562 /* something prevented us from registering this driver */
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700563 dev_err(&interface->dev,
564 "Not able to get a minor for this device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 usb_set_intfdata(interface, NULL);
566 goto error;
567 }
568
569 /* let the user know what node this device is now attached to */
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800570 dev_info(&interface->dev,
571 "USB Skeleton device now attached to USBSkel-%d",
572 interface->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return 0;
574
575error:
576 if (dev)
Oliver Neukumba35e022007-03-01 14:31:02 +0100577 /* this frees allocated memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 kref_put(&dev->kref, skel_delete);
579 return retval;
580}
581
582static void skel_disconnect(struct usb_interface *interface)
583{
584 struct usb_skel *dev;
585 int minor = interface->minor;
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 dev = usb_get_intfdata(interface);
Greg Kroah-Hartman52a74992012-01-24 12:02:38 -0800588 usb_set_intfdata(interface, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 /* give back our minor */
591 usb_deregister_dev(interface, &skel_class);
592
Alan Stern121e2872006-07-01 22:06:36 -0400593 /* prevent more I/O from starting */
594 mutex_lock(&dev->io_mutex);
595 dev->interface = NULL;
596 mutex_unlock(&dev->io_mutex);
597
Oliver Neukume73c7242007-06-11 14:54:02 +0200598 usb_kill_anchored_urbs(&dev->submitted);
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /* decrement our usage count */
601 kref_put(&dev->kref, skel_delete);
602
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800603 dev_info(&interface->dev, "USB Skeleton #%d now disconnected", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Oliver Neukum403dfb52007-05-25 13:42:56 +0200606static void skel_draw_down(struct usb_skel *dev)
607{
608 int time;
609
610 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
611 if (!time)
612 usb_kill_anchored_urbs(&dev->submitted);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200613 usb_kill_urb(dev->bulk_in_urb);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200614}
615
Oliver Neukum758f7e162007-06-11 14:55:08 +0200616static int skel_suspend(struct usb_interface *intf, pm_message_t message)
617{
618 struct usb_skel *dev = usb_get_intfdata(intf);
619
620 if (!dev)
621 return 0;
622 skel_draw_down(dev);
623 return 0;
624}
625
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700626static int skel_resume(struct usb_interface *intf)
Oliver Neukum758f7e162007-06-11 14:55:08 +0200627{
628 return 0;
629}
630
Oliver Neukum87d093e2007-06-11 14:55:51 +0200631static int skel_pre_reset(struct usb_interface *intf)
632{
633 struct usb_skel *dev = usb_get_intfdata(intf);
634
635 mutex_lock(&dev->io_mutex);
636 skel_draw_down(dev);
637
638 return 0;
639}
640
641static int skel_post_reset(struct usb_interface *intf)
642{
643 struct usb_skel *dev = usb_get_intfdata(intf);
644
645 /* we are sure no URBs are active - no locking needed */
646 dev->errors = -EPIPE;
647 mutex_unlock(&dev->io_mutex);
648
649 return 0;
650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652static struct usb_driver skel_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 .name = "skeleton",
654 .probe = skel_probe,
655 .disconnect = skel_disconnect,
Oliver Neukum758f7e162007-06-11 14:55:08 +0200656 .suspend = skel_suspend,
657 .resume = skel_resume,
Oliver Neukum87d093e2007-06-11 14:55:51 +0200658 .pre_reset = skel_pre_reset,
659 .post_reset = skel_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 .id_table = skel_table,
Oliver Neukumba35e022007-03-01 14:31:02 +0100661 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662};
663
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800664module_usb_driver(skel_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666MODULE_LICENSE("GPL");