blob: ce310170829fdc66442a8c7b629fc028152c96af [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 */
64 bool processed_urb; /* indicates we haven't processed the urb */
Oliver Neukum403dfb52007-05-25 13:42:56 +020065 spinlock_t err_lock; /* lock for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct kref kref;
Alan Stern121e2872006-07-01 22:06:36 -040067 struct mutex io_mutex; /* synchronize I/O with disconnect */
Oliver Neukume7389cc2009-09-09 17:06:53 +020068 struct completion bulk_in_completion; /* to wait for an ongoing read */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70#define to_skel_dev(d) container_of(d, struct usb_skel, kref)
71
72static struct usb_driver skel_driver;
Oliver Neukum403dfb52007-05-25 13:42:56 +020073static void skel_draw_down(struct usb_skel *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static void skel_delete(struct kref *kref)
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030076{
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct usb_skel *dev = to_skel_dev(kref);
78
Oliver Neukume7389cc2009-09-09 17:06:53 +020079 usb_free_urb(dev->bulk_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 usb_put_dev(dev->udev);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030081 kfree(dev->bulk_in_buffer);
82 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85static int skel_open(struct inode *inode, struct file *file)
86{
87 struct usb_skel *dev;
88 struct usb_interface *interface;
89 int subminor;
90 int retval = 0;
91
92 subminor = iminor(inode);
93
94 interface = usb_find_interface(&skel_driver, subminor);
95 if (!interface) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -070096 pr_err("%s - error, can't find device for minor %d\n",
97 __func__, subminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 retval = -ENODEV;
99 goto exit;
100 }
101
102 dev = usb_get_intfdata(interface);
103 if (!dev) {
104 retval = -ENODEV;
105 goto exit;
106 }
107
Constantine Shulyupine8cebb92012-10-10 16:14:00 +0200108 retval = usb_autopm_get_interface(interface);
109 if (retval)
110 goto exit;
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 /* increment our usage count for the device */
113 kref_get(&dev->kref);
114
115 /* save our object in the file's private structure */
116 file->private_data = dev;
117
118exit:
119 return retval;
120}
121
122static int skel_release(struct inode *inode, struct file *file)
123{
124 struct usb_skel *dev;
125
Joe Perchese53e8412010-07-12 13:50:13 -0700126 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (dev == NULL)
128 return -ENODEV;
129
Alan Stern01d883d2006-08-30 15:47:18 -0400130 /* allow the device to be autosuspended */
131 mutex_lock(&dev->io_mutex);
Ming Leie28dbb02011-12-16 22:20:44 +0800132 if (dev->interface)
Alan Stern01d883d2006-08-30 15:47:18 -0400133 usb_autopm_put_interface(dev->interface);
134 mutex_unlock(&dev->io_mutex);
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* decrement the count on our device */
137 kref_put(&dev->kref, skel_delete);
138 return 0;
139}
140
Oliver Neukum403dfb52007-05-25 13:42:56 +0200141static int skel_flush(struct file *file, fl_owner_t id)
142{
143 struct usb_skel *dev;
144 int res;
145
Joe Perchese53e8412010-07-12 13:50:13 -0700146 dev = file->private_data;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200147 if (dev == NULL)
148 return -ENODEV;
149
150 /* wait for io to stop */
151 mutex_lock(&dev->io_mutex);
152 skel_draw_down(dev);
153
154 /* read out errors, leave subsequent opens a clean slate */
155 spin_lock_irq(&dev->err_lock);
156 res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0;
157 dev->errors = 0;
158 spin_unlock_irq(&dev->err_lock);
159
160 mutex_unlock(&dev->io_mutex);
161
162 return res;
163}
164
Oliver Neukume7389cc2009-09-09 17:06:53 +0200165static void skel_read_bulk_callback(struct urb *urb)
166{
167 struct usb_skel *dev;
168
169 dev = urb->context;
170
171 spin_lock(&dev->err_lock);
172 /* sync/async unlink faults aren't errors */
173 if (urb->status) {
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700174 if (!(urb->status == -ENOENT ||
Oliver Neukume7389cc2009-09-09 17:06:53 +0200175 urb->status == -ECONNRESET ||
176 urb->status == -ESHUTDOWN))
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700177 dev_err(&dev->interface->dev,
178 "%s - nonzero write bulk status received: %d\n",
179 __func__, urb->status);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200180
181 dev->errors = urb->status;
182 } else {
183 dev->bulk_in_filled = urb->actual_length;
184 }
185 dev->ongoing_read = 0;
186 spin_unlock(&dev->err_lock);
187
188 complete(&dev->bulk_in_completion);
189}
190
191static int skel_do_read_io(struct usb_skel *dev, size_t count)
192{
193 int rv;
194
195 /* prepare a read */
196 usb_fill_bulk_urb(dev->bulk_in_urb,
197 dev->udev,
198 usb_rcvbulkpipe(dev->udev,
199 dev->bulk_in_endpointAddr),
200 dev->bulk_in_buffer,
201 min(dev->bulk_in_size, count),
202 skel_read_bulk_callback,
203 dev);
204 /* tell everybody to leave the URB alone */
205 spin_lock_irq(&dev->err_lock);
206 dev->ongoing_read = 1;
207 spin_unlock_irq(&dev->err_lock);
208
209 /* do it */
210 rv = usb_submit_urb(dev->bulk_in_urb, GFP_KERNEL);
211 if (rv < 0) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700212 dev_err(&dev->interface->dev,
213 "%s - failed submitting read urb, error %d\n",
Oliver Neukume7389cc2009-09-09 17:06:53 +0200214 __func__, rv);
215 dev->bulk_in_filled = 0;
216 rv = (rv == -ENOMEM) ? rv : -EIO;
217 spin_lock_irq(&dev->err_lock);
218 dev->ongoing_read = 0;
219 spin_unlock_irq(&dev->err_lock);
220 }
221
222 return rv;
223}
224
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700225static ssize_t skel_read(struct file *file, char *buffer, size_t count,
226 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct usb_skel *dev;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200229 int rv;
230 bool ongoing_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Joe Perchese53e8412010-07-12 13:50:13 -0700232 dev = file->private_data;
Alan Stern121e2872006-07-01 22:06:36 -0400233
Oliver Neukume7389cc2009-09-09 17:06:53 +0200234 /* if we cannot read at all, return EOF */
235 if (!dev->bulk_in_urb || !count)
236 return 0;
237
238 /* no concurrent readers */
239 rv = mutex_lock_interruptible(&dev->io_mutex);
240 if (rv < 0)
241 return rv;
242
Alan Stern121e2872006-07-01 22:06:36 -0400243 if (!dev->interface) { /* disconnect() was called */
Oliver Neukume7389cc2009-09-09 17:06:53 +0200244 rv = -ENODEV;
Alan Stern121e2872006-07-01 22:06:36 -0400245 goto exit;
246 }
247
Oliver Neukume7389cc2009-09-09 17:06:53 +0200248 /* if IO is under way, we must not touch things */
249retry:
250 spin_lock_irq(&dev->err_lock);
251 ongoing_io = dev->ongoing_read;
252 spin_unlock_irq(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Oliver Neukume7389cc2009-09-09 17:06:53 +0200254 if (ongoing_io) {
Oliver Neukum8cd01662009-09-09 17:08:50 +0200255 /* nonblocking IO shall not wait */
256 if (file->f_flags & O_NONBLOCK) {
257 rv = -EAGAIN;
258 goto exit;
259 }
Oliver Neukume7389cc2009-09-09 17:06:53 +0200260 /*
261 * IO may take forever
262 * hence wait in an interruptible state
263 */
264 rv = wait_for_completion_interruptible(&dev->bulk_in_completion);
265 if (rv < 0)
266 goto exit;
267 /*
268 * by waiting we also semiprocessed the urb
269 * we must finish now
270 */
271 dev->bulk_in_copied = 0;
272 dev->processed_urb = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274
Oliver Neukume7389cc2009-09-09 17:06:53 +0200275 if (!dev->processed_urb) {
276 /*
277 * the URB hasn't been processed
278 * do it now
279 */
280 wait_for_completion(&dev->bulk_in_completion);
281 dev->bulk_in_copied = 0;
282 dev->processed_urb = 1;
283 }
284
285 /* errors must be reported */
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700286 rv = dev->errors;
287 if (rv < 0) {
Oliver Neukume7389cc2009-09-09 17:06:53 +0200288 /* any error is reported once */
289 dev->errors = 0;
290 /* to preserve notifications about reset */
291 rv = (rv == -EPIPE) ? rv : -EIO;
292 /* no data to deliver */
293 dev->bulk_in_filled = 0;
294 /* report it */
295 goto exit;
296 }
297
298 /*
299 * if the buffer is filled we may satisfy the read
300 * else we need to start IO
301 */
302
303 if (dev->bulk_in_filled) {
304 /* we had read data */
305 size_t available = dev->bulk_in_filled - dev->bulk_in_copied;
306 size_t chunk = min(available, count);
307
308 if (!available) {
309 /*
310 * all data has been used
311 * actual IO needs to be done
312 */
313 rv = skel_do_read_io(dev, count);
314 if (rv < 0)
315 goto exit;
316 else
317 goto retry;
318 }
319 /*
320 * data is available
321 * chunk tells us how much shall be copied
322 */
323
324 if (copy_to_user(buffer,
325 dev->bulk_in_buffer + dev->bulk_in_copied,
326 chunk))
327 rv = -EFAULT;
328 else
329 rv = chunk;
330
331 dev->bulk_in_copied += chunk;
332
333 /*
334 * if we are asked for more than we have,
335 * we start IO but don't wait
336 */
337 if (available < count)
338 skel_do_read_io(dev, count - chunk);
339 } else {
340 /* no data in the buffer */
341 rv = skel_do_read_io(dev, count);
342 if (rv < 0)
343 goto exit;
Julia Lawall4de84052009-09-19 09:13:43 +0200344 else if (!(file->f_flags & O_NONBLOCK))
Oliver Neukume7389cc2009-09-09 17:06:53 +0200345 goto retry;
Oliver Neukum8cd01662009-09-09 17:08:50 +0200346 rv = -EAGAIN;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200347 }
Alan Stern121e2872006-07-01 22:06:36 -0400348exit:
349 mutex_unlock(&dev->io_mutex);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200350 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
David Howells7d12e782006-10-05 14:55:46 +0100353static void skel_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct usb_skel *dev;
356
Ming Leicdc97792008-02-24 18:41:47 +0800357 dev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /* sync/async unlink faults aren't errors */
Oliver Neukum403dfb52007-05-25 13:42:56 +0200360 if (urb->status) {
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700361 if (!(urb->status == -ENOENT ||
Oliver Neukum403dfb52007-05-25 13:42:56 +0200362 urb->status == -ECONNRESET ||
363 urb->status == -ESHUTDOWN))
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700364 dev_err(&dev->interface->dev,
365 "%s - nonzero write bulk status received: %d\n",
366 __func__, urb->status);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200367
368 spin_lock(&dev->err_lock);
369 dev->errors = urb->status;
370 spin_unlock(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
373 /* free up our allocated buffer */
Daniel Mack997ea582010-04-12 13:17:25 +0200374 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
375 urb->transfer_buffer, urb->transfer_dma);
Oliver Neukumff906512005-12-21 19:27:29 +0100376 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700379static ssize_t skel_write(struct file *file, const char *user_buffer,
380 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 struct usb_skel *dev;
383 int retval = 0;
384 struct urb *urb = NULL;
385 char *buf = NULL;
Sam Bishopc8dd7702005-12-22 17:11:02 -0700386 size_t writesize = min(count, (size_t)MAX_TRANSFER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Joe Perchese53e8412010-07-12 13:50:13 -0700388 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* verify that we actually have some data to write */
391 if (count == 0)
392 goto exit;
393
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700394 /*
395 * limit the number of URBs in flight to stop a user from using up all
396 * RAM
397 */
Julia Lawall4de84052009-09-19 09:13:43 +0200398 if (!(file->f_flags & O_NONBLOCK)) {
Oliver Neukum79819982009-09-09 10:23:35 +0200399 if (down_interruptible(&dev->limit_sem)) {
400 retval = -ERESTARTSYS;
401 goto exit;
402 }
403 } else {
404 if (down_trylock(&dev->limit_sem)) {
405 retval = -EAGAIN;
406 goto exit;
407 }
Sam Bishopc8dd7702005-12-22 17:11:02 -0700408 }
Oliver Neukumff906512005-12-21 19:27:29 +0100409
Oliver Neukum403dfb52007-05-25 13:42:56 +0200410 spin_lock_irq(&dev->err_lock);
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700411 retval = dev->errors;
412 if (retval < 0) {
Oliver Neukum403dfb52007-05-25 13:42:56 +0200413 /* any error is reported once */
414 dev->errors = 0;
415 /* to preserve notifications about reset */
416 retval = (retval == -EPIPE) ? retval : -EIO;
417 }
418 spin_unlock_irq(&dev->err_lock);
419 if (retval < 0)
420 goto error;
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /* create a urb, and a buffer for it, and copy the data to the urb */
423 urb = usb_alloc_urb(0, GFP_KERNEL);
424 if (!urb) {
425 retval = -ENOMEM;
426 goto error;
427 }
428
Daniel Mack997ea582010-04-12 13:17:25 +0200429 buf = usb_alloc_coherent(dev->udev, writesize, GFP_KERNEL,
430 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (!buf) {
432 retval = -ENOMEM;
433 goto error;
434 }
435
Oliver Neukumff906512005-12-21 19:27:29 +0100436 if (copy_from_user(buf, user_buffer, writesize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 retval = -EFAULT;
438 goto error;
439 }
440
Oliver Neukumba35e022007-03-01 14:31:02 +0100441 /* this lock makes sure we don't submit URBs to gone devices */
442 mutex_lock(&dev->io_mutex);
443 if (!dev->interface) { /* disconnect() was called */
444 mutex_unlock(&dev->io_mutex);
445 retval = -ENODEV;
446 goto error;
447 }
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* initialize the urb properly */
450 usb_fill_bulk_urb(urb, dev->udev,
451 usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr),
Oliver Neukumff906512005-12-21 19:27:29 +0100452 buf, writesize, skel_write_bulk_callback, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200454 usb_anchor_urb(urb, &dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /* send the data out the bulk port */
457 retval = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukumba35e022007-03-01 14:31:02 +0100458 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (retval) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700460 dev_err(&dev->interface->dev,
461 "%s - failed submitting write urb, error %d\n",
462 __func__, retval);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200463 goto error_unanchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700466 /*
467 * release our reference to this urb, the USB core will eventually free
468 * it entirely
469 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 usb_free_urb(urb);
471
Oliver Neukumba35e022007-03-01 14:31:02 +0100472
Oliver Neukumff906512005-12-21 19:27:29 +0100473 return writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Oliver Neukum403dfb52007-05-25 13:42:56 +0200475error_unanchor:
476 usb_unanchor_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477error:
Alan Stern121e2872006-07-01 22:06:36 -0400478 if (urb) {
Daniel Mack997ea582010-04-12 13:17:25 +0200479 usb_free_coherent(dev->udev, writesize, buf, urb->transfer_dma);
Alan Stern121e2872006-07-01 22:06:36 -0400480 usb_free_urb(urb);
481 }
Oliver Neukumff906512005-12-21 19:27:29 +0100482 up(&dev->limit_sem);
Alan Stern121e2872006-07-01 22:06:36 -0400483
484exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return retval;
486}
487
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300488static const struct file_operations skel_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 .owner = THIS_MODULE,
490 .read = skel_read,
491 .write = skel_write,
492 .open = skel_open,
493 .release = skel_release,
Oliver Neukum403dfb52007-05-25 13:42:56 +0200494 .flush = skel_flush,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200495 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496};
497
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300498/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartman595b14c2006-01-18 17:36:58 -0500500 * and to have the device registered with the driver core
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
502static struct usb_class_driver skel_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700503 .name = "skel%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 .fops = &skel_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 .minor_base = USB_SKEL_MINOR_BASE,
506};
507
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700508static int skel_probe(struct usb_interface *interface,
509 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300511 struct usb_skel *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct usb_host_interface *iface_desc;
513 struct usb_endpoint_descriptor *endpoint;
514 size_t buffer_size;
515 int i;
516 int retval = -ENOMEM;
517
518 /* allocate memory for our device state and initialize it */
Oliver Neukumff906512005-12-21 19:27:29 +0100519 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300520 if (!dev) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700521 dev_err(&interface->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto error;
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 kref_init(&dev->kref);
Oliver Neukumff906512005-12-21 19:27:29 +0100525 sema_init(&dev->limit_sem, WRITES_IN_FLIGHT);
Alan Stern121e2872006-07-01 22:06:36 -0400526 mutex_init(&dev->io_mutex);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200527 spin_lock_init(&dev->err_lock);
528 init_usb_anchor(&dev->submitted);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200529 init_completion(&dev->bulk_in_completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 dev->udev = usb_get_dev(interface_to_usbdev(interface));
532 dev->interface = interface;
533
534 /* set up the endpoint information */
535 /* use only the first bulk-in and bulk-out endpoints */
536 iface_desc = interface->cur_altsetting;
537 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
538 endpoint = &iface_desc->endpoint[i].desc;
539
540 if (!dev->bulk_in_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300541 usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* we found a bulk in endpoint */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700543 buffer_size = usb_endpoint_maxp(endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 dev->bulk_in_size = buffer_size;
545 dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
546 dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
547 if (!dev->bulk_in_buffer) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700548 dev_err(&interface->dev,
549 "Could not allocate bulk_in_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 goto error;
551 }
Oliver Neukume7389cc2009-09-09 17:06:53 +0200552 dev->bulk_in_urb = usb_alloc_urb(0, GFP_KERNEL);
553 if (!dev->bulk_in_urb) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700554 dev_err(&interface->dev,
555 "Could not allocate bulk_in_urb\n");
Oliver Neukume7389cc2009-09-09 17:06:53 +0200556 goto error;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
560 if (!dev->bulk_out_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300561 usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* we found a bulk out endpoint */
563 dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
564 }
565 }
566 if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700567 dev_err(&interface->dev,
568 "Could not find both bulk-in and bulk-out endpoints\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 goto error;
570 }
571
572 /* save our data pointer in this interface device */
573 usb_set_intfdata(interface, dev);
574
575 /* we can register the device now, as it is ready */
576 retval = usb_register_dev(interface, &skel_class);
577 if (retval) {
578 /* something prevented us from registering this driver */
Greg Kroah-Hartman4212cd72012-04-27 11:24:45 -0700579 dev_err(&interface->dev,
580 "Not able to get a minor for this device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 usb_set_intfdata(interface, NULL);
582 goto error;
583 }
584
585 /* let the user know what node this device is now attached to */
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800586 dev_info(&interface->dev,
587 "USB Skeleton device now attached to USBSkel-%d",
588 interface->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 0;
590
591error:
592 if (dev)
Oliver Neukumba35e022007-03-01 14:31:02 +0100593 /* this frees allocated memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 kref_put(&dev->kref, skel_delete);
595 return retval;
596}
597
598static void skel_disconnect(struct usb_interface *interface)
599{
600 struct usb_skel *dev;
601 int minor = interface->minor;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 dev = usb_get_intfdata(interface);
Greg Kroah-Hartman52a74992012-01-24 12:02:38 -0800604 usb_set_intfdata(interface, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /* give back our minor */
607 usb_deregister_dev(interface, &skel_class);
608
Alan Stern121e2872006-07-01 22:06:36 -0400609 /* prevent more I/O from starting */
610 mutex_lock(&dev->io_mutex);
611 dev->interface = NULL;
612 mutex_unlock(&dev->io_mutex);
613
Oliver Neukume73c7242007-06-11 14:54:02 +0200614 usb_kill_anchored_urbs(&dev->submitted);
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /* decrement our usage count */
617 kref_put(&dev->kref, skel_delete);
618
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800619 dev_info(&interface->dev, "USB Skeleton #%d now disconnected", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
Oliver Neukum403dfb52007-05-25 13:42:56 +0200622static void skel_draw_down(struct usb_skel *dev)
623{
624 int time;
625
626 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
627 if (!time)
628 usb_kill_anchored_urbs(&dev->submitted);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200629 usb_kill_urb(dev->bulk_in_urb);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200630}
631
Oliver Neukum758f7e162007-06-11 14:55:08 +0200632static int skel_suspend(struct usb_interface *intf, pm_message_t message)
633{
634 struct usb_skel *dev = usb_get_intfdata(intf);
635
636 if (!dev)
637 return 0;
638 skel_draw_down(dev);
639 return 0;
640}
641
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700642static int skel_resume(struct usb_interface *intf)
Oliver Neukum758f7e162007-06-11 14:55:08 +0200643{
644 return 0;
645}
646
Oliver Neukum87d093e2007-06-11 14:55:51 +0200647static int skel_pre_reset(struct usb_interface *intf)
648{
649 struct usb_skel *dev = usb_get_intfdata(intf);
650
651 mutex_lock(&dev->io_mutex);
652 skel_draw_down(dev);
653
654 return 0;
655}
656
657static int skel_post_reset(struct usb_interface *intf)
658{
659 struct usb_skel *dev = usb_get_intfdata(intf);
660
661 /* we are sure no URBs are active - no locking needed */
662 dev->errors = -EPIPE;
663 mutex_unlock(&dev->io_mutex);
664
665 return 0;
666}
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668static struct usb_driver skel_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 .name = "skeleton",
670 .probe = skel_probe,
671 .disconnect = skel_disconnect,
Oliver Neukum758f7e162007-06-11 14:55:08 +0200672 .suspend = skel_suspend,
673 .resume = skel_resume,
Oliver Neukum87d093e2007-06-11 14:55:51 +0200674 .pre_reset = skel_pre_reset,
675 .post_reset = skel_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 .id_table = skel_table,
Oliver Neukumba35e022007-03-01 14:31:02 +0100677 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678};
679
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800680module_usb_driver(skel_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682MODULE_LICENSE("GPL");