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