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