1 // SPDX-License-Identifier: GPL-2.0
2 /*****************************************************************************
3 * USBLCD Kernel Driver *
5 * (C) 2005 Georges Toth <g.toth@e-biz.lu> *
7 * This file is licensed under the GPL. See COPYING in the package. *
8 * Based on usb-skeleton.c 2.0 by Greg Kroah-Hartman (greg@kroah.com) *
11 * 28.02.05 Complete rewrite of the original usblcd.c driver, *
12 * based on usb_skeleton.c. *
13 * This new driver allows more than one USB-LCD to be connected *
14 * and controlled, at once *
15 *****************************************************************************/
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/slab.h>
19 #include <linux/errno.h>
20 #include <linux/mutex.h>
21 #include <linux/rwsem.h>
22 #include <linux/uaccess.h>
23 #include <linux/usb.h>
25 #define DRIVER_VERSION "USBLCD Driver Version 1.05"
27 #define USBLCD_MINOR 144
29 #define IOCTL_GET_HARD_VERSION 1
30 #define IOCTL_GET_DRV_VERSION 2
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);
40 struct usb_device *udev; /* init: probe_lcd */
41 struct usb_interface *interface; /* the interface for
43 unsigned char *bulk_in_buffer; /* the buffer to receive
45 size_t bulk_in_size; /* the size of the
47 __u8 bulk_in_endpointAddr; /* the address of the
49 __u8 bulk_out_endpointAddr; /* the address of the
52 struct semaphore limit_sem; /* to stop writes at
55 struct usb_anchor submitted; /* URBs to wait for
57 struct rw_semaphore io_rwsem;
58 unsigned long disconnected:1;
60 #define to_lcd_dev(d) container_of(d, struct usb_lcd, kref)
62 #define USB_LCD_CONCURRENT_WRITES 5
64 static struct usb_driver lcd_driver;
67 static void lcd_delete(struct kref *kref)
69 struct usb_lcd *dev = to_lcd_dev(kref);
71 usb_put_dev(dev->udev);
72 kfree(dev->bulk_in_buffer);
77 static int lcd_open(struct inode *inode, struct file *file)
80 struct usb_interface *interface;
83 subminor = iminor(inode);
85 interface = usb_find_interface(&lcd_driver, subminor);
87 pr_err("USBLCD: %s - error, can't find device for minor %d\n",
92 dev = usb_get_intfdata(interface);
94 /* increment our usage count for the device */
97 /* grab a power reference */
98 r = usb_autopm_get_interface(interface);
100 kref_put(&dev->kref, lcd_delete);
104 /* save our object in the file's private structure */
105 file->private_data = dev;
110 static int lcd_release(struct inode *inode, struct file *file)
114 dev = file->private_data;
118 /* decrement the count on our device */
119 usb_autopm_put_interface(dev->interface);
120 kref_put(&dev->kref, lcd_delete);
124 static ssize_t lcd_read(struct file *file, char __user * buffer,
125 size_t count, loff_t *ppos)
131 dev = file->private_data;
133 down_read(&dev->io_rwsem);
135 if (dev->disconnected) {
140 /* do a blocking bulk read to get data from the device */
141 retval = usb_bulk_msg(dev->udev,
142 usb_rcvbulkpipe(dev->udev,
143 dev->bulk_in_endpointAddr),
145 min(dev->bulk_in_size, count),
148 /* if the read was successful, copy the data to userspace */
150 if (copy_to_user(buffer, dev->bulk_in_buffer, bytes_read))
157 up_read(&dev->io_rwsem);
162 static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
168 dev = file->private_data;
173 case IOCTL_GET_HARD_VERSION:
174 bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice);
175 sprintf(buf, "%1d%1d.%1d%1d",
176 (bcdDevice & 0xF000)>>12,
177 (bcdDevice & 0xF00)>>8,
178 (bcdDevice & 0xF0)>>4,
180 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
183 case IOCTL_GET_DRV_VERSION:
184 sprintf(buf, DRIVER_VERSION);
185 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
195 static void lcd_write_bulk_callback(struct urb *urb)
198 int status = urb->status;
202 /* sync/async unlink faults aren't errors */
204 !(status == -ENOENT ||
205 status == -ECONNRESET ||
206 status == -ESHUTDOWN)) {
207 dev_dbg(&dev->interface->dev,
208 "nonzero write bulk status received: %d\n", status);
211 /* free up our allocated buffer */
212 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
213 urb->transfer_buffer, urb->transfer_dma);
217 static ssize_t lcd_write(struct file *file, const char __user * user_buffer,
218 size_t count, loff_t *ppos)
222 struct urb *urb = NULL;
225 dev = file->private_data;
227 /* verify that we actually have some data to write */
231 r = down_interruptible(&dev->limit_sem);
235 down_read(&dev->io_rwsem);
237 if (dev->disconnected) {
242 /* create a urb, and a buffer for it, and copy the data to the urb */
243 urb = usb_alloc_urb(0, GFP_KERNEL);
249 buf = usb_alloc_coherent(dev->udev, count, GFP_KERNEL,
256 if (copy_from_user(buf, user_buffer, count)) {
261 /* initialize the urb properly */
262 usb_fill_bulk_urb(urb, dev->udev,
263 usb_sndbulkpipe(dev->udev,
264 dev->bulk_out_endpointAddr),
265 buf, count, lcd_write_bulk_callback, dev);
266 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
268 usb_anchor_urb(urb, &dev->submitted);
270 /* send the data out the bulk port */
271 retval = usb_submit_urb(urb, GFP_KERNEL);
273 dev_err(&dev->udev->dev,
274 "%s - failed submitting write urb, error %d\n",
279 /* release our reference to this urb,
280 the USB core will eventually free it entirely */
283 up_read(&dev->io_rwsem);
287 usb_unanchor_urb(urb);
289 usb_free_coherent(dev->udev, count, buf, urb->transfer_dma);
292 up_read(&dev->io_rwsem);
297 static const struct file_operations lcd_fops = {
298 .owner = THIS_MODULE,
302 .unlocked_ioctl = lcd_ioctl,
303 .release = lcd_release,
304 .llseek = noop_llseek,
308 * usb class driver info in order to get a minor number from the usb core,
309 * and to have the device registered with the driver core
311 static struct usb_class_driver lcd_class = {
314 .minor_base = USBLCD_MINOR,
317 static int lcd_probe(struct usb_interface *interface,
318 const struct usb_device_id *id)
320 struct usb_lcd *dev = NULL;
321 struct usb_endpoint_descriptor *bulk_in, *bulk_out;
325 /* allocate memory for our device state and initialize it */
326 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
330 kref_init(&dev->kref);
331 sema_init(&dev->limit_sem, USB_LCD_CONCURRENT_WRITES);
332 init_rwsem(&dev->io_rwsem);
333 init_usb_anchor(&dev->submitted);
335 dev->udev = usb_get_dev(interface_to_usbdev(interface));
336 dev->interface = interface;
338 if (le16_to_cpu(dev->udev->descriptor.idProduct) != 0x0001) {
339 dev_warn(&interface->dev, "USBLCD model not supported.\n");
344 /* set up the endpoint information */
345 /* use only the first bulk-in and bulk-out endpoints */
346 retval = usb_find_common_endpoints(interface->cur_altsetting,
347 &bulk_in, &bulk_out, NULL, NULL);
349 dev_err(&interface->dev,
350 "Could not find both bulk-in and bulk-out endpoints\n");
354 dev->bulk_in_size = usb_endpoint_maxp(bulk_in);
355 dev->bulk_in_endpointAddr = bulk_in->bEndpointAddress;
356 dev->bulk_in_buffer = kmalloc(dev->bulk_in_size, GFP_KERNEL);
357 if (!dev->bulk_in_buffer) {
362 dev->bulk_out_endpointAddr = bulk_out->bEndpointAddress;
364 /* save our data pointer in this interface device */
365 usb_set_intfdata(interface, dev);
367 /* we can register the device now, as it is ready */
368 retval = usb_register_dev(interface, &lcd_class);
370 /* something prevented us from registering this driver */
371 dev_err(&interface->dev,
372 "Not able to get a minor for this device.\n");
376 i = le16_to_cpu(dev->udev->descriptor.bcdDevice);
378 dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found "
379 "at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8,
380 (i & 0xF0)>>4, (i & 0xF), dev->udev->devnum);
382 /* let the user know what node this device is now attached to */
383 dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n",
388 kref_put(&dev->kref, lcd_delete);
392 static void lcd_draw_down(struct usb_lcd *dev)
396 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
398 usb_kill_anchored_urbs(&dev->submitted);
401 static int lcd_suspend(struct usb_interface *intf, pm_message_t message)
403 struct usb_lcd *dev = usb_get_intfdata(intf);
411 static int lcd_resume(struct usb_interface *intf)
416 static void lcd_disconnect(struct usb_interface *interface)
418 struct usb_lcd *dev = usb_get_intfdata(interface);
419 int minor = interface->minor;
421 /* give back our minor */
422 usb_deregister_dev(interface, &lcd_class);
424 down_write(&dev->io_rwsem);
425 dev->disconnected = 1;
426 up_write(&dev->io_rwsem);
428 usb_kill_anchored_urbs(&dev->submitted);
430 /* decrement our usage count */
431 kref_put(&dev->kref, lcd_delete);
433 dev_info(&interface->dev, "USB LCD #%d now disconnected\n", minor);
436 static struct usb_driver lcd_driver = {
439 .disconnect = lcd_disconnect,
440 .suspend = lcd_suspend,
441 .resume = lcd_resume,
442 .id_table = id_table,
443 .supports_autosuspend = 1,
446 module_usb_driver(lcd_driver);
448 MODULE_AUTHOR("Georges Toth <g.toth@e-biz.lu>");
449 MODULE_DESCRIPTION(DRIVER_VERSION);
450 MODULE_LICENSE("GPL");