blob: 61ea87917433096a73cb2bc3ef7f3f3a857e5caa [file] [log] [blame]
Oliver Neukumafba9372008-05-13 17:01:25 +02001/*
2 * cdc-wdm.c
3 *
4 * This driver supports USB CDC WCM Device Management.
5 *
Oliver Neukum052fbc02009-04-20 17:24:49 +02006 * Copyright (c) 2007-2009 Oliver Neukum
Oliver Neukumafba9372008-05-13 17:01:25 +02007 *
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 Mork3edce1c2013-03-17 21:00:06 +010016#include <linux/ioctl.h>
Oliver Neukumafba9372008-05-13 17:01:25 +020017#include <linux/slab.h>
18#include <linux/module.h>
Oliver Neukumafba9372008-05-13 17:01:25 +020019#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 Mork3cc36152012-03-06 17:29:22 +010027#include <linux/usb/cdc-wdm.h>
Oliver Neukumafba9372008-05-13 17:01:25 +020028
29/*
30 * Version Information
31 */
Oliver Neukum87d65e52008-06-19 14:20:18 +020032#define DRIVER_VERSION "v0.03"
Oliver Neukumafba9372008-05-13 17:01:25 +020033#define DRIVER_AUTHOR "Oliver Neukum"
Oliver Neukum87d65e52008-06-19 14:20:18 +020034#define DRIVER_DESC "USB Abstract Control Model driver for USB WCM Device Management"
Oliver Neukumafba9372008-05-13 17:01:25 +020035
Németh Márton6ef48522010-01-10 15:33:45 +010036static const struct usb_device_id wdm_ids[] = {
Oliver Neukumafba9372008-05-13 17:01:25 +020037 {
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 Neukumaa5380b2008-10-13 14:05:20 +020046MODULE_DEVICE_TABLE (usb, wdm_ids);
47
Oliver Neukumafba9372008-05-13 17:01:25 +020048#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 Neukum922a5ea2010-02-27 20:54:59 +010057#define WDM_RESPONDING 7
Oliver Neukumbeb1d352010-02-27 20:55:52 +010058#define WDM_SUSPENDING 8
Bjørn Mork88044202012-02-10 09:44:08 +010059#define WDM_RESETTING 9
Oliver Neukumc0f5ece2013-03-12 14:52:42 +010060#define WDM_OVERFLOW 10
Oliver Neukumafba9372008-05-13 17:01:25 +020061
62#define WDM_MAX 16
63
Bjørn Mork7e3054a2012-01-20 01:49:57 +010064/* CDC-WMC r1.1 requires wMaxCommand to be "at least 256 decimal (0x100)" */
65#define WDM_DEFAULT_BUFSIZE 256
Oliver Neukumafba9372008-05-13 17:01:25 +020066
67static DEFINE_MUTEX(wdm_mutex);
Bjørn Morkb0c13862012-03-06 17:29:21 +010068static DEFINE_SPINLOCK(wdm_device_list_lock);
69static LIST_HEAD(wdm_device_list);
Oliver Neukumafba9372008-05-13 17:01:25 +020070
71/* --- method tables --- */
72
73struct 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 Neukumafba9372008-05-13 17:01:25 +020091 __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 Morke8537bd2012-01-16 12:41:48 +010098 struct mutex wlock;
99 struct mutex rlock;
Oliver Neukumafba9372008-05-13 17:01:25 +0200100 wait_queue_head_t wait;
101 struct work_struct rxwork;
102 int werr;
103 int rerr;
Greg Suarez73e06862013-10-29 10:29:10 -0700104 int resp_count;
Bjørn Morkb0c13862012-03-06 17:29:21 +0100105
106 struct list_head device_list;
Bjørn Mork3cc36152012-03-06 17:29:22 +0100107 int (*manage_power)(struct usb_interface *, int);
Oliver Neukumafba9372008-05-13 17:01:25 +0200108};
109
110static struct usb_driver wdm_driver;
111
Bjørn Morkb0c13862012-03-06 17:29:21 +0100112/* return intfdata if we own the interface, else look up intf in the list */
113static struct wdm_device *wdm_find_device(struct usb_interface *intf)
114{
Bjørn Mork6a448862012-09-10 22:17:34 +0200115 struct wdm_device *desc;
Bjørn Morkb0c13862012-03-06 17:29:21 +0100116
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 Mork6a448862012-09-10 22:17:34 +0200120 goto found;
121 desc = NULL;
122found:
Bjørn Morkb0c13862012-03-06 17:29:21 +0100123 spin_unlock(&wdm_device_list_lock);
124
125 return desc;
126}
127
128static struct wdm_device *wdm_find_device_by_minor(int minor)
129{
Bjørn Mork6a448862012-09-10 22:17:34 +0200130 struct wdm_device *desc;
Bjørn Morkb0c13862012-03-06 17:29:21 +0100131
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 Mork6a448862012-09-10 22:17:34 +0200135 goto found;
136 desc = NULL;
137found:
Bjørn Morkb0c13862012-03-06 17:29:21 +0100138 spin_unlock(&wdm_device_list_lock);
139
140 return desc;
141}
142
Oliver Neukumafba9372008-05-13 17:01:25 +0200143/* --- callbacks --- */
144static 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 Neukumafba9372008-05-13 17:01:25 +0200151 kfree(desc->outbuf);
Oliver Neukum5c228372012-04-26 21:59:10 +0200152 desc->outbuf = NULL;
153 clear_bit(WDM_IN_USE, &desc->flags);
Oliver Neukumafba9372008-05-13 17:01:25 +0200154 wake_up(&desc->wait);
155}
156
157static void wdm_in_callback(struct urb *urb)
158{
159 struct wdm_device *desc = urb->context;
160 int status = urb->status;
Oliver Neukumc0f5ece2013-03-12 14:52:42 +0100161 int length = urb->actual_length;
Oliver Neukumafba9372008-05-13 17:01:25 +0200162
163 spin_lock(&desc->iuspin);
Oliver Neukum922a5ea2010-02-27 20:54:59 +0100164 clear_bit(WDM_RESPONDING, &desc->flags);
Oliver Neukumafba9372008-05-13 17:01:25 +0200165
166 if (status) {
167 switch (status) {
168 case -ENOENT:
169 dev_dbg(&desc->intf->dev,
170 "nonzero urb status received: -ENOENT");
Oliver Neukum922a5ea2010-02-27 20:54:59 +0100171 goto skip_error;
Oliver Neukumafba9372008-05-13 17:01:25 +0200172 case -ECONNRESET:
173 dev_dbg(&desc->intf->dev,
174 "nonzero urb status received: -ECONNRESET");
Oliver Neukum922a5ea2010-02-27 20:54:59 +0100175 goto skip_error;
Oliver Neukumafba9372008-05-13 17:01:25 +0200176 case -ESHUTDOWN:
177 dev_dbg(&desc->intf->dev,
178 "nonzero urb status received: -ESHUTDOWN");
Oliver Neukum922a5ea2010-02-27 20:54:59 +0100179 goto skip_error;
Oliver Neukumafba9372008-05-13 17:01:25 +0200180 case -EPIPE:
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700181 dev_err(&desc->intf->dev,
182 "nonzero urb status received: -EPIPE\n");
Oliver Neukumafba9372008-05-13 17:01:25 +0200183 break;
184 default:
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700185 dev_err(&desc->intf->dev,
186 "Unexpected error %d\n", status);
Oliver Neukumafba9372008-05-13 17:01:25 +0200187 break;
188 }
189 }
190
191 desc->rerr = status;
Oliver Neukumc0f5ece2013-03-12 14:52:42 +0100192 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 Neukum922a5ea2010-02-27 20:54:59 +0100203skip_error:
Oliver Neukumafba9372008-05-13 17:01:25 +0200204 wake_up(&desc->wait);
205
206 set_bit(WDM_READ, &desc->flags);
207 spin_unlock(&desc->iuspin);
208}
209
210static void wdm_int_callback(struct urb *urb)
211{
212 int rv = 0;
Oliver Neukum6dd433e2013-08-06 14:22:59 +0200213 int responding;
Oliver Neukumafba9372008-05-13 17:01:25 +0200214 int status = urb->status;
215 struct wdm_device *desc;
Oliver Neukumafba9372008-05-13 17:01:25 +0200216 struct usb_cdc_notification *dr;
217
218 desc = urb->context;
Oliver Neukumafba9372008-05-13 17:01:25 +0200219 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-Hartman9908a322008-08-14 09:37:34 -0700229 dev_err(&desc->intf->dev, "Stall on int endpoint\n");
Oliver Neukumafba9372008-05-13 17:01:25 +0200230 goto sw; /* halt is cleared in work */
231 default:
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700232 dev_err(&desc->intf->dev,
233 "nonzero urb status received: %d\n", status);
Oliver Neukumafba9372008-05-13 17:01:25 +0200234 break;
235 }
236 }
237
238 if (urb->actual_length < sizeof(struct usb_cdc_notification)) {
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700239 dev_err(&desc->intf->dev, "wdm_int_callback - %d bytes\n",
240 urb->actual_length);
Oliver Neukumafba9372008-05-13 17:01:25 +0200241 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",
Oliver Neukum323ece52015-03-20 14:29:34 +0100248 le16_to_cpu(dr->wIndex), le16_to_cpu(dr->wLength));
Oliver Neukumafba9372008-05-13 17:01:25 +0200249 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 Mork9983d6d2013-10-29 09:52:57 +0100257 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 Neukumafba9372008-05-13 17:01:25 +0200261 default:
262 clear_bit(WDM_POLL_RUNNING, &desc->flags);
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700263 dev_err(&desc->intf->dev,
264 "unknown notification %d received: index %d len %d\n",
Oliver Neukum323ece52015-03-20 14:29:34 +0100265 dr->bNotificationType,
266 le16_to_cpu(dr->wIndex),
267 le16_to_cpu(dr->wLength));
Oliver Neukumafba9372008-05-13 17:01:25 +0200268 goto exit;
269 }
270
Oliver Neukumafba9372008-05-13 17:01:25 +0200271 spin_lock(&desc->iuspin);
Oliver Neukum6dd433e2013-08-06 14:22:59 +0200272 responding = test_and_set_bit(WDM_RESPONDING, &desc->flags);
Greg Suarez73e06862013-10-29 10:29:10 -0700273 if (!desc->resp_count++ && !responding
274 && !test_bit(WDM_DISCONNECTING, &desc->flags)
Oliver Neukumbeb1d352010-02-27 20:55:52 +0100275 && !test_bit(WDM_SUSPENDING, &desc->flags)) {
Oliver Neukumafba9372008-05-13 17:01:25 +0200276 rv = usb_submit_urb(desc->response, GFP_ATOMIC);
277 dev_dbg(&desc->intf->dev, "%s: usb_submit_urb %d",
278 __func__, rv);
279 }
280 spin_unlock(&desc->iuspin);
281 if (rv < 0) {
Oliver Neukum922a5ea2010-02-27 20:54:59 +0100282 clear_bit(WDM_RESPONDING, &desc->flags);
Oliver Neukumafba9372008-05-13 17:01:25 +0200283 if (rv == -EPERM)
284 return;
285 if (rv == -ENOMEM) {
286sw:
287 rv = schedule_work(&desc->rxwork);
288 if (rv)
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700289 dev_err(&desc->intf->dev,
290 "Cannot schedule work\n");
Oliver Neukumafba9372008-05-13 17:01:25 +0200291 }
292 }
293exit:
294 rv = usb_submit_urb(urb, GFP_ATOMIC);
295 if (rv)
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700296 dev_err(&desc->intf->dev,
297 "%s - usb_submit_urb failed with result %d\n",
298 __func__, rv);
Oliver Neukumafba9372008-05-13 17:01:25 +0200299
300}
301
302static void kill_urbs(struct wdm_device *desc)
303{
Oliver Neukum17d80d52008-06-24 15:56:10 +0200304 /* the order here is essential */
Oliver Neukumafba9372008-05-13 17:01:25 +0200305 usb_kill_urb(desc->command);
306 usb_kill_urb(desc->validity);
307 usb_kill_urb(desc->response);
308}
309
310static void free_urbs(struct wdm_device *desc)
311{
312 usb_free_urb(desc->validity);
313 usb_free_urb(desc->response);
314 usb_free_urb(desc->command);
315}
316
317static void cleanup(struct wdm_device *desc)
318{
Bjørn Mork8457d992012-01-16 15:12:00 +0100319 kfree(desc->sbuf);
320 kfree(desc->inbuf);
Oliver Neukumafba9372008-05-13 17:01:25 +0200321 kfree(desc->orq);
322 kfree(desc->irq);
323 kfree(desc->ubuf);
324 free_urbs(desc);
325 kfree(desc);
326}
327
328static ssize_t wdm_write
329(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
330{
331 u8 *buf;
332 int rv = -EMSGSIZE, r, we;
333 struct wdm_device *desc = file->private_data;
334 struct usb_ctrlrequest *req;
335
336 if (count > desc->wMaxCommand)
337 count = desc->wMaxCommand;
338
339 spin_lock_irq(&desc->iuspin);
340 we = desc->werr;
341 desc->werr = 0;
342 spin_unlock_irq(&desc->iuspin);
343 if (we < 0)
Oliver Neukum76cb03e2015-03-20 14:28:56 +0100344 return usb_translate_errors(we);
Oliver Neukumafba9372008-05-13 17:01:25 +0200345
Oliver Neukum5c228372012-04-26 21:59:10 +0200346 buf = kmalloc(count, GFP_KERNEL);
Oliver Neukum860e41a2010-02-27 20:54:24 +0100347 if (!buf) {
348 rv = -ENOMEM;
Oliver Neukumafba9372008-05-13 17:01:25 +0200349 goto outnl;
Oliver Neukum860e41a2010-02-27 20:54:24 +0100350 }
351
352 r = copy_from_user(buf, buffer, count);
353 if (r > 0) {
Oliver Neukum860e41a2010-02-27 20:54:24 +0100354 rv = -EFAULT;
Oliver Neukum28965e12015-03-20 14:29:18 +0100355 goto out_free_mem;
Oliver Neukum860e41a2010-02-27 20:54:24 +0100356 }
357
358 /* concurrent writes and disconnect */
Bjørn Morke8537bd2012-01-16 12:41:48 +0100359 r = mutex_lock_interruptible(&desc->wlock);
Oliver Neukum860e41a2010-02-27 20:54:24 +0100360 rv = -ERESTARTSYS;
Oliver Neukum28965e12015-03-20 14:29:18 +0100361 if (r)
362 goto out_free_mem;
Oliver Neukum860e41a2010-02-27 20:54:24 +0100363
364 if (test_bit(WDM_DISCONNECTING, &desc->flags)) {
Oliver Neukum860e41a2010-02-27 20:54:24 +0100365 rv = -ENODEV;
Oliver Neukum28965e12015-03-20 14:29:18 +0100366 goto out_free_mem_lock;
Oliver Neukum860e41a2010-02-27 20:54:24 +0100367 }
Oliver Neukumafba9372008-05-13 17:01:25 +0200368
Oliver Neukum17d80d52008-06-24 15:56:10 +0200369 r = usb_autopm_get_interface(desc->intf);
Oliver Neukum860e41a2010-02-27 20:54:24 +0100370 if (r < 0) {
Oliver Neukum12a98b22012-04-30 09:57:31 +0200371 rv = usb_translate_errors(r);
Oliver Neukum28965e12015-03-20 14:29:18 +0100372 goto out_free_mem_lock;
Oliver Neukum860e41a2010-02-27 20:54:24 +0100373 }
Oliver Neukum7f1dc312009-09-09 10:12:48 +0200374
David Sterba0cdfb812010-12-27 18:49:58 +0100375 if (!(file->f_flags & O_NONBLOCK))
Oliver Neukum7f1dc312009-09-09 10:12:48 +0200376 r = wait_event_interruptible(desc->wait, !test_bit(WDM_IN_USE,
377 &desc->flags));
378 else
379 if (test_bit(WDM_IN_USE, &desc->flags))
380 r = -EAGAIN;
Bjørn Mork88044202012-02-10 09:44:08 +0100381
382 if (test_bit(WDM_RESETTING, &desc->flags))
383 r = -EIO;
384
Oliver Neukum860e41a2010-02-27 20:54:24 +0100385 if (r < 0) {
Oliver Neukum12a98b22012-04-30 09:57:31 +0200386 rv = r;
Oliver Neukum28965e12015-03-20 14:29:18 +0100387 goto out_free_mem_pm;
Oliver Neukumafba9372008-05-13 17:01:25 +0200388 }
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;
Oliver Neukum323ece52015-03-20 14:29:34 +0100407 req->wIndex = desc->inum; /* already converted */
Oliver Neukumafba9372008-05-13 17:01:25 +0200408 req->wLength = cpu_to_le16(count);
409 set_bit(WDM_IN_USE, &desc->flags);
Oliver Neukum5c228372012-04-26 21:59:10 +0200410 desc->outbuf = buf;
Oliver Neukumafba9372008-05-13 17:01:25 +0200411
412 rv = usb_submit_urb(desc->command, GFP_KERNEL);
413 if (rv < 0) {
Oliver Neukum5c228372012-04-26 21:59:10 +0200414 desc->outbuf = NULL;
Oliver Neukumafba9372008-05-13 17:01:25 +0200415 clear_bit(WDM_IN_USE, &desc->flags);
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700416 dev_err(&desc->intf->dev, "Tx URB error: %d\n", rv);
Oliver Neukum12a98b22012-04-30 09:57:31 +0200417 rv = usb_translate_errors(rv);
Oliver Neukum28965e12015-03-20 14:29:18 +0100418 goto out_free_mem_pm;
Oliver Neukumafba9372008-05-13 17:01:25 +0200419 } else {
420 dev_dbg(&desc->intf->dev, "Tx URB has been submitted index=%d",
Oliver Neukum323ece52015-03-20 14:29:34 +0100421 le16_to_cpu(req->wIndex));
Oliver Neukumafba9372008-05-13 17:01:25 +0200422 }
Oliver Neukum28965e12015-03-20 14:29:18 +0100423
Oliver Neukum17d80d52008-06-24 15:56:10 +0200424 usb_autopm_put_interface(desc->intf);
Bjørn Morke8537bd2012-01-16 12:41:48 +0100425 mutex_unlock(&desc->wlock);
Oliver Neukumafba9372008-05-13 17:01:25 +0200426outnl:
427 return rv < 0 ? rv : count;
Oliver Neukum28965e12015-03-20 14:29:18 +0100428
429out_free_mem_pm:
430 usb_autopm_put_interface(desc->intf);
431out_free_mem_lock:
432 mutex_unlock(&desc->wlock);
433out_free_mem:
434 kfree(buf);
435 return rv;
Oliver Neukumafba9372008-05-13 17:01:25 +0200436}
437
Bjørn Mork8dd5cd52013-12-20 14:07:24 +0100438/*
439 * clear WDM_READ flag and possibly submit the read urb if resp_count
440 * is non-zero.
441 *
442 * Called with desc->iuspin locked
443 */
444static int clear_wdm_read_flag(struct wdm_device *desc)
445{
446 int rv = 0;
447
448 clear_bit(WDM_READ, &desc->flags);
449
450 /* submit read urb only if the device is waiting for it */
Bjørn Morkf5639262014-01-12 21:48:53 +0100451 if (!desc->resp_count || !--desc->resp_count)
Bjørn Mork8dd5cd52013-12-20 14:07:24 +0100452 goto out;
453
454 set_bit(WDM_RESPONDING, &desc->flags);
455 spin_unlock_irq(&desc->iuspin);
456 rv = usb_submit_urb(desc->response, GFP_KERNEL);
457 spin_lock_irq(&desc->iuspin);
458 if (rv) {
459 dev_err(&desc->intf->dev,
460 "usb_submit_urb failed with result %d\n", rv);
461
462 /* make sure the next notification trigger a submit */
463 clear_bit(WDM_RESPONDING, &desc->flags);
464 desc->resp_count = 0;
465 }
466out:
467 return rv;
468}
469
Oliver Neukumafba9372008-05-13 17:01:25 +0200470static ssize_t wdm_read
471(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
472{
Ben Hutchings711c68b2012-02-12 06:00:41 +0000473 int rv, cntr;
Oliver Neukumafba9372008-05-13 17:01:25 +0200474 int i = 0;
475 struct wdm_device *desc = file->private_data;
476
477
Bjørn Morke8537bd2012-01-16 12:41:48 +0100478 rv = mutex_lock_interruptible(&desc->rlock); /*concurrent reads */
Oliver Neukumafba9372008-05-13 17:01:25 +0200479 if (rv < 0)
480 return -ERESTARTSYS;
481
Ben Hutchings711c68b2012-02-12 06:00:41 +0000482 cntr = ACCESS_ONCE(desc->length);
483 if (cntr == 0) {
Oliver Neukumafba9372008-05-13 17:01:25 +0200484 desc->read = 0;
485retry:
Oliver Neukum7f1dc312009-09-09 10:12:48 +0200486 if (test_bit(WDM_DISCONNECTING, &desc->flags)) {
487 rv = -ENODEV;
488 goto err;
489 }
Oliver Neukumc0f5ece2013-03-12 14:52:42 +0100490 if (test_bit(WDM_OVERFLOW, &desc->flags)) {
491 clear_bit(WDM_OVERFLOW, &desc->flags);
492 rv = -ENOBUFS;
493 goto err;
494 }
Oliver Neukumafba9372008-05-13 17:01:25 +0200495 i++;
Oliver Neukum7f1dc312009-09-09 10:12:48 +0200496 if (file->f_flags & O_NONBLOCK) {
497 if (!test_bit(WDM_READ, &desc->flags)) {
498 rv = cntr ? cntr : -EAGAIN;
499 goto err;
500 }
501 rv = 0;
502 } else {
503 rv = wait_event_interruptible(desc->wait,
504 test_bit(WDM_READ, &desc->flags));
505 }
Oliver Neukumafba9372008-05-13 17:01:25 +0200506
Oliver Neukum7f1dc312009-09-09 10:12:48 +0200507 /* may have happened while we slept */
Oliver Neukum17d80d52008-06-24 15:56:10 +0200508 if (test_bit(WDM_DISCONNECTING, &desc->flags)) {
509 rv = -ENODEV;
510 goto err;
511 }
Bjørn Mork88044202012-02-10 09:44:08 +0100512 if (test_bit(WDM_RESETTING, &desc->flags)) {
513 rv = -EIO;
514 goto err;
515 }
Oliver Neukum17d80d52008-06-24 15:56:10 +0200516 usb_mark_last_busy(interface_to_usbdev(desc->intf));
Oliver Neukumafba9372008-05-13 17:01:25 +0200517 if (rv < 0) {
518 rv = -ERESTARTSYS;
519 goto err;
520 }
521
522 spin_lock_irq(&desc->iuspin);
523
524 if (desc->rerr) { /* read completed, error happened */
Oliver Neukum85e8a0b92015-03-23 14:34:43 +0100525 rv = usb_translate_errors(desc->rerr);
Oliver Neukumafba9372008-05-13 17:01:25 +0200526 desc->rerr = 0;
527 spin_unlock_irq(&desc->iuspin);
Oliver Neukumafba9372008-05-13 17:01:25 +0200528 goto err;
529 }
530 /*
531 * recheck whether we've lost the race
532 * against the completion handler
533 */
534 if (!test_bit(WDM_READ, &desc->flags)) { /* lost race */
535 spin_unlock_irq(&desc->iuspin);
536 goto retry;
537 }
Oliver Neukumc0f5ece2013-03-12 14:52:42 +0100538
Oliver Neukumafba9372008-05-13 17:01:25 +0200539 if (!desc->reslength) { /* zero length read */
Bjørn Morkb086b6b2012-07-02 10:33:14 +0200540 dev_dbg(&desc->intf->dev, "%s: zero length - clearing WDM_READ\n", __func__);
Bjørn Mork8dd5cd52013-12-20 14:07:24 +0100541 rv = clear_wdm_read_flag(desc);
Oliver Neukumafba9372008-05-13 17:01:25 +0200542 spin_unlock_irq(&desc->iuspin);
Bjørn Mork8dd5cd52013-12-20 14:07:24 +0100543 if (rv < 0)
544 goto err;
Oliver Neukumafba9372008-05-13 17:01:25 +0200545 goto retry;
546 }
Ben Hutchings711c68b2012-02-12 06:00:41 +0000547 cntr = desc->length;
Oliver Neukumafba9372008-05-13 17:01:25 +0200548 spin_unlock_irq(&desc->iuspin);
549 }
550
Ben Hutchings711c68b2012-02-12 06:00:41 +0000551 if (cntr > count)
552 cntr = count;
Oliver Neukumafba9372008-05-13 17:01:25 +0200553 rv = copy_to_user(buffer, desc->ubuf, cntr);
554 if (rv > 0) {
555 rv = -EFAULT;
556 goto err;
557 }
558
Ben Hutchings711c68b2012-02-12 06:00:41 +0000559 spin_lock_irq(&desc->iuspin);
560
Oliver Neukumafba9372008-05-13 17:01:25 +0200561 for (i = 0; i < desc->length - cntr; i++)
562 desc->ubuf[i] = desc->ubuf[i + cntr];
563
564 desc->length -= cntr;
Oliver Neukum87d65e52008-06-19 14:20:18 +0200565 /* in case we had outstanding data */
Bjørn Mork8dd5cd52013-12-20 14:07:24 +0100566 if (!desc->length)
567 clear_wdm_read_flag(desc);
568 spin_unlock_irq(&desc->iuspin);
Oliver Neukumafba9372008-05-13 17:01:25 +0200569 rv = cntr;
570
571err:
Bjørn Morke8537bd2012-01-16 12:41:48 +0100572 mutex_unlock(&desc->rlock);
Oliver Neukumafba9372008-05-13 17:01:25 +0200573 return rv;
574}
575
576static int wdm_flush(struct file *file, fl_owner_t id)
577{
578 struct wdm_device *desc = file->private_data;
579
580 wait_event(desc->wait, !test_bit(WDM_IN_USE, &desc->flags));
Bjørn Mork6b0b79d2012-05-09 13:53:22 +0200581
582 /* cannot dereference desc->intf if WDM_DISCONNECTING */
583 if (desc->werr < 0 && !test_bit(WDM_DISCONNECTING, &desc->flags))
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700584 dev_err(&desc->intf->dev, "Error in flush path: %d\n",
585 desc->werr);
Oliver Neukumafba9372008-05-13 17:01:25 +0200586
Oliver Neukum24a85ba2012-04-27 14:23:54 +0200587 return usb_translate_errors(desc->werr);
Oliver Neukumafba9372008-05-13 17:01:25 +0200588}
589
590static unsigned int wdm_poll(struct file *file, struct poll_table_struct *wait)
591{
592 struct wdm_device *desc = file->private_data;
593 unsigned long flags;
594 unsigned int mask = 0;
595
596 spin_lock_irqsave(&desc->iuspin, flags);
597 if (test_bit(WDM_DISCONNECTING, &desc->flags)) {
Bjørn Mork616b6932012-05-09 13:53:21 +0200598 mask = POLLHUP | POLLERR;
Oliver Neukumafba9372008-05-13 17:01:25 +0200599 spin_unlock_irqrestore(&desc->iuspin, flags);
600 goto desc_out;
601 }
602 if (test_bit(WDM_READ, &desc->flags))
603 mask = POLLIN | POLLRDNORM;
604 if (desc->rerr || desc->werr)
605 mask |= POLLERR;
606 if (!test_bit(WDM_IN_USE, &desc->flags))
607 mask |= POLLOUT | POLLWRNORM;
608 spin_unlock_irqrestore(&desc->iuspin, flags);
609
610 poll_wait(file, &desc->wait, wait);
611
612desc_out:
613 return mask;
614}
615
616static int wdm_open(struct inode *inode, struct file *file)
617{
618 int minor = iminor(inode);
619 int rv = -ENODEV;
620 struct usb_interface *intf;
621 struct wdm_device *desc;
622
623 mutex_lock(&wdm_mutex);
Bjørn Morkb0c13862012-03-06 17:29:21 +0100624 desc = wdm_find_device_by_minor(minor);
625 if (!desc)
Oliver Neukumafba9372008-05-13 17:01:25 +0200626 goto out;
627
Bjørn Morkb0c13862012-03-06 17:29:21 +0100628 intf = desc->intf;
Oliver Neukumafba9372008-05-13 17:01:25 +0200629 if (test_bit(WDM_DISCONNECTING, &desc->flags))
630 goto out;
Oliver Neukumafba9372008-05-13 17:01:25 +0200631 file->private_data = desc;
632
Oliver Neukum17d80d52008-06-24 15:56:10 +0200633 rv = usb_autopm_get_interface(desc->intf);
Oliver Neukumafba9372008-05-13 17:01:25 +0200634 if (rv < 0) {
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700635 dev_err(&desc->intf->dev, "Error autopm - %d\n", rv);
Oliver Neukumafba9372008-05-13 17:01:25 +0200636 goto out;
637 }
Oliver Neukumafba9372008-05-13 17:01:25 +0200638
Bjørn Morke8537bd2012-01-16 12:41:48 +0100639 /* using write lock to protect desc->count */
640 mutex_lock(&desc->wlock);
Oliver Neukum17d80d52008-06-24 15:56:10 +0200641 if (!desc->count++) {
Oliver Neukumd771d8a2011-04-29 14:12:21 +0200642 desc->werr = 0;
643 desc->rerr = 0;
Oliver Neukum17d80d52008-06-24 15:56:10 +0200644 rv = usb_submit_urb(desc->validity, GFP_KERNEL);
645 if (rv < 0) {
646 desc->count--;
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700647 dev_err(&desc->intf->dev,
648 "Error submitting int urb - %d\n", rv);
Oliver Neukum12a98b22012-04-30 09:57:31 +0200649 rv = usb_translate_errors(rv);
Oliver Neukum17d80d52008-06-24 15:56:10 +0200650 }
651 } else {
652 rv = 0;
653 }
Bjørn Morke8537bd2012-01-16 12:41:48 +0100654 mutex_unlock(&desc->wlock);
Bjørn Mork3cc36152012-03-06 17:29:22 +0100655 if (desc->count == 1)
656 desc->manage_power(intf, 1);
Oliver Neukum17d80d52008-06-24 15:56:10 +0200657 usb_autopm_put_interface(desc->intf);
Oliver Neukumafba9372008-05-13 17:01:25 +0200658out:
659 mutex_unlock(&wdm_mutex);
660 return rv;
661}
662
663static int wdm_release(struct inode *inode, struct file *file)
664{
665 struct wdm_device *desc = file->private_data;
666
667 mutex_lock(&wdm_mutex);
Bjørn Morke8537bd2012-01-16 12:41:48 +0100668
669 /* using write lock to protect desc->count */
670 mutex_lock(&desc->wlock);
Oliver Neukumafba9372008-05-13 17:01:25 +0200671 desc->count--;
Bjørn Morke8537bd2012-01-16 12:41:48 +0100672 mutex_unlock(&desc->wlock);
Oliver Neukum17d80d52008-06-24 15:56:10 +0200673
Oliver Neukumafba9372008-05-13 17:01:25 +0200674 if (!desc->count) {
Bjørn Mork880bca32012-04-30 09:26:11 +0200675 if (!test_bit(WDM_DISCONNECTING, &desc->flags)) {
Bjørn Mork6b0b79d2012-05-09 13:53:22 +0200676 dev_dbg(&desc->intf->dev, "wdm_release: cleanup");
677 kill_urbs(desc);
Greg Suarez73e06862013-10-29 10:29:10 -0700678 spin_lock_irq(&desc->iuspin);
679 desc->resp_count = 0;
680 spin_unlock_irq(&desc->iuspin);
Bjørn Mork3cc36152012-03-06 17:29:22 +0100681 desc->manage_power(desc->intf, 0);
Bjørn Mork880bca32012-04-30 09:26:11 +0200682 } else {
Bjørn Mork6b0b79d2012-05-09 13:53:22 +0200683 /* must avoid dev_printk here as desc->intf is invalid */
684 pr_debug(KBUILD_MODNAME " %s: device gone - cleaning up\n", __func__);
Oliver Neukum2f338c82012-04-27 14:36:37 +0200685 cleanup(desc);
Bjørn Mork880bca32012-04-30 09:26:11 +0200686 }
Oliver Neukumafba9372008-05-13 17:01:25 +0200687 }
688 mutex_unlock(&wdm_mutex);
689 return 0;
690}
691
Bjørn Mork3edce1c2013-03-17 21:00:06 +0100692static long wdm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
693{
694 struct wdm_device *desc = file->private_data;
695 int rv = 0;
696
697 switch (cmd) {
698 case IOCTL_WDM_MAX_COMMAND:
699 if (copy_to_user((void __user *)arg, &desc->wMaxCommand, sizeof(desc->wMaxCommand)))
700 rv = -EFAULT;
701 break;
702 default:
703 rv = -ENOTTY;
704 }
705 return rv;
706}
707
Oliver Neukumafba9372008-05-13 17:01:25 +0200708static const struct file_operations wdm_fops = {
709 .owner = THIS_MODULE,
710 .read = wdm_read,
711 .write = wdm_write,
712 .open = wdm_open,
713 .flush = wdm_flush,
714 .release = wdm_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200715 .poll = wdm_poll,
Bjørn Mork3edce1c2013-03-17 21:00:06 +0100716 .unlocked_ioctl = wdm_ioctl,
717 .compat_ioctl = wdm_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200718 .llseek = noop_llseek,
Oliver Neukumafba9372008-05-13 17:01:25 +0200719};
720
721static struct usb_class_driver wdm_class = {
722 .name = "cdc-wdm%d",
723 .fops = &wdm_fops,
724 .minor_base = WDM_MINOR_BASE,
725};
726
727/* --- error handling --- */
728static void wdm_rxwork(struct work_struct *work)
729{
730 struct wdm_device *desc = container_of(work, struct wdm_device, rxwork);
731 unsigned long flags;
Oliver Neukum6dd433e2013-08-06 14:22:59 +0200732 int rv = 0;
733 int responding;
Oliver Neukumafba9372008-05-13 17:01:25 +0200734
735 spin_lock_irqsave(&desc->iuspin, flags);
736 if (test_bit(WDM_DISCONNECTING, &desc->flags)) {
737 spin_unlock_irqrestore(&desc->iuspin, flags);
738 } else {
Oliver Neukum6dd433e2013-08-06 14:22:59 +0200739 responding = test_and_set_bit(WDM_RESPONDING, &desc->flags);
Oliver Neukumafba9372008-05-13 17:01:25 +0200740 spin_unlock_irqrestore(&desc->iuspin, flags);
Oliver Neukum6dd433e2013-08-06 14:22:59 +0200741 if (!responding)
742 rv = usb_submit_urb(desc->response, GFP_KERNEL);
Oliver Neukumafba9372008-05-13 17:01:25 +0200743 if (rv < 0 && rv != -EPERM) {
744 spin_lock_irqsave(&desc->iuspin, flags);
Oliver Neukum6dd433e2013-08-06 14:22:59 +0200745 clear_bit(WDM_RESPONDING, &desc->flags);
Oliver Neukumafba9372008-05-13 17:01:25 +0200746 if (!test_bit(WDM_DISCONNECTING, &desc->flags))
747 schedule_work(&desc->rxwork);
748 spin_unlock_irqrestore(&desc->iuspin, flags);
749 }
750 }
751}
752
753/* --- hotplug --- */
754
Bjørn Mork3cc36152012-03-06 17:29:22 +0100755static int wdm_create(struct usb_interface *intf, struct usb_endpoint_descriptor *ep,
756 u16 bufsize, int (*manage_power)(struct usb_interface *, int))
Oliver Neukumafba9372008-05-13 17:01:25 +0200757{
Bjørn Mork0dffb482012-03-06 17:29:20 +0100758 int rv = -ENOMEM;
Oliver Neukumafba9372008-05-13 17:01:25 +0200759 struct wdm_device *desc;
Oliver Neukumafba9372008-05-13 17:01:25 +0200760
Oliver Neukumafba9372008-05-13 17:01:25 +0200761 desc = kzalloc(sizeof(struct wdm_device), GFP_KERNEL);
762 if (!desc)
763 goto out;
Bjørn Morkb0c13862012-03-06 17:29:21 +0100764 INIT_LIST_HEAD(&desc->device_list);
Bjørn Morke8537bd2012-01-16 12:41:48 +0100765 mutex_init(&desc->rlock);
766 mutex_init(&desc->wlock);
Oliver Neukumafba9372008-05-13 17:01:25 +0200767 spin_lock_init(&desc->iuspin);
768 init_waitqueue_head(&desc->wait);
Bjørn Mork0dffb482012-03-06 17:29:20 +0100769 desc->wMaxCommand = bufsize;
Oliver Neukum052fbc02009-04-20 17:24:49 +0200770 /* this will be expanded and needed in hardware endianness */
Oliver Neukumafba9372008-05-13 17:01:25 +0200771 desc->inum = cpu_to_le16((u16)intf->cur_altsetting->desc.bInterfaceNumber);
772 desc->intf = intf;
773 INIT_WORK(&desc->rxwork, wdm_rxwork);
774
Oliver Neukum052fbc02009-04-20 17:24:49 +0200775 rv = -EINVAL;
Bjørn Mork0dffb482012-03-06 17:29:20 +0100776 if (!usb_endpoint_is_int_in(ep))
Oliver Neukum052fbc02009-04-20 17:24:49 +0200777 goto err;
Oliver Neukumafba9372008-05-13 17:01:25 +0200778
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700779 desc->wMaxPacketSize = usb_endpoint_maxp(ep);
Oliver Neukumafba9372008-05-13 17:01:25 +0200780
781 desc->orq = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
782 if (!desc->orq)
783 goto err;
784 desc->irq = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
785 if (!desc->irq)
786 goto err;
787
788 desc->validity = usb_alloc_urb(0, GFP_KERNEL);
789 if (!desc->validity)
790 goto err;
791
792 desc->response = usb_alloc_urb(0, GFP_KERNEL);
793 if (!desc->response)
794 goto err;
795
796 desc->command = usb_alloc_urb(0, GFP_KERNEL);
797 if (!desc->command)
798 goto err;
799
800 desc->ubuf = kmalloc(desc->wMaxCommand, GFP_KERNEL);
801 if (!desc->ubuf)
802 goto err;
803
Bjørn Mork8457d992012-01-16 15:12:00 +0100804 desc->sbuf = kmalloc(desc->wMaxPacketSize, GFP_KERNEL);
Oliver Neukumafba9372008-05-13 17:01:25 +0200805 if (!desc->sbuf)
806 goto err;
807
Bjørn Mork8457d992012-01-16 15:12:00 +0100808 desc->inbuf = kmalloc(desc->wMaxCommand, GFP_KERNEL);
Oliver Neukumafba9372008-05-13 17:01:25 +0200809 if (!desc->inbuf)
Bjørn Mork8457d992012-01-16 15:12:00 +0100810 goto err;
Oliver Neukumafba9372008-05-13 17:01:25 +0200811
812 usb_fill_int_urb(
813 desc->validity,
814 interface_to_usbdev(intf),
815 usb_rcvintpipe(interface_to_usbdev(intf), ep->bEndpointAddress),
816 desc->sbuf,
817 desc->wMaxPacketSize,
818 wdm_int_callback,
819 desc,
820 ep->bInterval
821 );
Oliver Neukumafba9372008-05-13 17:01:25 +0200822
Bjørn Mork19b85b32012-01-16 15:11:58 +0100823 desc->irq->bRequestType = (USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE);
824 desc->irq->bRequest = USB_CDC_GET_ENCAPSULATED_RESPONSE;
825 desc->irq->wValue = 0;
Oliver Neukum323ece52015-03-20 14:29:34 +0100826 desc->irq->wIndex = desc->inum; /* already converted */
Bjørn Mork19b85b32012-01-16 15:11:58 +0100827 desc->irq->wLength = cpu_to_le16(desc->wMaxCommand);
828
829 usb_fill_control_urb(
830 desc->response,
Bjørn Mork8143a892012-01-16 15:12:01 +0100831 interface_to_usbdev(intf),
Bjørn Mork19b85b32012-01-16 15:11:58 +0100832 /* using common endpoint 0 */
833 usb_rcvctrlpipe(interface_to_usbdev(desc->intf), 0),
834 (unsigned char *)desc->irq,
835 desc->inbuf,
836 desc->wMaxCommand,
837 wdm_in_callback,
838 desc
839 );
Bjørn Mork19b85b32012-01-16 15:11:58 +0100840
Bjørn Mork3cc36152012-03-06 17:29:22 +0100841 desc->manage_power = manage_power;
842
Bjørn Morkb0c13862012-03-06 17:29:21 +0100843 spin_lock(&wdm_device_list_lock);
844 list_add(&desc->device_list, &wdm_device_list);
845 spin_unlock(&wdm_device_list_lock);
846
Oliver Neukumafba9372008-05-13 17:01:25 +0200847 rv = usb_register_dev(intf, &wdm_class);
Oliver Neukumafba9372008-05-13 17:01:25 +0200848 if (rv < 0)
Bjørn Morkb0c13862012-03-06 17:29:21 +0100849 goto err;
Oliver Neukum052fbc02009-04-20 17:24:49 +0200850 else
Bjørn Mork820c6292012-01-20 04:17:25 +0100851 dev_info(&intf->dev, "%s: USB WDM device\n", dev_name(intf->usb_dev));
Oliver Neukumafba9372008-05-13 17:01:25 +0200852out:
853 return rv;
Oliver Neukumafba9372008-05-13 17:01:25 +0200854err:
Bjørn Mork6286d852012-05-09 13:53:23 +0200855 spin_lock(&wdm_device_list_lock);
856 list_del(&desc->device_list);
857 spin_unlock(&wdm_device_list_lock);
Bjørn Mork0dffb482012-03-06 17:29:20 +0100858 cleanup(desc);
859 return rv;
860}
861
Bjørn Mork3cc36152012-03-06 17:29:22 +0100862static int wdm_manage_power(struct usb_interface *intf, int on)
863{
864 /* need autopm_get/put here to ensure the usbcore sees the new value */
865 int rv = usb_autopm_get_interface(intf);
Bjørn Mork3cc36152012-03-06 17:29:22 +0100866
867 intf->needs_remote_wakeup = on;
Bjørn Mork4144bc82013-11-29 20:17:45 +0100868 if (!rv)
869 usb_autopm_put_interface(intf);
870 return 0;
Bjørn Mork3cc36152012-03-06 17:29:22 +0100871}
872
Bjørn Mork0dffb482012-03-06 17:29:20 +0100873static int wdm_probe(struct usb_interface *intf, const struct usb_device_id *id)
874{
875 int rv = -EINVAL;
876 struct usb_host_interface *iface;
877 struct usb_endpoint_descriptor *ep;
878 struct usb_cdc_dmm_desc *dmhd;
879 u8 *buffer = intf->altsetting->extra;
880 int buflen = intf->altsetting->extralen;
881 u16 maxcom = WDM_DEFAULT_BUFSIZE;
882
883 if (!buffer)
884 goto err;
885 while (buflen > 2) {
886 if (buffer[1] != USB_DT_CS_INTERFACE) {
887 dev_err(&intf->dev, "skipping garbage\n");
888 goto next_desc;
889 }
890
891 switch (buffer[2]) {
892 case USB_CDC_HEADER_TYPE:
893 break;
894 case USB_CDC_DMM_TYPE:
895 dmhd = (struct usb_cdc_dmm_desc *)buffer;
896 maxcom = le16_to_cpu(dmhd->wMaxCommand);
897 dev_dbg(&intf->dev,
898 "Finding maximum buffer length: %d", maxcom);
899 break;
900 default:
901 dev_err(&intf->dev,
902 "Ignoring extra header, type %d, length %d\n",
903 buffer[2], buffer[0]);
904 break;
905 }
906next_desc:
907 buflen -= buffer[0];
908 buffer += buffer[0];
909 }
910
911 iface = intf->cur_altsetting;
912 if (iface->desc.bNumEndpoints != 1)
913 goto err;
914 ep = &iface->endpoint[0].desc;
915
Bjørn Mork3cc36152012-03-06 17:29:22 +0100916 rv = wdm_create(intf, ep, maxcom, &wdm_manage_power);
Bjørn Mork0dffb482012-03-06 17:29:20 +0100917
918err:
Oliver Neukumafba9372008-05-13 17:01:25 +0200919 return rv;
920}
921
Bjørn Mork3cc36152012-03-06 17:29:22 +0100922/**
923 * usb_cdc_wdm_register - register a WDM subdriver
924 * @intf: usb interface the subdriver will associate with
925 * @ep: interrupt endpoint to monitor for notifications
926 * @bufsize: maximum message size to support for read/write
927 *
928 * Create WDM usb class character device and associate it with intf
929 * without binding, allowing another driver to manage the interface.
930 *
931 * The subdriver will manage the given interrupt endpoint exclusively
932 * and will issue control requests referring to the given intf. It
933 * will otherwise avoid interferring, and in particular not do
934 * usb_set_intfdata/usb_get_intfdata on intf.
935 *
936 * The return value is a pointer to the subdriver's struct usb_driver.
937 * The registering driver is responsible for calling this subdriver's
938 * disconnect, suspend, resume, pre_reset and post_reset methods from
939 * its own.
940 */
941struct usb_driver *usb_cdc_wdm_register(struct usb_interface *intf,
942 struct usb_endpoint_descriptor *ep,
943 int bufsize,
944 int (*manage_power)(struct usb_interface *, int))
945{
946 int rv = -EINVAL;
947
948 rv = wdm_create(intf, ep, bufsize, manage_power);
949 if (rv < 0)
950 goto err;
951
952 return &wdm_driver;
953err:
954 return ERR_PTR(rv);
955}
956EXPORT_SYMBOL(usb_cdc_wdm_register);
957
Oliver Neukumafba9372008-05-13 17:01:25 +0200958static void wdm_disconnect(struct usb_interface *intf)
959{
960 struct wdm_device *desc;
961 unsigned long flags;
962
963 usb_deregister_dev(intf, &wdm_class);
Bjørn Morkb0c13862012-03-06 17:29:21 +0100964 desc = wdm_find_device(intf);
Oliver Neukumafba9372008-05-13 17:01:25 +0200965 mutex_lock(&wdm_mutex);
Oliver Neukumafba9372008-05-13 17:01:25 +0200966
967 /* the spinlock makes sure no new urbs are generated in the callbacks */
968 spin_lock_irqsave(&desc->iuspin, flags);
969 set_bit(WDM_DISCONNECTING, &desc->flags);
970 set_bit(WDM_READ, &desc->flags);
Oliver Neukum17d80d52008-06-24 15:56:10 +0200971 /* to terminate pending flushes */
Oliver Neukumafba9372008-05-13 17:01:25 +0200972 clear_bit(WDM_IN_USE, &desc->flags);
973 spin_unlock_irqrestore(&desc->iuspin, flags);
Bjørn Mork62aaf242012-01-16 15:11:57 +0100974 wake_up_all(&desc->wait);
Bjørn Morke8537bd2012-01-16 12:41:48 +0100975 mutex_lock(&desc->rlock);
976 mutex_lock(&desc->wlock);
Oliver Neukumafba9372008-05-13 17:01:25 +0200977 kill_urbs(desc);
Oliver Neukumd93d16e2010-02-27 20:56:47 +0100978 cancel_work_sync(&desc->rxwork);
Bjørn Morke8537bd2012-01-16 12:41:48 +0100979 mutex_unlock(&desc->wlock);
980 mutex_unlock(&desc->rlock);
Bjørn Mork6286d852012-05-09 13:53:23 +0200981
982 /* the desc->intf pointer used as list key is now invalid */
983 spin_lock(&wdm_device_list_lock);
984 list_del(&desc->device_list);
985 spin_unlock(&wdm_device_list_lock);
986
Oliver Neukumafba9372008-05-13 17:01:25 +0200987 if (!desc->count)
988 cleanup(desc);
Bjørn Mork880bca32012-04-30 09:26:11 +0200989 else
990 dev_dbg(&intf->dev, "%s: %d open files - postponing cleanup\n", __func__, desc->count);
Oliver Neukumafba9372008-05-13 17:01:25 +0200991 mutex_unlock(&wdm_mutex);
992}
993
Oliver Neukumd93d16e2010-02-27 20:56:47 +0100994#ifdef CONFIG_PM
Oliver Neukum17d80d52008-06-24 15:56:10 +0200995static int wdm_suspend(struct usb_interface *intf, pm_message_t message)
996{
Bjørn Morkb0c13862012-03-06 17:29:21 +0100997 struct wdm_device *desc = wdm_find_device(intf);
Oliver Neukum17d80d52008-06-24 15:56:10 +0200998 int rv = 0;
999
1000 dev_dbg(&desc->intf->dev, "wdm%d_suspend\n", intf->minor);
1001
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001002 /* if this is an autosuspend the caller does the locking */
Bjørn Morke8537bd2012-01-16 12:41:48 +01001003 if (!PMSG_IS_AUTO(message)) {
1004 mutex_lock(&desc->rlock);
1005 mutex_lock(&desc->wlock);
1006 }
Oliver Neukum62e66852010-02-27 20:56:22 +01001007 spin_lock_irq(&desc->iuspin);
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001008
Alan Stern5b1b0b82011-08-19 23:49:48 +02001009 if (PMSG_IS_AUTO(message) &&
Oliver Neukum922a5ea2010-02-27 20:54:59 +01001010 (test_bit(WDM_IN_USE, &desc->flags)
1011 || test_bit(WDM_RESPONDING, &desc->flags))) {
Oliver Neukum62e66852010-02-27 20:56:22 +01001012 spin_unlock_irq(&desc->iuspin);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001013 rv = -EBUSY;
1014 } else {
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001015
Oliver Neukumbeb1d352010-02-27 20:55:52 +01001016 set_bit(WDM_SUSPENDING, &desc->flags);
Oliver Neukum62e66852010-02-27 20:56:22 +01001017 spin_unlock_irq(&desc->iuspin);
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001018 /* callback submits work - order is essential */
Oliver Neukum17d80d52008-06-24 15:56:10 +02001019 kill_urbs(desc);
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001020 cancel_work_sync(&desc->rxwork);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001021 }
Bjørn Morke8537bd2012-01-16 12:41:48 +01001022 if (!PMSG_IS_AUTO(message)) {
1023 mutex_unlock(&desc->wlock);
1024 mutex_unlock(&desc->rlock);
1025 }
Oliver Neukum17d80d52008-06-24 15:56:10 +02001026
1027 return rv;
1028}
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001029#endif
Oliver Neukum17d80d52008-06-24 15:56:10 +02001030
1031static int recover_from_urb_loss(struct wdm_device *desc)
1032{
1033 int rv = 0;
1034
1035 if (desc->count) {
1036 rv = usb_submit_urb(desc->validity, GFP_NOIO);
1037 if (rv < 0)
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -07001038 dev_err(&desc->intf->dev,
1039 "Error resume submitting int urb - %d\n", rv);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001040 }
1041 return rv;
1042}
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001043
1044#ifdef CONFIG_PM
Oliver Neukum17d80d52008-06-24 15:56:10 +02001045static int wdm_resume(struct usb_interface *intf)
1046{
Bjørn Morkb0c13862012-03-06 17:29:21 +01001047 struct wdm_device *desc = wdm_find_device(intf);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001048 int rv;
1049
1050 dev_dbg(&desc->intf->dev, "wdm%d_resume\n", intf->minor);
Oliver Neukum338124c2010-02-27 20:57:12 +01001051
Oliver Neukumbeb1d352010-02-27 20:55:52 +01001052 clear_bit(WDM_SUSPENDING, &desc->flags);
Oliver Neukum62e66852010-02-27 20:56:22 +01001053 rv = recover_from_urb_loss(desc);
Oliver Neukum338124c2010-02-27 20:57:12 +01001054
Oliver Neukum17d80d52008-06-24 15:56:10 +02001055 return rv;
1056}
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001057#endif
Oliver Neukum17d80d52008-06-24 15:56:10 +02001058
1059static int wdm_pre_reset(struct usb_interface *intf)
1060{
Bjørn Morkb0c13862012-03-06 17:29:21 +01001061 struct wdm_device *desc = wdm_find_device(intf);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001062
Oliver Neukumd771d8a2011-04-29 14:12:21 +02001063 /*
1064 * we notify everybody using poll of
1065 * an exceptional situation
1066 * must be done before recovery lest a spontaneous
1067 * message from the device is lost
1068 */
1069 spin_lock_irq(&desc->iuspin);
Bjørn Mork88044202012-02-10 09:44:08 +01001070 set_bit(WDM_RESETTING, &desc->flags); /* inform read/write */
1071 set_bit(WDM_READ, &desc->flags); /* unblock read */
1072 clear_bit(WDM_IN_USE, &desc->flags); /* unblock write */
Oliver Neukumd771d8a2011-04-29 14:12:21 +02001073 desc->rerr = -EINTR;
1074 spin_unlock_irq(&desc->iuspin);
1075 wake_up_all(&desc->wait);
Bjørn Mork88044202012-02-10 09:44:08 +01001076 mutex_lock(&desc->rlock);
1077 mutex_lock(&desc->wlock);
1078 kill_urbs(desc);
1079 cancel_work_sync(&desc->rxwork);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001080 return 0;
1081}
1082
1083static int wdm_post_reset(struct usb_interface *intf)
1084{
Bjørn Morkb0c13862012-03-06 17:29:21 +01001085 struct wdm_device *desc = wdm_find_device(intf);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001086 int rv;
1087
Oliver Neukumc0f5ece2013-03-12 14:52:42 +01001088 clear_bit(WDM_OVERFLOW, &desc->flags);
Bjørn Mork88044202012-02-10 09:44:08 +01001089 clear_bit(WDM_RESETTING, &desc->flags);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001090 rv = recover_from_urb_loss(desc);
Bjørn Morke8537bd2012-01-16 12:41:48 +01001091 mutex_unlock(&desc->wlock);
1092 mutex_unlock(&desc->rlock);
Oliver Neukum17d80d52008-06-24 15:56:10 +02001093 return 0;
1094}
1095
Oliver Neukumafba9372008-05-13 17:01:25 +02001096static struct usb_driver wdm_driver = {
1097 .name = "cdc_wdm",
1098 .probe = wdm_probe,
1099 .disconnect = wdm_disconnect,
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001100#ifdef CONFIG_PM
Oliver Neukum17d80d52008-06-24 15:56:10 +02001101 .suspend = wdm_suspend,
1102 .resume = wdm_resume,
1103 .reset_resume = wdm_resume,
Oliver Neukumd93d16e2010-02-27 20:56:47 +01001104#endif
Oliver Neukum17d80d52008-06-24 15:56:10 +02001105 .pre_reset = wdm_pre_reset,
1106 .post_reset = wdm_post_reset,
Oliver Neukumafba9372008-05-13 17:01:25 +02001107 .id_table = wdm_ids,
Oliver Neukum17d80d52008-06-24 15:56:10 +02001108 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001109 .disable_hub_initiated_lpm = 1,
Oliver Neukumafba9372008-05-13 17:01:25 +02001110};
1111
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -08001112module_usb_driver(wdm_driver);
Oliver Neukumafba9372008-05-13 17:01:25 +02001113
1114MODULE_AUTHOR(DRIVER_AUTHOR);
Oliver Neukum87d65e52008-06-19 14:20:18 +02001115MODULE_DESCRIPTION(DRIVER_DESC);
Oliver Neukumafba9372008-05-13 17:01:25 +02001116MODULE_LICENSE("GPL");