1 /*****************************************************************************
2 * USBLCD Kernel Driver *
6 * This file is licensed under the GPL. See COPYING in the package. *
10 * 28.02.05 Complete rewrite of the original usblcd.c driver, *
11 * based on usb_skeleton.c. *
12 * This new driver allows more than one USB-LCD to be connected *
13 * and controlled, at once *
14 *****************************************************************************/
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/slab.h>
19 #include <linux/errno.h>
20 #include <linux/mutex.h>
21 #include <linux/uaccess.h>
22 #include <linux/usb.h>
24 #define DRIVER_VERSION "USBLCD Driver Version 1.05"
26 #define USBLCD_MINOR 144
28 #define IOCTL_GET_HARD_VERSION 1
29 #define IOCTL_GET_DRV_VERSION 2
32 static DEFINE_MUTEX(lcd_mutex);
33 static const struct usb_device_id id_table[] = {
34 { .idVendor = 0x10D2, .match_flags = USB_DEVICE_ID_MATCH_VENDOR, },
37 MODULE_DEVICE_TABLE(usb, id_table);
39 static DEFINE_MUTEX(open_disc_mutex);
43 struct usb_device *udev; /* init: probe_lcd */
44 struct usb_interface *interface; /* the interface for
46 unsigned char *bulk_in_buffer; /* the buffer to receive
48 size_t bulk_in_size; /* the size of the
50 __u8 bulk_in_endpointAddr; /* the address of the
52 __u8 bulk_out_endpointAddr; /* the address of the
55 struct semaphore limit_sem; /* to stop writes at
58 struct usb_anchor submitted; /* URBs to wait for
61 #define to_lcd_dev(d) container_of(d, struct usb_lcd, kref)
63 #define USB_LCD_CONCURRENT_WRITES 5
65 static struct usb_driver lcd_driver;
68 static void lcd_delete(struct kref *kref)
70 struct usb_lcd *dev = to_lcd_dev(kref);
72 usb_put_dev(dev->udev);
73 kfree(dev->bulk_in_buffer);
78 static int lcd_open(struct inode *inode, struct file *file)
81 struct usb_interface *interface;
84 mutex_lock(&lcd_mutex);
85 subminor = iminor(inode);
87 interface = usb_find_interface(&lcd_driver, subminor);
89 mutex_unlock(&lcd_mutex);
90 err("USBLCD: %s - error, can't find device for minor %d",
95 mutex_lock(&open_disc_mutex);
96 dev = usb_get_intfdata(interface);
98 mutex_unlock(&open_disc_mutex);
99 mutex_unlock(&lcd_mutex);
103 /* increment our usage count for the device */
104 kref_get(&dev->kref);
105 mutex_unlock(&open_disc_mutex);
107 /* grab a power reference */
108 r = usb_autopm_get_interface(interface);
110 kref_put(&dev->kref, lcd_delete);
111 mutex_unlock(&lcd_mutex);
115 /* save our object in the file's private structure */
116 file->private_data = dev;
117 mutex_unlock(&lcd_mutex);
122 static int lcd_release(struct inode *inode, struct file *file)
126 dev = file->private_data;
130 /* decrement the count on our device */
131 usb_autopm_put_interface(dev->interface);
132 kref_put(&dev->kref, lcd_delete);
136 static ssize_t lcd_read(struct file *file, char __user * buffer,
137 size_t count, loff_t *ppos)
143 dev = file->private_data;
145 /* do a blocking bulk read to get data from the device */
146 retval = usb_bulk_msg(dev->udev,
147 usb_rcvbulkpipe(dev->udev,
148 dev->bulk_in_endpointAddr),
150 min(dev->bulk_in_size, count),
153 /* if the read was successful, copy the data to userspace */
155 if (copy_to_user(buffer, dev->bulk_in_buffer, bytes_read))
164 static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
170 dev = file->private_data;
175 case IOCTL_GET_HARD_VERSION:
176 mutex_lock(&lcd_mutex);
177 bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice);
178 sprintf(buf, "%1d%1d.%1d%1d",
179 (bcdDevice & 0xF000)>>12,
180 (bcdDevice & 0xF00)>>8,
181 (bcdDevice & 0xF0)>>4,
183 mutex_unlock(&lcd_mutex);
184 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
187 case IOCTL_GET_DRV_VERSION:
188 sprintf(buf, DRIVER_VERSION);
189 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
200 static void lcd_write_bulk_callback(struct urb *urb)
203 int status = urb->status;
207 /* sync/async unlink faults aren't errors */
209 !(status == -ENOENT ||
210 status == -ECONNRESET ||
211 status == -ESHUTDOWN)) {
212 dbg("USBLCD: %s - nonzero write bulk status received: %d",
216 /* free up our allocated buffer */
217 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
218 urb->transfer_buffer, urb->transfer_dma);
222 static ssize_t lcd_write(struct file *file, const char __user * user_buffer,
223 size_t count, loff_t *ppos)
227 struct urb *urb = NULL;
230 dev = file->private_data;
232 /* verify that we actually have some data to write */
236 r = down_interruptible(&dev->limit_sem);
240 /* create a urb, and a buffer for it, and copy the data to the urb */
241 urb = usb_alloc_urb(0, GFP_KERNEL);
247 buf = usb_alloc_coherent(dev->udev, count, GFP_KERNEL,
254 if (copy_from_user(buf, user_buffer, count)) {
259 /* initialize the urb properly */
260 usb_fill_bulk_urb(urb, dev->udev,
261 usb_sndbulkpipe(dev->udev,
262 dev->bulk_out_endpointAddr),
263 buf, count, lcd_write_bulk_callback, dev);
264 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
266 usb_anchor_urb(urb, &dev->submitted);
268 /* send the data out the bulk port */
269 retval = usb_submit_urb(urb, GFP_KERNEL);
271 err("USBLCD: %s - failed submitting write urb, error %d",
276 /* release our reference to this urb,
277 the USB core will eventually free it entirely */
283 usb_unanchor_urb(urb);
285 usb_free_coherent(dev->udev, count, buf, urb->transfer_dma);
292 static const struct file_operations lcd_fops = {
293 .owner = THIS_MODULE,
297 .unlocked_ioctl = lcd_ioctl,
298 .release = lcd_release,
299 .llseek = noop_llseek,
303 * usb class driver info in order to get a minor number from the usb core,
304 * and to have the device registered with the driver core
306 static struct usb_class_driver lcd_class = {
309 .minor_base = USBLCD_MINOR,
312 static int lcd_probe(struct usb_interface *interface,
313 const struct usb_device_id *id)
315 struct usb_lcd *dev = NULL;
316 struct usb_host_interface *iface_desc;
317 struct usb_endpoint_descriptor *endpoint;
320 int retval = -ENOMEM;
322 /* allocate memory for our device state and initialize it */
323 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
325 err("Out of memory");
328 kref_init(&dev->kref);
329 sema_init(&dev->limit_sem, USB_LCD_CONCURRENT_WRITES);
330 init_usb_anchor(&dev->submitted);
332 dev->udev = usb_get_dev(interface_to_usbdev(interface));
333 dev->interface = interface;
335 if (le16_to_cpu(dev->udev->descriptor.idProduct) != 0x0001) {
336 dev_warn(&interface->dev, "USBLCD model not supported.\n");
341 /* set up the endpoint information */
342 /* use only the first bulk-in and bulk-out endpoints */
343 iface_desc = interface->cur_altsetting;
344 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
345 endpoint = &iface_desc->endpoint[i].desc;
347 if (!dev->bulk_in_endpointAddr &&
348 usb_endpoint_is_bulk_in(endpoint)) {
349 /* we found a bulk in endpoint */
350 buffer_size = usb_endpoint_maxp(endpoint);
351 dev->bulk_in_size = buffer_size;
352 dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
353 dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
354 if (!dev->bulk_in_buffer) {
355 err("Could not allocate bulk_in_buffer");
360 if (!dev->bulk_out_endpointAddr &&
361 usb_endpoint_is_bulk_out(endpoint)) {
362 /* we found a bulk out endpoint */
363 dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
366 if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
367 err("Could not find both bulk-in and bulk-out endpoints");
371 /* save our data pointer in this interface device */
372 usb_set_intfdata(interface, dev);
374 /* we can register the device now, as it is ready */
375 retval = usb_register_dev(interface, &lcd_class);
377 /* something prevented us from registering this driver */
378 err("Not able to get a minor for this device.");
379 usb_set_intfdata(interface, NULL);
383 i = le16_to_cpu(dev->udev->descriptor.bcdDevice);
385 dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found "
386 "at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8,
387 (i & 0xF0)>>4, (i & 0xF), dev->udev->devnum);
389 /* let the user know what node this device is now attached to */
390 dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n",
396 kref_put(&dev->kref, lcd_delete);
400 static void lcd_draw_down(struct usb_lcd *dev)
404 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
406 usb_kill_anchored_urbs(&dev->submitted);
409 static int lcd_suspend(struct usb_interface *intf, pm_message_t message)
411 struct usb_lcd *dev = usb_get_intfdata(intf);
419 static int lcd_resume(struct usb_interface *intf)
424 static void lcd_disconnect(struct usb_interface *interface)
427 int minor = interface->minor;
429 mutex_lock(&open_disc_mutex);
430 dev = usb_get_intfdata(interface);
431 usb_set_intfdata(interface, NULL);
432 mutex_unlock(&open_disc_mutex);
434 /* give back our minor */
435 usb_deregister_dev(interface, &lcd_class);
437 /* decrement our usage count */
438 kref_put(&dev->kref, lcd_delete);
440 dev_info(&interface->dev, "USB LCD #%d now disconnected\n", minor);
443 static struct usb_driver lcd_driver = {
446 .disconnect = lcd_disconnect,
447 .suspend = lcd_suspend,
448 .resume = lcd_resume,
449 .id_table = id_table,
450 .supports_autosuspend = 1,
453 module_usb_driver(lcd_driver);
456 MODULE_DESCRIPTION(DRIVER_VERSION);
457 MODULE_LICENSE("GPL");