2 * USB Skeleton driver - 2.2
4 * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
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.
10 * This driver is based on the 2.6.3 version of drivers/usb/usb-skeleton.c
11 * but has been rewritten to be easier to read and use.
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/slab.h>
18 #include <linux/module.h>
19 #include <linux/kref.h>
20 #include <linux/uaccess.h>
21 #include <linux/usb.h>
22 #include <linux/mutex.h>
25 /* Define these values to match your devices */
26 #define USB_SKEL_VENDOR_ID 0xfff0
27 #define USB_SKEL_PRODUCT_ID 0xfff0
29 /* table of devices that work with this driver */
30 static const struct usb_device_id skel_table
[] = {
31 { USB_DEVICE(USB_SKEL_VENDOR_ID
, USB_SKEL_PRODUCT_ID
) },
32 { } /* Terminating entry */
34 MODULE_DEVICE_TABLE(usb
, skel_table
);
37 /* Get a minor range for your devices from the usb maintainer */
38 #define USB_SKEL_MINOR_BASE 192
40 /* our private defines. if this grows any larger, use your own .h file */
41 #define MAX_TRANSFER (PAGE_SIZE - 512)
42 /* MAX_TRANSFER is chosen so that the VM is not stressed by
43 allocations > PAGE_SIZE and the number of packets in a page
44 is an integer 512 is the largest possible packet on EHCI */
45 #define WRITES_IN_FLIGHT 8
46 /* arbitrarily chosen */
48 /* Structure to hold all of our device specific stuff */
50 struct usb_device
*udev
; /* the usb device for this device */
51 struct usb_interface
*interface
; /* the interface for this device */
52 struct semaphore limit_sem
; /* limiting the number of writes in progress */
53 struct usb_anchor submitted
; /* in case we need to retract our submissions */
54 struct urb
*bulk_in_urb
; /* the urb to read data with */
55 unsigned char *bulk_in_buffer
; /* the buffer to receive data */
56 size_t bulk_in_size
; /* the size of the receive buffer */
57 size_t bulk_in_filled
; /* number of bytes in the buffer */
58 size_t bulk_in_copied
; /* already copied to user space */
59 __u8 bulk_in_endpointAddr
; /* the address of the bulk in endpoint */
60 __u8 bulk_out_endpointAddr
; /* the address of the bulk out endpoint */
61 int errors
; /* the last request tanked */
62 bool ongoing_read
; /* a read is going on */
63 spinlock_t err_lock
; /* lock for errors */
65 struct mutex io_mutex
; /* synchronize I/O with disconnect */
66 wait_queue_head_t bulk_in_wait
; /* to wait for an ongoing read */
68 #define to_skel_dev(d) container_of(d, struct usb_skel, kref)
70 static struct usb_driver skel_driver
;
71 static void skel_draw_down(struct usb_skel
*dev
);
73 static void skel_delete(struct kref
*kref
)
75 struct usb_skel
*dev
= to_skel_dev(kref
);
77 usb_free_urb(dev
->bulk_in_urb
);
78 usb_put_dev(dev
->udev
);
79 kfree(dev
->bulk_in_buffer
);
83 static int skel_open(struct inode
*inode
, struct file
*file
)
86 struct usb_interface
*interface
;
90 subminor
= iminor(inode
);
92 interface
= usb_find_interface(&skel_driver
, subminor
);
94 pr_err("%s - error, can't find device for minor %d\n",
100 dev
= usb_get_intfdata(interface
);
106 retval
= usb_autopm_get_interface(interface
);
110 /* increment our usage count for the device */
111 kref_get(&dev
->kref
);
113 /* save our object in the file's private structure */
114 file
->private_data
= dev
;
120 static int skel_release(struct inode
*inode
, struct file
*file
)
122 struct usb_skel
*dev
;
124 dev
= file
->private_data
;
128 /* allow the device to be autosuspended */
129 mutex_lock(&dev
->io_mutex
);
131 usb_autopm_put_interface(dev
->interface
);
132 mutex_unlock(&dev
->io_mutex
);
134 /* decrement the count on our device */
135 kref_put(&dev
->kref
, skel_delete
);
139 static int skel_flush(struct file
*file
, fl_owner_t id
)
141 struct usb_skel
*dev
;
144 dev
= file
->private_data
;
148 /* wait for io to stop */
149 mutex_lock(&dev
->io_mutex
);
152 /* read out errors, leave subsequent opens a clean slate */
153 spin_lock_irq(&dev
->err_lock
);
154 res
= dev
->errors
? (dev
->errors
== -EPIPE
? -EPIPE
: -EIO
) : 0;
156 spin_unlock_irq(&dev
->err_lock
);
158 mutex_unlock(&dev
->io_mutex
);
163 static void skel_read_bulk_callback(struct urb
*urb
)
165 struct usb_skel
*dev
;
169 spin_lock(&dev
->err_lock
);
170 /* sync/async unlink faults aren't errors */
172 if (!(urb
->status
== -ENOENT
||
173 urb
->status
== -ECONNRESET
||
174 urb
->status
== -ESHUTDOWN
))
175 dev_err(&dev
->interface
->dev
,
176 "%s - nonzero write bulk status received: %d\n",
177 __func__
, urb
->status
);
179 dev
->errors
= urb
->status
;
181 dev
->bulk_in_filled
= urb
->actual_length
;
183 dev
->ongoing_read
= 0;
184 spin_unlock(&dev
->err_lock
);
186 wake_up_interruptible(&dev
->bulk_in_wait
);
189 static int skel_do_read_io(struct usb_skel
*dev
, size_t count
)
194 usb_fill_bulk_urb(dev
->bulk_in_urb
,
196 usb_rcvbulkpipe(dev
->udev
,
197 dev
->bulk_in_endpointAddr
),
199 min(dev
->bulk_in_size
, count
),
200 skel_read_bulk_callback
,
202 /* tell everybody to leave the URB alone */
203 spin_lock_irq(&dev
->err_lock
);
204 dev
->ongoing_read
= 1;
205 spin_unlock_irq(&dev
->err_lock
);
207 /* submit bulk in urb, which means no data to deliver */
208 dev
->bulk_in_filled
= 0;
209 dev
->bulk_in_copied
= 0;
212 rv
= usb_submit_urb(dev
->bulk_in_urb
, GFP_KERNEL
);
214 dev_err(&dev
->interface
->dev
,
215 "%s - failed submitting read urb, error %d\n",
217 rv
= (rv
== -ENOMEM
) ? rv
: -EIO
;
218 spin_lock_irq(&dev
->err_lock
);
219 dev
->ongoing_read
= 0;
220 spin_unlock_irq(&dev
->err_lock
);
226 static ssize_t
skel_read(struct file
*file
, char *buffer
, size_t count
,
229 struct usb_skel
*dev
;
233 dev
= file
->private_data
;
235 /* if we cannot read at all, return EOF */
236 if (!dev
->bulk_in_urb
|| !count
)
239 /* no concurrent readers */
240 rv
= mutex_lock_interruptible(&dev
->io_mutex
);
244 if (!dev
->interface
) { /* disconnect() was called */
249 /* if IO is under way, we must not touch things */
251 spin_lock_irq(&dev
->err_lock
);
252 ongoing_io
= dev
->ongoing_read
;
253 spin_unlock_irq(&dev
->err_lock
);
256 /* nonblocking IO shall not wait */
257 if (file
->f_flags
& O_NONBLOCK
) {
262 * IO may take forever
263 * hence wait in an interruptible state
265 rv
= wait_event_interruptible(dev
->bulk_in_wait
, (!dev
->ongoing_read
));
270 /* errors must be reported */
273 /* any error is reported once */
275 /* to preserve notifications about reset */
276 rv
= (rv
== -EPIPE
) ? rv
: -EIO
;
282 * if the buffer is filled we may satisfy the read
283 * else we need to start IO
286 if (dev
->bulk_in_filled
) {
287 /* we had read data */
288 size_t available
= dev
->bulk_in_filled
- dev
->bulk_in_copied
;
289 size_t chunk
= min(available
, count
);
293 * all data has been used
294 * actual IO needs to be done
296 rv
= skel_do_read_io(dev
, count
);
304 * chunk tells us how much shall be copied
307 if (copy_to_user(buffer
,
308 dev
->bulk_in_buffer
+ dev
->bulk_in_copied
,
314 dev
->bulk_in_copied
+= chunk
;
317 * if we are asked for more than we have,
318 * we start IO but don't wait
320 if (available
< count
)
321 skel_do_read_io(dev
, count
- chunk
);
323 /* no data in the buffer */
324 rv
= skel_do_read_io(dev
, count
);
331 mutex_unlock(&dev
->io_mutex
);
335 static void skel_write_bulk_callback(struct urb
*urb
)
337 struct usb_skel
*dev
;
341 /* sync/async unlink faults aren't errors */
343 if (!(urb
->status
== -ENOENT
||
344 urb
->status
== -ECONNRESET
||
345 urb
->status
== -ESHUTDOWN
))
346 dev_err(&dev
->interface
->dev
,
347 "%s - nonzero write bulk status received: %d\n",
348 __func__
, urb
->status
);
350 spin_lock(&dev
->err_lock
);
351 dev
->errors
= urb
->status
;
352 spin_unlock(&dev
->err_lock
);
355 /* free up our allocated buffer */
356 usb_free_coherent(urb
->dev
, urb
->transfer_buffer_length
,
357 urb
->transfer_buffer
, urb
->transfer_dma
);
361 static ssize_t
skel_write(struct file
*file
, const char *user_buffer
,
362 size_t count
, loff_t
*ppos
)
364 struct usb_skel
*dev
;
366 struct urb
*urb
= NULL
;
368 size_t writesize
= min(count
, (size_t)MAX_TRANSFER
);
370 dev
= file
->private_data
;
372 /* verify that we actually have some data to write */
377 * limit the number of URBs in flight to stop a user from using up all
380 if (!(file
->f_flags
& O_NONBLOCK
)) {
381 if (down_interruptible(&dev
->limit_sem
)) {
382 retval
= -ERESTARTSYS
;
386 if (down_trylock(&dev
->limit_sem
)) {
392 spin_lock_irq(&dev
->err_lock
);
393 retval
= dev
->errors
;
395 /* any error is reported once */
397 /* to preserve notifications about reset */
398 retval
= (retval
== -EPIPE
) ? retval
: -EIO
;
400 spin_unlock_irq(&dev
->err_lock
);
404 /* create a urb, and a buffer for it, and copy the data to the urb */
405 urb
= usb_alloc_urb(0, GFP_KERNEL
);
411 buf
= usb_alloc_coherent(dev
->udev
, writesize
, GFP_KERNEL
,
418 if (copy_from_user(buf
, user_buffer
, writesize
)) {
423 /* this lock makes sure we don't submit URBs to gone devices */
424 mutex_lock(&dev
->io_mutex
);
425 if (!dev
->interface
) { /* disconnect() was called */
426 mutex_unlock(&dev
->io_mutex
);
431 /* initialize the urb properly */
432 usb_fill_bulk_urb(urb
, dev
->udev
,
433 usb_sndbulkpipe(dev
->udev
, dev
->bulk_out_endpointAddr
),
434 buf
, writesize
, skel_write_bulk_callback
, dev
);
435 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
436 usb_anchor_urb(urb
, &dev
->submitted
);
438 /* send the data out the bulk port */
439 retval
= usb_submit_urb(urb
, GFP_KERNEL
);
440 mutex_unlock(&dev
->io_mutex
);
442 dev_err(&dev
->interface
->dev
,
443 "%s - failed submitting write urb, error %d\n",
449 * release our reference to this urb, the USB core will eventually free
458 usb_unanchor_urb(urb
);
461 usb_free_coherent(dev
->udev
, writesize
, buf
, urb
->transfer_dma
);
470 static const struct file_operations skel_fops
= {
471 .owner
= THIS_MODULE
,
475 .release
= skel_release
,
477 .llseek
= noop_llseek
,
481 * usb class driver info in order to get a minor number from the usb core,
482 * and to have the device registered with the driver core
484 static struct usb_class_driver skel_class
= {
487 .minor_base
= USB_SKEL_MINOR_BASE
,
490 static int skel_probe(struct usb_interface
*interface
,
491 const struct usb_device_id
*id
)
493 struct usb_skel
*dev
;
494 struct usb_host_interface
*iface_desc
;
495 struct usb_endpoint_descriptor
*endpoint
;
498 int retval
= -ENOMEM
;
500 /* allocate memory for our device state and initialize it */
501 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
503 dev_err(&interface
->dev
, "Out of memory\n");
506 kref_init(&dev
->kref
);
507 sema_init(&dev
->limit_sem
, WRITES_IN_FLIGHT
);
508 mutex_init(&dev
->io_mutex
);
509 spin_lock_init(&dev
->err_lock
);
510 init_usb_anchor(&dev
->submitted
);
511 init_waitqueue_head(&dev
->bulk_in_wait
);
513 dev
->udev
= usb_get_dev(interface_to_usbdev(interface
));
514 dev
->interface
= interface
;
516 /* set up the endpoint information */
517 /* use only the first bulk-in and bulk-out endpoints */
518 iface_desc
= interface
->cur_altsetting
;
519 for (i
= 0; i
< iface_desc
->desc
.bNumEndpoints
; ++i
) {
520 endpoint
= &iface_desc
->endpoint
[i
].desc
;
522 if (!dev
->bulk_in_endpointAddr
&&
523 usb_endpoint_is_bulk_in(endpoint
)) {
524 /* we found a bulk in endpoint */
525 buffer_size
= usb_endpoint_maxp(endpoint
);
526 dev
->bulk_in_size
= buffer_size
;
527 dev
->bulk_in_endpointAddr
= endpoint
->bEndpointAddress
;
528 dev
->bulk_in_buffer
= kmalloc(buffer_size
, GFP_KERNEL
);
529 if (!dev
->bulk_in_buffer
) {
530 dev_err(&interface
->dev
,
531 "Could not allocate bulk_in_buffer\n");
534 dev
->bulk_in_urb
= usb_alloc_urb(0, GFP_KERNEL
);
535 if (!dev
->bulk_in_urb
) {
536 dev_err(&interface
->dev
,
537 "Could not allocate bulk_in_urb\n");
542 if (!dev
->bulk_out_endpointAddr
&&
543 usb_endpoint_is_bulk_out(endpoint
)) {
544 /* we found a bulk out endpoint */
545 dev
->bulk_out_endpointAddr
= endpoint
->bEndpointAddress
;
548 if (!(dev
->bulk_in_endpointAddr
&& dev
->bulk_out_endpointAddr
)) {
549 dev_err(&interface
->dev
,
550 "Could not find both bulk-in and bulk-out endpoints\n");
554 /* save our data pointer in this interface device */
555 usb_set_intfdata(interface
, dev
);
557 /* we can register the device now, as it is ready */
558 retval
= usb_register_dev(interface
, &skel_class
);
560 /* something prevented us from registering this driver */
561 dev_err(&interface
->dev
,
562 "Not able to get a minor for this device.\n");
563 usb_set_intfdata(interface
, NULL
);
567 /* let the user know what node this device is now attached to */
568 dev_info(&interface
->dev
,
569 "USB Skeleton device now attached to USBSkel-%d",
575 /* this frees allocated memory */
576 kref_put(&dev
->kref
, skel_delete
);
580 static void skel_disconnect(struct usb_interface
*interface
)
582 struct usb_skel
*dev
;
583 int minor
= interface
->minor
;
585 dev
= usb_get_intfdata(interface
);
586 usb_set_intfdata(interface
, NULL
);
588 /* give back our minor */
589 usb_deregister_dev(interface
, &skel_class
);
591 /* prevent more I/O from starting */
592 mutex_lock(&dev
->io_mutex
);
593 dev
->interface
= NULL
;
594 mutex_unlock(&dev
->io_mutex
);
596 usb_kill_anchored_urbs(&dev
->submitted
);
598 /* decrement our usage count */
599 kref_put(&dev
->kref
, skel_delete
);
601 dev_info(&interface
->dev
, "USB Skeleton #%d now disconnected", minor
);
604 static void skel_draw_down(struct usb_skel
*dev
)
608 time
= usb_wait_anchor_empty_timeout(&dev
->submitted
, 1000);
610 usb_kill_anchored_urbs(&dev
->submitted
);
611 usb_kill_urb(dev
->bulk_in_urb
);
614 static int skel_suspend(struct usb_interface
*intf
, pm_message_t message
)
616 struct usb_skel
*dev
= usb_get_intfdata(intf
);
624 static int skel_resume(struct usb_interface
*intf
)
629 static int skel_pre_reset(struct usb_interface
*intf
)
631 struct usb_skel
*dev
= usb_get_intfdata(intf
);
633 mutex_lock(&dev
->io_mutex
);
639 static int skel_post_reset(struct usb_interface
*intf
)
641 struct usb_skel
*dev
= usb_get_intfdata(intf
);
643 /* we are sure no URBs are active - no locking needed */
644 dev
->errors
= -EPIPE
;
645 mutex_unlock(&dev
->io_mutex
);
650 static struct usb_driver skel_driver
= {
653 .disconnect
= skel_disconnect
,
654 .suspend
= skel_suspend
,
655 .resume
= skel_resume
,
656 .pre_reset
= skel_pre_reset
,
657 .post_reset
= skel_post_reset
,
658 .id_table
= skel_table
,
659 .supports_autosuspend
= 1,
662 module_usb_driver(skel_driver
);
664 MODULE_LICENSE("GPL");