blob: 60ba631e99c22c07568e23daa6340d0563598f1e [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 */
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030055 unsigned char *bulk_in_buffer; /* the buffer to receive data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 size_t bulk_in_size; /* the size of the receive buffer */
57 __u8 bulk_in_endpointAddr; /* the address of the bulk in endpoint */
58 __u8 bulk_out_endpointAddr; /* the address of the bulk out endpoint */
Oliver Neukum403dfb52007-05-25 13:42:56 +020059 int errors; /* the last request tanked */
Oliver Neukum758f7e162007-06-11 14:55:08 +020060 int open_count; /* count the number of openers */
Oliver Neukum403dfb52007-05-25 13:42:56 +020061 spinlock_t err_lock; /* lock for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct kref kref;
Alan Stern121e2872006-07-01 22:06:36 -040063 struct mutex io_mutex; /* synchronize I/O with disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65#define to_skel_dev(d) container_of(d, struct usb_skel, kref)
66
67static struct usb_driver skel_driver;
Oliver Neukum403dfb52007-05-25 13:42:56 +020068static void skel_draw_down(struct usb_skel *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70static void skel_delete(struct kref *kref)
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030071{
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct usb_skel *dev = to_skel_dev(kref);
73
74 usb_put_dev(dev->udev);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -030075 kfree(dev->bulk_in_buffer);
76 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79static int skel_open(struct inode *inode, struct file *file)
80{
81 struct usb_skel *dev;
82 struct usb_interface *interface;
83 int subminor;
84 int retval = 0;
85
86 subminor = iminor(inode);
87
88 interface = usb_find_interface(&skel_driver, subminor);
89 if (!interface) {
90 err ("%s - error, can't find device for minor %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080091 __func__, subminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 retval = -ENODEV;
93 goto exit;
94 }
95
96 dev = usb_get_intfdata(interface);
97 if (!dev) {
98 retval = -ENODEV;
99 goto exit;
100 }
101
102 /* increment our usage count for the device */
103 kref_get(&dev->kref);
104
Oliver Neukum758f7e162007-06-11 14:55:08 +0200105 /* lock the device to allow correctly handling errors
106 * in resumption */
107 mutex_lock(&dev->io_mutex);
108
109 if (!dev->open_count++) {
110 retval = usb_autopm_get_interface(interface);
111 if (retval) {
112 dev->open_count--;
113 mutex_unlock(&dev->io_mutex);
114 kref_put(&dev->kref, skel_delete);
115 goto exit;
116 }
117 } /* else { //uncomment this block if you want exclusive open
118 retval = -EBUSY;
119 dev->open_count--;
120 mutex_unlock(&dev->io_mutex);
Oliver Neukum5b064702007-02-08 15:42:53 +0100121 kref_put(&dev->kref, skel_delete);
122 goto exit;
Oliver Neukum758f7e162007-06-11 14:55:08 +0200123 } */
124 /* prevent the device from being autosuspended */
Oliver Neukum5b064702007-02-08 15:42:53 +0100125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* save our object in the file's private structure */
127 file->private_data = dev;
Mark Grossf7294052007-09-24 09:28:14 -0700128 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130exit:
131 return retval;
132}
133
134static int skel_release(struct inode *inode, struct file *file)
135{
136 struct usb_skel *dev;
137
138 dev = (struct usb_skel *)file->private_data;
139 if (dev == NULL)
140 return -ENODEV;
141
Alan Stern01d883d2006-08-30 15:47:18 -0400142 /* allow the device to be autosuspended */
143 mutex_lock(&dev->io_mutex);
Oliver Neukum758f7e162007-06-11 14:55:08 +0200144 if (!--dev->open_count && dev->interface)
Alan Stern01d883d2006-08-30 15:47:18 -0400145 usb_autopm_put_interface(dev->interface);
146 mutex_unlock(&dev->io_mutex);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* decrement the count on our device */
149 kref_put(&dev->kref, skel_delete);
150 return 0;
151}
152
Oliver Neukum403dfb52007-05-25 13:42:56 +0200153static int skel_flush(struct file *file, fl_owner_t id)
154{
155 struct usb_skel *dev;
156 int res;
157
158 dev = (struct usb_skel *)file->private_data;
159 if (dev == NULL)
160 return -ENODEV;
161
162 /* wait for io to stop */
163 mutex_lock(&dev->io_mutex);
164 skel_draw_down(dev);
165
166 /* read out errors, leave subsequent opens a clean slate */
167 spin_lock_irq(&dev->err_lock);
168 res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0;
169 dev->errors = 0;
170 spin_unlock_irq(&dev->err_lock);
171
172 mutex_unlock(&dev->io_mutex);
173
174 return res;
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static ssize_t skel_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
178{
179 struct usb_skel *dev;
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300180 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int bytes_read;
182
183 dev = (struct usb_skel *)file->private_data;
Alan Stern121e2872006-07-01 22:06:36 -0400184
185 mutex_lock(&dev->io_mutex);
186 if (!dev->interface) { /* disconnect() was called */
187 retval = -ENODEV;
188 goto exit;
189 }
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /* do a blocking bulk read to get data from the device */
192 retval = usb_bulk_msg(dev->udev,
193 usb_rcvbulkpipe(dev->udev, dev->bulk_in_endpointAddr),
194 dev->bulk_in_buffer,
195 min(dev->bulk_in_size, count),
196 &bytes_read, 10000);
197
198 /* if the read was successful, copy the data to userspace */
199 if (!retval) {
200 if (copy_to_user(buffer, dev->bulk_in_buffer, bytes_read))
201 retval = -EFAULT;
202 else
203 retval = bytes_read;
204 }
205
Alan Stern121e2872006-07-01 22:06:36 -0400206exit:
207 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return retval;
209}
210
David Howells7d12e782006-10-05 14:55:46 +0100211static void skel_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct usb_skel *dev;
214
Ming Leicdc97792008-02-24 18:41:47 +0800215 dev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* sync/async unlink faults aren't errors */
Oliver Neukum403dfb52007-05-25 13:42:56 +0200218 if (urb->status) {
219 if(!(urb->status == -ENOENT ||
220 urb->status == -ECONNRESET ||
221 urb->status == -ESHUTDOWN))
222 err("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800223 __func__, urb->status);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200224
225 spin_lock(&dev->err_lock);
226 dev->errors = urb->status;
227 spin_unlock(&dev->err_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
230 /* free up our allocated buffer */
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300231 usb_buffer_free(urb->dev, urb->transfer_buffer_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 urb->transfer_buffer, urb->transfer_dma);
Oliver Neukumff906512005-12-21 19:27:29 +0100233 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236static ssize_t skel_write(struct file *file, const char *user_buffer, size_t count, loff_t *ppos)
237{
238 struct usb_skel *dev;
239 int retval = 0;
240 struct urb *urb = NULL;
241 char *buf = NULL;
Sam Bishopc8dd7702005-12-22 17:11:02 -0700242 size_t writesize = min(count, (size_t)MAX_TRANSFER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 dev = (struct usb_skel *)file->private_data;
245
246 /* verify that we actually have some data to write */
247 if (count == 0)
248 goto exit;
249
Oliver Neukumff906512005-12-21 19:27:29 +0100250 /* limit the number of URBs in flight to stop a user from using up all RAM */
Sam Bishopc8dd7702005-12-22 17:11:02 -0700251 if (down_interruptible(&dev->limit_sem)) {
252 retval = -ERESTARTSYS;
253 goto exit;
254 }
Oliver Neukumff906512005-12-21 19:27:29 +0100255
Oliver Neukum403dfb52007-05-25 13:42:56 +0200256 spin_lock_irq(&dev->err_lock);
257 if ((retval = dev->errors) < 0) {
258 /* any error is reported once */
259 dev->errors = 0;
260 /* to preserve notifications about reset */
261 retval = (retval == -EPIPE) ? retval : -EIO;
262 }
263 spin_unlock_irq(&dev->err_lock);
264 if (retval < 0)
265 goto error;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* create a urb, and a buffer for it, and copy the data to the urb */
268 urb = usb_alloc_urb(0, GFP_KERNEL);
269 if (!urb) {
270 retval = -ENOMEM;
271 goto error;
272 }
273
Oliver Neukumff906512005-12-21 19:27:29 +0100274 buf = usb_buffer_alloc(dev->udev, writesize, GFP_KERNEL, &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!buf) {
276 retval = -ENOMEM;
277 goto error;
278 }
279
Oliver Neukumff906512005-12-21 19:27:29 +0100280 if (copy_from_user(buf, user_buffer, writesize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 retval = -EFAULT;
282 goto error;
283 }
284
Oliver Neukumba35e022007-03-01 14:31:02 +0100285 /* this lock makes sure we don't submit URBs to gone devices */
286 mutex_lock(&dev->io_mutex);
287 if (!dev->interface) { /* disconnect() was called */
288 mutex_unlock(&dev->io_mutex);
289 retval = -ENODEV;
290 goto error;
291 }
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* initialize the urb properly */
294 usb_fill_bulk_urb(urb, dev->udev,
295 usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr),
Oliver Neukumff906512005-12-21 19:27:29 +0100296 buf, writesize, skel_write_bulk_callback, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Oliver Neukum403dfb52007-05-25 13:42:56 +0200298 usb_anchor_urb(urb, &dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /* send the data out the bulk port */
301 retval = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukumba35e022007-03-01 14:31:02 +0100302 mutex_unlock(&dev->io_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (retval) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800304 err("%s - failed submitting write urb, error %d", __func__, retval);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200305 goto error_unanchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
308 /* release our reference to this urb, the USB core will eventually free it entirely */
309 usb_free_urb(urb);
310
Oliver Neukumba35e022007-03-01 14:31:02 +0100311
Oliver Neukumff906512005-12-21 19:27:29 +0100312 return writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Oliver Neukum403dfb52007-05-25 13:42:56 +0200314error_unanchor:
315 usb_unanchor_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316error:
Alan Stern121e2872006-07-01 22:06:36 -0400317 if (urb) {
318 usb_buffer_free(dev->udev, writesize, buf, urb->transfer_dma);
319 usb_free_urb(urb);
320 }
Oliver Neukumff906512005-12-21 19:27:29 +0100321 up(&dev->limit_sem);
Alan Stern121e2872006-07-01 22:06:36 -0400322
323exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return retval;
325}
326
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300327static const struct file_operations skel_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 .owner = THIS_MODULE,
329 .read = skel_read,
330 .write = skel_write,
331 .open = skel_open,
332 .release = skel_release,
Oliver Neukum403dfb52007-05-25 13:42:56 +0200333 .flush = skel_flush,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334};
335
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartman595b14c2006-01-18 17:36:58 -0500338 * and to have the device registered with the driver core
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
340static struct usb_class_driver skel_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700341 .name = "skel%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 .fops = &skel_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 .minor_base = USB_SKEL_MINOR_BASE,
344};
345
346static int skel_probe(struct usb_interface *interface, const struct usb_device_id *id)
347{
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300348 struct usb_skel *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct usb_host_interface *iface_desc;
350 struct usb_endpoint_descriptor *endpoint;
351 size_t buffer_size;
352 int i;
353 int retval = -ENOMEM;
354
355 /* allocate memory for our device state and initialize it */
Oliver Neukumff906512005-12-21 19:27:29 +0100356 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300357 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 err("Out of memory");
359 goto error;
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 kref_init(&dev->kref);
Oliver Neukumff906512005-12-21 19:27:29 +0100362 sema_init(&dev->limit_sem, WRITES_IN_FLIGHT);
Alan Stern121e2872006-07-01 22:06:36 -0400363 mutex_init(&dev->io_mutex);
Oliver Neukum403dfb52007-05-25 13:42:56 +0200364 spin_lock_init(&dev->err_lock);
365 init_usb_anchor(&dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 dev->udev = usb_get_dev(interface_to_usbdev(interface));
368 dev->interface = interface;
369
370 /* set up the endpoint information */
371 /* use only the first bulk-in and bulk-out endpoints */
372 iface_desc = interface->cur_altsetting;
373 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
374 endpoint = &iface_desc->endpoint[i].desc;
375
376 if (!dev->bulk_in_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300377 usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* we found a bulk in endpoint */
379 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
380 dev->bulk_in_size = buffer_size;
381 dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
382 dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
383 if (!dev->bulk_in_buffer) {
384 err("Could not allocate bulk_in_buffer");
385 goto error;
386 }
387 }
388
389 if (!dev->bulk_out_endpointAddr &&
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300390 usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 /* we found a bulk out endpoint */
392 dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
393 }
394 }
395 if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
396 err("Could not find both bulk-in and bulk-out endpoints");
397 goto error;
398 }
399
400 /* save our data pointer in this interface device */
401 usb_set_intfdata(interface, dev);
402
403 /* we can register the device now, as it is ready */
404 retval = usb_register_dev(interface, &skel_class);
405 if (retval) {
406 /* something prevented us from registering this driver */
407 err("Not able to get a minor for this device.");
408 usb_set_intfdata(interface, NULL);
409 goto error;
410 }
411
412 /* let the user know what node this device is now attached to */
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800413 dev_info(&interface->dev,
414 "USB Skeleton device now attached to USBSkel-%d",
415 interface->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return 0;
417
418error:
419 if (dev)
Oliver Neukumba35e022007-03-01 14:31:02 +0100420 /* this frees allocated memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 kref_put(&dev->kref, skel_delete);
422 return retval;
423}
424
425static void skel_disconnect(struct usb_interface *interface)
426{
427 struct usb_skel *dev;
428 int minor = interface->minor;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 dev = usb_get_intfdata(interface);
431 usb_set_intfdata(interface, NULL);
432
433 /* give back our minor */
434 usb_deregister_dev(interface, &skel_class);
435
Alan Stern121e2872006-07-01 22:06:36 -0400436 /* prevent more I/O from starting */
437 mutex_lock(&dev->io_mutex);
438 dev->interface = NULL;
439 mutex_unlock(&dev->io_mutex);
440
Oliver Neukume73c7242007-06-11 14:54:02 +0200441 usb_kill_anchored_urbs(&dev->submitted);
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* decrement our usage count */
444 kref_put(&dev->kref, skel_delete);
445
Matt Kraaia5f5ea22009-02-06 19:38:51 -0800446 dev_info(&interface->dev, "USB Skeleton #%d now disconnected", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Oliver Neukum403dfb52007-05-25 13:42:56 +0200449static void skel_draw_down(struct usb_skel *dev)
450{
451 int time;
452
453 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
454 if (!time)
455 usb_kill_anchored_urbs(&dev->submitted);
456}
457
Oliver Neukum758f7e162007-06-11 14:55:08 +0200458static int skel_suspend(struct usb_interface *intf, pm_message_t message)
459{
460 struct usb_skel *dev = usb_get_intfdata(intf);
461
462 if (!dev)
463 return 0;
464 skel_draw_down(dev);
465 return 0;
466}
467
468static int skel_resume (struct usb_interface *intf)
469{
470 return 0;
471}
472
Oliver Neukum87d093e2007-06-11 14:55:51 +0200473static int skel_pre_reset(struct usb_interface *intf)
474{
475 struct usb_skel *dev = usb_get_intfdata(intf);
476
477 mutex_lock(&dev->io_mutex);
478 skel_draw_down(dev);
479
480 return 0;
481}
482
483static int skel_post_reset(struct usb_interface *intf)
484{
485 struct usb_skel *dev = usb_get_intfdata(intf);
486
487 /* we are sure no URBs are active - no locking needed */
488 dev->errors = -EPIPE;
489 mutex_unlock(&dev->io_mutex);
490
491 return 0;
492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static struct usb_driver skel_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 .name = "skeleton",
496 .probe = skel_probe,
497 .disconnect = skel_disconnect,
Oliver Neukum758f7e162007-06-11 14:55:08 +0200498 .suspend = skel_suspend,
499 .resume = skel_resume,
Oliver Neukum87d093e2007-06-11 14:55:51 +0200500 .pre_reset = skel_pre_reset,
501 .post_reset = skel_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .id_table = skel_table,
Oliver Neukumba35e022007-03-01 14:31:02 +0100503 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504};
505
506static int __init usb_skel_init(void)
507{
508 int result;
509
510 /* register this driver with the USB subsystem */
511 result = usb_register(&skel_driver);
512 if (result)
513 err("usb_register failed. Error number %d", result);
514
515 return result;
516}
517
518static void __exit usb_skel_exit(void)
519{
520 /* deregister this driver with the USB subsystem */
521 usb_deregister(&skel_driver);
522}
523
Luiz Fernando N. Capitulinoc0704542006-08-14 22:44:29 -0300524module_init(usb_skel_init);
525module_exit(usb_skel_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527MODULE_LICENSE("GPL");