blob: 9ba4a4e68d9140f450d4e58c51b96068bc716100 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*****************************************************************************
3 * USBLCD Kernel Driver *
4 * Version 1.05 *
5 * (C) 2005 Georges Toth <g.toth@e-biz.lu> *
6 * *
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) *
9 * *
10 * *
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/slab.h>
19#include <linux/errno.h>
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020020#include <linux/mutex.h>
Zack Parsons507a3ea2011-07-28 18:58:30 -070021#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/usb.h>
23
24#define DRIVER_VERSION "USBLCD Driver Version 1.05"
25
26#define USBLCD_MINOR 144
27
28#define IOCTL_GET_HARD_VERSION 1
29#define IOCTL_GET_DRV_VERSION 2
30
31
Arnd Bergmann925ce682010-07-11 23:18:56 +020032static DEFINE_MUTEX(lcd_mutex);
Németh Márton33b9e162010-01-10 15:34:45 +010033static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 { .idVendor = 0x10D2, .match_flags = USB_DEVICE_ID_MATCH_VENDOR, },
35 { },
36};
Zack Parsons507a3ea2011-07-28 18:58:30 -070037MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020039static DEFINE_MUTEX(open_disc_mutex);
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42struct usb_lcd {
Zack Parsons507a3ea2011-07-28 18:58:30 -070043 struct usb_device *udev; /* init: probe_lcd */
44 struct usb_interface *interface; /* the interface for
45 this device */
46 unsigned char *bulk_in_buffer; /* the buffer to receive
47 data */
48 size_t bulk_in_size; /* the size of the
49 receive buffer */
50 __u8 bulk_in_endpointAddr; /* the address of the
51 bulk in endpoint */
52 __u8 bulk_out_endpointAddr; /* the address of the
53 bulk out endpoint */
Oliver Neukum5afeb102007-06-11 15:36:02 +020054 struct kref kref;
Zack Parsons507a3ea2011-07-28 18:58:30 -070055 struct semaphore limit_sem; /* to stop writes at
56 full throttle from
57 using up all RAM */
58 struct usb_anchor submitted; /* URBs to wait for
59 before suspend */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61#define to_lcd_dev(d) container_of(d, struct usb_lcd, kref)
62
Oliver Neukum5afeb102007-06-11 15:36:02 +020063#define USB_LCD_CONCURRENT_WRITES 5
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static struct usb_driver lcd_driver;
66
67
68static void lcd_delete(struct kref *kref)
69{
70 struct usb_lcd *dev = to_lcd_dev(kref);
71
72 usb_put_dev(dev->udev);
Zack Parsons507a3ea2011-07-28 18:58:30 -070073 kfree(dev->bulk_in_buffer);
74 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77
78static int lcd_open(struct inode *inode, struct file *file)
79{
80 struct usb_lcd *dev;
81 struct usb_interface *interface;
Oliver Neukum7bbe9902007-06-13 17:13:31 +020082 int subminor, r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Arnd Bergmann925ce682010-07-11 23:18:56 +020084 mutex_lock(&lcd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 subminor = iminor(inode);
86
87 interface = usb_find_interface(&lcd_driver, subminor);
88 if (!interface) {
Arnd Bergmann925ce682010-07-11 23:18:56 +020089 mutex_unlock(&lcd_mutex);
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -070090 printk(KERN_ERR "USBLCD: %s - error, can't find device for minor %d\n",
91 __func__, subminor);
Alan Sternd4ead162007-05-22 11:46:41 -040092 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020095 mutex_lock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 dev = usb_get_intfdata(interface);
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020097 if (!dev) {
98 mutex_unlock(&open_disc_mutex);
Arnd Bergmann925ce682010-07-11 23:18:56 +020099 mutex_unlock(&lcd_mutex);
Alan Sternd4ead162007-05-22 11:46:41 -0400100 return -ENODEV;
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /* increment our usage count for the device */
104 kref_get(&dev->kref);
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200105 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200107 /* grab a power reference */
108 r = usb_autopm_get_interface(interface);
109 if (r < 0) {
110 kref_put(&dev->kref, lcd_delete);
Arnd Bergmann925ce682010-07-11 23:18:56 +0200111 mutex_unlock(&lcd_mutex);
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200112 return r;
113 }
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 /* save our object in the file's private structure */
116 file->private_data = dev;
Arnd Bergmann925ce682010-07-11 23:18:56 +0200117 mutex_unlock(&lcd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Alan Sternd4ead162007-05-22 11:46:41 -0400119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122static int lcd_release(struct inode *inode, struct file *file)
123{
124 struct usb_lcd *dev;
125
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700126 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (dev == NULL)
128 return -ENODEV;
129
130 /* decrement the count on our device */
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200131 usb_autopm_put_interface(dev->interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 kref_put(&dev->kref, lcd_delete);
133 return 0;
134}
135
Zack Parsons507a3ea2011-07-28 18:58:30 -0700136static ssize_t lcd_read(struct file *file, char __user * buffer,
137 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 struct usb_lcd *dev;
140 int retval = 0;
141 int bytes_read;
142
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700143 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* do a blocking bulk read to get data from the device */
Zack Parsons507a3ea2011-07-28 18:58:30 -0700146 retval = usb_bulk_msg(dev->udev,
147 usb_rcvbulkpipe(dev->udev,
148 dev->bulk_in_endpointAddr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 dev->bulk_in_buffer,
150 min(dev->bulk_in_size, count),
151 &bytes_read, 10000);
152
153 /* if the read was successful, copy the data to userspace */
154 if (!retval) {
155 if (copy_to_user(buffer, dev->bulk_in_buffer, bytes_read))
156 retval = -EFAULT;
157 else
158 retval = bytes_read;
159 }
160
161 return retval;
162}
163
Alan Cox5cb4aec2008-05-22 22:07:51 +0100164static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 struct usb_lcd *dev;
167 u16 bcdDevice;
168 char buf[30];
169
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700170 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (dev == NULL)
172 return -ENODEV;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 switch (cmd) {
175 case IOCTL_GET_HARD_VERSION:
Arnd Bergmann925ce682010-07-11 23:18:56 +0200176 mutex_lock(&lcd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700178 sprintf(buf, "%1d%1d.%1d%1d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 (bcdDevice & 0xF000)>>12,
180 (bcdDevice & 0xF00)>>8,
181 (bcdDevice & 0xF0)>>4,
182 (bcdDevice & 0xF));
Arnd Bergmann925ce682010-07-11 23:18:56 +0200183 mutex_unlock(&lcd_mutex);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700184 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return -EFAULT;
186 break;
187 case IOCTL_GET_DRV_VERSION:
Zack Parsons507a3ea2011-07-28 18:58:30 -0700188 sprintf(buf, DRIVER_VERSION);
189 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -EFAULT;
191 break;
192 default:
193 return -ENOTTY;
194 break;
195 }
196
197 return 0;
198}
199
David Howells7d12e782006-10-05 14:55:46 +0100200static void lcd_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 struct usb_lcd *dev;
Greg Kroah-Hartman0723af12007-07-18 10:58:02 -0700203 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Ming Leicdc97792008-02-24 18:41:47 +0800205 dev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 /* sync/async unlink faults aren't errors */
Greg Kroah-Hartman0723af12007-07-18 10:58:02 -0700208 if (status &&
209 !(status == -ENOENT ||
210 status == -ECONNRESET ||
Zack Parsons507a3ea2011-07-28 18:58:30 -0700211 status == -ESHUTDOWN)) {
Greg Kroah-Hartmand8ec7a72012-05-01 21:34:03 -0700212 dev_dbg(&dev->interface->dev,
213 "nonzero write bulk status received: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
216 /* free up our allocated buffer */
Daniel Mack997ea582010-04-12 13:17:25 +0200217 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
218 urb->transfer_buffer, urb->transfer_dma);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200219 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Zack Parsons507a3ea2011-07-28 18:58:30 -0700222static ssize_t lcd_write(struct file *file, const char __user * user_buffer,
223 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 struct usb_lcd *dev;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700226 int retval = 0, r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 struct urb *urb = NULL;
228 char *buf = NULL;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700229
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700230 dev = file->private_data;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* verify that we actually have some data to write */
233 if (count == 0)
234 goto exit;
235
Oliver Neukum5afeb102007-06-11 15:36:02 +0200236 r = down_interruptible(&dev->limit_sem);
237 if (r < 0)
238 return -EINTR;
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* create a urb, and a buffer for it, and copy the data to the urb */
241 urb = usb_alloc_urb(0, GFP_KERNEL);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200242 if (!urb) {
243 retval = -ENOMEM;
244 goto err_no_buf;
245 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700246
247 buf = usb_alloc_coherent(dev->udev, count, GFP_KERNEL,
248 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (!buf) {
250 retval = -ENOMEM;
251 goto error;
252 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (copy_from_user(buf, user_buffer, count)) {
255 retval = -EFAULT;
256 goto error;
257 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* initialize the urb properly */
260 usb_fill_bulk_urb(urb, dev->udev,
Zack Parsons507a3ea2011-07-28 18:58:30 -0700261 usb_sndbulkpipe(dev->udev,
262 dev->bulk_out_endpointAddr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 buf, count, lcd_write_bulk_callback, dev);
264 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200265
266 usb_anchor_urb(urb, &dev->submitted);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /* send the data out the bulk port */
269 retval = usb_submit_urb(urb, GFP_KERNEL);
270 if (retval) {
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700271 dev_err(&dev->udev->dev,
272 "%s - failed submitting write urb, error %d\n",
273 __func__, retval);
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200274 goto error_unanchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700276
277 /* release our reference to this urb,
278 the USB core will eventually free it entirely */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 usb_free_urb(urb);
280
281exit:
282 return count;
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200283error_unanchor:
284 usb_unanchor_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285error:
Daniel Mack997ea582010-04-12 13:17:25 +0200286 usb_free_coherent(dev->udev, count, buf, urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 usb_free_urb(urb);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200288err_no_buf:
289 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return retval;
291}
292
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300293static const struct file_operations lcd_fops = {
Zack Parsons507a3ea2011-07-28 18:58:30 -0700294 .owner = THIS_MODULE,
295 .read = lcd_read,
296 .write = lcd_write,
297 .open = lcd_open,
Alan Cox5cb4aec2008-05-22 22:07:51 +0100298 .unlocked_ioctl = lcd_ioctl,
Zack Parsons507a3ea2011-07-28 18:58:30 -0700299 .release = lcd_release,
300 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
303/*
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700304 * usb class driver info in order to get a minor number from the usb core,
305 * and to have the device registered with the driver core
306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307static struct usb_class_driver lcd_class = {
Zack Parsons507a3ea2011-07-28 18:58:30 -0700308 .name = "lcd%d",
309 .fops = &lcd_fops,
310 .minor_base = USBLCD_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
Zack Parsons507a3ea2011-07-28 18:58:30 -0700313static int lcd_probe(struct usb_interface *interface,
314 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct usb_lcd *dev = NULL;
Johan Hovoldaac96ef2017-03-17 11:35:43 +0100317 struct usb_endpoint_descriptor *bulk_in, *bulk_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 int i;
Johan Hovoldaac96ef2017-03-17 11:35:43 +0100319 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* allocate memory for our device state and initialize it */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100322 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Wolfram Sanga1841732016-08-25 19:39:22 +0200323 if (!dev)
Johan Hovoldaac96ef2017-03-17 11:35:43 +0100324 return -ENOMEM;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 kref_init(&dev->kref);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200327 sema_init(&dev->limit_sem, USB_LCD_CONCURRENT_WRITES);
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200328 init_usb_anchor(&dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 dev->udev = usb_get_dev(interface_to_usbdev(interface));
331 dev->interface = interface;
332
333 if (le16_to_cpu(dev->udev->descriptor.idProduct) != 0x0001) {
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700334 dev_warn(&interface->dev, "USBLCD model not supported.\n");
Jiri Slaby696a4ac2009-09-23 16:09:56 +0200335 retval = -ENODEV;
336 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /* set up the endpoint information */
340 /* use only the first bulk-in and bulk-out endpoints */
Johan Hovoldaac96ef2017-03-17 11:35:43 +0100341 retval = usb_find_common_endpoints(interface->cur_altsetting,
342 &bulk_in, &bulk_out, NULL, NULL);
343 if (retval) {
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700344 dev_err(&interface->dev,
345 "Could not find both bulk-in and bulk-out endpoints\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 goto error;
347 }
348
Johan Hovoldaac96ef2017-03-17 11:35:43 +0100349 dev->bulk_in_size = usb_endpoint_maxp(bulk_in);
350 dev->bulk_in_endpointAddr = bulk_in->bEndpointAddress;
351 dev->bulk_in_buffer = kmalloc(dev->bulk_in_size, GFP_KERNEL);
352 if (!dev->bulk_in_buffer) {
353 retval = -ENOMEM;
354 goto error;
355 }
356
357 dev->bulk_out_endpointAddr = bulk_out->bEndpointAddress;
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /* save our data pointer in this interface device */
360 usb_set_intfdata(interface, dev);
361
362 /* we can register the device now, as it is ready */
363 retval = usb_register_dev(interface, &lcd_class);
364 if (retval) {
365 /* something prevented us from registering this driver */
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700366 dev_err(&interface->dev,
367 "Not able to get a minor for this device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 usb_set_intfdata(interface, NULL);
369 goto error;
370 }
371
372 i = le16_to_cpu(dev->udev->descriptor.bcdDevice);
373
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700374 dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found "
375 "at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8,
Zack Parsons507a3ea2011-07-28 18:58:30 -0700376 (i & 0xF0)>>4, (i & 0xF), dev->udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 /* let the user know what node this device is now attached to */
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700379 dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n",
380 interface->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
382
383error:
Johan Hovoldaac96ef2017-03-17 11:35:43 +0100384 kref_put(&dev->kref, lcd_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return retval;
386}
387
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200388static void lcd_draw_down(struct usb_lcd *dev)
389{
390 int time;
391
392 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
393 if (!time)
394 usb_kill_anchored_urbs(&dev->submitted);
395}
396
397static int lcd_suspend(struct usb_interface *intf, pm_message_t message)
398{
399 struct usb_lcd *dev = usb_get_intfdata(intf);
400
401 if (!dev)
402 return 0;
403 lcd_draw_down(dev);
404 return 0;
405}
406
Zack Parsons507a3ea2011-07-28 18:58:30 -0700407static int lcd_resume(struct usb_interface *intf)
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200408{
409 return 0;
410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static void lcd_disconnect(struct usb_interface *interface)
413{
414 struct usb_lcd *dev;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700415 int minor = interface->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200417 mutex_lock(&open_disc_mutex);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700418 dev = usb_get_intfdata(interface);
419 usb_set_intfdata(interface, NULL);
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200420 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Zack Parsons507a3ea2011-07-28 18:58:30 -0700422 /* give back our minor */
423 usb_deregister_dev(interface, &lcd_class);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* decrement our usage count */
426 kref_put(&dev->kref, lcd_delete);
427
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700428 dev_info(&interface->dev, "USB LCD #%d now disconnected\n", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
431static struct usb_driver lcd_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 .name = "usblcd",
433 .probe = lcd_probe,
434 .disconnect = lcd_disconnect,
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200435 .suspend = lcd_suspend,
436 .resume = lcd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 .id_table = id_table,
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200438 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439};
440
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800441module_usb_driver(lcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443MODULE_AUTHOR("Georges Toth <g.toth@e-biz.lu>");
444MODULE_DESCRIPTION(DRIVER_VERSION);
445MODULE_LICENSE("GPL");