Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 1 | /* |
| 2 | * cdc-wdm.c |
| 3 | * |
| 4 | * This driver supports USB CDC WCM Device Management. |
| 5 | * |
Oliver Neukum | 052fbc0 | 2009-04-20 17:24:49 +0200 | [diff] [blame] | 6 | * Copyright (c) 2007-2009 Oliver Neukum |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 7 | * |
| 8 | * Some code taken from cdc-acm.c |
| 9 | * |
| 10 | * Released under the GPLv2. |
| 11 | * |
| 12 | * Many thanks to Carl Nordbeck |
| 13 | */ |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/errno.h> |
Bjørn Mork | 3edce1c | 2013-03-17 21:00:06 +0100 | [diff] [blame] | 16 | #include <linux/ioctl.h> |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/module.h> |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 19 | #include <linux/mutex.h> |
| 20 | #include <linux/uaccess.h> |
| 21 | #include <linux/bitops.h> |
| 22 | #include <linux/poll.h> |
| 23 | #include <linux/usb.h> |
| 24 | #include <linux/usb/cdc.h> |
| 25 | #include <asm/byteorder.h> |
| 26 | #include <asm/unaligned.h> |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 27 | #include <linux/usb/cdc-wdm.h> |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * Version Information |
| 31 | */ |
Oliver Neukum | 87d65e5 | 2008-06-19 14:20:18 +0200 | [diff] [blame] | 32 | #define DRIVER_VERSION "v0.03" |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 33 | #define DRIVER_AUTHOR "Oliver Neukum" |
Oliver Neukum | 87d65e5 | 2008-06-19 14:20:18 +0200 | [diff] [blame] | 34 | #define DRIVER_DESC "USB Abstract Control Model driver for USB WCM Device Management" |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 35 | |
Németh Márton | 6ef4852 | 2010-01-10 15:33:45 +0100 | [diff] [blame] | 36 | static const struct usb_device_id wdm_ids[] = { |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 37 | { |
| 38 | .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS | |
| 39 | USB_DEVICE_ID_MATCH_INT_SUBCLASS, |
| 40 | .bInterfaceClass = USB_CLASS_COMM, |
| 41 | .bInterfaceSubClass = USB_CDC_SUBCLASS_DMM |
| 42 | }, |
| 43 | { } |
| 44 | }; |
| 45 | |
Oliver Neukum | aa5380b | 2008-10-13 14:05:20 +0200 | [diff] [blame] | 46 | MODULE_DEVICE_TABLE (usb, wdm_ids); |
| 47 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 48 | #define WDM_MINOR_BASE 176 |
| 49 | |
| 50 | |
| 51 | #define WDM_IN_USE 1 |
| 52 | #define WDM_DISCONNECTING 2 |
| 53 | #define WDM_RESULT 3 |
| 54 | #define WDM_READ 4 |
| 55 | #define WDM_INT_STALL 5 |
| 56 | #define WDM_POLL_RUNNING 6 |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 57 | #define WDM_RESPONDING 7 |
Oliver Neukum | beb1d35 | 2010-02-27 20:55:52 +0100 | [diff] [blame] | 58 | #define WDM_SUSPENDING 8 |
Bjørn Mork | 8804420 | 2012-02-10 09:44:08 +0100 | [diff] [blame] | 59 | #define WDM_RESETTING 9 |
Oliver Neukum | c0f5ece | 2013-03-12 14:52:42 +0100 | [diff] [blame] | 60 | #define WDM_OVERFLOW 10 |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 61 | |
| 62 | #define WDM_MAX 16 |
| 63 | |
Bjørn Mork | 7e3054a | 2012-01-20 01:49:57 +0100 | [diff] [blame] | 64 | /* CDC-WMC r1.1 requires wMaxCommand to be "at least 256 decimal (0x100)" */ |
| 65 | #define WDM_DEFAULT_BUFSIZE 256 |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 66 | |
| 67 | static DEFINE_MUTEX(wdm_mutex); |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 68 | static DEFINE_SPINLOCK(wdm_device_list_lock); |
| 69 | static LIST_HEAD(wdm_device_list); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 70 | |
| 71 | /* --- method tables --- */ |
| 72 | |
| 73 | struct wdm_device { |
| 74 | u8 *inbuf; /* buffer for response */ |
| 75 | u8 *outbuf; /* buffer for command */ |
| 76 | u8 *sbuf; /* buffer for status */ |
| 77 | u8 *ubuf; /* buffer for copy to user space */ |
| 78 | |
| 79 | struct urb *command; |
| 80 | struct urb *response; |
| 81 | struct urb *validity; |
| 82 | struct usb_interface *intf; |
| 83 | struct usb_ctrlrequest *orq; |
| 84 | struct usb_ctrlrequest *irq; |
| 85 | spinlock_t iuspin; |
| 86 | |
| 87 | unsigned long flags; |
| 88 | u16 bufsize; |
| 89 | u16 wMaxCommand; |
| 90 | u16 wMaxPacketSize; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 91 | __le16 inum; |
| 92 | int reslength; |
| 93 | int length; |
| 94 | int read; |
| 95 | int count; |
| 96 | dma_addr_t shandle; |
| 97 | dma_addr_t ihandle; |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 98 | struct mutex wlock; |
| 99 | struct mutex rlock; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 100 | wait_queue_head_t wait; |
| 101 | struct work_struct rxwork; |
| 102 | int werr; |
| 103 | int rerr; |
Greg Suarez | 73e0686 | 2013-10-29 10:29:10 -0700 | [diff] [blame^] | 104 | int resp_count; |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 105 | |
| 106 | struct list_head device_list; |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 107 | int (*manage_power)(struct usb_interface *, int); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | static struct usb_driver wdm_driver; |
| 111 | |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 112 | /* return intfdata if we own the interface, else look up intf in the list */ |
| 113 | static struct wdm_device *wdm_find_device(struct usb_interface *intf) |
| 114 | { |
Bjørn Mork | 6a44886 | 2012-09-10 22:17:34 +0200 | [diff] [blame] | 115 | struct wdm_device *desc; |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 116 | |
| 117 | spin_lock(&wdm_device_list_lock); |
| 118 | list_for_each_entry(desc, &wdm_device_list, device_list) |
| 119 | if (desc->intf == intf) |
Bjørn Mork | 6a44886 | 2012-09-10 22:17:34 +0200 | [diff] [blame] | 120 | goto found; |
| 121 | desc = NULL; |
| 122 | found: |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 123 | spin_unlock(&wdm_device_list_lock); |
| 124 | |
| 125 | return desc; |
| 126 | } |
| 127 | |
| 128 | static struct wdm_device *wdm_find_device_by_minor(int minor) |
| 129 | { |
Bjørn Mork | 6a44886 | 2012-09-10 22:17:34 +0200 | [diff] [blame] | 130 | struct wdm_device *desc; |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 131 | |
| 132 | spin_lock(&wdm_device_list_lock); |
| 133 | list_for_each_entry(desc, &wdm_device_list, device_list) |
| 134 | if (desc->intf->minor == minor) |
Bjørn Mork | 6a44886 | 2012-09-10 22:17:34 +0200 | [diff] [blame] | 135 | goto found; |
| 136 | desc = NULL; |
| 137 | found: |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 138 | spin_unlock(&wdm_device_list_lock); |
| 139 | |
| 140 | return desc; |
| 141 | } |
| 142 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 143 | /* --- callbacks --- */ |
| 144 | static void wdm_out_callback(struct urb *urb) |
| 145 | { |
| 146 | struct wdm_device *desc; |
| 147 | desc = urb->context; |
| 148 | spin_lock(&desc->iuspin); |
| 149 | desc->werr = urb->status; |
| 150 | spin_unlock(&desc->iuspin); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 151 | kfree(desc->outbuf); |
Oliver Neukum | 5c22837 | 2012-04-26 21:59:10 +0200 | [diff] [blame] | 152 | desc->outbuf = NULL; |
| 153 | clear_bit(WDM_IN_USE, &desc->flags); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 154 | wake_up(&desc->wait); |
| 155 | } |
| 156 | |
| 157 | static void wdm_in_callback(struct urb *urb) |
| 158 | { |
| 159 | struct wdm_device *desc = urb->context; |
| 160 | int status = urb->status; |
Oliver Neukum | c0f5ece | 2013-03-12 14:52:42 +0100 | [diff] [blame] | 161 | int length = urb->actual_length; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 162 | |
| 163 | spin_lock(&desc->iuspin); |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 164 | clear_bit(WDM_RESPONDING, &desc->flags); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 165 | |
| 166 | if (status) { |
| 167 | switch (status) { |
| 168 | case -ENOENT: |
| 169 | dev_dbg(&desc->intf->dev, |
| 170 | "nonzero urb status received: -ENOENT"); |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 171 | goto skip_error; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 172 | case -ECONNRESET: |
| 173 | dev_dbg(&desc->intf->dev, |
| 174 | "nonzero urb status received: -ECONNRESET"); |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 175 | goto skip_error; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 176 | case -ESHUTDOWN: |
| 177 | dev_dbg(&desc->intf->dev, |
| 178 | "nonzero urb status received: -ESHUTDOWN"); |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 179 | goto skip_error; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 180 | case -EPIPE: |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 181 | dev_err(&desc->intf->dev, |
| 182 | "nonzero urb status received: -EPIPE\n"); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 183 | break; |
| 184 | default: |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 185 | dev_err(&desc->intf->dev, |
| 186 | "Unexpected error %d\n", status); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 187 | break; |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | desc->rerr = status; |
Oliver Neukum | c0f5ece | 2013-03-12 14:52:42 +0100 | [diff] [blame] | 192 | if (length + desc->length > desc->wMaxCommand) { |
| 193 | /* The buffer would overflow */ |
| 194 | set_bit(WDM_OVERFLOW, &desc->flags); |
| 195 | } else { |
| 196 | /* we may already be in overflow */ |
| 197 | if (!test_bit(WDM_OVERFLOW, &desc->flags)) { |
| 198 | memmove(desc->ubuf + desc->length, desc->inbuf, length); |
| 199 | desc->length += length; |
| 200 | desc->reslength = length; |
| 201 | } |
| 202 | } |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 203 | skip_error: |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 204 | wake_up(&desc->wait); |
| 205 | |
| 206 | set_bit(WDM_READ, &desc->flags); |
| 207 | spin_unlock(&desc->iuspin); |
| 208 | } |
| 209 | |
| 210 | static void wdm_int_callback(struct urb *urb) |
| 211 | { |
| 212 | int rv = 0; |
Oliver Neukum | 6dd433e | 2013-08-06 14:22:59 +0200 | [diff] [blame] | 213 | int responding; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 214 | int status = urb->status; |
| 215 | struct wdm_device *desc; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 216 | struct usb_cdc_notification *dr; |
| 217 | |
| 218 | desc = urb->context; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 219 | dr = (struct usb_cdc_notification *)desc->sbuf; |
| 220 | |
| 221 | if (status) { |
| 222 | switch (status) { |
| 223 | case -ESHUTDOWN: |
| 224 | case -ENOENT: |
| 225 | case -ECONNRESET: |
| 226 | return; /* unplug */ |
| 227 | case -EPIPE: |
| 228 | set_bit(WDM_INT_STALL, &desc->flags); |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 229 | dev_err(&desc->intf->dev, "Stall on int endpoint\n"); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 230 | goto sw; /* halt is cleared in work */ |
| 231 | default: |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 232 | dev_err(&desc->intf->dev, |
| 233 | "nonzero urb status received: %d\n", status); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 234 | break; |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | if (urb->actual_length < sizeof(struct usb_cdc_notification)) { |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 239 | dev_err(&desc->intf->dev, "wdm_int_callback - %d bytes\n", |
| 240 | urb->actual_length); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 241 | goto exit; |
| 242 | } |
| 243 | |
| 244 | switch (dr->bNotificationType) { |
| 245 | case USB_CDC_NOTIFY_RESPONSE_AVAILABLE: |
| 246 | dev_dbg(&desc->intf->dev, |
| 247 | "NOTIFY_RESPONSE_AVAILABLE received: index %d len %d", |
| 248 | dr->wIndex, dr->wLength); |
| 249 | break; |
| 250 | |
| 251 | case USB_CDC_NOTIFY_NETWORK_CONNECTION: |
| 252 | |
| 253 | dev_dbg(&desc->intf->dev, |
| 254 | "NOTIFY_NETWORK_CONNECTION %s network", |
| 255 | dr->wValue ? "connected to" : "disconnected from"); |
| 256 | goto exit; |
| 257 | default: |
| 258 | clear_bit(WDM_POLL_RUNNING, &desc->flags); |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 259 | dev_err(&desc->intf->dev, |
| 260 | "unknown notification %d received: index %d len %d\n", |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 261 | dr->bNotificationType, dr->wIndex, dr->wLength); |
| 262 | goto exit; |
| 263 | } |
| 264 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 265 | spin_lock(&desc->iuspin); |
Oliver Neukum | 6dd433e | 2013-08-06 14:22:59 +0200 | [diff] [blame] | 266 | responding = test_and_set_bit(WDM_RESPONDING, &desc->flags); |
Greg Suarez | 73e0686 | 2013-10-29 10:29:10 -0700 | [diff] [blame^] | 267 | if (!desc->resp_count++ && !responding |
| 268 | && !test_bit(WDM_DISCONNECTING, &desc->flags) |
Oliver Neukum | beb1d35 | 2010-02-27 20:55:52 +0100 | [diff] [blame] | 269 | && !test_bit(WDM_SUSPENDING, &desc->flags)) { |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 270 | rv = usb_submit_urb(desc->response, GFP_ATOMIC); |
| 271 | dev_dbg(&desc->intf->dev, "%s: usb_submit_urb %d", |
| 272 | __func__, rv); |
| 273 | } |
| 274 | spin_unlock(&desc->iuspin); |
| 275 | if (rv < 0) { |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 276 | clear_bit(WDM_RESPONDING, &desc->flags); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 277 | if (rv == -EPERM) |
| 278 | return; |
| 279 | if (rv == -ENOMEM) { |
| 280 | sw: |
| 281 | rv = schedule_work(&desc->rxwork); |
| 282 | if (rv) |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 283 | dev_err(&desc->intf->dev, |
| 284 | "Cannot schedule work\n"); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | exit: |
| 288 | rv = usb_submit_urb(urb, GFP_ATOMIC); |
| 289 | if (rv) |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 290 | dev_err(&desc->intf->dev, |
| 291 | "%s - usb_submit_urb failed with result %d\n", |
| 292 | __func__, rv); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 293 | |
| 294 | } |
| 295 | |
| 296 | static void kill_urbs(struct wdm_device *desc) |
| 297 | { |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 298 | /* the order here is essential */ |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 299 | usb_kill_urb(desc->command); |
| 300 | usb_kill_urb(desc->validity); |
| 301 | usb_kill_urb(desc->response); |
| 302 | } |
| 303 | |
| 304 | static void free_urbs(struct wdm_device *desc) |
| 305 | { |
| 306 | usb_free_urb(desc->validity); |
| 307 | usb_free_urb(desc->response); |
| 308 | usb_free_urb(desc->command); |
| 309 | } |
| 310 | |
| 311 | static void cleanup(struct wdm_device *desc) |
| 312 | { |
Bjørn Mork | 8457d99 | 2012-01-16 15:12:00 +0100 | [diff] [blame] | 313 | kfree(desc->sbuf); |
| 314 | kfree(desc->inbuf); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 315 | kfree(desc->orq); |
| 316 | kfree(desc->irq); |
| 317 | kfree(desc->ubuf); |
| 318 | free_urbs(desc); |
| 319 | kfree(desc); |
| 320 | } |
| 321 | |
| 322 | static ssize_t wdm_write |
| 323 | (struct file *file, const char __user *buffer, size_t count, loff_t *ppos) |
| 324 | { |
| 325 | u8 *buf; |
| 326 | int rv = -EMSGSIZE, r, we; |
| 327 | struct wdm_device *desc = file->private_data; |
| 328 | struct usb_ctrlrequest *req; |
| 329 | |
| 330 | if (count > desc->wMaxCommand) |
| 331 | count = desc->wMaxCommand; |
| 332 | |
| 333 | spin_lock_irq(&desc->iuspin); |
| 334 | we = desc->werr; |
| 335 | desc->werr = 0; |
| 336 | spin_unlock_irq(&desc->iuspin); |
| 337 | if (we < 0) |
| 338 | return -EIO; |
| 339 | |
Oliver Neukum | 5c22837 | 2012-04-26 21:59:10 +0200 | [diff] [blame] | 340 | buf = kmalloc(count, GFP_KERNEL); |
Oliver Neukum | 860e41a | 2010-02-27 20:54:24 +0100 | [diff] [blame] | 341 | if (!buf) { |
| 342 | rv = -ENOMEM; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 343 | goto outnl; |
Oliver Neukum | 860e41a | 2010-02-27 20:54:24 +0100 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | r = copy_from_user(buf, buffer, count); |
| 347 | if (r > 0) { |
| 348 | kfree(buf); |
| 349 | rv = -EFAULT; |
| 350 | goto outnl; |
| 351 | } |
| 352 | |
| 353 | /* concurrent writes and disconnect */ |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 354 | r = mutex_lock_interruptible(&desc->wlock); |
Oliver Neukum | 860e41a | 2010-02-27 20:54:24 +0100 | [diff] [blame] | 355 | rv = -ERESTARTSYS; |
| 356 | if (r) { |
| 357 | kfree(buf); |
| 358 | goto outnl; |
| 359 | } |
| 360 | |
| 361 | if (test_bit(WDM_DISCONNECTING, &desc->flags)) { |
| 362 | kfree(buf); |
| 363 | rv = -ENODEV; |
| 364 | goto outnp; |
| 365 | } |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 366 | |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 367 | r = usb_autopm_get_interface(desc->intf); |
Oliver Neukum | 860e41a | 2010-02-27 20:54:24 +0100 | [diff] [blame] | 368 | if (r < 0) { |
| 369 | kfree(buf); |
Oliver Neukum | 12a98b2 | 2012-04-30 09:57:31 +0200 | [diff] [blame] | 370 | rv = usb_translate_errors(r); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 371 | goto outnp; |
Oliver Neukum | 860e41a | 2010-02-27 20:54:24 +0100 | [diff] [blame] | 372 | } |
Oliver Neukum | 7f1dc31 | 2009-09-09 10:12:48 +0200 | [diff] [blame] | 373 | |
David Sterba | 0cdfb81 | 2010-12-27 18:49:58 +0100 | [diff] [blame] | 374 | if (!(file->f_flags & O_NONBLOCK)) |
Oliver Neukum | 7f1dc31 | 2009-09-09 10:12:48 +0200 | [diff] [blame] | 375 | r = wait_event_interruptible(desc->wait, !test_bit(WDM_IN_USE, |
| 376 | &desc->flags)); |
| 377 | else |
| 378 | if (test_bit(WDM_IN_USE, &desc->flags)) |
| 379 | r = -EAGAIN; |
Bjørn Mork | 8804420 | 2012-02-10 09:44:08 +0100 | [diff] [blame] | 380 | |
| 381 | if (test_bit(WDM_RESETTING, &desc->flags)) |
| 382 | r = -EIO; |
| 383 | |
Oliver Neukum | 860e41a | 2010-02-27 20:54:24 +0100 | [diff] [blame] | 384 | if (r < 0) { |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 385 | kfree(buf); |
Oliver Neukum | 12a98b2 | 2012-04-30 09:57:31 +0200 | [diff] [blame] | 386 | rv = r; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 387 | goto out; |
| 388 | } |
| 389 | |
| 390 | req = desc->orq; |
| 391 | usb_fill_control_urb( |
| 392 | desc->command, |
| 393 | interface_to_usbdev(desc->intf), |
| 394 | /* using common endpoint 0 */ |
| 395 | usb_sndctrlpipe(interface_to_usbdev(desc->intf), 0), |
| 396 | (unsigned char *)req, |
| 397 | buf, |
| 398 | count, |
| 399 | wdm_out_callback, |
| 400 | desc |
| 401 | ); |
| 402 | |
| 403 | req->bRequestType = (USB_DIR_OUT | USB_TYPE_CLASS | |
| 404 | USB_RECIP_INTERFACE); |
| 405 | req->bRequest = USB_CDC_SEND_ENCAPSULATED_COMMAND; |
| 406 | req->wValue = 0; |
| 407 | req->wIndex = desc->inum; |
| 408 | req->wLength = cpu_to_le16(count); |
| 409 | set_bit(WDM_IN_USE, &desc->flags); |
Oliver Neukum | 5c22837 | 2012-04-26 21:59:10 +0200 | [diff] [blame] | 410 | desc->outbuf = buf; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 411 | |
| 412 | rv = usb_submit_urb(desc->command, GFP_KERNEL); |
| 413 | if (rv < 0) { |
| 414 | kfree(buf); |
Oliver Neukum | 5c22837 | 2012-04-26 21:59:10 +0200 | [diff] [blame] | 415 | desc->outbuf = NULL; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 416 | clear_bit(WDM_IN_USE, &desc->flags); |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 417 | dev_err(&desc->intf->dev, "Tx URB error: %d\n", rv); |
Oliver Neukum | 12a98b2 | 2012-04-30 09:57:31 +0200 | [diff] [blame] | 418 | rv = usb_translate_errors(rv); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 419 | } else { |
| 420 | dev_dbg(&desc->intf->dev, "Tx URB has been submitted index=%d", |
| 421 | req->wIndex); |
| 422 | } |
| 423 | out: |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 424 | usb_autopm_put_interface(desc->intf); |
| 425 | outnp: |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 426 | mutex_unlock(&desc->wlock); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 427 | outnl: |
| 428 | return rv < 0 ? rv : count; |
| 429 | } |
| 430 | |
| 431 | static ssize_t wdm_read |
| 432 | (struct file *file, char __user *buffer, size_t count, loff_t *ppos) |
| 433 | { |
Ben Hutchings | 711c68b | 2012-02-12 06:00:41 +0000 | [diff] [blame] | 434 | int rv, cntr; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 435 | int i = 0; |
| 436 | struct wdm_device *desc = file->private_data; |
| 437 | |
| 438 | |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 439 | rv = mutex_lock_interruptible(&desc->rlock); /*concurrent reads */ |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 440 | if (rv < 0) |
| 441 | return -ERESTARTSYS; |
| 442 | |
Ben Hutchings | 711c68b | 2012-02-12 06:00:41 +0000 | [diff] [blame] | 443 | cntr = ACCESS_ONCE(desc->length); |
| 444 | if (cntr == 0) { |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 445 | desc->read = 0; |
| 446 | retry: |
Oliver Neukum | 7f1dc31 | 2009-09-09 10:12:48 +0200 | [diff] [blame] | 447 | if (test_bit(WDM_DISCONNECTING, &desc->flags)) { |
| 448 | rv = -ENODEV; |
| 449 | goto err; |
| 450 | } |
Oliver Neukum | c0f5ece | 2013-03-12 14:52:42 +0100 | [diff] [blame] | 451 | if (test_bit(WDM_OVERFLOW, &desc->flags)) { |
| 452 | clear_bit(WDM_OVERFLOW, &desc->flags); |
| 453 | rv = -ENOBUFS; |
| 454 | goto err; |
| 455 | } |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 456 | i++; |
Oliver Neukum | 7f1dc31 | 2009-09-09 10:12:48 +0200 | [diff] [blame] | 457 | if (file->f_flags & O_NONBLOCK) { |
| 458 | if (!test_bit(WDM_READ, &desc->flags)) { |
| 459 | rv = cntr ? cntr : -EAGAIN; |
| 460 | goto err; |
| 461 | } |
| 462 | rv = 0; |
| 463 | } else { |
| 464 | rv = wait_event_interruptible(desc->wait, |
| 465 | test_bit(WDM_READ, &desc->flags)); |
| 466 | } |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 467 | |
Oliver Neukum | 7f1dc31 | 2009-09-09 10:12:48 +0200 | [diff] [blame] | 468 | /* may have happened while we slept */ |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 469 | if (test_bit(WDM_DISCONNECTING, &desc->flags)) { |
| 470 | rv = -ENODEV; |
| 471 | goto err; |
| 472 | } |
Bjørn Mork | 8804420 | 2012-02-10 09:44:08 +0100 | [diff] [blame] | 473 | if (test_bit(WDM_RESETTING, &desc->flags)) { |
| 474 | rv = -EIO; |
| 475 | goto err; |
| 476 | } |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 477 | usb_mark_last_busy(interface_to_usbdev(desc->intf)); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 478 | if (rv < 0) { |
| 479 | rv = -ERESTARTSYS; |
| 480 | goto err; |
| 481 | } |
| 482 | |
| 483 | spin_lock_irq(&desc->iuspin); |
| 484 | |
| 485 | if (desc->rerr) { /* read completed, error happened */ |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 486 | desc->rerr = 0; |
| 487 | spin_unlock_irq(&desc->iuspin); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 488 | rv = -EIO; |
| 489 | goto err; |
| 490 | } |
| 491 | /* |
| 492 | * recheck whether we've lost the race |
| 493 | * against the completion handler |
| 494 | */ |
| 495 | if (!test_bit(WDM_READ, &desc->flags)) { /* lost race */ |
| 496 | spin_unlock_irq(&desc->iuspin); |
| 497 | goto retry; |
| 498 | } |
Oliver Neukum | c0f5ece | 2013-03-12 14:52:42 +0100 | [diff] [blame] | 499 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 500 | if (!desc->reslength) { /* zero length read */ |
Bjørn Mork | b086b6b | 2012-07-02 10:33:14 +0200 | [diff] [blame] | 501 | dev_dbg(&desc->intf->dev, "%s: zero length - clearing WDM_READ\n", __func__); |
| 502 | clear_bit(WDM_READ, &desc->flags); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 503 | spin_unlock_irq(&desc->iuspin); |
| 504 | goto retry; |
| 505 | } |
Ben Hutchings | 711c68b | 2012-02-12 06:00:41 +0000 | [diff] [blame] | 506 | cntr = desc->length; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 507 | spin_unlock_irq(&desc->iuspin); |
| 508 | } |
| 509 | |
Ben Hutchings | 711c68b | 2012-02-12 06:00:41 +0000 | [diff] [blame] | 510 | if (cntr > count) |
| 511 | cntr = count; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 512 | rv = copy_to_user(buffer, desc->ubuf, cntr); |
| 513 | if (rv > 0) { |
| 514 | rv = -EFAULT; |
| 515 | goto err; |
| 516 | } |
| 517 | |
Ben Hutchings | 711c68b | 2012-02-12 06:00:41 +0000 | [diff] [blame] | 518 | spin_lock_irq(&desc->iuspin); |
| 519 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 520 | for (i = 0; i < desc->length - cntr; i++) |
| 521 | desc->ubuf[i] = desc->ubuf[i + cntr]; |
| 522 | |
| 523 | desc->length -= cntr; |
Oliver Neukum | 87d65e5 | 2008-06-19 14:20:18 +0200 | [diff] [blame] | 524 | /* in case we had outstanding data */ |
Greg Suarez | 73e0686 | 2013-10-29 10:29:10 -0700 | [diff] [blame^] | 525 | if (!desc->length) { |
Oliver Neukum | 87d65e5 | 2008-06-19 14:20:18 +0200 | [diff] [blame] | 526 | clear_bit(WDM_READ, &desc->flags); |
Ben Hutchings | 711c68b | 2012-02-12 06:00:41 +0000 | [diff] [blame] | 527 | |
Greg Suarez | 73e0686 | 2013-10-29 10:29:10 -0700 | [diff] [blame^] | 528 | if (--desc->resp_count) { |
| 529 | set_bit(WDM_RESPONDING, &desc->flags); |
| 530 | spin_unlock_irq(&desc->iuspin); |
| 531 | |
| 532 | rv = usb_submit_urb(desc->response, GFP_KERNEL); |
| 533 | if (rv) { |
| 534 | dev_err(&desc->intf->dev, |
| 535 | "%s: usb_submit_urb failed with result %d\n", |
| 536 | __func__, rv); |
| 537 | spin_lock_irq(&desc->iuspin); |
| 538 | clear_bit(WDM_RESPONDING, &desc->flags); |
| 539 | spin_unlock_irq(&desc->iuspin); |
| 540 | |
| 541 | if (rv == -ENOMEM) { |
| 542 | rv = schedule_work(&desc->rxwork); |
| 543 | if (rv) |
| 544 | dev_err(&desc->intf->dev, "Cannot schedule work\n"); |
| 545 | } else { |
| 546 | spin_lock_irq(&desc->iuspin); |
| 547 | desc->resp_count = 0; |
| 548 | spin_unlock_irq(&desc->iuspin); |
| 549 | } |
| 550 | } |
| 551 | } else |
| 552 | spin_unlock_irq(&desc->iuspin); |
| 553 | } else |
| 554 | spin_unlock_irq(&desc->iuspin); |
Ben Hutchings | 711c68b | 2012-02-12 06:00:41 +0000 | [diff] [blame] | 555 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 556 | rv = cntr; |
| 557 | |
| 558 | err: |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 559 | mutex_unlock(&desc->rlock); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 560 | return rv; |
| 561 | } |
| 562 | |
| 563 | static int wdm_flush(struct file *file, fl_owner_t id) |
| 564 | { |
| 565 | struct wdm_device *desc = file->private_data; |
| 566 | |
| 567 | wait_event(desc->wait, !test_bit(WDM_IN_USE, &desc->flags)); |
Bjørn Mork | 6b0b79d | 2012-05-09 13:53:22 +0200 | [diff] [blame] | 568 | |
| 569 | /* cannot dereference desc->intf if WDM_DISCONNECTING */ |
| 570 | if (desc->werr < 0 && !test_bit(WDM_DISCONNECTING, &desc->flags)) |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 571 | dev_err(&desc->intf->dev, "Error in flush path: %d\n", |
| 572 | desc->werr); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 573 | |
Oliver Neukum | 24a85ba | 2012-04-27 14:23:54 +0200 | [diff] [blame] | 574 | return usb_translate_errors(desc->werr); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | static unsigned int wdm_poll(struct file *file, struct poll_table_struct *wait) |
| 578 | { |
| 579 | struct wdm_device *desc = file->private_data; |
| 580 | unsigned long flags; |
| 581 | unsigned int mask = 0; |
| 582 | |
| 583 | spin_lock_irqsave(&desc->iuspin, flags); |
| 584 | if (test_bit(WDM_DISCONNECTING, &desc->flags)) { |
Bjørn Mork | 616b693 | 2012-05-09 13:53:21 +0200 | [diff] [blame] | 585 | mask = POLLHUP | POLLERR; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 586 | spin_unlock_irqrestore(&desc->iuspin, flags); |
| 587 | goto desc_out; |
| 588 | } |
| 589 | if (test_bit(WDM_READ, &desc->flags)) |
| 590 | mask = POLLIN | POLLRDNORM; |
| 591 | if (desc->rerr || desc->werr) |
| 592 | mask |= POLLERR; |
| 593 | if (!test_bit(WDM_IN_USE, &desc->flags)) |
| 594 | mask |= POLLOUT | POLLWRNORM; |
| 595 | spin_unlock_irqrestore(&desc->iuspin, flags); |
| 596 | |
| 597 | poll_wait(file, &desc->wait, wait); |
| 598 | |
| 599 | desc_out: |
| 600 | return mask; |
| 601 | } |
| 602 | |
| 603 | static int wdm_open(struct inode *inode, struct file *file) |
| 604 | { |
| 605 | int minor = iminor(inode); |
| 606 | int rv = -ENODEV; |
| 607 | struct usb_interface *intf; |
| 608 | struct wdm_device *desc; |
| 609 | |
| 610 | mutex_lock(&wdm_mutex); |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 611 | desc = wdm_find_device_by_minor(minor); |
| 612 | if (!desc) |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 613 | goto out; |
| 614 | |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 615 | intf = desc->intf; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 616 | if (test_bit(WDM_DISCONNECTING, &desc->flags)) |
| 617 | goto out; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 618 | file->private_data = desc; |
| 619 | |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 620 | rv = usb_autopm_get_interface(desc->intf); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 621 | if (rv < 0) { |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 622 | dev_err(&desc->intf->dev, "Error autopm - %d\n", rv); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 623 | goto out; |
| 624 | } |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 625 | |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 626 | /* using write lock to protect desc->count */ |
| 627 | mutex_lock(&desc->wlock); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 628 | if (!desc->count++) { |
Oliver Neukum | d771d8a | 2011-04-29 14:12:21 +0200 | [diff] [blame] | 629 | desc->werr = 0; |
| 630 | desc->rerr = 0; |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 631 | rv = usb_submit_urb(desc->validity, GFP_KERNEL); |
| 632 | if (rv < 0) { |
| 633 | desc->count--; |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 634 | dev_err(&desc->intf->dev, |
| 635 | "Error submitting int urb - %d\n", rv); |
Oliver Neukum | 12a98b2 | 2012-04-30 09:57:31 +0200 | [diff] [blame] | 636 | rv = usb_translate_errors(rv); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 637 | } |
| 638 | } else { |
| 639 | rv = 0; |
| 640 | } |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 641 | mutex_unlock(&desc->wlock); |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 642 | if (desc->count == 1) |
| 643 | desc->manage_power(intf, 1); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 644 | usb_autopm_put_interface(desc->intf); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 645 | out: |
| 646 | mutex_unlock(&wdm_mutex); |
| 647 | return rv; |
| 648 | } |
| 649 | |
| 650 | static int wdm_release(struct inode *inode, struct file *file) |
| 651 | { |
| 652 | struct wdm_device *desc = file->private_data; |
| 653 | |
| 654 | mutex_lock(&wdm_mutex); |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 655 | |
| 656 | /* using write lock to protect desc->count */ |
| 657 | mutex_lock(&desc->wlock); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 658 | desc->count--; |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 659 | mutex_unlock(&desc->wlock); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 660 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 661 | if (!desc->count) { |
Bjørn Mork | 880bca3 | 2012-04-30 09:26:11 +0200 | [diff] [blame] | 662 | if (!test_bit(WDM_DISCONNECTING, &desc->flags)) { |
Bjørn Mork | 6b0b79d | 2012-05-09 13:53:22 +0200 | [diff] [blame] | 663 | dev_dbg(&desc->intf->dev, "wdm_release: cleanup"); |
| 664 | kill_urbs(desc); |
Greg Suarez | 73e0686 | 2013-10-29 10:29:10 -0700 | [diff] [blame^] | 665 | spin_lock_irq(&desc->iuspin); |
| 666 | desc->resp_count = 0; |
| 667 | spin_unlock_irq(&desc->iuspin); |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 668 | desc->manage_power(desc->intf, 0); |
Bjørn Mork | 880bca3 | 2012-04-30 09:26:11 +0200 | [diff] [blame] | 669 | } else { |
Bjørn Mork | 6b0b79d | 2012-05-09 13:53:22 +0200 | [diff] [blame] | 670 | /* must avoid dev_printk here as desc->intf is invalid */ |
| 671 | pr_debug(KBUILD_MODNAME " %s: device gone - cleaning up\n", __func__); |
Oliver Neukum | 2f338c8 | 2012-04-27 14:36:37 +0200 | [diff] [blame] | 672 | cleanup(desc); |
Bjørn Mork | 880bca3 | 2012-04-30 09:26:11 +0200 | [diff] [blame] | 673 | } |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 674 | } |
| 675 | mutex_unlock(&wdm_mutex); |
| 676 | return 0; |
| 677 | } |
| 678 | |
Bjørn Mork | 3edce1c | 2013-03-17 21:00:06 +0100 | [diff] [blame] | 679 | static long wdm_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 680 | { |
| 681 | struct wdm_device *desc = file->private_data; |
| 682 | int rv = 0; |
| 683 | |
| 684 | switch (cmd) { |
| 685 | case IOCTL_WDM_MAX_COMMAND: |
| 686 | if (copy_to_user((void __user *)arg, &desc->wMaxCommand, sizeof(desc->wMaxCommand))) |
| 687 | rv = -EFAULT; |
| 688 | break; |
| 689 | default: |
| 690 | rv = -ENOTTY; |
| 691 | } |
| 692 | return rv; |
| 693 | } |
| 694 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 695 | static const struct file_operations wdm_fops = { |
| 696 | .owner = THIS_MODULE, |
| 697 | .read = wdm_read, |
| 698 | .write = wdm_write, |
| 699 | .open = wdm_open, |
| 700 | .flush = wdm_flush, |
| 701 | .release = wdm_release, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 702 | .poll = wdm_poll, |
Bjørn Mork | 3edce1c | 2013-03-17 21:00:06 +0100 | [diff] [blame] | 703 | .unlocked_ioctl = wdm_ioctl, |
| 704 | .compat_ioctl = wdm_ioctl, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 705 | .llseek = noop_llseek, |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 706 | }; |
| 707 | |
| 708 | static struct usb_class_driver wdm_class = { |
| 709 | .name = "cdc-wdm%d", |
| 710 | .fops = &wdm_fops, |
| 711 | .minor_base = WDM_MINOR_BASE, |
| 712 | }; |
| 713 | |
| 714 | /* --- error handling --- */ |
| 715 | static void wdm_rxwork(struct work_struct *work) |
| 716 | { |
| 717 | struct wdm_device *desc = container_of(work, struct wdm_device, rxwork); |
| 718 | unsigned long flags; |
Oliver Neukum | 6dd433e | 2013-08-06 14:22:59 +0200 | [diff] [blame] | 719 | int rv = 0; |
| 720 | int responding; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 721 | |
| 722 | spin_lock_irqsave(&desc->iuspin, flags); |
| 723 | if (test_bit(WDM_DISCONNECTING, &desc->flags)) { |
| 724 | spin_unlock_irqrestore(&desc->iuspin, flags); |
| 725 | } else { |
Oliver Neukum | 6dd433e | 2013-08-06 14:22:59 +0200 | [diff] [blame] | 726 | responding = test_and_set_bit(WDM_RESPONDING, &desc->flags); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 727 | spin_unlock_irqrestore(&desc->iuspin, flags); |
Oliver Neukum | 6dd433e | 2013-08-06 14:22:59 +0200 | [diff] [blame] | 728 | if (!responding) |
| 729 | rv = usb_submit_urb(desc->response, GFP_KERNEL); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 730 | if (rv < 0 && rv != -EPERM) { |
| 731 | spin_lock_irqsave(&desc->iuspin, flags); |
Oliver Neukum | 6dd433e | 2013-08-06 14:22:59 +0200 | [diff] [blame] | 732 | clear_bit(WDM_RESPONDING, &desc->flags); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 733 | if (!test_bit(WDM_DISCONNECTING, &desc->flags)) |
| 734 | schedule_work(&desc->rxwork); |
| 735 | spin_unlock_irqrestore(&desc->iuspin, flags); |
| 736 | } |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | /* --- hotplug --- */ |
| 741 | |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 742 | static int wdm_create(struct usb_interface *intf, struct usb_endpoint_descriptor *ep, |
| 743 | u16 bufsize, int (*manage_power)(struct usb_interface *, int)) |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 744 | { |
Bjørn Mork | 0dffb48 | 2012-03-06 17:29:20 +0100 | [diff] [blame] | 745 | int rv = -ENOMEM; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 746 | struct wdm_device *desc; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 747 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 748 | desc = kzalloc(sizeof(struct wdm_device), GFP_KERNEL); |
| 749 | if (!desc) |
| 750 | goto out; |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 751 | INIT_LIST_HEAD(&desc->device_list); |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 752 | mutex_init(&desc->rlock); |
| 753 | mutex_init(&desc->wlock); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 754 | spin_lock_init(&desc->iuspin); |
| 755 | init_waitqueue_head(&desc->wait); |
Bjørn Mork | 0dffb48 | 2012-03-06 17:29:20 +0100 | [diff] [blame] | 756 | desc->wMaxCommand = bufsize; |
Oliver Neukum | 052fbc0 | 2009-04-20 17:24:49 +0200 | [diff] [blame] | 757 | /* this will be expanded and needed in hardware endianness */ |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 758 | desc->inum = cpu_to_le16((u16)intf->cur_altsetting->desc.bInterfaceNumber); |
| 759 | desc->intf = intf; |
| 760 | INIT_WORK(&desc->rxwork, wdm_rxwork); |
| 761 | |
Oliver Neukum | 052fbc0 | 2009-04-20 17:24:49 +0200 | [diff] [blame] | 762 | rv = -EINVAL; |
Bjørn Mork | 0dffb48 | 2012-03-06 17:29:20 +0100 | [diff] [blame] | 763 | if (!usb_endpoint_is_int_in(ep)) |
Oliver Neukum | 052fbc0 | 2009-04-20 17:24:49 +0200 | [diff] [blame] | 764 | goto err; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 765 | |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 766 | desc->wMaxPacketSize = usb_endpoint_maxp(ep); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 767 | |
| 768 | desc->orq = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL); |
| 769 | if (!desc->orq) |
| 770 | goto err; |
| 771 | desc->irq = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL); |
| 772 | if (!desc->irq) |
| 773 | goto err; |
| 774 | |
| 775 | desc->validity = usb_alloc_urb(0, GFP_KERNEL); |
| 776 | if (!desc->validity) |
| 777 | goto err; |
| 778 | |
| 779 | desc->response = usb_alloc_urb(0, GFP_KERNEL); |
| 780 | if (!desc->response) |
| 781 | goto err; |
| 782 | |
| 783 | desc->command = usb_alloc_urb(0, GFP_KERNEL); |
| 784 | if (!desc->command) |
| 785 | goto err; |
| 786 | |
| 787 | desc->ubuf = kmalloc(desc->wMaxCommand, GFP_KERNEL); |
| 788 | if (!desc->ubuf) |
| 789 | goto err; |
| 790 | |
Bjørn Mork | 8457d99 | 2012-01-16 15:12:00 +0100 | [diff] [blame] | 791 | desc->sbuf = kmalloc(desc->wMaxPacketSize, GFP_KERNEL); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 792 | if (!desc->sbuf) |
| 793 | goto err; |
| 794 | |
Bjørn Mork | 8457d99 | 2012-01-16 15:12:00 +0100 | [diff] [blame] | 795 | desc->inbuf = kmalloc(desc->wMaxCommand, GFP_KERNEL); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 796 | if (!desc->inbuf) |
Bjørn Mork | 8457d99 | 2012-01-16 15:12:00 +0100 | [diff] [blame] | 797 | goto err; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 798 | |
| 799 | usb_fill_int_urb( |
| 800 | desc->validity, |
| 801 | interface_to_usbdev(intf), |
| 802 | usb_rcvintpipe(interface_to_usbdev(intf), ep->bEndpointAddress), |
| 803 | desc->sbuf, |
| 804 | desc->wMaxPacketSize, |
| 805 | wdm_int_callback, |
| 806 | desc, |
| 807 | ep->bInterval |
| 808 | ); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 809 | |
Bjørn Mork | 19b85b3 | 2012-01-16 15:11:58 +0100 | [diff] [blame] | 810 | desc->irq->bRequestType = (USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE); |
| 811 | desc->irq->bRequest = USB_CDC_GET_ENCAPSULATED_RESPONSE; |
| 812 | desc->irq->wValue = 0; |
| 813 | desc->irq->wIndex = desc->inum; |
| 814 | desc->irq->wLength = cpu_to_le16(desc->wMaxCommand); |
| 815 | |
| 816 | usb_fill_control_urb( |
| 817 | desc->response, |
Bjørn Mork | 8143a89 | 2012-01-16 15:12:01 +0100 | [diff] [blame] | 818 | interface_to_usbdev(intf), |
Bjørn Mork | 19b85b3 | 2012-01-16 15:11:58 +0100 | [diff] [blame] | 819 | /* using common endpoint 0 */ |
| 820 | usb_rcvctrlpipe(interface_to_usbdev(desc->intf), 0), |
| 821 | (unsigned char *)desc->irq, |
| 822 | desc->inbuf, |
| 823 | desc->wMaxCommand, |
| 824 | wdm_in_callback, |
| 825 | desc |
| 826 | ); |
Bjørn Mork | 19b85b3 | 2012-01-16 15:11:58 +0100 | [diff] [blame] | 827 | |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 828 | desc->manage_power = manage_power; |
| 829 | |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 830 | spin_lock(&wdm_device_list_lock); |
| 831 | list_add(&desc->device_list, &wdm_device_list); |
| 832 | spin_unlock(&wdm_device_list_lock); |
| 833 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 834 | rv = usb_register_dev(intf, &wdm_class); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 835 | if (rv < 0) |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 836 | goto err; |
Oliver Neukum | 052fbc0 | 2009-04-20 17:24:49 +0200 | [diff] [blame] | 837 | else |
Bjørn Mork | 820c629 | 2012-01-20 04:17:25 +0100 | [diff] [blame] | 838 | dev_info(&intf->dev, "%s: USB WDM device\n", dev_name(intf->usb_dev)); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 839 | out: |
| 840 | return rv; |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 841 | err: |
Bjørn Mork | 6286d85 | 2012-05-09 13:53:23 +0200 | [diff] [blame] | 842 | spin_lock(&wdm_device_list_lock); |
| 843 | list_del(&desc->device_list); |
| 844 | spin_unlock(&wdm_device_list_lock); |
Bjørn Mork | 0dffb48 | 2012-03-06 17:29:20 +0100 | [diff] [blame] | 845 | cleanup(desc); |
| 846 | return rv; |
| 847 | } |
| 848 | |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 849 | static int wdm_manage_power(struct usb_interface *intf, int on) |
| 850 | { |
| 851 | /* need autopm_get/put here to ensure the usbcore sees the new value */ |
| 852 | int rv = usb_autopm_get_interface(intf); |
| 853 | if (rv < 0) |
| 854 | goto err; |
| 855 | |
| 856 | intf->needs_remote_wakeup = on; |
| 857 | usb_autopm_put_interface(intf); |
| 858 | err: |
| 859 | return rv; |
| 860 | } |
| 861 | |
Bjørn Mork | 0dffb48 | 2012-03-06 17:29:20 +0100 | [diff] [blame] | 862 | static int wdm_probe(struct usb_interface *intf, const struct usb_device_id *id) |
| 863 | { |
| 864 | int rv = -EINVAL; |
| 865 | struct usb_host_interface *iface; |
| 866 | struct usb_endpoint_descriptor *ep; |
| 867 | struct usb_cdc_dmm_desc *dmhd; |
| 868 | u8 *buffer = intf->altsetting->extra; |
| 869 | int buflen = intf->altsetting->extralen; |
| 870 | u16 maxcom = WDM_DEFAULT_BUFSIZE; |
| 871 | |
| 872 | if (!buffer) |
| 873 | goto err; |
| 874 | while (buflen > 2) { |
| 875 | if (buffer[1] != USB_DT_CS_INTERFACE) { |
| 876 | dev_err(&intf->dev, "skipping garbage\n"); |
| 877 | goto next_desc; |
| 878 | } |
| 879 | |
| 880 | switch (buffer[2]) { |
| 881 | case USB_CDC_HEADER_TYPE: |
| 882 | break; |
| 883 | case USB_CDC_DMM_TYPE: |
| 884 | dmhd = (struct usb_cdc_dmm_desc *)buffer; |
| 885 | maxcom = le16_to_cpu(dmhd->wMaxCommand); |
| 886 | dev_dbg(&intf->dev, |
| 887 | "Finding maximum buffer length: %d", maxcom); |
| 888 | break; |
| 889 | default: |
| 890 | dev_err(&intf->dev, |
| 891 | "Ignoring extra header, type %d, length %d\n", |
| 892 | buffer[2], buffer[0]); |
| 893 | break; |
| 894 | } |
| 895 | next_desc: |
| 896 | buflen -= buffer[0]; |
| 897 | buffer += buffer[0]; |
| 898 | } |
| 899 | |
| 900 | iface = intf->cur_altsetting; |
| 901 | if (iface->desc.bNumEndpoints != 1) |
| 902 | goto err; |
| 903 | ep = &iface->endpoint[0].desc; |
| 904 | |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 905 | rv = wdm_create(intf, ep, maxcom, &wdm_manage_power); |
Bjørn Mork | 0dffb48 | 2012-03-06 17:29:20 +0100 | [diff] [blame] | 906 | |
| 907 | err: |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 908 | return rv; |
| 909 | } |
| 910 | |
Bjørn Mork | 3cc3615 | 2012-03-06 17:29:22 +0100 | [diff] [blame] | 911 | /** |
| 912 | * usb_cdc_wdm_register - register a WDM subdriver |
| 913 | * @intf: usb interface the subdriver will associate with |
| 914 | * @ep: interrupt endpoint to monitor for notifications |
| 915 | * @bufsize: maximum message size to support for read/write |
| 916 | * |
| 917 | * Create WDM usb class character device and associate it with intf |
| 918 | * without binding, allowing another driver to manage the interface. |
| 919 | * |
| 920 | * The subdriver will manage the given interrupt endpoint exclusively |
| 921 | * and will issue control requests referring to the given intf. It |
| 922 | * will otherwise avoid interferring, and in particular not do |
| 923 | * usb_set_intfdata/usb_get_intfdata on intf. |
| 924 | * |
| 925 | * The return value is a pointer to the subdriver's struct usb_driver. |
| 926 | * The registering driver is responsible for calling this subdriver's |
| 927 | * disconnect, suspend, resume, pre_reset and post_reset methods from |
| 928 | * its own. |
| 929 | */ |
| 930 | struct usb_driver *usb_cdc_wdm_register(struct usb_interface *intf, |
| 931 | struct usb_endpoint_descriptor *ep, |
| 932 | int bufsize, |
| 933 | int (*manage_power)(struct usb_interface *, int)) |
| 934 | { |
| 935 | int rv = -EINVAL; |
| 936 | |
| 937 | rv = wdm_create(intf, ep, bufsize, manage_power); |
| 938 | if (rv < 0) |
| 939 | goto err; |
| 940 | |
| 941 | return &wdm_driver; |
| 942 | err: |
| 943 | return ERR_PTR(rv); |
| 944 | } |
| 945 | EXPORT_SYMBOL(usb_cdc_wdm_register); |
| 946 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 947 | static void wdm_disconnect(struct usb_interface *intf) |
| 948 | { |
| 949 | struct wdm_device *desc; |
| 950 | unsigned long flags; |
| 951 | |
| 952 | usb_deregister_dev(intf, &wdm_class); |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 953 | desc = wdm_find_device(intf); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 954 | mutex_lock(&wdm_mutex); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 955 | |
| 956 | /* the spinlock makes sure no new urbs are generated in the callbacks */ |
| 957 | spin_lock_irqsave(&desc->iuspin, flags); |
| 958 | set_bit(WDM_DISCONNECTING, &desc->flags); |
| 959 | set_bit(WDM_READ, &desc->flags); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 960 | /* to terminate pending flushes */ |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 961 | clear_bit(WDM_IN_USE, &desc->flags); |
| 962 | spin_unlock_irqrestore(&desc->iuspin, flags); |
Bjørn Mork | 62aaf24 | 2012-01-16 15:11:57 +0100 | [diff] [blame] | 963 | wake_up_all(&desc->wait); |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 964 | mutex_lock(&desc->rlock); |
| 965 | mutex_lock(&desc->wlock); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 966 | kill_urbs(desc); |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 967 | cancel_work_sync(&desc->rxwork); |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 968 | mutex_unlock(&desc->wlock); |
| 969 | mutex_unlock(&desc->rlock); |
Bjørn Mork | 6286d85 | 2012-05-09 13:53:23 +0200 | [diff] [blame] | 970 | |
| 971 | /* the desc->intf pointer used as list key is now invalid */ |
| 972 | spin_lock(&wdm_device_list_lock); |
| 973 | list_del(&desc->device_list); |
| 974 | spin_unlock(&wdm_device_list_lock); |
| 975 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 976 | if (!desc->count) |
| 977 | cleanup(desc); |
Bjørn Mork | 880bca3 | 2012-04-30 09:26:11 +0200 | [diff] [blame] | 978 | else |
| 979 | dev_dbg(&intf->dev, "%s: %d open files - postponing cleanup\n", __func__, desc->count); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 980 | mutex_unlock(&wdm_mutex); |
| 981 | } |
| 982 | |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 983 | #ifdef CONFIG_PM |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 984 | static int wdm_suspend(struct usb_interface *intf, pm_message_t message) |
| 985 | { |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 986 | struct wdm_device *desc = wdm_find_device(intf); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 987 | int rv = 0; |
| 988 | |
| 989 | dev_dbg(&desc->intf->dev, "wdm%d_suspend\n", intf->minor); |
| 990 | |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 991 | /* if this is an autosuspend the caller does the locking */ |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 992 | if (!PMSG_IS_AUTO(message)) { |
| 993 | mutex_lock(&desc->rlock); |
| 994 | mutex_lock(&desc->wlock); |
| 995 | } |
Oliver Neukum | 62e6685 | 2010-02-27 20:56:22 +0100 | [diff] [blame] | 996 | spin_lock_irq(&desc->iuspin); |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 997 | |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 998 | if (PMSG_IS_AUTO(message) && |
Oliver Neukum | 922a5ea | 2010-02-27 20:54:59 +0100 | [diff] [blame] | 999 | (test_bit(WDM_IN_USE, &desc->flags) |
| 1000 | || test_bit(WDM_RESPONDING, &desc->flags))) { |
Oliver Neukum | 62e6685 | 2010-02-27 20:56:22 +0100 | [diff] [blame] | 1001 | spin_unlock_irq(&desc->iuspin); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1002 | rv = -EBUSY; |
| 1003 | } else { |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1004 | |
Oliver Neukum | beb1d35 | 2010-02-27 20:55:52 +0100 | [diff] [blame] | 1005 | set_bit(WDM_SUSPENDING, &desc->flags); |
Oliver Neukum | 62e6685 | 2010-02-27 20:56:22 +0100 | [diff] [blame] | 1006 | spin_unlock_irq(&desc->iuspin); |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1007 | /* callback submits work - order is essential */ |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1008 | kill_urbs(desc); |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1009 | cancel_work_sync(&desc->rxwork); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1010 | } |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 1011 | if (!PMSG_IS_AUTO(message)) { |
| 1012 | mutex_unlock(&desc->wlock); |
| 1013 | mutex_unlock(&desc->rlock); |
| 1014 | } |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1015 | |
| 1016 | return rv; |
| 1017 | } |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1018 | #endif |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1019 | |
| 1020 | static int recover_from_urb_loss(struct wdm_device *desc) |
| 1021 | { |
| 1022 | int rv = 0; |
| 1023 | |
| 1024 | if (desc->count) { |
| 1025 | rv = usb_submit_urb(desc->validity, GFP_NOIO); |
| 1026 | if (rv < 0) |
Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 1027 | dev_err(&desc->intf->dev, |
| 1028 | "Error resume submitting int urb - %d\n", rv); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1029 | } |
| 1030 | return rv; |
| 1031 | } |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1032 | |
| 1033 | #ifdef CONFIG_PM |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1034 | static int wdm_resume(struct usb_interface *intf) |
| 1035 | { |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 1036 | struct wdm_device *desc = wdm_find_device(intf); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1037 | int rv; |
| 1038 | |
| 1039 | dev_dbg(&desc->intf->dev, "wdm%d_resume\n", intf->minor); |
Oliver Neukum | 338124c | 2010-02-27 20:57:12 +0100 | [diff] [blame] | 1040 | |
Oliver Neukum | beb1d35 | 2010-02-27 20:55:52 +0100 | [diff] [blame] | 1041 | clear_bit(WDM_SUSPENDING, &desc->flags); |
Oliver Neukum | 62e6685 | 2010-02-27 20:56:22 +0100 | [diff] [blame] | 1042 | rv = recover_from_urb_loss(desc); |
Oliver Neukum | 338124c | 2010-02-27 20:57:12 +0100 | [diff] [blame] | 1043 | |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1044 | return rv; |
| 1045 | } |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1046 | #endif |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1047 | |
| 1048 | static int wdm_pre_reset(struct usb_interface *intf) |
| 1049 | { |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 1050 | struct wdm_device *desc = wdm_find_device(intf); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1051 | |
Oliver Neukum | d771d8a | 2011-04-29 14:12:21 +0200 | [diff] [blame] | 1052 | /* |
| 1053 | * we notify everybody using poll of |
| 1054 | * an exceptional situation |
| 1055 | * must be done before recovery lest a spontaneous |
| 1056 | * message from the device is lost |
| 1057 | */ |
| 1058 | spin_lock_irq(&desc->iuspin); |
Bjørn Mork | 8804420 | 2012-02-10 09:44:08 +0100 | [diff] [blame] | 1059 | set_bit(WDM_RESETTING, &desc->flags); /* inform read/write */ |
| 1060 | set_bit(WDM_READ, &desc->flags); /* unblock read */ |
| 1061 | clear_bit(WDM_IN_USE, &desc->flags); /* unblock write */ |
Oliver Neukum | d771d8a | 2011-04-29 14:12:21 +0200 | [diff] [blame] | 1062 | desc->rerr = -EINTR; |
| 1063 | spin_unlock_irq(&desc->iuspin); |
| 1064 | wake_up_all(&desc->wait); |
Bjørn Mork | 8804420 | 2012-02-10 09:44:08 +0100 | [diff] [blame] | 1065 | mutex_lock(&desc->rlock); |
| 1066 | mutex_lock(&desc->wlock); |
| 1067 | kill_urbs(desc); |
| 1068 | cancel_work_sync(&desc->rxwork); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1069 | return 0; |
| 1070 | } |
| 1071 | |
| 1072 | static int wdm_post_reset(struct usb_interface *intf) |
| 1073 | { |
Bjørn Mork | b0c1386 | 2012-03-06 17:29:21 +0100 | [diff] [blame] | 1074 | struct wdm_device *desc = wdm_find_device(intf); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1075 | int rv; |
| 1076 | |
Oliver Neukum | c0f5ece | 2013-03-12 14:52:42 +0100 | [diff] [blame] | 1077 | clear_bit(WDM_OVERFLOW, &desc->flags); |
Bjørn Mork | 8804420 | 2012-02-10 09:44:08 +0100 | [diff] [blame] | 1078 | clear_bit(WDM_RESETTING, &desc->flags); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1079 | rv = recover_from_urb_loss(desc); |
Bjørn Mork | e8537bd | 2012-01-16 12:41:48 +0100 | [diff] [blame] | 1080 | mutex_unlock(&desc->wlock); |
| 1081 | mutex_unlock(&desc->rlock); |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1082 | return 0; |
| 1083 | } |
| 1084 | |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 1085 | static struct usb_driver wdm_driver = { |
| 1086 | .name = "cdc_wdm", |
| 1087 | .probe = wdm_probe, |
| 1088 | .disconnect = wdm_disconnect, |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1089 | #ifdef CONFIG_PM |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1090 | .suspend = wdm_suspend, |
| 1091 | .resume = wdm_resume, |
| 1092 | .reset_resume = wdm_resume, |
Oliver Neukum | d93d16e | 2010-02-27 20:56:47 +0100 | [diff] [blame] | 1093 | #endif |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1094 | .pre_reset = wdm_pre_reset, |
| 1095 | .post_reset = wdm_post_reset, |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 1096 | .id_table = wdm_ids, |
Oliver Neukum | 17d80d5 | 2008-06-24 15:56:10 +0200 | [diff] [blame] | 1097 | .supports_autosuspend = 1, |
Sarah Sharp | e1f12eb | 2012-04-23 10:08:51 -0700 | [diff] [blame] | 1098 | .disable_hub_initiated_lpm = 1, |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 1099 | }; |
| 1100 | |
Greg Kroah-Hartman | 65db430 | 2011-11-18 09:34:02 -0800 | [diff] [blame] | 1101 | module_usb_driver(wdm_driver); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 1102 | |
| 1103 | MODULE_AUTHOR(DRIVER_AUTHOR); |
Oliver Neukum | 87d65e5 | 2008-06-19 14:20:18 +0200 | [diff] [blame] | 1104 | MODULE_DESCRIPTION(DRIVER_DESC); |
Oliver Neukum | afba937 | 2008-05-13 17:01:25 +0200 | [diff] [blame] | 1105 | MODULE_LICENSE("GPL"); |