blob: 768fda9064e914362f7387c2e012f6a018f7013c [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>
21#include <asm/uaccess.h>
22#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 */
31static struct usb_device_id skel_table [] = {
32 { 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 Neukum758f7e162007-06-11 14:55:08 +020063 int open_count; /* count the number of openers */
Oliver Neukume7389cc2009-09-09 17:06:53 +020064 bool ongoing_read; /* a read is going on */
65 bool processed_urb; /* indicates we haven't processed the urb */
Oliver Neukum403dfb52007-05-25 13:42:56 +020066 spinlock_t err_lock; /* lock for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct kref kref;
Alan Stern121e2872006-07-01 22:06:36 -040068 struct mutex io_mutex; /* synchronize I/O with disconnect */
Oliver Neukume7389cc2009-09-09 17:06:53 +020069 struct completion bulk_in_completion; /* to wait for an ongoing read */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71#define to_skel_dev(d) container_of(d, struct usb_skel, kref)
72
73static struct usb_driver skel_driver;
Oliver Neukum403dfb52007-05-25 13:42:56 +020074static void skel_draw_down(struct usb_skel *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static void skel_delete(struct kref *kref)
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030077{
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct usb_skel *dev = to_skel_dev(kref);
79
Oliver Neukume7389cc2009-09-09 17:06:53 +020080 usb_free_urb(dev->bulk_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 usb_put_dev(dev->udev);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030082 kfree(dev->bulk_in_buffer);
83 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
86static int skel_open(struct inode *inode, struct file *file)
87{
88 struct usb_skel *dev;
89 struct usb_interface *interface;
90 int subminor;
91 int retval = 0;
92
93 subminor = iminor(inode);
94
95 interface = usb_find_interface(&skel_driver, subminor);
96 if (!interface) {
97 err ("%s - error, can't find device for minor %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080098 __func__, subminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 retval = -ENODEV;
100 goto exit;
101 }
102
103 dev = usb_get_intfdata(interface);
104 if (!dev) {
105 retval = -ENODEV;
106 goto exit;
107 }
108
109 /* increment our usage count for the device */
110 kref_get(&dev->kref);
111
Oliver Neukum758f7e162007-06-11 14:55:08 +0200112 /* lock the device to allow correctly handling errors
113 * in resumption */
114 mutex_lock(&dev->io_mutex);
115
116 if (!dev->open_count++) {
117 retval = usb_autopm_get_interface(interface);
118 if (retval) {
119 dev->open_count--;
120 mutex_unlock(&dev->io_mutex);
121 kref_put(&dev->kref, skel_delete);
122 goto exit;
123 }
124 } /* else { //uncomment this block if you want exclusive open
125 retval = -EBUSY;
126 dev->open_count--;
127 mutex_unlock(&dev->io_mutex);
Oliver Neukum5b064702007-02-08 15:42:53 +0100128 kref_put(&dev->kref, skel_delete);
129 goto exit;
Oliver Neukum758f7e162007-06-11 14:55:08 +0200130 } */
131 /* prevent the device from being autosuspended */
Oliver Neukum5b064702007-02-08 15:42:53 +0100132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* save our object in the file's private structure */
134 file->private_data = dev;
Mark Grossf7294052007-09-24 09:28:14 -0700135 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137exit:
138 return retval;
139}
140
141static int skel_release(struct inode *inode, struct file *file)
142{
143 struct usb_skel *dev;
144
145 dev = (struct usb_skel *)file->private_data;
146 if (dev == NULL)
147 return -ENODEV;
148
Alan Stern01d883d2006-08-30 15:47:18 -0400149 /* allow the device to be autosuspended */
150 mutex_lock(&dev->io_mutex);
Oliver Neukum758f7e162007-06-11 14:55:08 +0200151 if (!--dev->open_count && dev->interface)
Alan Stern01d883d2006-08-30 15:47:18 -0400152 usb_autopm_put_interface(dev->interface);
153 mutex_unlock(&dev->io_mutex);
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* decrement the count on our device */
156 kref_put(&dev->kref, skel_delete);
157 return 0;
158}
159
Oliver Neukum403dfb52007-05-25 13:42:56 +0200160static int skel_flush(struct file *file, fl_owner_t id)
161{
162 struct usb_skel *dev;
163 int res;
164
165 dev = (struct usb_skel *)file->private_data;
166 if (dev == NULL)
167 return -ENODEV;
168
169 /* wait for io to stop */
170 mutex_lock(&dev->io_mutex);
171 skel_draw_down(dev);
172
173 /* read out errors, leave subsequent opens a clean slate */
174 spin_lock_irq(&dev->err_lock);
175 res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0;
176 dev->errors = 0;
177 spin_unlock_irq(&dev->err_lock);
178
179 mutex_unlock(&dev->io_mutex);
180
181 return res;
182}
183
Oliver Neukume7389cc2009-09-09 17:06:53 +0200184static void skel_read_bulk_callback(struct urb *urb)
185{
186 struct usb_skel *dev;
187
188 dev = urb->context;
189
190 spin_lock(&dev->err_lock);
191 /* sync/async unlink faults aren't errors */
192 if (urb->status) {
193 if(!(urb->status == -ENOENT ||
194 urb->status == -ECONNRESET ||
195 urb->status == -ESHUTDOWN))
196 err("%s - nonzero write bulk status received: %d",
197 __func__, urb->status);
198
199 dev->errors = urb->status;
200 } else {
201 dev->bulk_in_filled = urb->actual_length;
202 }
203 dev->ongoing_read = 0;
204 spin_unlock(&dev->err_lock);
205
206 complete(&dev->bulk_in_completion);
207}
208
209static int skel_do_read_io(struct usb_skel *dev, size_t count)
210{
211 int rv;
212
213 /* prepare a read */
214 usb_fill_bulk_urb(dev->bulk_in_urb,
215 dev->udev,
216 usb_rcvbulkpipe(dev->udev,
217 dev->bulk_in_endpointAddr),
218 dev->bulk_in_buffer,
219 min(dev->bulk_in_size, count),
220 skel_read_bulk_callback,
221 dev);
222 /* tell everybody to leave the URB alone */
223 spin_lock_irq(&dev->err_lock);
224 dev->ongoing_read = 1;
225 spin_unlock_irq(&dev->err_lock);
226
227 /* do it */
228 rv = usb_submit_urb(dev->bulk_in_urb, GFP_KERNEL);
229 if (rv < 0) {
230 err("%s - failed submitting read urb, error %d",
231 __func__, rv);
232 dev->bulk_in_filled = 0;
233 rv = (rv == -ENOMEM) ? rv : -EIO;
234 spin_lock_irq(&dev->err_lock);
235 dev->ongoing_read = 0;
236 spin_unlock_irq(&dev->err_lock);
237 }
238
239 return rv;
240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242static ssize_t skel_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
243{
244 struct usb_skel *dev;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200245 int rv;
246 bool ongoing_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 dev = (struct usb_skel *)file->private_data;
Alan Stern121e2872006-07-01 22:06:36 -0400249
Oliver Neukume7389cc2009-09-09 17:06:53 +0200250 /* if we cannot read at all, return EOF */
251 if (!dev->bulk_in_urb || !count)
252 return 0;
253
254 /* no concurrent readers */
255 rv = mutex_lock_interruptible(&dev->io_mutex);
256 if (rv < 0)
257 return rv;
258
Alan Stern121e2872006-07-01 22:06:36 -0400259 if (!dev->interface) { /* disconnect() was called */
Oliver Neukume7389cc2009-09-09 17:06:53 +0200260 rv = -ENODEV;
Alan Stern121e2872006-07-01 22:06:36 -0400261 goto exit;
262 }
263
Oliver Neukume7389cc2009-09-09 17:06:53 +0200264 /* if IO is under way, we must not touch things */
265retry:
266 spin_lock_irq(&dev->err_lock);
267 ongoing_io = dev->ongoing_read;
268 spin_unlock_irq(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Oliver Neukume7389cc2009-09-09 17:06:53 +0200270 if (ongoing_io) {
271 /*
272 * IO may take forever
273 * hence wait in an interruptible state
274 */
275 rv = wait_for_completion_interruptible(&dev->bulk_in_completion);
276 if (rv < 0)
277 goto exit;
278 /*
279 * by waiting we also semiprocessed the urb
280 * we must finish now
281 */
282 dev->bulk_in_copied = 0;
283 dev->processed_urb = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
Oliver Neukume7389cc2009-09-09 17:06:53 +0200286 if (!dev->processed_urb) {
287 /*
288 * the URB hasn't been processed
289 * do it now
290 */
291 wait_for_completion(&dev->bulk_in_completion);
292 dev->bulk_in_copied = 0;
293 dev->processed_urb = 1;
294 }
295
296 /* errors must be reported */
297 if ((rv = dev->errors) < 0) {
298 /* any error is reported once */
299 dev->errors = 0;
300 /* to preserve notifications about reset */
301 rv = (rv == -EPIPE) ? rv : -EIO;
302 /* no data to deliver */
303 dev->bulk_in_filled = 0;
304 /* report it */
305 goto exit;
306 }
307
308 /*
309 * if the buffer is filled we may satisfy the read
310 * else we need to start IO
311 */
312
313 if (dev->bulk_in_filled) {
314 /* we had read data */
315 size_t available = dev->bulk_in_filled - dev->bulk_in_copied;
316 size_t chunk = min(available, count);
317
318 if (!available) {
319 /*
320 * all data has been used
321 * actual IO needs to be done
322 */
323 rv = skel_do_read_io(dev, count);
324 if (rv < 0)
325 goto exit;
326 else
327 goto retry;
328 }
329 /*
330 * data is available
331 * chunk tells us how much shall be copied
332 */
333
334 if (copy_to_user(buffer,
335 dev->bulk_in_buffer + dev->bulk_in_copied,
336 chunk))
337 rv = -EFAULT;
338 else
339 rv = chunk;
340
341 dev->bulk_in_copied += chunk;
342
343 /*
344 * if we are asked for more than we have,
345 * we start IO but don't wait
346 */
347 if (available < count)
348 skel_do_read_io(dev, count - chunk);
349 } else {
350 /* no data in the buffer */
351 rv = skel_do_read_io(dev, count);
352 if (rv < 0)
353 goto exit;
354 else
355 goto retry;
356 }
Alan Stern121e2872006-07-01 22:06:36 -0400357exit:
358 mutex_unlock(&dev->io_mutex);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200359 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
David Howells7d12e782006-10-05 14:55:46 +0100362static void skel_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 struct usb_skel *dev;
365
Ming Leicdc97792008-02-24 18:41:47 +0800366 dev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* sync/async unlink faults aren't errors */
Oliver Neukum403dfb52007-05-25 13:42:56 +0200369 if (urb->status) {
370 if(!(urb->status == -ENOENT ||
371 urb->status == -ECONNRESET ||
372 urb->status == -ESHUTDOWN))
373 err("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800374 __func__, urb->status);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200375
376 spin_lock(&dev->err_lock);
377 dev->errors = urb->status;
378 spin_unlock(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
381 /* free up our allocated buffer */
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300382 usb_buffer_free(urb->dev, urb->transfer_buffer_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 urb->transfer_buffer, urb->transfer_dma);
Oliver Neukumff906512005-12-21 19:27:29 +0100384 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387static ssize_t skel_write(struct file *file, const char *user_buffer, size_t count, loff_t *ppos)
388{
389 struct usb_skel *dev;
390 int retval = 0;
391 struct urb *urb = NULL;
392 char *buf = NULL;
Sam Bishopc8dd7702005-12-22 17:11:02 -0700393 size_t writesize = min(count, (size_t)MAX_TRANSFER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 dev = (struct usb_skel *)file->private_data;
396
397 /* verify that we actually have some data to write */
398 if (count == 0)
399 goto exit;
400
Oliver Neukumff906512005-12-21 19:27:29 +0100401 /* limit the number of URBs in flight to stop a user from using up all RAM */
Oliver Neukum79819982009-09-09 10:23:35 +0200402 if (!file->f_flags & O_NONBLOCK) {
403 if (down_interruptible(&dev->limit_sem)) {
404 retval = -ERESTARTSYS;
405 goto exit;
406 }
407 } else {
408 if (down_trylock(&dev->limit_sem)) {
409 retval = -EAGAIN;
410 goto exit;
411 }
Sam Bishopc8dd7702005-12-22 17:11:02 -0700412 }
Oliver Neukumff906512005-12-21 19:27:29 +0100413
Oliver Neukum403dfb52007-05-25 13:42:56 +0200414 spin_lock_irq(&dev->err_lock);
415 if ((retval = dev->errors) < 0) {
416 /* any error is reported once */
417 dev->errors = 0;
418 /* to preserve notifications about reset */
419 retval = (retval == -EPIPE) ? retval : -EIO;
420 }
421 spin_unlock_irq(&dev->err_lock);
422 if (retval < 0)
423 goto error;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* create a urb, and a buffer for it, and copy the data to the urb */
426 urb = usb_alloc_urb(0, GFP_KERNEL);
427 if (!urb) {
428 retval = -ENOMEM;
429 goto error;
430 }
431
Oliver Neukumff906512005-12-21 19:27:29 +0100432 buf = usb_buffer_alloc(dev->udev, writesize, GFP_KERNEL, &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (!buf) {
434 retval = -ENOMEM;
435 goto error;
436 }
437
Oliver Neukumff906512005-12-21 19:27:29 +0100438 if (copy_from_user(buf, user_buffer, writesize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 retval = -EFAULT;
440 goto error;
441 }
442
Oliver Neukumba35e022007-03-01 14:31:02 +0100443 /* this lock makes sure we don't submit URBs to gone devices */
444 mutex_lock(&dev->io_mutex);
445 if (!dev->interface) { /* disconnect() was called */
446 mutex_unlock(&dev->io_mutex);
447 retval = -ENODEV;
448 goto error;
449 }
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* initialize the urb properly */
452 usb_fill_bulk_urb(urb, dev->udev,
453 usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr),
Oliver Neukumff906512005-12-21 19:27:29 +0100454 buf, writesize, skel_write_bulk_callback, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200456 usb_anchor_urb(urb, &dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* send the data out the bulk port */
459 retval = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukumba35e022007-03-01 14:31:02 +0100460 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (retval) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800462 err("%s - failed submitting write urb, error %d", __func__, retval);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200463 goto error_unanchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
466 /* release our reference to this urb, the USB core will eventually free it entirely */
467 usb_free_urb(urb);
468
Oliver Neukumba35e022007-03-01 14:31:02 +0100469
Oliver Neukumff906512005-12-21 19:27:29 +0100470 return writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Oliver Neukum403dfb52007-05-25 13:42:56 +0200472error_unanchor:
473 usb_unanchor_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474error:
Alan Stern121e2872006-07-01 22:06:36 -0400475 if (urb) {
476 usb_buffer_free(dev->udev, writesize, buf, urb->transfer_dma);
477 usb_free_urb(urb);
478 }
Oliver Neukumff906512005-12-21 19:27:29 +0100479 up(&dev->limit_sem);
Alan Stern121e2872006-07-01 22:06:36 -0400480
481exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return retval;
483}
484
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300485static const struct file_operations skel_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 .owner = THIS_MODULE,
487 .read = skel_read,
488 .write = skel_write,
489 .open = skel_open,
490 .release = skel_release,
Oliver Neukum403dfb52007-05-25 13:42:56 +0200491 .flush = skel_flush,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492};
493
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300494/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartman595b14c2006-01-18 17:36:58 -0500496 * and to have the device registered with the driver core
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 */
498static struct usb_class_driver skel_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700499 .name = "skel%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 .fops = &skel_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 .minor_base = USB_SKEL_MINOR_BASE,
502};
503
504static int skel_probe(struct usb_interface *interface, const struct usb_device_id *id)
505{
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300506 struct usb_skel *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct usb_host_interface *iface_desc;
508 struct usb_endpoint_descriptor *endpoint;
509 size_t buffer_size;
510 int i;
511 int retval = -ENOMEM;
512
513 /* allocate memory for our device state and initialize it */
Oliver Neukumff906512005-12-21 19:27:29 +0100514 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300515 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 err("Out of memory");
517 goto error;
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 kref_init(&dev->kref);
Oliver Neukumff906512005-12-21 19:27:29 +0100520 sema_init(&dev->limit_sem, WRITES_IN_FLIGHT);
Alan Stern121e2872006-07-01 22:06:36 -0400521 mutex_init(&dev->io_mutex);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200522 spin_lock_init(&dev->err_lock);
523 init_usb_anchor(&dev->submitted);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200524 init_completion(&dev->bulk_in_completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 dev->udev = usb_get_dev(interface_to_usbdev(interface));
527 dev->interface = interface;
528
529 /* set up the endpoint information */
530 /* use only the first bulk-in and bulk-out endpoints */
531 iface_desc = interface->cur_altsetting;
532 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
533 endpoint = &iface_desc->endpoint[i].desc;
534
535 if (!dev->bulk_in_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300536 usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /* we found a bulk in endpoint */
538 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
539 dev->bulk_in_size = buffer_size;
540 dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
541 dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
542 if (!dev->bulk_in_buffer) {
543 err("Could not allocate bulk_in_buffer");
544 goto error;
545 }
Oliver Neukume7389cc2009-09-09 17:06:53 +0200546 dev->bulk_in_urb = usb_alloc_urb(0, GFP_KERNEL);
547 if (!dev->bulk_in_urb) {
548 err("Could not allocate bulk_in_urb");
549 goto error;
550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
553 if (!dev->bulk_out_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300554 usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* we found a bulk out endpoint */
556 dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
557 }
558 }
559 if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
560 err("Could not find both bulk-in and bulk-out endpoints");
561 goto error;
562 }
563
564 /* save our data pointer in this interface device */
565 usb_set_intfdata(interface, dev);
566
567 /* we can register the device now, as it is ready */
568 retval = usb_register_dev(interface, &skel_class);
569 if (retval) {
570 /* something prevented us from registering this driver */
571 err("Not able to get a minor for this device.");
572 usb_set_intfdata(interface, NULL);
573 goto error;
574 }
575
576 /* let the user know what node this device is now attached to */
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800577 dev_info(&interface->dev,
578 "USB Skeleton device now attached to USBSkel-%d",
579 interface->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return 0;
581
582error:
583 if (dev)
Oliver Neukumba35e022007-03-01 14:31:02 +0100584 /* this frees allocated memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 kref_put(&dev->kref, skel_delete);
586 return retval;
587}
588
589static void skel_disconnect(struct usb_interface *interface)
590{
591 struct usb_skel *dev;
592 int minor = interface->minor;
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 dev = usb_get_intfdata(interface);
595 usb_set_intfdata(interface, NULL);
596
597 /* give back our minor */
598 usb_deregister_dev(interface, &skel_class);
599
Alan Stern121e2872006-07-01 22:06:36 -0400600 /* prevent more I/O from starting */
601 mutex_lock(&dev->io_mutex);
602 dev->interface = NULL;
603 mutex_unlock(&dev->io_mutex);
604
Oliver Neukume73c7242007-06-11 14:54:02 +0200605 usb_kill_anchored_urbs(&dev->submitted);
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /* decrement our usage count */
608 kref_put(&dev->kref, skel_delete);
609
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800610 dev_info(&interface->dev, "USB Skeleton #%d now disconnected", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Oliver Neukum403dfb52007-05-25 13:42:56 +0200613static void skel_draw_down(struct usb_skel *dev)
614{
615 int time;
616
617 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
618 if (!time)
619 usb_kill_anchored_urbs(&dev->submitted);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200620 usb_kill_urb(dev->bulk_in_urb);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200621}
622
Oliver Neukum758f7e162007-06-11 14:55:08 +0200623static int skel_suspend(struct usb_interface *intf, pm_message_t message)
624{
625 struct usb_skel *dev = usb_get_intfdata(intf);
626
627 if (!dev)
628 return 0;
629 skel_draw_down(dev);
630 return 0;
631}
632
633static int skel_resume (struct usb_interface *intf)
634{
635 return 0;
636}
637
Oliver Neukum87d093e2007-06-11 14:55:51 +0200638static int skel_pre_reset(struct usb_interface *intf)
639{
640 struct usb_skel *dev = usb_get_intfdata(intf);
641
642 mutex_lock(&dev->io_mutex);
643 skel_draw_down(dev);
644
645 return 0;
646}
647
648static int skel_post_reset(struct usb_interface *intf)
649{
650 struct usb_skel *dev = usb_get_intfdata(intf);
651
652 /* we are sure no URBs are active - no locking needed */
653 dev->errors = -EPIPE;
654 mutex_unlock(&dev->io_mutex);
655
656 return 0;
657}
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659static struct usb_driver skel_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 .name = "skeleton",
661 .probe = skel_probe,
662 .disconnect = skel_disconnect,
Oliver Neukum758f7e162007-06-11 14:55:08 +0200663 .suspend = skel_suspend,
664 .resume = skel_resume,
Oliver Neukum87d093e2007-06-11 14:55:51 +0200665 .pre_reset = skel_pre_reset,
666 .post_reset = skel_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .id_table = skel_table,
Oliver Neukumba35e022007-03-01 14:31:02 +0100668 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669};
670
671static int __init usb_skel_init(void)
672{
673 int result;
674
675 /* register this driver with the USB subsystem */
676 result = usb_register(&skel_driver);
677 if (result)
678 err("usb_register failed. Error number %d", result);
679
680 return result;
681}
682
683static void __exit usb_skel_exit(void)
684{
685 /* deregister this driver with the USB subsystem */
686 usb_deregister(&skel_driver);
687}
688
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300689module_init(usb_skel_init);
690module_exit(usb_skel_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692MODULE_LICENSE("GPL");