blob: 1184390508e9832a20d2a2ec41a9362b2766014c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*****************************************************************************
2 * USBLCD Kernel Driver *
3 * Version 1.05 *
4 * (C) 2005 Georges Toth <g.toth@e-biz.lu> *
5 * *
6 * This file is licensed under the GPL. See COPYING in the package. *
7 * Based on usb-skeleton.c 2.0 by Greg Kroah-Hartman (greg@kroah.com) *
8 * *
9 * *
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/errno.h>
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020019#include <linux/mutex.h>
Zack Parsons507a3ea2011-07-28 18:58:30 -070020#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/usb.h>
22
23#define DRIVER_VERSION "USBLCD Driver Version 1.05"
24
25#define USBLCD_MINOR 144
26
27#define IOCTL_GET_HARD_VERSION 1
28#define IOCTL_GET_DRV_VERSION 2
29
30
Arnd Bergmann925ce682010-07-11 23:18:56 +020031static DEFINE_MUTEX(lcd_mutex);
Németh Márton33b9e162010-01-10 15:34:45 +010032static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 { .idVendor = 0x10D2, .match_flags = USB_DEVICE_ID_MATCH_VENDOR, },
34 { },
35};
Zack Parsons507a3ea2011-07-28 18:58:30 -070036MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020038static DEFINE_MUTEX(open_disc_mutex);
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41struct usb_lcd {
Zack Parsons507a3ea2011-07-28 18:58:30 -070042 struct usb_device *udev; /* init: probe_lcd */
43 struct usb_interface *interface; /* the interface for
44 this device */
45 unsigned char *bulk_in_buffer; /* the buffer to receive
46 data */
47 size_t bulk_in_size; /* the size of the
48 receive buffer */
49 __u8 bulk_in_endpointAddr; /* the address of the
50 bulk in endpoint */
51 __u8 bulk_out_endpointAddr; /* the address of the
52 bulk out endpoint */
Oliver Neukum5afeb102007-06-11 15:36:02 +020053 struct kref kref;
Zack Parsons507a3ea2011-07-28 18:58:30 -070054 struct semaphore limit_sem; /* to stop writes at
55 full throttle from
56 using up all RAM */
57 struct usb_anchor submitted; /* URBs to wait for
58 before suspend */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60#define to_lcd_dev(d) container_of(d, struct usb_lcd, kref)
61
Oliver Neukum5afeb102007-06-11 15:36:02 +020062#define USB_LCD_CONCURRENT_WRITES 5
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static struct usb_driver lcd_driver;
65
66
67static void lcd_delete(struct kref *kref)
68{
69 struct usb_lcd *dev = to_lcd_dev(kref);
70
71 usb_put_dev(dev->udev);
Zack Parsons507a3ea2011-07-28 18:58:30 -070072 kfree(dev->bulk_in_buffer);
73 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76
77static int lcd_open(struct inode *inode, struct file *file)
78{
79 struct usb_lcd *dev;
80 struct usb_interface *interface;
Oliver Neukum7bbe9902007-06-13 17:13:31 +020081 int subminor, r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Arnd Bergmann925ce682010-07-11 23:18:56 +020083 mutex_lock(&lcd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 subminor = iminor(inode);
85
86 interface = usb_find_interface(&lcd_driver, subminor);
87 if (!interface) {
Arnd Bergmann925ce682010-07-11 23:18:56 +020088 mutex_unlock(&lcd_mutex);
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -070089 printk(KERN_ERR "USBLCD: %s - error, can't find device for minor %d\n",
90 __func__, subminor);
Alan Sternd4ead162007-05-22 11:46:41 -040091 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020094 mutex_lock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 dev = usb_get_intfdata(interface);
Oliver Neukumd5d1cea2007-10-25 16:05:53 +020096 if (!dev) {
97 mutex_unlock(&open_disc_mutex);
Arnd Bergmann925ce682010-07-11 23:18:56 +020098 mutex_unlock(&lcd_mutex);
Alan Sternd4ead162007-05-22 11:46:41 -040099 return -ENODEV;
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 /* increment our usage count for the device */
103 kref_get(&dev->kref);
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200104 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200106 /* grab a power reference */
107 r = usb_autopm_get_interface(interface);
108 if (r < 0) {
109 kref_put(&dev->kref, lcd_delete);
Arnd Bergmann925ce682010-07-11 23:18:56 +0200110 mutex_unlock(&lcd_mutex);
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200111 return r;
112 }
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* save our object in the file's private structure */
115 file->private_data = dev;
Arnd Bergmann925ce682010-07-11 23:18:56 +0200116 mutex_unlock(&lcd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Alan Sternd4ead162007-05-22 11:46:41 -0400118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121static int lcd_release(struct inode *inode, struct file *file)
122{
123 struct usb_lcd *dev;
124
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700125 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (dev == NULL)
127 return -ENODEV;
128
129 /* decrement the count on our device */
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200130 usb_autopm_put_interface(dev->interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 kref_put(&dev->kref, lcd_delete);
132 return 0;
133}
134
Zack Parsons507a3ea2011-07-28 18:58:30 -0700135static ssize_t lcd_read(struct file *file, char __user * buffer,
136 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct usb_lcd *dev;
139 int retval = 0;
140 int bytes_read;
141
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700142 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* do a blocking bulk read to get data from the device */
Zack Parsons507a3ea2011-07-28 18:58:30 -0700145 retval = usb_bulk_msg(dev->udev,
146 usb_rcvbulkpipe(dev->udev,
147 dev->bulk_in_endpointAddr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 dev->bulk_in_buffer,
149 min(dev->bulk_in_size, count),
150 &bytes_read, 10000);
151
152 /* if the read was successful, copy the data to userspace */
153 if (!retval) {
154 if (copy_to_user(buffer, dev->bulk_in_buffer, bytes_read))
155 retval = -EFAULT;
156 else
157 retval = bytes_read;
158 }
159
160 return retval;
161}
162
Alan Cox5cb4aec2008-05-22 22:07:51 +0100163static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 struct usb_lcd *dev;
166 u16 bcdDevice;
167 char buf[30];
168
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700169 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (dev == NULL)
171 return -ENODEV;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 switch (cmd) {
174 case IOCTL_GET_HARD_VERSION:
Arnd Bergmann925ce682010-07-11 23:18:56 +0200175 mutex_lock(&lcd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700177 sprintf(buf, "%1d%1d.%1d%1d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 (bcdDevice & 0xF000)>>12,
179 (bcdDevice & 0xF00)>>8,
180 (bcdDevice & 0xF0)>>4,
181 (bcdDevice & 0xF));
Arnd Bergmann925ce682010-07-11 23:18:56 +0200182 mutex_unlock(&lcd_mutex);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700183 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return -EFAULT;
185 break;
186 case IOCTL_GET_DRV_VERSION:
Zack Parsons507a3ea2011-07-28 18:58:30 -0700187 sprintf(buf, DRIVER_VERSION);
188 if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return -EFAULT;
190 break;
191 default:
192 return -ENOTTY;
193 break;
194 }
195
196 return 0;
197}
198
David Howells7d12e782006-10-05 14:55:46 +0100199static void lcd_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 struct usb_lcd *dev;
Greg Kroah-Hartman0723af12007-07-18 10:58:02 -0700202 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Ming Leicdc97792008-02-24 18:41:47 +0800204 dev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* sync/async unlink faults aren't errors */
Greg Kroah-Hartman0723af12007-07-18 10:58:02 -0700207 if (status &&
208 !(status == -ENOENT ||
209 status == -ECONNRESET ||
Zack Parsons507a3ea2011-07-28 18:58:30 -0700210 status == -ESHUTDOWN)) {
Greg Kroah-Hartmand8ec7a72012-05-01 21:34:03 -0700211 dev_dbg(&dev->interface->dev,
212 "nonzero write bulk status received: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
215 /* free up our allocated buffer */
Daniel Mack997ea582010-04-12 13:17:25 +0200216 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
217 urb->transfer_buffer, urb->transfer_dma);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200218 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Zack Parsons507a3ea2011-07-28 18:58:30 -0700221static ssize_t lcd_write(struct file *file, const char __user * user_buffer,
222 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct usb_lcd *dev;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700225 int retval = 0, r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 struct urb *urb = NULL;
227 char *buf = NULL;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700228
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700229 dev = file->private_data;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* verify that we actually have some data to write */
232 if (count == 0)
233 goto exit;
234
Oliver Neukum5afeb102007-06-11 15:36:02 +0200235 r = down_interruptible(&dev->limit_sem);
236 if (r < 0)
237 return -EINTR;
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* create a urb, and a buffer for it, and copy the data to the urb */
240 urb = usb_alloc_urb(0, GFP_KERNEL);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200241 if (!urb) {
242 retval = -ENOMEM;
243 goto err_no_buf;
244 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700245
246 buf = usb_alloc_coherent(dev->udev, count, GFP_KERNEL,
247 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (!buf) {
249 retval = -ENOMEM;
250 goto error;
251 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (copy_from_user(buf, user_buffer, count)) {
254 retval = -EFAULT;
255 goto error;
256 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* initialize the urb properly */
259 usb_fill_bulk_urb(urb, dev->udev,
Zack Parsons507a3ea2011-07-28 18:58:30 -0700260 usb_sndbulkpipe(dev->udev,
261 dev->bulk_out_endpointAddr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 buf, count, lcd_write_bulk_callback, dev);
263 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200264
265 usb_anchor_urb(urb, &dev->submitted);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* send the data out the bulk port */
268 retval = usb_submit_urb(urb, GFP_KERNEL);
269 if (retval) {
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700270 dev_err(&dev->udev->dev,
271 "%s - failed submitting write urb, error %d\n",
272 __func__, retval);
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200273 goto error_unanchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700275
276 /* release our reference to this urb,
277 the USB core will eventually free it entirely */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 usb_free_urb(urb);
279
280exit:
281 return count;
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200282error_unanchor:
283 usb_unanchor_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284error:
Daniel Mack997ea582010-04-12 13:17:25 +0200285 usb_free_coherent(dev->udev, count, buf, urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 usb_free_urb(urb);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200287err_no_buf:
288 up(&dev->limit_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return retval;
290}
291
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300292static const struct file_operations lcd_fops = {
Zack Parsons507a3ea2011-07-28 18:58:30 -0700293 .owner = THIS_MODULE,
294 .read = lcd_read,
295 .write = lcd_write,
296 .open = lcd_open,
Alan Cox5cb4aec2008-05-22 22:07:51 +0100297 .unlocked_ioctl = lcd_ioctl,
Zack Parsons507a3ea2011-07-28 18:58:30 -0700298 .release = lcd_release,
299 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300};
301
302/*
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700303 * 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
305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static struct usb_class_driver lcd_class = {
Zack Parsons507a3ea2011-07-28 18:58:30 -0700307 .name = "lcd%d",
308 .fops = &lcd_fops,
309 .minor_base = USBLCD_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310};
311
Zack Parsons507a3ea2011-07-28 18:58:30 -0700312static int lcd_probe(struct usb_interface *interface,
313 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 struct usb_lcd *dev = NULL;
316 struct usb_host_interface *iface_desc;
317 struct usb_endpoint_descriptor *endpoint;
318 size_t buffer_size;
319 int i;
320 int retval = -ENOMEM;
321
322 /* allocate memory for our device state and initialize it */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100323 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (dev == NULL) {
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700325 dev_err(&interface->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 goto error;
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 kref_init(&dev->kref);
Oliver Neukum5afeb102007-06-11 15:36:02 +0200329 sema_init(&dev->limit_sem, USB_LCD_CONCURRENT_WRITES);
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200330 init_usb_anchor(&dev->submitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 dev->udev = usb_get_dev(interface_to_usbdev(interface));
333 dev->interface = interface;
334
335 if (le16_to_cpu(dev->udev->descriptor.idProduct) != 0x0001) {
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700336 dev_warn(&interface->dev, "USBLCD model not supported.\n");
Jiri Slaby696a4ac2009-09-23 16:09:56 +0200337 retval = -ENODEV;
338 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Zack Parsons507a3ea2011-07-28 18:58:30 -0700340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* 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;
346
347 if (!dev->bulk_in_endpointAddr &&
Luiz Fernando N. Capitulinob0b660b2006-09-27 11:58:54 -0700348 usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* we found a bulk in endpoint */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700350 buffer_size = usb_endpoint_maxp(endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 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) {
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700355 dev_err(&interface->dev,
356 "Could not allocate bulk_in_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 goto error;
358 }
359 }
360
361 if (!dev->bulk_out_endpointAddr &&
Luiz Fernando N. Capitulinob0b660b2006-09-27 11:58:54 -0700362 usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 /* we found a bulk out endpoint */
364 dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
365 }
366 }
367 if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700368 dev_err(&interface->dev,
369 "Could not find both bulk-in and bulk-out endpoints\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 goto error;
371 }
372
373 /* save our data pointer in this interface device */
374 usb_set_intfdata(interface, dev);
375
376 /* we can register the device now, as it is ready */
377 retval = usb_register_dev(interface, &lcd_class);
378 if (retval) {
379 /* something prevented us from registering this driver */
Greg Kroah-Hartmanabd83e42012-04-20 16:53:51 -0700380 dev_err(&interface->dev,
381 "Not able to get a minor for this device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 usb_set_intfdata(interface, NULL);
383 goto error;
384 }
385
386 i = le16_to_cpu(dev->udev->descriptor.bcdDevice);
387
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700388 dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found "
389 "at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8,
Zack Parsons507a3ea2011-07-28 18:58:30 -0700390 (i & 0xF0)>>4, (i & 0xF), dev->udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 /* let the user know what node this device is now attached to */
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700393 dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n",
394 interface->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return 0;
396
397error:
398 if (dev)
399 kref_put(&dev->kref, lcd_delete);
400 return retval;
401}
402
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200403static void lcd_draw_down(struct usb_lcd *dev)
404{
405 int time;
406
407 time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
408 if (!time)
409 usb_kill_anchored_urbs(&dev->submitted);
410}
411
412static int lcd_suspend(struct usb_interface *intf, pm_message_t message)
413{
414 struct usb_lcd *dev = usb_get_intfdata(intf);
415
416 if (!dev)
417 return 0;
418 lcd_draw_down(dev);
419 return 0;
420}
421
Zack Parsons507a3ea2011-07-28 18:58:30 -0700422static int lcd_resume(struct usb_interface *intf)
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200423{
424 return 0;
425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static void lcd_disconnect(struct usb_interface *interface)
428{
429 struct usb_lcd *dev;
Zack Parsons507a3ea2011-07-28 18:58:30 -0700430 int minor = interface->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200432 mutex_lock(&open_disc_mutex);
Zack Parsons507a3ea2011-07-28 18:58:30 -0700433 dev = usb_get_intfdata(interface);
434 usb_set_intfdata(interface, NULL);
Oliver Neukumd5d1cea2007-10-25 16:05:53 +0200435 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Zack Parsons507a3ea2011-07-28 18:58:30 -0700437 /* give back our minor */
438 usb_deregister_dev(interface, &lcd_class);
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* decrement our usage count */
441 kref_put(&dev->kref, lcd_delete);
442
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700443 dev_info(&interface->dev, "USB LCD #%d now disconnected\n", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446static struct usb_driver lcd_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 .name = "usblcd",
448 .probe = lcd_probe,
449 .disconnect = lcd_disconnect,
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200450 .suspend = lcd_suspend,
451 .resume = lcd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 .id_table = id_table,
Oliver Neukum7bbe9902007-06-13 17:13:31 +0200453 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454};
455
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800456module_usb_driver(lcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458MODULE_AUTHOR("Georges Toth <g.toth@e-biz.lu>");
459MODULE_DESCRIPTION(DRIVER_VERSION);
460MODULE_LICENSE("GPL");