Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /***************************************************************************** |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/errno.h> |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 19 | #include <linux/mutex.h> |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 20 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #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 Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 31 | static DEFINE_MUTEX(lcd_mutex); |
Németh Márton | 33b9e16 | 2010-01-10 15:34:45 +0100 | [diff] [blame] | 32 | static const struct usb_device_id id_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { .idVendor = 0x10D2, .match_flags = USB_DEVICE_ID_MATCH_VENDOR, }, |
| 34 | { }, |
| 35 | }; |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 36 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 38 | static DEFINE_MUTEX(open_disc_mutex); |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | struct usb_lcd { |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 42 | 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 Neukum | 5afeb10 | 2007-06-11 15:36:02 +0200 | [diff] [blame] | 53 | struct kref kref; |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 54 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; |
| 60 | #define to_lcd_dev(d) container_of(d, struct usb_lcd, kref) |
| 61 | |
Oliver Neukum | 5afeb10 | 2007-06-11 15:36:02 +0200 | [diff] [blame] | 62 | #define USB_LCD_CONCURRENT_WRITES 5 |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | static struct usb_driver lcd_driver; |
| 65 | |
| 66 | |
| 67 | static void lcd_delete(struct kref *kref) |
| 68 | { |
| 69 | struct usb_lcd *dev = to_lcd_dev(kref); |
| 70 | |
| 71 | usb_put_dev(dev->udev); |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 72 | kfree(dev->bulk_in_buffer); |
| 73 | kfree(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | |
| 77 | static int lcd_open(struct inode *inode, struct file *file) |
| 78 | { |
| 79 | struct usb_lcd *dev; |
| 80 | struct usb_interface *interface; |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 81 | int subminor, r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Arnd Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 83 | mutex_lock(&lcd_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | subminor = iminor(inode); |
| 85 | |
| 86 | interface = usb_find_interface(&lcd_driver, subminor); |
| 87 | if (!interface) { |
Arnd Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 88 | mutex_unlock(&lcd_mutex); |
Greg Kroah-Hartman | abd83e4 | 2012-04-20 16:53:51 -0700 | [diff] [blame] | 89 | printk(KERN_ERR "USBLCD: %s - error, can't find device for minor %d\n", |
| 90 | __func__, subminor); |
Alan Stern | d4ead16 | 2007-05-22 11:46:41 -0400 | [diff] [blame] | 91 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 94 | mutex_lock(&open_disc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | dev = usb_get_intfdata(interface); |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 96 | if (!dev) { |
| 97 | mutex_unlock(&open_disc_mutex); |
Arnd Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 98 | mutex_unlock(&lcd_mutex); |
Alan Stern | d4ead16 | 2007-05-22 11:46:41 -0400 | [diff] [blame] | 99 | return -ENODEV; |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 100 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
| 102 | /* increment our usage count for the device */ |
| 103 | kref_get(&dev->kref); |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 104 | mutex_unlock(&open_disc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 106 | /* grab a power reference */ |
| 107 | r = usb_autopm_get_interface(interface); |
| 108 | if (r < 0) { |
| 109 | kref_put(&dev->kref, lcd_delete); |
Arnd Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 110 | mutex_unlock(&lcd_mutex); |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 111 | return r; |
| 112 | } |
| 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | /* save our object in the file's private structure */ |
| 115 | file->private_data = dev; |
Arnd Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 116 | mutex_unlock(&lcd_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Alan Stern | d4ead16 | 2007-05-22 11:46:41 -0400 | [diff] [blame] | 118 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static int lcd_release(struct inode *inode, struct file *file) |
| 122 | { |
| 123 | struct usb_lcd *dev; |
| 124 | |
Joe Perches | 5bd6e8b | 2010-07-12 13:50:12 -0700 | [diff] [blame] | 125 | dev = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | if (dev == NULL) |
| 127 | return -ENODEV; |
| 128 | |
| 129 | /* decrement the count on our device */ |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 130 | usb_autopm_put_interface(dev->interface); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | kref_put(&dev->kref, lcd_delete); |
| 132 | return 0; |
| 133 | } |
| 134 | |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 135 | static ssize_t lcd_read(struct file *file, char __user * buffer, |
| 136 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { |
| 138 | struct usb_lcd *dev; |
| 139 | int retval = 0; |
| 140 | int bytes_read; |
| 141 | |
Joe Perches | 5bd6e8b | 2010-07-12 13:50:12 -0700 | [diff] [blame] | 142 | dev = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
| 144 | /* do a blocking bulk read to get data from the device */ |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 145 | retval = usb_bulk_msg(dev->udev, |
| 146 | usb_rcvbulkpipe(dev->udev, |
| 147 | dev->bulk_in_endpointAddr), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | 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 Cox | 5cb4aec | 2008-05-22 22:07:51 +0100 | [diff] [blame] | 163 | static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
| 165 | struct usb_lcd *dev; |
| 166 | u16 bcdDevice; |
| 167 | char buf[30]; |
| 168 | |
Joe Perches | 5bd6e8b | 2010-07-12 13:50:12 -0700 | [diff] [blame] | 169 | dev = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | if (dev == NULL) |
| 171 | return -ENODEV; |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | switch (cmd) { |
| 174 | case IOCTL_GET_HARD_VERSION: |
Arnd Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 175 | mutex_lock(&lcd_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice); |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 177 | sprintf(buf, "%1d%1d.%1d%1d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | (bcdDevice & 0xF000)>>12, |
| 179 | (bcdDevice & 0xF00)>>8, |
| 180 | (bcdDevice & 0xF0)>>4, |
| 181 | (bcdDevice & 0xF)); |
Arnd Bergmann | 925ce68 | 2010-07-11 23:18:56 +0200 | [diff] [blame] | 182 | mutex_unlock(&lcd_mutex); |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 183 | if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | return -EFAULT; |
| 185 | break; |
| 186 | case IOCTL_GET_DRV_VERSION: |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 187 | sprintf(buf, DRIVER_VERSION); |
| 188 | if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | return -EFAULT; |
| 190 | break; |
| 191 | default: |
| 192 | return -ENOTTY; |
| 193 | break; |
| 194 | } |
| 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 199 | static void lcd_write_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
| 201 | struct usb_lcd *dev; |
Greg Kroah-Hartman | 0723af1 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 202 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 204 | dev = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | /* sync/async unlink faults aren't errors */ |
Greg Kroah-Hartman | 0723af1 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 207 | if (status && |
| 208 | !(status == -ENOENT || |
| 209 | status == -ECONNRESET || |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 210 | status == -ESHUTDOWN)) { |
Greg Kroah-Hartman | d8ec7a7 | 2012-05-01 21:34:03 -0700 | [diff] [blame] | 211 | dev_dbg(&dev->interface->dev, |
| 212 | "nonzero write bulk status received: %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /* free up our allocated buffer */ |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 216 | usb_free_coherent(urb->dev, urb->transfer_buffer_length, |
| 217 | urb->transfer_buffer, urb->transfer_dma); |
Oliver Neukum | 5afeb10 | 2007-06-11 15:36:02 +0200 | [diff] [blame] | 218 | up(&dev->limit_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 221 | static ssize_t lcd_write(struct file *file, const char __user * user_buffer, |
| 222 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
| 224 | struct usb_lcd *dev; |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 225 | int retval = 0, r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | struct urb *urb = NULL; |
| 227 | char *buf = NULL; |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 228 | |
Joe Perches | 5bd6e8b | 2010-07-12 13:50:12 -0700 | [diff] [blame] | 229 | dev = file->private_data; |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | /* verify that we actually have some data to write */ |
| 232 | if (count == 0) |
| 233 | goto exit; |
| 234 | |
Oliver Neukum | 5afeb10 | 2007-06-11 15:36:02 +0200 | [diff] [blame] | 235 | r = down_interruptible(&dev->limit_sem); |
| 236 | if (r < 0) |
| 237 | return -EINTR; |
| 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* create a urb, and a buffer for it, and copy the data to the urb */ |
| 240 | urb = usb_alloc_urb(0, GFP_KERNEL); |
Oliver Neukum | 5afeb10 | 2007-06-11 15:36:02 +0200 | [diff] [blame] | 241 | if (!urb) { |
| 242 | retval = -ENOMEM; |
| 243 | goto err_no_buf; |
| 244 | } |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 245 | |
| 246 | buf = usb_alloc_coherent(dev->udev, count, GFP_KERNEL, |
| 247 | &urb->transfer_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | if (!buf) { |
| 249 | retval = -ENOMEM; |
| 250 | goto error; |
| 251 | } |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | if (copy_from_user(buf, user_buffer, count)) { |
| 254 | retval = -EFAULT; |
| 255 | goto error; |
| 256 | } |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | /* initialize the urb properly */ |
| 259 | usb_fill_bulk_urb(urb, dev->udev, |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 260 | usb_sndbulkpipe(dev->udev, |
| 261 | dev->bulk_out_endpointAddr), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | buf, count, lcd_write_bulk_callback, dev); |
| 263 | urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 264 | |
| 265 | usb_anchor_urb(urb, &dev->submitted); |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /* send the data out the bulk port */ |
| 268 | retval = usb_submit_urb(urb, GFP_KERNEL); |
| 269 | if (retval) { |
Greg Kroah-Hartman | abd83e4 | 2012-04-20 16:53:51 -0700 | [diff] [blame] | 270 | dev_err(&dev->udev->dev, |
| 271 | "%s - failed submitting write urb, error %d\n", |
| 272 | __func__, retval); |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 273 | goto error_unanchor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 275 | |
| 276 | /* release our reference to this urb, |
| 277 | the USB core will eventually free it entirely */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | usb_free_urb(urb); |
| 279 | |
| 280 | exit: |
| 281 | return count; |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 282 | error_unanchor: |
| 283 | usb_unanchor_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | error: |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 285 | usb_free_coherent(dev->udev, count, buf, urb->transfer_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | usb_free_urb(urb); |
Oliver Neukum | 5afeb10 | 2007-06-11 15:36:02 +0200 | [diff] [blame] | 287 | err_no_buf: |
| 288 | up(&dev->limit_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | return retval; |
| 290 | } |
| 291 | |
Luiz Fernando N. Capitulino | 066202d | 2006-08-05 20:37:11 -0300 | [diff] [blame] | 292 | static const struct file_operations lcd_fops = { |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 293 | .owner = THIS_MODULE, |
| 294 | .read = lcd_read, |
| 295 | .write = lcd_write, |
| 296 | .open = lcd_open, |
Alan Cox | 5cb4aec | 2008-05-22 22:07:51 +0100 | [diff] [blame] | 297 | .unlocked_ioctl = lcd_ioctl, |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 298 | .release = lcd_release, |
| 299 | .llseek = noop_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | /* |
Greg Kroah-Hartman | d6e5bcf | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 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 |
| 305 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | static struct usb_class_driver lcd_class = { |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 307 | .name = "lcd%d", |
| 308 | .fops = &lcd_fops, |
| 309 | .minor_base = USBLCD_MINOR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | }; |
| 311 | |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 312 | static int lcd_probe(struct usb_interface *interface, |
| 313 | const struct usb_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
| 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 Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 323 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | if (dev == NULL) { |
Greg Kroah-Hartman | abd83e4 | 2012-04-20 16:53:51 -0700 | [diff] [blame] | 325 | dev_err(&interface->dev, "Out of memory\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | goto error; |
| 327 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | kref_init(&dev->kref); |
Oliver Neukum | 5afeb10 | 2007-06-11 15:36:02 +0200 | [diff] [blame] | 329 | sema_init(&dev->limit_sem, USB_LCD_CONCURRENT_WRITES); |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 330 | init_usb_anchor(&dev->submitted); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
| 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-Hartman | 3b6004f | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 336 | dev_warn(&interface->dev, "USBLCD model not supported.\n"); |
Jiri Slaby | 696a4ac | 2009-09-23 16:09:56 +0200 | [diff] [blame] | 337 | retval = -ENODEV; |
| 338 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | } |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
| 346 | |
| 347 | if (!dev->bulk_in_endpointAddr && |
Luiz Fernando N. Capitulino | b0b660b | 2006-09-27 11:58:54 -0700 | [diff] [blame] | 348 | usb_endpoint_is_bulk_in(endpoint)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | /* we found a bulk in endpoint */ |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 350 | buffer_size = usb_endpoint_maxp(endpoint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) { |
Greg Kroah-Hartman | abd83e4 | 2012-04-20 16:53:51 -0700 | [diff] [blame] | 355 | dev_err(&interface->dev, |
| 356 | "Could not allocate bulk_in_buffer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | goto error; |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | if (!dev->bulk_out_endpointAddr && |
Luiz Fernando N. Capitulino | b0b660b | 2006-09-27 11:58:54 -0700 | [diff] [blame] | 362 | usb_endpoint_is_bulk_out(endpoint)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | /* 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-Hartman | abd83e4 | 2012-04-20 16:53:51 -0700 | [diff] [blame] | 368 | dev_err(&interface->dev, |
| 369 | "Could not find both bulk-in and bulk-out endpoints\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | 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-Hartman | abd83e4 | 2012-04-20 16:53:51 -0700 | [diff] [blame] | 380 | dev_err(&interface->dev, |
| 381 | "Not able to get a minor for this device.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | usb_set_intfdata(interface, NULL); |
| 383 | goto error; |
| 384 | } |
| 385 | |
| 386 | i = le16_to_cpu(dev->udev->descriptor.bcdDevice); |
| 387 | |
Greg Kroah-Hartman | 1b29a37 | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 388 | dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found " |
| 389 | "at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8, |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 390 | (i & 0xF0)>>4, (i & 0xF), dev->udev->devnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
| 392 | /* let the user know what node this device is now attached to */ |
Greg Kroah-Hartman | 1b29a37 | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 393 | dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n", |
| 394 | interface->minor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | return 0; |
| 396 | |
| 397 | error: |
| 398 | if (dev) |
| 399 | kref_put(&dev->kref, lcd_delete); |
| 400 | return retval; |
| 401 | } |
| 402 | |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 403 | static 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 | |
| 412 | static 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 Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 422 | static int lcd_resume(struct usb_interface *intf) |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 423 | { |
| 424 | return 0; |
| 425 | } |
| 426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | static void lcd_disconnect(struct usb_interface *interface) |
| 428 | { |
| 429 | struct usb_lcd *dev; |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 430 | int minor = interface->minor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 432 | mutex_lock(&open_disc_mutex); |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 433 | dev = usb_get_intfdata(interface); |
| 434 | usb_set_intfdata(interface, NULL); |
Oliver Neukum | d5d1cea | 2007-10-25 16:05:53 +0200 | [diff] [blame] | 435 | mutex_unlock(&open_disc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Zack Parsons | 507a3ea | 2011-07-28 18:58:30 -0700 | [diff] [blame] | 437 | /* give back our minor */ |
| 438 | usb_deregister_dev(interface, &lcd_class); |
| 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | /* decrement our usage count */ |
| 441 | kref_put(&dev->kref, lcd_delete); |
| 442 | |
Greg Kroah-Hartman | 1b29a37 | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 443 | dev_info(&interface->dev, "USB LCD #%d now disconnected\n", minor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | static struct usb_driver lcd_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | .name = "usblcd", |
| 448 | .probe = lcd_probe, |
| 449 | .disconnect = lcd_disconnect, |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 450 | .suspend = lcd_suspend, |
| 451 | .resume = lcd_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | .id_table = id_table, |
Oliver Neukum | 7bbe990 | 2007-06-13 17:13:31 +0200 | [diff] [blame] | 453 | .supports_autosuspend = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | }; |
| 455 | |
Greg Kroah-Hartman | 65db430 | 2011-11-18 09:34:02 -0800 | [diff] [blame] | 456 | module_usb_driver(lcd_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
| 458 | MODULE_AUTHOR("Georges Toth <g.toth@e-biz.lu>"); |
| 459 | MODULE_DESCRIPTION(DRIVER_VERSION); |
| 460 | MODULE_LICENSE("GPL"); |