blob: 8efeae24764f97dedfe016f7006520fa61b8a09f [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
Ming Lei26c71a72011-12-16 22:20:01 +080030static DEFINE_MUTEX(skel_mutex);
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* table of devices that work with this driver */
Németh Márton1bd4f292010-01-10 15:33:33 +010033static const struct usb_device_id skel_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 { USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
35 { } /* Terminating entry */
36};
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030037MODULE_DEVICE_TABLE(usb, skel_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39
40/* Get a minor range for your devices from the usb maintainer */
41#define USB_SKEL_MINOR_BASE 192
42
Oliver Neukumff906512005-12-21 19:27:29 +010043/* our private defines. if this grows any larger, use your own .h file */
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030044#define MAX_TRANSFER (PAGE_SIZE - 512)
Oliver Neukumba35e022007-03-01 14:31:02 +010045/* MAX_TRANSFER is chosen so that the VM is not stressed by
46 allocations > PAGE_SIZE and the number of packets in a page
47 is an integer 512 is the largest possible packet on EHCI */
Oliver Neukumff906512005-12-21 19:27:29 +010048#define WRITES_IN_FLIGHT 8
Oliver Neukumba35e022007-03-01 14:31:02 +010049/* arbitrarily chosen */
Oliver Neukumff906512005-12-21 19:27:29 +010050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* Structure to hold all of our device specific stuff */
52struct usb_skel {
Oliver Neukumba35e022007-03-01 14:31:02 +010053 struct usb_device *udev; /* the usb device for this device */
54 struct usb_interface *interface; /* the interface for this device */
Oliver Neukumff906512005-12-21 19:27:29 +010055 struct semaphore limit_sem; /* limiting the number of writes in progress */
Oliver Neukum403dfb52007-05-25 13:42:56 +020056 struct usb_anchor submitted; /* in case we need to retract our submissions */
Oliver Neukume7389cc2009-09-09 17:06:53 +020057 struct urb *bulk_in_urb; /* the urb to read data with */
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030058 unsigned char *bulk_in_buffer; /* the buffer to receive data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 size_t bulk_in_size; /* the size of the receive buffer */
Oliver Neukume7389cc2009-09-09 17:06:53 +020060 size_t bulk_in_filled; /* number of bytes in the buffer */
61 size_t bulk_in_copied; /* already copied to user space */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 __u8 bulk_in_endpointAddr; /* the address of the bulk in endpoint */
63 __u8 bulk_out_endpointAddr; /* the address of the bulk out endpoint */
Oliver Neukum403dfb52007-05-25 13:42:56 +020064 int errors; /* the last request tanked */
Oliver Neukume7389cc2009-09-09 17:06:53 +020065 bool ongoing_read; /* a read is going on */
66 bool processed_urb; /* indicates we haven't processed the urb */
Oliver Neukum403dfb52007-05-25 13:42:56 +020067 spinlock_t err_lock; /* lock for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 struct kref kref;
Alan Stern121e2872006-07-01 22:06:36 -040069 struct mutex io_mutex; /* synchronize I/O with disconnect */
Oliver Neukume7389cc2009-09-09 17:06:53 +020070 struct completion bulk_in_completion; /* to wait for an ongoing read */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72#define to_skel_dev(d) container_of(d, struct usb_skel, kref)
73
74static struct usb_driver skel_driver;
Oliver Neukum403dfb52007-05-25 13:42:56 +020075static void skel_draw_down(struct usb_skel *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77static void skel_delete(struct kref *kref)
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030078{
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct usb_skel *dev = to_skel_dev(kref);
80
Oliver Neukume7389cc2009-09-09 17:06:53 +020081 usb_free_urb(dev->bulk_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 usb_put_dev(dev->udev);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030083 kfree(dev->bulk_in_buffer);
84 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87static int skel_open(struct inode *inode, struct file *file)
88{
89 struct usb_skel *dev;
90 struct usb_interface *interface;
91 int subminor;
92 int retval = 0;
93
94 subminor = iminor(inode);
95
96 interface = usb_find_interface(&skel_driver, subminor);
97 if (!interface) {
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -070098 err("%s - error, can't find device for minor %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080099 __func__, subminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 retval = -ENODEV;
101 goto exit;
102 }
103
Ming Lei26c71a72011-12-16 22:20:01 +0800104 mutex_lock(&skel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 dev = usb_get_intfdata(interface);
106 if (!dev) {
Ming Lei26c71a72011-12-16 22:20:01 +0800107 mutex_unlock(&skel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 retval = -ENODEV;
109 goto exit;
110 }
111
112 /* increment our usage count for the device */
113 kref_get(&dev->kref);
Ming Lei26c71a72011-12-16 22:20:01 +0800114 mutex_unlock(&skel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Oliver Neukum758f7e162007-06-11 14:55:08 +0200116 /* lock the device to allow correctly handling errors
117 * in resumption */
118 mutex_lock(&dev->io_mutex);
Ming Lei26c71a72011-12-16 22:20:01 +0800119 if (!dev->interface) {
120 retval = -ENODEV;
121 goto out_err;
122 }
Oliver Neukum758f7e162007-06-11 14:55:08 +0200123
Ming Leie28dbb02011-12-16 22:20:44 +0800124 retval = usb_autopm_get_interface(interface);
125 if (retval)
126 goto out_err;
Oliver Neukum5b064702007-02-08 15:42:53 +0100127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* save our object in the file's private structure */
129 file->private_data = dev;
Ming Lei26c71a72011-12-16 22:20:01 +0800130
131out_err:
Mark Grossf7294052007-09-24 09:28:14 -0700132 mutex_unlock(&dev->io_mutex);
Ming Lei26c71a72011-12-16 22:20:01 +0800133 if (retval)
134 kref_put(&dev->kref, skel_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136exit:
137 return retval;
138}
139
140static int skel_release(struct inode *inode, struct file *file)
141{
142 struct usb_skel *dev;
143
Joe Perchese53e8412010-07-12 13:50:13 -0700144 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (dev == NULL)
146 return -ENODEV;
147
Alan Stern01d883d2006-08-30 15:47:18 -0400148 /* allow the device to be autosuspended */
149 mutex_lock(&dev->io_mutex);
Ming Leie28dbb02011-12-16 22:20:44 +0800150 if (dev->interface)
Alan Stern01d883d2006-08-30 15:47:18 -0400151 usb_autopm_put_interface(dev->interface);
152 mutex_unlock(&dev->io_mutex);
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* decrement the count on our device */
155 kref_put(&dev->kref, skel_delete);
156 return 0;
157}
158
Oliver Neukum403dfb52007-05-25 13:42:56 +0200159static int skel_flush(struct file *file, fl_owner_t id)
160{
161 struct usb_skel *dev;
162 int res;
163
Joe Perchese53e8412010-07-12 13:50:13 -0700164 dev = file->private_data;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200165 if (dev == NULL)
166 return -ENODEV;
167
168 /* wait for io to stop */
169 mutex_lock(&dev->io_mutex);
170 skel_draw_down(dev);
171
172 /* read out errors, leave subsequent opens a clean slate */
173 spin_lock_irq(&dev->err_lock);
174 res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0;
175 dev->errors = 0;
176 spin_unlock_irq(&dev->err_lock);
177
178 mutex_unlock(&dev->io_mutex);
179
180 return res;
181}
182
Oliver Neukume7389cc2009-09-09 17:06:53 +0200183static void skel_read_bulk_callback(struct urb *urb)
184{
185 struct usb_skel *dev;
186
187 dev = urb->context;
188
189 spin_lock(&dev->err_lock);
190 /* sync/async unlink faults aren't errors */
191 if (urb->status) {
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700192 if (!(urb->status == -ENOENT ||
Oliver Neukume7389cc2009-09-09 17:06:53 +0200193 urb->status == -ECONNRESET ||
194 urb->status == -ESHUTDOWN))
195 err("%s - nonzero write bulk status received: %d",
196 __func__, urb->status);
197
198 dev->errors = urb->status;
199 } else {
200 dev->bulk_in_filled = urb->actual_length;
201 }
202 dev->ongoing_read = 0;
203 spin_unlock(&dev->err_lock);
204
205 complete(&dev->bulk_in_completion);
206}
207
208static int skel_do_read_io(struct usb_skel *dev, size_t count)
209{
210 int rv;
211
212 /* prepare a read */
213 usb_fill_bulk_urb(dev->bulk_in_urb,
214 dev->udev,
215 usb_rcvbulkpipe(dev->udev,
216 dev->bulk_in_endpointAddr),
217 dev->bulk_in_buffer,
218 min(dev->bulk_in_size, count),
219 skel_read_bulk_callback,
220 dev);
221 /* tell everybody to leave the URB alone */
222 spin_lock_irq(&dev->err_lock);
223 dev->ongoing_read = 1;
224 spin_unlock_irq(&dev->err_lock);
225
226 /* do it */
227 rv = usb_submit_urb(dev->bulk_in_urb, GFP_KERNEL);
228 if (rv < 0) {
229 err("%s - failed submitting read urb, error %d",
230 __func__, rv);
231 dev->bulk_in_filled = 0;
232 rv = (rv == -ENOMEM) ? rv : -EIO;
233 spin_lock_irq(&dev->err_lock);
234 dev->ongoing_read = 0;
235 spin_unlock_irq(&dev->err_lock);
236 }
237
238 return rv;
239}
240
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700241static ssize_t skel_read(struct file *file, char *buffer, size_t count,
242 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
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
Joe Perchese53e8412010-07-12 13:50:13 -0700248 dev = 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) {
Oliver Neukum8cd01662009-09-09 17:08:50 +0200271 /* nonblocking IO shall not wait */
272 if (file->f_flags & O_NONBLOCK) {
273 rv = -EAGAIN;
274 goto exit;
275 }
Oliver Neukume7389cc2009-09-09 17:06:53 +0200276 /*
277 * IO may take forever
278 * hence wait in an interruptible state
279 */
280 rv = wait_for_completion_interruptible(&dev->bulk_in_completion);
281 if (rv < 0)
282 goto exit;
283 /*
284 * by waiting we also semiprocessed the urb
285 * we must finish now
286 */
287 dev->bulk_in_copied = 0;
288 dev->processed_urb = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
Oliver Neukume7389cc2009-09-09 17:06:53 +0200291 if (!dev->processed_urb) {
292 /*
293 * the URB hasn't been processed
294 * do it now
295 */
296 wait_for_completion(&dev->bulk_in_completion);
297 dev->bulk_in_copied = 0;
298 dev->processed_urb = 1;
299 }
300
301 /* errors must be reported */
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700302 rv = dev->errors;
303 if (rv < 0) {
Oliver Neukume7389cc2009-09-09 17:06:53 +0200304 /* any error is reported once */
305 dev->errors = 0;
306 /* to preserve notifications about reset */
307 rv = (rv == -EPIPE) ? rv : -EIO;
308 /* no data to deliver */
309 dev->bulk_in_filled = 0;
310 /* report it */
311 goto exit;
312 }
313
314 /*
315 * if the buffer is filled we may satisfy the read
316 * else we need to start IO
317 */
318
319 if (dev->bulk_in_filled) {
320 /* we had read data */
321 size_t available = dev->bulk_in_filled - dev->bulk_in_copied;
322 size_t chunk = min(available, count);
323
324 if (!available) {
325 /*
326 * all data has been used
327 * actual IO needs to be done
328 */
329 rv = skel_do_read_io(dev, count);
330 if (rv < 0)
331 goto exit;
332 else
333 goto retry;
334 }
335 /*
336 * data is available
337 * chunk tells us how much shall be copied
338 */
339
340 if (copy_to_user(buffer,
341 dev->bulk_in_buffer + dev->bulk_in_copied,
342 chunk))
343 rv = -EFAULT;
344 else
345 rv = chunk;
346
347 dev->bulk_in_copied += chunk;
348
349 /*
350 * if we are asked for more than we have,
351 * we start IO but don't wait
352 */
353 if (available < count)
354 skel_do_read_io(dev, count - chunk);
355 } else {
356 /* no data in the buffer */
357 rv = skel_do_read_io(dev, count);
358 if (rv < 0)
359 goto exit;
Julia Lawall4de84052009-09-19 09:13:43 +0200360 else if (!(file->f_flags & O_NONBLOCK))
Oliver Neukume7389cc2009-09-09 17:06:53 +0200361 goto retry;
Oliver Neukum8cd01662009-09-09 17:08:50 +0200362 rv = -EAGAIN;
Oliver Neukume7389cc2009-09-09 17:06:53 +0200363 }
Alan Stern121e2872006-07-01 22:06:36 -0400364exit:
365 mutex_unlock(&dev->io_mutex);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200366 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
David Howells7d12e782006-10-05 14:55:46 +0100369static void skel_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 struct usb_skel *dev;
372
Ming Leicdc97792008-02-24 18:41:47 +0800373 dev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* sync/async unlink faults aren't errors */
Oliver Neukum403dfb52007-05-25 13:42:56 +0200376 if (urb->status) {
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700377 if (!(urb->status == -ENOENT ||
Oliver Neukum403dfb52007-05-25 13:42:56 +0200378 urb->status == -ECONNRESET ||
379 urb->status == -ESHUTDOWN))
380 err("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800381 __func__, urb->status);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200382
383 spin_lock(&dev->err_lock);
384 dev->errors = urb->status;
385 spin_unlock(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
388 /* free up our allocated buffer */
Daniel Mack997ea582010-04-12 13:17:25 +0200389 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
390 urb->transfer_buffer, urb->transfer_dma);
Oliver Neukumff906512005-12-21 19:27:29 +0100391 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700394static ssize_t skel_write(struct file *file, const char *user_buffer,
395 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct usb_skel *dev;
398 int retval = 0;
399 struct urb *urb = NULL;
400 char *buf = NULL;
Sam Bishopc8dd7702005-12-22 17:11:02 -0700401 size_t writesize = min(count, (size_t)MAX_TRANSFER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Joe Perchese53e8412010-07-12 13:50:13 -0700403 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* verify that we actually have some data to write */
406 if (count == 0)
407 goto exit;
408
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700409 /*
410 * limit the number of URBs in flight to stop a user from using up all
411 * RAM
412 */
Julia Lawall4de84052009-09-19 09:13:43 +0200413 if (!(file->f_flags & O_NONBLOCK)) {
Oliver Neukum79819982009-09-09 10:23:35 +0200414 if (down_interruptible(&dev->limit_sem)) {
415 retval = -ERESTARTSYS;
416 goto exit;
417 }
418 } else {
419 if (down_trylock(&dev->limit_sem)) {
420 retval = -EAGAIN;
421 goto exit;
422 }
Sam Bishopc8dd7702005-12-22 17:11:02 -0700423 }
Oliver Neukumff906512005-12-21 19:27:29 +0100424
Oliver Neukum403dfb52007-05-25 13:42:56 +0200425 spin_lock_irq(&dev->err_lock);
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700426 retval = dev->errors;
427 if (retval < 0) {
Oliver Neukum403dfb52007-05-25 13:42:56 +0200428 /* any error is reported once */
429 dev->errors = 0;
430 /* to preserve notifications about reset */
431 retval = (retval == -EPIPE) ? retval : -EIO;
432 }
433 spin_unlock_irq(&dev->err_lock);
434 if (retval < 0)
435 goto error;
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /* create a urb, and a buffer for it, and copy the data to the urb */
438 urb = usb_alloc_urb(0, GFP_KERNEL);
439 if (!urb) {
440 retval = -ENOMEM;
441 goto error;
442 }
443
Daniel Mack997ea582010-04-12 13:17:25 +0200444 buf = usb_alloc_coherent(dev->udev, writesize, GFP_KERNEL,
445 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (!buf) {
447 retval = -ENOMEM;
448 goto error;
449 }
450
Oliver Neukumff906512005-12-21 19:27:29 +0100451 if (copy_from_user(buf, user_buffer, writesize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 retval = -EFAULT;
453 goto error;
454 }
455
Oliver Neukumba35e022007-03-01 14:31:02 +0100456 /* this lock makes sure we don't submit URBs to gone devices */
457 mutex_lock(&dev->io_mutex);
458 if (!dev->interface) { /* disconnect() was called */
459 mutex_unlock(&dev->io_mutex);
460 retval = -ENODEV;
461 goto error;
462 }
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /* initialize the urb properly */
465 usb_fill_bulk_urb(urb, dev->udev,
466 usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr),
Oliver Neukumff906512005-12-21 19:27:29 +0100467 buf, writesize, skel_write_bulk_callback, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200469 usb_anchor_urb(urb, &dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /* send the data out the bulk port */
472 retval = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukumba35e022007-03-01 14:31:02 +0100473 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (retval) {
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700475 err("%s - failed submitting write urb, error %d", __func__,
476 retval);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200477 goto error_unanchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700480 /*
481 * release our reference to this urb, the USB core will eventually free
482 * it entirely
483 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 usb_free_urb(urb);
485
Oliver Neukumba35e022007-03-01 14:31:02 +0100486
Oliver Neukumff906512005-12-21 19:27:29 +0100487 return writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Oliver Neukum403dfb52007-05-25 13:42:56 +0200489error_unanchor:
490 usb_unanchor_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491error:
Alan Stern121e2872006-07-01 22:06:36 -0400492 if (urb) {
Daniel Mack997ea582010-04-12 13:17:25 +0200493 usb_free_coherent(dev->udev, writesize, buf, urb->transfer_dma);
Alan Stern121e2872006-07-01 22:06:36 -0400494 usb_free_urb(urb);
495 }
Oliver Neukumff906512005-12-21 19:27:29 +0100496 up(&dev->limit_sem);
Alan Stern121e2872006-07-01 22:06:36 -0400497
498exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return retval;
500}
501
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300502static const struct file_operations skel_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .owner = THIS_MODULE,
504 .read = skel_read,
505 .write = skel_write,
506 .open = skel_open,
507 .release = skel_release,
Oliver Neukum403dfb52007-05-25 13:42:56 +0200508 .flush = skel_flush,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200509 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510};
511
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300512/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartman595b14c2006-01-18 17:36:58 -0500514 * and to have the device registered with the driver core
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 */
516static struct usb_class_driver skel_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700517 .name = "skel%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 .fops = &skel_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 .minor_base = USB_SKEL_MINOR_BASE,
520};
521
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700522static int skel_probe(struct usb_interface *interface,
523 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300525 struct usb_skel *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 struct usb_host_interface *iface_desc;
527 struct usb_endpoint_descriptor *endpoint;
528 size_t buffer_size;
529 int i;
530 int retval = -ENOMEM;
531
532 /* allocate memory for our device state and initialize it */
Oliver Neukumff906512005-12-21 19:27:29 +0100533 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300534 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 err("Out of memory");
536 goto error;
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 kref_init(&dev->kref);
Oliver Neukumff906512005-12-21 19:27:29 +0100539 sema_init(&dev->limit_sem, WRITES_IN_FLIGHT);
Alan Stern121e2872006-07-01 22:06:36 -0400540 mutex_init(&dev->io_mutex);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200541 spin_lock_init(&dev->err_lock);
542 init_usb_anchor(&dev->submitted);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200543 init_completion(&dev->bulk_in_completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 dev->udev = usb_get_dev(interface_to_usbdev(interface));
546 dev->interface = interface;
547
548 /* set up the endpoint information */
549 /* use only the first bulk-in and bulk-out endpoints */
550 iface_desc = interface->cur_altsetting;
551 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
552 endpoint = &iface_desc->endpoint[i].desc;
553
554 if (!dev->bulk_in_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300555 usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /* we found a bulk in endpoint */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700557 buffer_size = usb_endpoint_maxp(endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 dev->bulk_in_size = buffer_size;
559 dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
560 dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
561 if (!dev->bulk_in_buffer) {
562 err("Could not allocate bulk_in_buffer");
563 goto error;
564 }
Oliver Neukume7389cc2009-09-09 17:06:53 +0200565 dev->bulk_in_urb = usb_alloc_urb(0, GFP_KERNEL);
566 if (!dev->bulk_in_urb) {
567 err("Could not allocate bulk_in_urb");
568 goto error;
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
572 if (!dev->bulk_out_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300573 usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* we found a bulk out endpoint */
575 dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
576 }
577 }
578 if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
579 err("Could not find both bulk-in and bulk-out endpoints");
580 goto error;
581 }
582
583 /* save our data pointer in this interface device */
584 usb_set_intfdata(interface, dev);
585
586 /* we can register the device now, as it is ready */
587 retval = usb_register_dev(interface, &skel_class);
588 if (retval) {
589 /* something prevented us from registering this driver */
590 err("Not able to get a minor for this device.");
591 usb_set_intfdata(interface, NULL);
592 goto error;
593 }
594
595 /* let the user know what node this device is now attached to */
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800596 dev_info(&interface->dev,
597 "USB Skeleton device now attached to USBSkel-%d",
598 interface->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return 0;
600
601error:
602 if (dev)
Oliver Neukumba35e022007-03-01 14:31:02 +0100603 /* this frees allocated memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 kref_put(&dev->kref, skel_delete);
605 return retval;
606}
607
608static void skel_disconnect(struct usb_interface *interface)
609{
610 struct usb_skel *dev;
611 int minor = interface->minor;
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 dev = usb_get_intfdata(interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 /* give back our minor */
616 usb_deregister_dev(interface, &skel_class);
617
Alan Stern121e2872006-07-01 22:06:36 -0400618 /* prevent more I/O from starting */
619 mutex_lock(&dev->io_mutex);
620 dev->interface = NULL;
621 mutex_unlock(&dev->io_mutex);
622
Oliver Neukume73c7242007-06-11 14:54:02 +0200623 usb_kill_anchored_urbs(&dev->submitted);
624
Ming Lei26c71a72011-12-16 22:20:01 +0800625 mutex_lock(&skel_mutex);
626 usb_set_intfdata(interface, NULL);
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* decrement our usage count */
629 kref_put(&dev->kref, skel_delete);
Ming Lei26c71a72011-12-16 22:20:01 +0800630 mutex_unlock(&skel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800632 dev_info(&interface->dev, "USB Skeleton #%d now disconnected", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Oliver Neukum403dfb52007-05-25 13:42:56 +0200635static void skel_draw_down(struct usb_skel *dev)
636{
637 int time;
638
639 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
640 if (!time)
641 usb_kill_anchored_urbs(&dev->submitted);
Oliver Neukume7389cc2009-09-09 17:06:53 +0200642 usb_kill_urb(dev->bulk_in_urb);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200643}
644
Oliver Neukum758f7e162007-06-11 14:55:08 +0200645static int skel_suspend(struct usb_interface *intf, pm_message_t message)
646{
647 struct usb_skel *dev = usb_get_intfdata(intf);
648
649 if (!dev)
650 return 0;
651 skel_draw_down(dev);
652 return 0;
653}
654
Greg Kroah-Hartman3ae9da12009-09-11 16:07:30 -0700655static int skel_resume(struct usb_interface *intf)
Oliver Neukum758f7e162007-06-11 14:55:08 +0200656{
657 return 0;
658}
659
Oliver Neukum87d093e2007-06-11 14:55:51 +0200660static int skel_pre_reset(struct usb_interface *intf)
661{
662 struct usb_skel *dev = usb_get_intfdata(intf);
663
664 mutex_lock(&dev->io_mutex);
665 skel_draw_down(dev);
666
667 return 0;
668}
669
670static int skel_post_reset(struct usb_interface *intf)
671{
672 struct usb_skel *dev = usb_get_intfdata(intf);
673
674 /* we are sure no URBs are active - no locking needed */
675 dev->errors = -EPIPE;
676 mutex_unlock(&dev->io_mutex);
677
678 return 0;
679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681static struct usb_driver skel_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 .name = "skeleton",
683 .probe = skel_probe,
684 .disconnect = skel_disconnect,
Oliver Neukum758f7e162007-06-11 14:55:08 +0200685 .suspend = skel_suspend,
686 .resume = skel_resume,
Oliver Neukum87d093e2007-06-11 14:55:51 +0200687 .pre_reset = skel_pre_reset,
688 .post_reset = skel_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 .id_table = skel_table,
Oliver Neukumba35e022007-03-01 14:31:02 +0100690 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691};
692
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800693module_usb_driver(skel_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695MODULE_LICENSE("GPL");