blob: 13faac0ea99f6315db2fb2720fdd6443dfa7464a [file] [log] [blame]
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001/*
2 * WUSB Wire Adapter
3 * Data transfer and URB enqueing
4 *
5 * Copyright (C) 2005-2006 Intel Corporation
6 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 * 02110-1301, USA.
21 *
22 *
23 * How transfers work: get a buffer, break it up in segments (segment
24 * size is a multiple of the maxpacket size). For each segment issue a
25 * segment request (struct wa_xfer_*), then send the data buffer if
26 * out or nothing if in (all over the DTO endpoint).
27 *
28 * For each submitted segment request, a notification will come over
29 * the NEP endpoint and a transfer result (struct xfer_result) will
30 * arrive in the DTI URB. Read it, get the xfer ID, see if there is
31 * data coming (inbound transfer), schedule a read and handle it.
32 *
33 * Sounds simple, it is a pain to implement.
34 *
35 *
36 * ENTRY POINTS
37 *
38 * FIXME
39 *
40 * LIFE CYCLE / STATE DIAGRAM
41 *
42 * FIXME
43 *
44 * THIS CODE IS DISGUSTING
45 *
46 * Warned you are; it's my second try and still not happy with it.
47 *
48 * NOTES:
49 *
50 * - No iso
51 *
52 * - Supports DMA xfers, control, bulk and maybe interrupt
53 *
54 * - Does not recycle unused rpipes
55 *
56 * An rpipe is assigned to an endpoint the first time it is used,
57 * and then it's there, assigned, until the endpoint is disabled
58 * (destroyed [{h,d}wahc_op_ep_disable()]. The assignment of the
59 * rpipe to the endpoint is done under the wa->rpipe_sem semaphore
60 * (should be a mutex).
61 *
62 * Two methods it could be done:
63 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030064 * (a) set up a timer every time an rpipe's use count drops to 1
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +010065 * (which means unused) or when a transfer ends. Reset the
66 * timer when a xfer is queued. If the timer expires, release
67 * the rpipe [see rpipe_ep_disable()].
68 *
69 * (b) when looking for free rpipes to attach [rpipe_get_by_ep()],
70 * when none are found go over the list, check their endpoint
71 * and their activity record (if no last-xfer-done-ts in the
72 * last x seconds) take it
73 *
74 * However, due to the fact that we have a set of limited
75 * resources (max-segments-at-the-same-time per xfer,
76 * xfers-per-ripe, blocks-per-rpipe, rpipes-per-host), at the end
77 * we are going to have to rebuild all this based on an scheduler,
78 * to where we have a list of transactions to do and based on the
Gilles Espinassef77f13e2010-03-29 15:41:47 +020079 * availability of the different required components (blocks,
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +010080 * rpipes, segment slots, etc), we go scheduling them. Painful.
81 */
82#include <linux/init.h>
83#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090084#include <linux/slab.h>
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +010085#include <linux/hash.h>
Manuel Zerpies9708cd22011-06-16 14:15:16 +020086#include <linux/ratelimit.h>
Paul Gortmakerf940fcd2011-05-27 09:56:31 -040087#include <linux/export.h>
Thomas Pugliese2b81c082013-06-11 10:39:31 -050088#include <linux/scatterlist.h>
David Vrabelbce83692008-12-22 18:22:50 +000089
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +010090#include "wa-hc.h"
91#include "wusbhc.h"
92
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +010093enum {
94 WA_SEGS_MAX = 255,
95};
96
97enum wa_seg_status {
98 WA_SEG_NOTREADY,
99 WA_SEG_READY,
100 WA_SEG_DELAYED,
101 WA_SEG_SUBMITTED,
102 WA_SEG_PENDING,
103 WA_SEG_DTI_PENDING,
104 WA_SEG_DONE,
105 WA_SEG_ERROR,
106 WA_SEG_ABORTED,
107};
108
109static void wa_xfer_delayed_run(struct wa_rpipe *);
110
111/*
112 * Life cycle governed by 'struct urb' (the refcount of the struct is
113 * that of the 'struct urb' and usb_free_urb() would free the whole
114 * struct).
115 */
116struct wa_seg {
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500117 struct urb tr_urb; /* transfer request urb. */
118 struct urb *dto_urb; /* for data output. */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100119 struct list_head list_node; /* for rpipe->req_list */
120 struct wa_xfer *xfer; /* out xfer */
121 u8 index; /* which segment we are */
122 enum wa_seg_status status;
123 ssize_t result; /* bytes xfered or error */
124 struct wa_xfer_hdr xfer_hdr;
125 u8 xfer_extra[]; /* xtra space for xfer_hdr_ctl */
126};
127
Thomas Pugliese66591015d2013-08-15 14:37:43 -0500128static inline void wa_seg_init(struct wa_seg *seg)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100129{
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500130 usb_init_urb(&seg->tr_urb);
Thomas Pugliese66591015d2013-08-15 14:37:43 -0500131
132 /* set the remaining memory to 0. */
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500133 memset(((void *)seg) + sizeof(seg->tr_urb), 0,
134 sizeof(*seg) - sizeof(seg->tr_urb));
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100135}
136
137/*
138 * Protected by xfer->lock
139 *
140 */
141struct wa_xfer {
142 struct kref refcnt;
143 struct list_head list_node;
144 spinlock_t lock;
145 u32 id;
146
147 struct wahc *wa; /* Wire adapter we are plugged to */
148 struct usb_host_endpoint *ep;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300149 struct urb *urb; /* URB we are transferring for */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100150 struct wa_seg **seg; /* transfer segments */
151 u8 segs, segs_submitted, segs_done;
152 unsigned is_inbound:1;
153 unsigned is_dma:1;
154 size_t seg_size;
155 int result;
156
157 gfp_t gfp; /* allocation mask */
158
159 struct wusb_dev *wusb_dev; /* for activity timestamps */
160};
161
162static inline void wa_xfer_init(struct wa_xfer *xfer)
163{
164 kref_init(&xfer->refcnt);
165 INIT_LIST_HEAD(&xfer->list_node);
166 spin_lock_init(&xfer->lock);
167}
168
169/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300170 * Destroy a transfer structure
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100171 *
Thomas Pugliese79731cb2013-08-15 14:37:42 -0500172 * Note that freeing xfer->seg[cnt]->urb will free the containing
173 * xfer->seg[cnt] memory that was allocated by __wa_xfer_setup_segs.
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100174 */
175static void wa_xfer_destroy(struct kref *_xfer)
176{
177 struct wa_xfer *xfer = container_of(_xfer, struct wa_xfer, refcnt);
178 if (xfer->seg) {
179 unsigned cnt;
180 for (cnt = 0; cnt < xfer->segs; cnt++) {
Thomas Pugliesed9936702013-09-26 14:08:13 -0500181 if (xfer->seg[cnt]) {
182 if (xfer->seg[cnt]->dto_urb) {
183 kfree(xfer->seg[cnt]->dto_urb->sg);
184 usb_free_urb(xfer->seg[cnt]->dto_urb);
185 }
186 usb_free_urb(&xfer->seg[cnt]->tr_urb);
187 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100188 }
Thomas Pugliesed9936702013-09-26 14:08:13 -0500189 kfree(xfer->seg);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100190 }
191 kfree(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100192}
193
194static void wa_xfer_get(struct wa_xfer *xfer)
195{
196 kref_get(&xfer->refcnt);
197}
198
199static void wa_xfer_put(struct wa_xfer *xfer)
200{
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100201 kref_put(&xfer->refcnt, wa_xfer_destroy);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100202}
203
204/*
205 * xfer is referenced
206 *
207 * xfer->lock has to be unlocked
208 *
209 * We take xfer->lock for setting the result; this is a barrier
210 * against drivers/usb/core/hcd.c:unlink1() being called after we call
211 * usb_hcd_giveback_urb() and wa_urb_dequeue() trying to get a
212 * reference to the transfer.
213 */
214static void wa_xfer_giveback(struct wa_xfer *xfer)
215{
216 unsigned long flags;
David Vrabelbce83692008-12-22 18:22:50 +0000217
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100218 spin_lock_irqsave(&xfer->wa->xfer_list_lock, flags);
219 list_del_init(&xfer->list_node);
220 spin_unlock_irqrestore(&xfer->wa->xfer_list_lock, flags);
221 /* FIXME: segmentation broken -- kills DWA */
222 wusbhc_giveback_urb(xfer->wa->wusb, xfer->urb, xfer->result);
223 wa_put(xfer->wa);
224 wa_xfer_put(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100225}
226
227/*
228 * xfer is referenced
229 *
230 * xfer->lock has to be unlocked
231 */
232static void wa_xfer_completion(struct wa_xfer *xfer)
233{
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100234 if (xfer->wusb_dev)
235 wusb_dev_put(xfer->wusb_dev);
236 rpipe_put(xfer->ep->hcpriv);
237 wa_xfer_giveback(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100238}
239
240/*
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100241 * Initialize a transfer's ID
242 *
243 * We need to use a sequential number; if we use the pointer or the
244 * hash of the pointer, it can repeat over sequential transfers and
245 * then it will confuse the HWA....wonder why in hell they put a 32
246 * bit handle in there then.
247 */
248static void wa_xfer_id_init(struct wa_xfer *xfer)
249{
250 xfer->id = atomic_add_return(1, &xfer->wa->xfer_id_count);
251}
252
Thomas Pugliesefdd160c2013-09-27 15:33:35 -0500253/* Return the xfer's ID. */
254static inline u32 wa_xfer_id(struct wa_xfer *xfer)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100255{
256 return xfer->id;
257}
258
Thomas Pugliesefdd160c2013-09-27 15:33:35 -0500259/* Return the xfer's ID in transport format (little endian). */
260static inline __le32 wa_xfer_id_le32(struct wa_xfer *xfer)
261{
262 return cpu_to_le32(xfer->id);
263}
264
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100265/*
Thomas Puglieseb9c84be2013-09-27 15:33:36 -0500266 * If transfer is done, wrap it up and return true
267 *
268 * xfer->lock has to be locked
269 */
270static unsigned __wa_xfer_is_done(struct wa_xfer *xfer)
271{
272 struct device *dev = &xfer->wa->usb_iface->dev;
273 unsigned result, cnt;
274 struct wa_seg *seg;
275 struct urb *urb = xfer->urb;
276 unsigned found_short = 0;
277
278 result = xfer->segs_done == xfer->segs_submitted;
279 if (result == 0)
280 goto out;
281 urb->actual_length = 0;
282 for (cnt = 0; cnt < xfer->segs; cnt++) {
283 seg = xfer->seg[cnt];
284 switch (seg->status) {
285 case WA_SEG_DONE:
286 if (found_short && seg->result > 0) {
287 dev_dbg(dev, "xfer %p ID %08X#%u: bad short segments (%zu)\n",
288 xfer, wa_xfer_id(xfer), cnt,
289 seg->result);
290 urb->status = -EINVAL;
291 goto out;
292 }
293 urb->actual_length += seg->result;
294 if (seg->result < xfer->seg_size
295 && cnt != xfer->segs-1)
296 found_short = 1;
297 dev_dbg(dev, "xfer %p ID %08X#%u: DONE short %d "
298 "result %zu urb->actual_length %d\n",
299 xfer, wa_xfer_id(xfer), seg->index, found_short,
300 seg->result, urb->actual_length);
301 break;
302 case WA_SEG_ERROR:
303 xfer->result = seg->result;
Thomas Pugliesecccd3a252013-09-30 22:48:46 -0500304 dev_dbg(dev, "xfer %p ID %08X#%u: ERROR result %zu(0x%08zX)\n",
Thomas Puglieseb9c84be2013-09-27 15:33:36 -0500305 xfer, wa_xfer_id(xfer), seg->index, seg->result,
306 seg->result);
307 goto out;
308 case WA_SEG_ABORTED:
309 dev_dbg(dev, "xfer %p ID %08X#%u ABORTED: result %d\n",
310 xfer, wa_xfer_id(xfer), seg->index,
311 urb->status);
312 xfer->result = urb->status;
313 goto out;
314 default:
315 dev_warn(dev, "xfer %p ID %08X#%u: is_done bad state %d\n",
316 xfer, wa_xfer_id(xfer), cnt, seg->status);
317 xfer->result = -EINVAL;
318 goto out;
319 }
320 }
321 xfer->result = 0;
322out:
323 return result;
324}
325
326/*
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100327 * Search for a transfer list ID on the HCD's URB list
328 *
329 * For 32 bit architectures, we use the pointer itself; for 64 bits, a
330 * 32-bit hash of the pointer.
331 *
332 * @returns NULL if not found.
333 */
334static struct wa_xfer *wa_xfer_get_by_id(struct wahc *wa, u32 id)
335{
336 unsigned long flags;
337 struct wa_xfer *xfer_itr;
338 spin_lock_irqsave(&wa->xfer_list_lock, flags);
339 list_for_each_entry(xfer_itr, &wa->xfer_list, list_node) {
340 if (id == xfer_itr->id) {
341 wa_xfer_get(xfer_itr);
342 goto out;
343 }
344 }
345 xfer_itr = NULL;
346out:
347 spin_unlock_irqrestore(&wa->xfer_list_lock, flags);
348 return xfer_itr;
349}
350
351struct wa_xfer_abort_buffer {
352 struct urb urb;
353 struct wa_xfer_abort cmd;
354};
355
356static void __wa_xfer_abort_cb(struct urb *urb)
357{
358 struct wa_xfer_abort_buffer *b = urb->context;
359 usb_put_urb(&b->urb);
360}
361
362/*
363 * Aborts an ongoing transaction
364 *
365 * Assumes the transfer is referenced and locked and in a submitted
366 * state (mainly that there is an endpoint/rpipe assigned).
367 *
368 * The callback (see above) does nothing but freeing up the data by
369 * putting the URB. Because the URB is allocated at the head of the
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -0500370 * struct, the whole space we allocated is kfreed. *
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100371 */
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -0500372static int __wa_xfer_abort(struct wa_xfer *xfer)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100373{
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -0500374 int result = -ENOMEM;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100375 struct device *dev = &xfer->wa->usb_iface->dev;
376 struct wa_xfer_abort_buffer *b;
377 struct wa_rpipe *rpipe = xfer->ep->hcpriv;
378
379 b = kmalloc(sizeof(*b), GFP_ATOMIC);
380 if (b == NULL)
381 goto error_kmalloc;
382 b->cmd.bLength = sizeof(b->cmd);
383 b->cmd.bRequestType = WA_XFER_ABORT;
384 b->cmd.wRPipe = rpipe->descr.wRPipeIndex;
Thomas Pugliesefdd160c2013-09-27 15:33:35 -0500385 b->cmd.dwTransferID = wa_xfer_id_le32(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100386
387 usb_init_urb(&b->urb);
388 usb_fill_bulk_urb(&b->urb, xfer->wa->usb_dev,
389 usb_sndbulkpipe(xfer->wa->usb_dev,
390 xfer->wa->dto_epd->bEndpointAddress),
391 &b->cmd, sizeof(b->cmd), __wa_xfer_abort_cb, b);
392 result = usb_submit_urb(&b->urb, GFP_ATOMIC);
393 if (result < 0)
394 goto error_submit;
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -0500395 return result; /* callback frees! */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100396
397
398error_submit:
399 if (printk_ratelimit())
400 dev_err(dev, "xfer %p: Can't submit abort request: %d\n",
401 xfer, result);
402 kfree(b);
403error_kmalloc:
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -0500404 return result;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100405
406}
407
408/*
409 *
410 * @returns < 0 on error, transfer segment request size if ok
411 */
412static ssize_t __wa_xfer_setup_sizes(struct wa_xfer *xfer,
413 enum wa_xfer_type *pxfer_type)
414{
415 ssize_t result;
416 struct device *dev = &xfer->wa->usb_iface->dev;
417 size_t maxpktsize;
418 struct urb *urb = xfer->urb;
419 struct wa_rpipe *rpipe = xfer->ep->hcpriv;
420
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100421 switch (rpipe->descr.bmAttribute & 0x3) {
422 case USB_ENDPOINT_XFER_CONTROL:
423 *pxfer_type = WA_XFER_TYPE_CTL;
424 result = sizeof(struct wa_xfer_ctl);
425 break;
426 case USB_ENDPOINT_XFER_INT:
427 case USB_ENDPOINT_XFER_BULK:
428 *pxfer_type = WA_XFER_TYPE_BI;
429 result = sizeof(struct wa_xfer_bi);
430 break;
431 case USB_ENDPOINT_XFER_ISOC:
432 dev_err(dev, "FIXME: ISOC not implemented\n");
433 result = -ENOSYS;
434 goto error;
435 default:
436 /* never happens */
437 BUG();
438 result = -EINVAL; /* shut gcc up */
439 };
440 xfer->is_inbound = urb->pipe & USB_DIR_IN ? 1 : 0;
441 xfer->is_dma = urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP ? 1 : 0;
442 xfer->seg_size = le16_to_cpu(rpipe->descr.wBlocks)
443 * 1 << (xfer->wa->wa_descr->bRPipeBlockSize - 1);
444 /* Compute the segment size and make sure it is a multiple of
445 * the maxpktsize (WUSB1.0[8.3.3.1])...not really too much of
446 * a check (FIXME) */
447 maxpktsize = le16_to_cpu(rpipe->descr.wMaxPacketSize);
448 if (xfer->seg_size < maxpktsize) {
449 dev_err(dev, "HW BUG? seg_size %zu smaller than maxpktsize "
450 "%zu\n", xfer->seg_size, maxpktsize);
451 result = -EINVAL;
452 goto error;
453 }
454 xfer->seg_size = (xfer->seg_size / maxpktsize) * maxpktsize;
Thomas Pugliese2b81c082013-06-11 10:39:31 -0500455 xfer->segs = DIV_ROUND_UP(urb->transfer_buffer_length, xfer->seg_size);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100456 if (xfer->segs >= WA_SEGS_MAX) {
457 dev_err(dev, "BUG? ops, number of segments %d bigger than %d\n",
458 (int)(urb->transfer_buffer_length / xfer->seg_size),
459 WA_SEGS_MAX);
460 result = -EINVAL;
461 goto error;
462 }
463 if (xfer->segs == 0 && *pxfer_type == WA_XFER_TYPE_CTL)
464 xfer->segs = 1;
465error:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100466 return result;
467}
468
David Vrabelbce83692008-12-22 18:22:50 +0000469/* Fill in the common request header and xfer-type specific data. */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100470static void __wa_xfer_setup_hdr0(struct wa_xfer *xfer,
471 struct wa_xfer_hdr *xfer_hdr0,
472 enum wa_xfer_type xfer_type,
473 size_t xfer_hdr_size)
474{
475 struct wa_rpipe *rpipe = xfer->ep->hcpriv;
476
477 xfer_hdr0 = &xfer->seg[0]->xfer_hdr;
478 xfer_hdr0->bLength = xfer_hdr_size;
479 xfer_hdr0->bRequestType = xfer_type;
480 xfer_hdr0->wRPipe = rpipe->descr.wRPipeIndex;
Thomas Pugliesefdd160c2013-09-27 15:33:35 -0500481 xfer_hdr0->dwTransferID = wa_xfer_id_le32(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100482 xfer_hdr0->bTransferSegment = 0;
483 switch (xfer_type) {
484 case WA_XFER_TYPE_CTL: {
485 struct wa_xfer_ctl *xfer_ctl =
486 container_of(xfer_hdr0, struct wa_xfer_ctl, hdr);
487 xfer_ctl->bmAttribute = xfer->is_inbound ? 1 : 0;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100488 memcpy(&xfer_ctl->baSetupData, xfer->urb->setup_packet,
489 sizeof(xfer_ctl->baSetupData));
490 break;
491 }
492 case WA_XFER_TYPE_BI:
493 break;
494 case WA_XFER_TYPE_ISO:
495 printk(KERN_ERR "FIXME: ISOC not implemented\n");
496 default:
497 BUG();
498 };
499}
500
501/*
502 * Callback for the OUT data phase of the segment request
503 *
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500504 * Check wa_seg_tr_cb(); most comments also apply here because this
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100505 * function does almost the same thing and they work closely
506 * together.
507 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300508 * If the seg request has failed but this DTO phase has succeeded,
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500509 * wa_seg_tr_cb() has already failed the segment and moved the
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100510 * status to WA_SEG_ERROR, so this will go through 'case 0' and
511 * effectively do nothing.
512 */
513static void wa_seg_dto_cb(struct urb *urb)
514{
515 struct wa_seg *seg = urb->context;
516 struct wa_xfer *xfer = seg->xfer;
517 struct wahc *wa;
518 struct device *dev;
519 struct wa_rpipe *rpipe;
520 unsigned long flags;
521 unsigned rpipe_ready = 0;
522 u8 done = 0;
523
Thomas Pugliesed5b5c9f2013-09-26 14:08:15 -0500524 /* free the sg if it was used. */
525 kfree(urb->sg);
526 urb->sg = NULL;
527
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100528 switch (urb->status) {
529 case 0:
530 spin_lock_irqsave(&xfer->lock, flags);
531 wa = xfer->wa;
532 dev = &wa->usb_iface->dev;
David Vrabelbce83692008-12-22 18:22:50 +0000533 dev_dbg(dev, "xfer %p#%u: data out done (%d bytes)\n",
534 xfer, seg->index, urb->actual_length);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100535 if (seg->status < WA_SEG_PENDING)
536 seg->status = WA_SEG_PENDING;
537 seg->result = urb->actual_length;
538 spin_unlock_irqrestore(&xfer->lock, flags);
539 break;
540 case -ECONNRESET: /* URB unlinked; no need to do anything */
541 case -ENOENT: /* as it was done by the who unlinked us */
542 break;
543 default: /* Other errors ... */
544 spin_lock_irqsave(&xfer->lock, flags);
545 wa = xfer->wa;
546 dev = &wa->usb_iface->dev;
547 rpipe = xfer->ep->hcpriv;
David Vrabelbce83692008-12-22 18:22:50 +0000548 dev_dbg(dev, "xfer %p#%u: data out error %d\n",
549 xfer, seg->index, urb->status);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100550 if (edc_inc(&wa->nep_edc, EDC_MAX_ERRORS,
551 EDC_ERROR_TIMEFRAME)){
552 dev_err(dev, "DTO: URB max acceptable errors "
553 "exceeded, resetting device\n");
554 wa_reset_all(wa);
555 }
556 if (seg->status != WA_SEG_ERROR) {
557 seg->status = WA_SEG_ERROR;
558 seg->result = urb->status;
559 xfer->segs_done++;
560 __wa_xfer_abort(xfer);
561 rpipe_ready = rpipe_avail_inc(rpipe);
562 done = __wa_xfer_is_done(xfer);
563 }
564 spin_unlock_irqrestore(&xfer->lock, flags);
565 if (done)
566 wa_xfer_completion(xfer);
567 if (rpipe_ready)
568 wa_xfer_delayed_run(rpipe);
569 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100570}
571
572/*
573 * Callback for the segment request
574 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200575 * If successful transition state (unless already transitioned or
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100576 * outbound transfer); otherwise, take a note of the error, mark this
577 * segment done and try completion.
578 *
579 * Note we don't access until we are sure that the transfer hasn't
580 * been cancelled (ECONNRESET, ENOENT), which could mean that
581 * seg->xfer could be already gone.
582 *
583 * We have to check before setting the status to WA_SEG_PENDING
584 * because sometimes the xfer result callback arrives before this
585 * callback (geeeeeeze), so it might happen that we are already in
586 * another state. As well, we don't set it if the transfer is inbound,
587 * as in that case, wa_seg_dto_cb will do it when the OUT data phase
588 * finishes.
589 */
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500590static void wa_seg_tr_cb(struct urb *urb)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100591{
592 struct wa_seg *seg = urb->context;
593 struct wa_xfer *xfer = seg->xfer;
594 struct wahc *wa;
595 struct device *dev;
596 struct wa_rpipe *rpipe;
597 unsigned long flags;
598 unsigned rpipe_ready;
599 u8 done = 0;
600
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100601 switch (urb->status) {
602 case 0:
603 spin_lock_irqsave(&xfer->lock, flags);
604 wa = xfer->wa;
605 dev = &wa->usb_iface->dev;
David Vrabelbce83692008-12-22 18:22:50 +0000606 dev_dbg(dev, "xfer %p#%u: request done\n", xfer, seg->index);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100607 if (xfer->is_inbound && seg->status < WA_SEG_PENDING)
608 seg->status = WA_SEG_PENDING;
609 spin_unlock_irqrestore(&xfer->lock, flags);
610 break;
611 case -ECONNRESET: /* URB unlinked; no need to do anything */
612 case -ENOENT: /* as it was done by the who unlinked us */
613 break;
614 default: /* Other errors ... */
615 spin_lock_irqsave(&xfer->lock, flags);
616 wa = xfer->wa;
617 dev = &wa->usb_iface->dev;
618 rpipe = xfer->ep->hcpriv;
619 if (printk_ratelimit())
Thomas Puglieseb9c84be2013-09-27 15:33:36 -0500620 dev_err(dev, "xfer %p ID 0x%08X#%u: request error %d\n",
621 xfer, wa_xfer_id(xfer), seg->index,
622 urb->status);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100623 if (edc_inc(&wa->nep_edc, EDC_MAX_ERRORS,
624 EDC_ERROR_TIMEFRAME)){
625 dev_err(dev, "DTO: URB max acceptable errors "
626 "exceeded, resetting device\n");
627 wa_reset_all(wa);
628 }
629 usb_unlink_urb(seg->dto_urb);
630 seg->status = WA_SEG_ERROR;
631 seg->result = urb->status;
632 xfer->segs_done++;
633 __wa_xfer_abort(xfer);
634 rpipe_ready = rpipe_avail_inc(rpipe);
635 done = __wa_xfer_is_done(xfer);
636 spin_unlock_irqrestore(&xfer->lock, flags);
637 if (done)
638 wa_xfer_completion(xfer);
639 if (rpipe_ready)
640 wa_xfer_delayed_run(rpipe);
641 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100642}
643
Thomas Puglieseffd6d172013-09-26 14:08:14 -0500644/*
645 * Allocate an SG list to store bytes_to_transfer bytes and copy the
Thomas Pugliese2b81c082013-06-11 10:39:31 -0500646 * subset of the in_sg that matches the buffer subset
Thomas Puglieseffd6d172013-09-26 14:08:14 -0500647 * we are about to transfer.
648 */
Thomas Pugliese2b81c082013-06-11 10:39:31 -0500649static struct scatterlist *wa_xfer_create_subset_sg(struct scatterlist *in_sg,
650 const unsigned int bytes_transferred,
651 const unsigned int bytes_to_transfer, unsigned int *out_num_sgs)
652{
653 struct scatterlist *out_sg;
654 unsigned int bytes_processed = 0, offset_into_current_page_data = 0,
655 nents;
656 struct scatterlist *current_xfer_sg = in_sg;
657 struct scatterlist *current_seg_sg, *last_seg_sg;
658
659 /* skip previously transferred pages. */
660 while ((current_xfer_sg) &&
661 (bytes_processed < bytes_transferred)) {
662 bytes_processed += current_xfer_sg->length;
663
664 /* advance the sg if current segment starts on or past the
665 next page. */
666 if (bytes_processed <= bytes_transferred)
667 current_xfer_sg = sg_next(current_xfer_sg);
668 }
669
670 /* the data for the current segment starts in current_xfer_sg.
671 calculate the offset. */
672 if (bytes_processed > bytes_transferred) {
673 offset_into_current_page_data = current_xfer_sg->length -
674 (bytes_processed - bytes_transferred);
675 }
676
677 /* calculate the number of pages needed by this segment. */
678 nents = DIV_ROUND_UP((bytes_to_transfer +
679 offset_into_current_page_data +
680 current_xfer_sg->offset),
681 PAGE_SIZE);
682
683 out_sg = kmalloc((sizeof(struct scatterlist) * nents), GFP_ATOMIC);
684 if (out_sg) {
685 sg_init_table(out_sg, nents);
686
687 /* copy the portion of the incoming SG that correlates to the
688 * data to be transferred by this segment to the segment SG. */
689 last_seg_sg = current_seg_sg = out_sg;
690 bytes_processed = 0;
691
692 /* reset nents and calculate the actual number of sg entries
693 needed. */
694 nents = 0;
695 while ((bytes_processed < bytes_to_transfer) &&
696 current_seg_sg && current_xfer_sg) {
697 unsigned int page_len = min((current_xfer_sg->length -
698 offset_into_current_page_data),
699 (bytes_to_transfer - bytes_processed));
700
701 sg_set_page(current_seg_sg, sg_page(current_xfer_sg),
702 page_len,
703 current_xfer_sg->offset +
704 offset_into_current_page_data);
705
706 bytes_processed += page_len;
707
708 last_seg_sg = current_seg_sg;
709 current_seg_sg = sg_next(current_seg_sg);
710 current_xfer_sg = sg_next(current_xfer_sg);
711
712 /* only the first page may require additional offset. */
713 offset_into_current_page_data = 0;
714 nents++;
715 }
716
717 /* update num_sgs and terminate the list since we may have
718 * concatenated pages. */
719 sg_mark_end(last_seg_sg);
720 *out_num_sgs = nents;
721 }
722
723 return out_sg;
724}
725
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100726/*
Thomas Puglieseffd6d172013-09-26 14:08:14 -0500727 * Populate buffer ptr and size, DMA buffer or SG list for the dto urb.
728 */
729static int __wa_populate_dto_urb(struct wa_xfer *xfer,
730 struct wa_seg *seg, size_t buf_itr_offset, size_t buf_itr_size)
731{
732 int result = 0;
733
734 if (xfer->is_dma) {
735 seg->dto_urb->transfer_dma =
736 xfer->urb->transfer_dma + buf_itr_offset;
737 seg->dto_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
738 seg->dto_urb->sg = NULL;
739 seg->dto_urb->num_sgs = 0;
740 } else {
741 /* do buffer or SG processing. */
742 seg->dto_urb->transfer_flags &=
743 ~URB_NO_TRANSFER_DMA_MAP;
744 /* this should always be 0 before a resubmit. */
745 seg->dto_urb->num_mapped_sgs = 0;
746
747 if (xfer->urb->transfer_buffer) {
748 seg->dto_urb->transfer_buffer =
749 xfer->urb->transfer_buffer +
750 buf_itr_offset;
751 seg->dto_urb->sg = NULL;
752 seg->dto_urb->num_sgs = 0;
753 } else {
754 seg->dto_urb->transfer_buffer = NULL;
755
756 /*
757 * allocate an SG list to store seg_size bytes
758 * and copy the subset of the xfer->urb->sg that
759 * matches the buffer subset we are about to
760 * read.
761 */
762 seg->dto_urb->sg = wa_xfer_create_subset_sg(
763 xfer->urb->sg,
764 buf_itr_offset, buf_itr_size,
765 &(seg->dto_urb->num_sgs));
766 if (!(seg->dto_urb->sg))
767 result = -ENOMEM;
768 }
769 }
770 seg->dto_urb->transfer_buffer_length = buf_itr_size;
771
772 return result;
773}
774
775/*
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100776 * Allocate the segs array and initialize each of them
777 *
778 * The segments are freed by wa_xfer_destroy() when the xfer use count
779 * drops to zero; however, because each segment is given the same life
780 * cycle as the USB URB it contains, it is actually freed by
781 * usb_put_urb() on the contained USB URB (twisted, eh?).
782 */
783static int __wa_xfer_setup_segs(struct wa_xfer *xfer, size_t xfer_hdr_size)
784{
785 int result, cnt;
786 size_t alloc_size = sizeof(*xfer->seg[0])
787 - sizeof(xfer->seg[0]->xfer_hdr) + xfer_hdr_size;
788 struct usb_device *usb_dev = xfer->wa->usb_dev;
789 const struct usb_endpoint_descriptor *dto_epd = xfer->wa->dto_epd;
790 struct wa_seg *seg;
791 size_t buf_itr, buf_size, buf_itr_size;
792
793 result = -ENOMEM;
David Vrabel92c4d9b2008-10-15 14:50:10 +0100794 xfer->seg = kcalloc(xfer->segs, sizeof(xfer->seg[0]), GFP_ATOMIC);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100795 if (xfer->seg == NULL)
796 goto error_segs_kzalloc;
797 buf_itr = 0;
798 buf_size = xfer->urb->transfer_buffer_length;
799 for (cnt = 0; cnt < xfer->segs; cnt++) {
Thomas Pugliese66591015d2013-08-15 14:37:43 -0500800 seg = xfer->seg[cnt] = kmalloc(alloc_size, GFP_ATOMIC);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100801 if (seg == NULL)
Thomas Pugliese66591015d2013-08-15 14:37:43 -0500802 goto error_seg_kmalloc;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100803 wa_seg_init(seg);
804 seg->xfer = xfer;
805 seg->index = cnt;
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500806 usb_fill_bulk_urb(&seg->tr_urb, usb_dev,
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100807 usb_sndbulkpipe(usb_dev,
808 dto_epd->bEndpointAddress),
809 &seg->xfer_hdr, xfer_hdr_size,
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500810 wa_seg_tr_cb, seg);
Thomas Pugliese2b81c082013-06-11 10:39:31 -0500811 buf_itr_size = min(buf_size, xfer->seg_size);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100812 if (xfer->is_inbound == 0 && buf_size > 0) {
Thomas Pugliese2b81c082013-06-11 10:39:31 -0500813 /* outbound data. */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100814 seg->dto_urb = usb_alloc_urb(0, GFP_ATOMIC);
815 if (seg->dto_urb == NULL)
816 goto error_dto_alloc;
817 usb_fill_bulk_urb(
818 seg->dto_urb, usb_dev,
819 usb_sndbulkpipe(usb_dev,
820 dto_epd->bEndpointAddress),
821 NULL, 0, wa_seg_dto_cb, seg);
Thomas Pugliese2b81c082013-06-11 10:39:31 -0500822
Thomas Puglieseffd6d172013-09-26 14:08:14 -0500823 /* fill in the xfer buffer information. */
824 result = __wa_populate_dto_urb(xfer, seg,
825 buf_itr, buf_itr_size);
Thomas Pugliese2b81c082013-06-11 10:39:31 -0500826
Thomas Puglieseffd6d172013-09-26 14:08:14 -0500827 if (result < 0)
828 goto error_seg_outbound_populate;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100829 }
830 seg->status = WA_SEG_READY;
831 buf_itr += buf_itr_size;
832 buf_size -= buf_itr_size;
833 }
834 return 0;
835
Thomas Puglieseffd6d172013-09-26 14:08:14 -0500836 /*
837 * Free the memory for the current segment which failed to init.
838 * Use the fact that cnt is left at were it failed. The remaining
839 * segments will be cleaned up by wa_xfer_destroy.
840 */
841error_seg_outbound_populate:
Thomas Pugliese11b1bf82013-08-15 14:37:41 -0500842 usb_free_urb(xfer->seg[cnt]->dto_urb);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100843error_dto_alloc:
844 kfree(xfer->seg[cnt]);
Thomas Puglieseffd6d172013-09-26 14:08:14 -0500845 xfer->seg[cnt] = NULL;
Thomas Pugliese66591015d2013-08-15 14:37:43 -0500846error_seg_kmalloc:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100847error_segs_kzalloc:
848 return result;
849}
850
851/*
852 * Allocates all the stuff needed to submit a transfer
853 *
854 * Breaks the whole data buffer in a list of segments, each one has a
855 * structure allocated to it and linked in xfer->seg[index]
856 *
857 * FIXME: merge setup_segs() and the last part of this function, no
858 * need to do two for loops when we could run everything in a
859 * single one
860 */
861static int __wa_xfer_setup(struct wa_xfer *xfer, struct urb *urb)
862{
863 int result;
864 struct device *dev = &xfer->wa->usb_iface->dev;
865 enum wa_xfer_type xfer_type = 0; /* shut up GCC */
866 size_t xfer_hdr_size, cnt, transfer_size;
867 struct wa_xfer_hdr *xfer_hdr0, *xfer_hdr;
868
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100869 result = __wa_xfer_setup_sizes(xfer, &xfer_type);
870 if (result < 0)
871 goto error_setup_sizes;
872 xfer_hdr_size = result;
873 result = __wa_xfer_setup_segs(xfer, xfer_hdr_size);
874 if (result < 0) {
875 dev_err(dev, "xfer %p: Failed to allocate %d segments: %d\n",
876 xfer, xfer->segs, result);
877 goto error_setup_segs;
878 }
879 /* Fill the first header */
880 xfer_hdr0 = &xfer->seg[0]->xfer_hdr;
881 wa_xfer_id_init(xfer);
882 __wa_xfer_setup_hdr0(xfer, xfer_hdr0, xfer_type, xfer_hdr_size);
883
884 /* Fill remainig headers */
885 xfer_hdr = xfer_hdr0;
886 transfer_size = urb->transfer_buffer_length;
887 xfer_hdr0->dwTransferLength = transfer_size > xfer->seg_size ?
888 xfer->seg_size : transfer_size;
889 transfer_size -= xfer->seg_size;
890 for (cnt = 1; cnt < xfer->segs; cnt++) {
891 xfer_hdr = &xfer->seg[cnt]->xfer_hdr;
892 memcpy(xfer_hdr, xfer_hdr0, xfer_hdr_size);
893 xfer_hdr->bTransferSegment = cnt;
894 xfer_hdr->dwTransferLength = transfer_size > xfer->seg_size ?
895 cpu_to_le32(xfer->seg_size)
896 : cpu_to_le32(transfer_size);
897 xfer->seg[cnt]->status = WA_SEG_READY;
898 transfer_size -= xfer->seg_size;
899 }
900 xfer_hdr->bTransferSegment |= 0x80; /* this is the last segment */
901 result = 0;
902error_setup_segs:
903error_setup_sizes:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100904 return result;
905}
906
907/*
908 *
909 *
910 * rpipe->seg_lock is held!
911 */
912static int __wa_seg_submit(struct wa_rpipe *rpipe, struct wa_xfer *xfer,
913 struct wa_seg *seg)
914{
915 int result;
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500916 /* submit the transfer request. */
917 result = usb_submit_urb(&seg->tr_urb, GFP_ATOMIC);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100918 if (result < 0) {
919 printk(KERN_ERR "xfer %p#%u: REQ submit failed: %d\n",
920 xfer, seg->index, result);
921 goto error_seg_submit;
922 }
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500923 /* submit the out data if this is an out request. */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100924 if (seg->dto_urb) {
925 result = usb_submit_urb(seg->dto_urb, GFP_ATOMIC);
926 if (result < 0) {
927 printk(KERN_ERR "xfer %p#%u: DTO submit failed: %d\n",
928 xfer, seg->index, result);
929 goto error_dto_submit;
930 }
931 }
932 seg->status = WA_SEG_SUBMITTED;
933 rpipe_avail_dec(rpipe);
934 return 0;
935
936error_dto_submit:
Thomas Pugliese09d94cb2013-09-26 10:49:40 -0500937 usb_unlink_urb(&seg->tr_urb);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100938error_seg_submit:
939 seg->status = WA_SEG_ERROR;
940 seg->result = result;
941 return result;
942}
943
944/*
945 * Execute more queued request segments until the maximum concurrent allowed
946 *
947 * The ugly unlock/lock sequence on the error path is needed as the
948 * xfer->lock normally nests the seg_lock and not viceversa.
949 *
950 */
951static void wa_xfer_delayed_run(struct wa_rpipe *rpipe)
952{
953 int result;
954 struct device *dev = &rpipe->wa->usb_iface->dev;
955 struct wa_seg *seg;
956 struct wa_xfer *xfer;
957 unsigned long flags;
958
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100959 spin_lock_irqsave(&rpipe->seg_lock, flags);
960 while (atomic_read(&rpipe->segs_available) > 0
961 && !list_empty(&rpipe->seg_list)) {
Thomas Pugliesee9a088f2013-08-12 10:10:53 -0500962 seg = list_first_entry(&(rpipe->seg_list), struct wa_seg,
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100963 list_node);
964 list_del(&seg->list_node);
965 xfer = seg->xfer;
966 result = __wa_seg_submit(rpipe, xfer, seg);
Thomas Puglieseb9c84be2013-09-27 15:33:36 -0500967 dev_dbg(dev, "xfer %p ID %08X#%u submitted from delayed [%d segments available] %d\n",
968 xfer, wa_xfer_id(xfer), seg->index,
969 atomic_read(&rpipe->segs_available), result);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100970 if (unlikely(result < 0)) {
971 spin_unlock_irqrestore(&rpipe->seg_lock, flags);
972 spin_lock_irqsave(&xfer->lock, flags);
973 __wa_xfer_abort(xfer);
974 xfer->segs_done++;
975 spin_unlock_irqrestore(&xfer->lock, flags);
976 spin_lock_irqsave(&rpipe->seg_lock, flags);
977 }
978 }
979 spin_unlock_irqrestore(&rpipe->seg_lock, flags);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +0100980}
981
982/*
983 *
984 * xfer->lock is taken
985 *
986 * On failure submitting we just stop submitting and return error;
987 * wa_urb_enqueue_b() will execute the completion path
988 */
989static int __wa_xfer_submit(struct wa_xfer *xfer)
990{
991 int result;
992 struct wahc *wa = xfer->wa;
993 struct device *dev = &wa->usb_iface->dev;
994 unsigned cnt;
995 struct wa_seg *seg;
996 unsigned long flags;
997 struct wa_rpipe *rpipe = xfer->ep->hcpriv;
998 size_t maxrequests = le16_to_cpu(rpipe->descr.wRequests);
999 u8 available;
1000 u8 empty;
1001
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001002 spin_lock_irqsave(&wa->xfer_list_lock, flags);
1003 list_add_tail(&xfer->list_node, &wa->xfer_list);
1004 spin_unlock_irqrestore(&wa->xfer_list_lock, flags);
1005
1006 BUG_ON(atomic_read(&rpipe->segs_available) > maxrequests);
1007 result = 0;
1008 spin_lock_irqsave(&rpipe->seg_lock, flags);
1009 for (cnt = 0; cnt < xfer->segs; cnt++) {
1010 available = atomic_read(&rpipe->segs_available);
1011 empty = list_empty(&rpipe->seg_list);
1012 seg = xfer->seg[cnt];
Thomas Puglieseb9c84be2013-09-27 15:33:36 -05001013 dev_dbg(dev, "xfer %p ID 0x%08X#%u: available %u empty %u (%s)\n",
1014 xfer, wa_xfer_id(xfer), cnt, available, empty,
David Vrabelbce83692008-12-22 18:22:50 +00001015 available == 0 || !empty ? "delayed" : "submitted");
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001016 if (available == 0 || !empty) {
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001017 seg->status = WA_SEG_DELAYED;
1018 list_add_tail(&seg->list_node, &rpipe->seg_list);
1019 } else {
1020 result = __wa_seg_submit(rpipe, xfer, seg);
David Vrabelbce83692008-12-22 18:22:50 +00001021 if (result < 0) {
1022 __wa_xfer_abort(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001023 goto error_seg_submit;
David Vrabelbce83692008-12-22 18:22:50 +00001024 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001025 }
1026 xfer->segs_submitted++;
1027 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001028error_seg_submit:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001029 spin_unlock_irqrestore(&rpipe->seg_lock, flags);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001030 return result;
1031}
1032
1033/*
1034 * Second part of a URB/transfer enqueuement
1035 *
1036 * Assumes this comes from wa_urb_enqueue() [maybe through
1037 * wa_urb_enqueue_run()]. At this point:
1038 *
1039 * xfer->wa filled and refcounted
1040 * xfer->ep filled with rpipe refcounted if
1041 * delayed == 0
1042 * xfer->urb filled and refcounted (this is the case when called
1043 * from wa_urb_enqueue() as we come from usb_submit_urb()
1044 * and when called by wa_urb_enqueue_run(), as we took an
1045 * extra ref dropped by _run() after we return).
1046 * xfer->gfp filled
1047 *
1048 * If we fail at __wa_xfer_submit(), then we just check if we are done
1049 * and if so, we run the completion procedure. However, if we are not
1050 * yet done, we do nothing and wait for the completion handlers from
1051 * the submitted URBs or from the xfer-result path to kick in. If xfer
1052 * result never kicks in, the xfer will timeout from the USB code and
1053 * dequeue() will be called.
1054 */
Thomas Pugliese33186c42013-10-01 10:14:56 -05001055static int wa_urb_enqueue_b(struct wa_xfer *xfer)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001056{
1057 int result;
1058 unsigned long flags;
1059 struct urb *urb = xfer->urb;
1060 struct wahc *wa = xfer->wa;
1061 struct wusbhc *wusbhc = wa->wusb;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001062 struct wusb_dev *wusb_dev;
1063 unsigned done;
1064
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001065 result = rpipe_get_by_ep(wa, xfer->ep, urb, xfer->gfp);
Thomas Pugliese33186c42013-10-01 10:14:56 -05001066 if (result < 0) {
1067 pr_err("%s: error_rpipe_get\n", __func__);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001068 goto error_rpipe_get;
Thomas Pugliese33186c42013-10-01 10:14:56 -05001069 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001070 result = -ENODEV;
1071 /* FIXME: segmentation broken -- kills DWA */
1072 mutex_lock(&wusbhc->mutex); /* get a WUSB dev */
Jiri Slaby49fa0922009-03-11 21:47:40 +01001073 if (urb->dev == NULL) {
1074 mutex_unlock(&wusbhc->mutex);
Thomas Pugliese33186c42013-10-01 10:14:56 -05001075 pr_err("%s: error usb dev gone\n", __func__);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001076 goto error_dev_gone;
Jiri Slaby49fa0922009-03-11 21:47:40 +01001077 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001078 wusb_dev = __wusb_dev_get_by_usb_dev(wusbhc, urb->dev);
1079 if (wusb_dev == NULL) {
1080 mutex_unlock(&wusbhc->mutex);
Thomas Pugliese33186c42013-10-01 10:14:56 -05001081 pr_err("%s: error wusb dev gone\n", __func__);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001082 goto error_dev_gone;
1083 }
1084 mutex_unlock(&wusbhc->mutex);
1085
1086 spin_lock_irqsave(&xfer->lock, flags);
1087 xfer->wusb_dev = wusb_dev;
1088 result = urb->status;
Thomas Pugliese33186c42013-10-01 10:14:56 -05001089 if (urb->status != -EINPROGRESS) {
1090 pr_err("%s: error_dequeued\n", __func__);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001091 goto error_dequeued;
Thomas Pugliese33186c42013-10-01 10:14:56 -05001092 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001093
1094 result = __wa_xfer_setup(xfer, urb);
Thomas Pugliese33186c42013-10-01 10:14:56 -05001095 if (result < 0) {
1096 pr_err("%s: error_xfer_setup\n", __func__);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001097 goto error_xfer_setup;
Thomas Pugliese33186c42013-10-01 10:14:56 -05001098 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001099 result = __wa_xfer_submit(xfer);
Thomas Pugliese33186c42013-10-01 10:14:56 -05001100 if (result < 0) {
1101 pr_err("%s: error_xfer_submit\n", __func__);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001102 goto error_xfer_submit;
Thomas Pugliese33186c42013-10-01 10:14:56 -05001103 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001104 spin_unlock_irqrestore(&xfer->lock, flags);
Thomas Pugliese33186c42013-10-01 10:14:56 -05001105 return 0;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001106
Thomas Pugliese33186c42013-10-01 10:14:56 -05001107 /*
1108 * this is basically wa_xfer_completion() broken up wa_xfer_giveback()
1109 * does a wa_xfer_put() that will call wa_xfer_destroy() and undo
1110 * setup().
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001111 */
1112error_xfer_setup:
1113error_dequeued:
1114 spin_unlock_irqrestore(&xfer->lock, flags);
1115 /* FIXME: segmentation broken, kills DWA */
1116 if (wusb_dev)
1117 wusb_dev_put(wusb_dev);
1118error_dev_gone:
1119 rpipe_put(xfer->ep->hcpriv);
1120error_rpipe_get:
1121 xfer->result = result;
Thomas Pugliese33186c42013-10-01 10:14:56 -05001122 return result;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001123
1124error_xfer_submit:
1125 done = __wa_xfer_is_done(xfer);
1126 xfer->result = result;
1127 spin_unlock_irqrestore(&xfer->lock, flags);
1128 if (done)
1129 wa_xfer_completion(xfer);
Thomas Pugliese33186c42013-10-01 10:14:56 -05001130 /* return success since the completion routine will run. */
1131 return 0;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001132}
1133
1134/*
1135 * Execute the delayed transfers in the Wire Adapter @wa
1136 *
1137 * We need to be careful here, as dequeue() could be called in the
1138 * middle. That's why we do the whole thing under the
Thomas Pugliesee9a088f2013-08-12 10:10:53 -05001139 * wa->xfer_list_lock. If dequeue() jumps in, it first locks xfer->lock
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001140 * and then checks the list -- so as we would be acquiring in inverse
Thomas Pugliesee9a088f2013-08-12 10:10:53 -05001141 * order, we move the delayed list to a separate list while locked and then
1142 * submit them without the list lock held.
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001143 */
1144void wa_urb_enqueue_run(struct work_struct *ws)
1145{
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001146 struct wahc *wa = container_of(ws, struct wahc, xfer_enqueue_work);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001147 struct wa_xfer *xfer, *next;
1148 struct urb *urb;
Thomas Pugliesee9a088f2013-08-12 10:10:53 -05001149 LIST_HEAD(tmp_list);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001150
Thomas Pugliesee9a088f2013-08-12 10:10:53 -05001151 /* Create a copy of the wa->xfer_delayed_list while holding the lock */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001152 spin_lock_irq(&wa->xfer_list_lock);
Thomas Pugliesee9a088f2013-08-12 10:10:53 -05001153 list_cut_position(&tmp_list, &wa->xfer_delayed_list,
1154 wa->xfer_delayed_list.prev);
1155 spin_unlock_irq(&wa->xfer_list_lock);
1156
1157 /*
1158 * enqueue from temp list without list lock held since wa_urb_enqueue_b
1159 * can take xfer->lock as well as lock mutexes.
1160 */
1161 list_for_each_entry_safe(xfer, next, &tmp_list, list_node) {
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001162 list_del_init(&xfer->list_node);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001163
1164 urb = xfer->urb;
Thomas Pugliese33186c42013-10-01 10:14:56 -05001165 if (wa_urb_enqueue_b(xfer) < 0)
1166 wa_xfer_giveback(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001167 usb_put_urb(urb); /* taken when queuing */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001168 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001169}
1170EXPORT_SYMBOL_GPL(wa_urb_enqueue_run);
1171
1172/*
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001173 * Process the errored transfers on the Wire Adapter outside of interrupt.
1174 */
1175void wa_process_errored_transfers_run(struct work_struct *ws)
1176{
1177 struct wahc *wa = container_of(ws, struct wahc, xfer_error_work);
1178 struct wa_xfer *xfer, *next;
1179 LIST_HEAD(tmp_list);
1180
1181 pr_info("%s: Run delayed STALL processing.\n", __func__);
1182
1183 /* Create a copy of the wa->xfer_errored_list while holding the lock */
1184 spin_lock_irq(&wa->xfer_list_lock);
1185 list_cut_position(&tmp_list, &wa->xfer_errored_list,
1186 wa->xfer_errored_list.prev);
1187 spin_unlock_irq(&wa->xfer_list_lock);
1188
1189 /*
1190 * run rpipe_clear_feature_stalled from temp list without list lock
1191 * held.
1192 */
1193 list_for_each_entry_safe(xfer, next, &tmp_list, list_node) {
1194 struct usb_host_endpoint *ep;
1195 unsigned long flags;
1196 struct wa_rpipe *rpipe;
1197
1198 spin_lock_irqsave(&xfer->lock, flags);
1199 ep = xfer->ep;
1200 rpipe = ep->hcpriv;
1201 spin_unlock_irqrestore(&xfer->lock, flags);
1202
1203 /* clear RPIPE feature stalled without holding a lock. */
1204 rpipe_clear_feature_stalled(wa, ep);
1205
1206 /* complete the xfer. This removes it from the tmp list. */
1207 wa_xfer_completion(xfer);
1208
1209 /* check for work. */
1210 wa_xfer_delayed_run(rpipe);
1211 }
1212}
1213EXPORT_SYMBOL_GPL(wa_process_errored_transfers_run);
1214
1215/*
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001216 * Submit a transfer to the Wire Adapter in a delayed way
1217 *
1218 * The process of enqueuing involves possible sleeps() [see
1219 * enqueue_b(), for the rpipe_get() and the mutex_lock()]. If we are
1220 * in an atomic section, we defer the enqueue_b() call--else we call direct.
1221 *
1222 * @urb: We own a reference to it done by the HCI Linux USB stack that
1223 * will be given up by calling usb_hcd_giveback_urb() or by
1224 * returning error from this function -> ergo we don't have to
1225 * refcount it.
1226 */
1227int wa_urb_enqueue(struct wahc *wa, struct usb_host_endpoint *ep,
1228 struct urb *urb, gfp_t gfp)
1229{
1230 int result;
1231 struct device *dev = &wa->usb_iface->dev;
1232 struct wa_xfer *xfer;
1233 unsigned long my_flags;
1234 unsigned cant_sleep = irqs_disabled() | in_atomic();
1235
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001236 if ((urb->transfer_buffer == NULL)
1237 && (urb->sg == NULL)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001238 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
1239 && urb->transfer_buffer_length != 0) {
1240 dev_err(dev, "BUG? urb %p: NULL xfer buffer & NODMA\n", urb);
1241 dump_stack();
1242 }
1243
1244 result = -ENOMEM;
1245 xfer = kzalloc(sizeof(*xfer), gfp);
1246 if (xfer == NULL)
1247 goto error_kmalloc;
1248
1249 result = -ENOENT;
1250 if (urb->status != -EINPROGRESS) /* cancelled */
1251 goto error_dequeued; /* before starting? */
1252 wa_xfer_init(xfer);
1253 xfer->wa = wa_get(wa);
1254 xfer->urb = urb;
1255 xfer->gfp = gfp;
1256 xfer->ep = ep;
1257 urb->hcpriv = xfer;
David Vrabelbce83692008-12-22 18:22:50 +00001258
1259 dev_dbg(dev, "xfer %p urb %p pipe 0x%02x [%d bytes] %s %s %s\n",
1260 xfer, urb, urb->pipe, urb->transfer_buffer_length,
1261 urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP ? "dma" : "nodma",
1262 urb->pipe & USB_DIR_IN ? "inbound" : "outbound",
1263 cant_sleep ? "deferred" : "inline");
1264
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001265 if (cant_sleep) {
1266 usb_get_urb(urb);
1267 spin_lock_irqsave(&wa->xfer_list_lock, my_flags);
1268 list_add_tail(&xfer->list_node, &wa->xfer_delayed_list);
1269 spin_unlock_irqrestore(&wa->xfer_list_lock, my_flags);
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001270 queue_work(wusbd, &wa->xfer_enqueue_work);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001271 } else {
Thomas Pugliese33186c42013-10-01 10:14:56 -05001272 result = wa_urb_enqueue_b(xfer);
1273 if (result < 0) {
1274 /*
1275 * URB submit/enqueue failed. Clean up, return an
1276 * error and do not run the callback. This avoids
1277 * an infinite submit/complete loop.
1278 */
1279 dev_err(dev, "%s: URB enqueue failed: %d\n",
1280 __func__, result);
1281 wa_put(xfer->wa);
1282 wa_xfer_put(xfer);
1283 return result;
1284 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001285 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001286 return 0;
1287
1288error_dequeued:
1289 kfree(xfer);
1290error_kmalloc:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001291 return result;
1292}
1293EXPORT_SYMBOL_GPL(wa_urb_enqueue);
1294
1295/*
1296 * Dequeue a URB and make sure uwb_hcd_giveback_urb() [completion
1297 * handler] is called.
1298 *
1299 * Until a transfer goes successfully through wa_urb_enqueue() it
1300 * needs to be dequeued with completion calling; when stuck in delayed
1301 * or before wa_xfer_setup() is called, we need to do completion.
1302 *
1303 * not setup If there is no hcpriv yet, that means that that enqueue
1304 * still had no time to set the xfer up. Because
1305 * urb->status should be other than -EINPROGRESS,
1306 * enqueue() will catch that and bail out.
1307 *
1308 * If the transfer has gone through setup, we just need to clean it
1309 * up. If it has gone through submit(), we have to abort it [with an
1310 * asynch request] and then make sure we cancel each segment.
1311 *
1312 */
1313int wa_urb_dequeue(struct wahc *wa, struct urb *urb)
1314{
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001315 unsigned long flags, flags2;
1316 struct wa_xfer *xfer;
1317 struct wa_seg *seg;
1318 struct wa_rpipe *rpipe;
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001319 unsigned cnt, done = 0, xfer_abort_pending;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001320 unsigned rpipe_ready = 0;
1321
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001322 xfer = urb->hcpriv;
1323 if (xfer == NULL) {
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001324 /*
1325 * Nothing setup yet enqueue will see urb->status !=
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001326 * -EINPROGRESS (by hcd layer) and bail out with
1327 * error, no need to do completion
1328 */
1329 BUG_ON(urb->status == -EINPROGRESS);
1330 goto out;
1331 }
1332 spin_lock_irqsave(&xfer->lock, flags);
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001333 pr_debug("%s: DEQUEUE xfer id 0x%08X\n", __func__, wa_xfer_id(xfer));
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001334 rpipe = xfer->ep->hcpriv;
Thomas Puglieseec58fad2013-08-09 09:52:13 -05001335 if (rpipe == NULL) {
1336 pr_debug("%s: xfer id 0x%08X has no RPIPE. %s",
1337 __func__, wa_xfer_id(xfer),
1338 "Probably already aborted.\n" );
1339 goto out_unlock;
1340 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001341 /* Check the delayed list -> if there, release and complete */
1342 spin_lock_irqsave(&wa->xfer_list_lock, flags2);
1343 if (!list_empty(&xfer->list_node) && xfer->seg == NULL)
1344 goto dequeue_delayed;
1345 spin_unlock_irqrestore(&wa->xfer_list_lock, flags2);
1346 if (xfer->seg == NULL) /* still hasn't reached */
1347 goto out_unlock; /* setup(), enqueue_b() completes */
1348 /* Ok, the xfer is in flight already, it's been setup and submitted.*/
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001349 xfer_abort_pending = __wa_xfer_abort(xfer) >= 0;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001350 for (cnt = 0; cnt < xfer->segs; cnt++) {
1351 seg = xfer->seg[cnt];
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001352 pr_debug("%s: xfer id 0x%08X#%d status = %d\n",
1353 __func__, wa_xfer_id(xfer), cnt, seg->status);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001354 switch (seg->status) {
1355 case WA_SEG_NOTREADY:
1356 case WA_SEG_READY:
1357 printk(KERN_ERR "xfer %p#%u: dequeue bad state %u\n",
1358 xfer, cnt, seg->status);
1359 WARN_ON(1);
1360 break;
1361 case WA_SEG_DELAYED:
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001362 /*
1363 * delete from rpipe delayed list. If no segments on
1364 * this xfer have been submitted, __wa_xfer_is_done will
1365 * trigger a giveback below. Otherwise, the submitted
1366 * segments will be completed in the DTI interrupt.
1367 */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001368 seg->status = WA_SEG_ABORTED;
1369 spin_lock_irqsave(&rpipe->seg_lock, flags2);
1370 list_del(&seg->list_node);
1371 xfer->segs_done++;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001372 spin_unlock_irqrestore(&rpipe->seg_lock, flags2);
1373 break;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001374 case WA_SEG_DONE:
1375 case WA_SEG_ERROR:
1376 case WA_SEG_ABORTED:
1377 break;
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001378 /*
1379 * In the states below, the HWA device already knows
1380 * about the transfer. If an abort request was sent,
1381 * allow the HWA to process it and wait for the
1382 * results. Otherwise, the DTI state and seg completed
1383 * counts can get out of sync.
1384 */
1385 case WA_SEG_SUBMITTED:
1386 case WA_SEG_PENDING:
1387 case WA_SEG_DTI_PENDING:
1388 /*
1389 * Check if the abort was successfully sent. This could
1390 * be false if the HWA has been removed but we haven't
1391 * gotten the disconnect notification yet.
1392 */
1393 if (!xfer_abort_pending) {
1394 seg->status = WA_SEG_ABORTED;
1395 rpipe_ready = rpipe_avail_inc(rpipe);
1396 xfer->segs_done++;
1397 }
1398 break;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001399 }
1400 }
1401 xfer->result = urb->status; /* -ENOENT or -ECONNRESET */
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001402 done = __wa_xfer_is_done(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001403 spin_unlock_irqrestore(&xfer->lock, flags);
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001404 if (done)
1405 wa_xfer_completion(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001406 if (rpipe_ready)
1407 wa_xfer_delayed_run(rpipe);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001408 return 0;
1409
1410out_unlock:
1411 spin_unlock_irqrestore(&xfer->lock, flags);
1412out:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001413 return 0;
1414
1415dequeue_delayed:
1416 list_del_init(&xfer->list_node);
1417 spin_unlock_irqrestore(&wa->xfer_list_lock, flags2);
1418 xfer->result = urb->status;
1419 spin_unlock_irqrestore(&xfer->lock, flags);
1420 wa_xfer_giveback(xfer);
1421 usb_put_urb(urb); /* we got a ref in enqueue() */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001422 return 0;
1423}
1424EXPORT_SYMBOL_GPL(wa_urb_dequeue);
1425
1426/*
1427 * Translation from WA status codes (WUSB1.0 Table 8.15) to errno
1428 * codes
1429 *
1430 * Positive errno values are internal inconsistencies and should be
1431 * flagged louder. Negative are to be passed up to the user in the
1432 * normal way.
1433 *
1434 * @status: USB WA status code -- high two bits are stripped.
1435 */
1436static int wa_xfer_status_to_errno(u8 status)
1437{
1438 int errno;
1439 u8 real_status = status;
1440 static int xlat[] = {
1441 [WA_XFER_STATUS_SUCCESS] = 0,
1442 [WA_XFER_STATUS_HALTED] = -EPIPE,
1443 [WA_XFER_STATUS_DATA_BUFFER_ERROR] = -ENOBUFS,
1444 [WA_XFER_STATUS_BABBLE] = -EOVERFLOW,
1445 [WA_XFER_RESERVED] = EINVAL,
1446 [WA_XFER_STATUS_NOT_FOUND] = 0,
1447 [WA_XFER_STATUS_INSUFFICIENT_RESOURCE] = -ENOMEM,
1448 [WA_XFER_STATUS_TRANSACTION_ERROR] = -EILSEQ,
1449 [WA_XFER_STATUS_ABORTED] = -EINTR,
1450 [WA_XFER_STATUS_RPIPE_NOT_READY] = EINVAL,
1451 [WA_XFER_INVALID_FORMAT] = EINVAL,
1452 [WA_XFER_UNEXPECTED_SEGMENT_NUMBER] = EINVAL,
1453 [WA_XFER_STATUS_RPIPE_TYPE_MISMATCH] = EINVAL,
1454 };
1455 status &= 0x3f;
1456
1457 if (status == 0)
1458 return 0;
1459 if (status >= ARRAY_SIZE(xlat)) {
Manuel Zerpies9708cd22011-06-16 14:15:16 +02001460 printk_ratelimited(KERN_ERR "%s(): BUG? "
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001461 "Unknown WA transfer status 0x%02x\n",
1462 __func__, real_status);
1463 return -EINVAL;
1464 }
1465 errno = xlat[status];
1466 if (unlikely(errno > 0)) {
Manuel Zerpies9708cd22011-06-16 14:15:16 +02001467 printk_ratelimited(KERN_ERR "%s(): BUG? "
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001468 "Inconsistent WA status: 0x%02x\n",
1469 __func__, real_status);
1470 errno = -errno;
1471 }
1472 return errno;
1473}
1474
1475/*
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001476 * If a last segment flag and/or a transfer result error is encountered,
1477 * no other segment transfer results will be returned from the device.
1478 * Mark the remaining submitted or pending xfers as completed so that
1479 * the xfer will complete cleanly.
1480 */
1481static void wa_complete_remaining_xfer_segs(struct wa_xfer *xfer,
1482 struct wa_seg *incoming_seg)
1483{
1484 int index;
1485 struct wa_rpipe *rpipe = xfer->ep->hcpriv;
1486
1487 for (index = incoming_seg->index + 1; index < xfer->segs_submitted;
1488 index++) {
1489 struct wa_seg *current_seg = xfer->seg[index];
1490
1491 BUG_ON(current_seg == NULL);
1492
1493 switch (current_seg->status) {
1494 case WA_SEG_SUBMITTED:
1495 case WA_SEG_PENDING:
1496 case WA_SEG_DTI_PENDING:
1497 rpipe_avail_inc(rpipe);
1498 /*
1499 * do not increment RPIPE avail for the WA_SEG_DELAYED case
1500 * since it has not been submitted to the RPIPE.
1501 */
1502 case WA_SEG_DELAYED:
1503 xfer->segs_done++;
1504 current_seg->status = incoming_seg->status;
1505 break;
1506 case WA_SEG_ABORTED:
1507 break;
1508 default:
1509 WARN(1, "%s: xfer 0x%08X#%d. bad seg status = %d\n",
1510 __func__, wa_xfer_id(xfer), index,
1511 current_seg->status);
1512 break;
1513 }
1514 }
1515}
1516
1517/*
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001518 * Process a xfer result completion message
1519 *
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001520 * inbound transfers: need to schedule a buf_in_urb read
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001521 *
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001522 * FIXME: this function needs to be broken up in parts
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001523 */
Thomas Pugliese0367eef2013-09-26 10:49:41 -05001524static void wa_xfer_result_chew(struct wahc *wa, struct wa_xfer *xfer,
1525 struct wa_xfer_result *xfer_result)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001526{
1527 int result;
1528 struct device *dev = &wa->usb_iface->dev;
1529 unsigned long flags;
1530 u8 seg_idx;
1531 struct wa_seg *seg;
1532 struct wa_rpipe *rpipe;
Thomas Pugliese0367eef2013-09-26 10:49:41 -05001533 unsigned done = 0;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001534 u8 usb_status;
1535 unsigned rpipe_ready = 0;
1536
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001537 spin_lock_irqsave(&xfer->lock, flags);
1538 seg_idx = xfer_result->bTransferSegment & 0x7f;
1539 if (unlikely(seg_idx >= xfer->segs))
1540 goto error_bad_seg;
1541 seg = xfer->seg[seg_idx];
1542 rpipe = xfer->ep->hcpriv;
1543 usb_status = xfer_result->bTransferStatus;
Thomas Puglieseb9c84be2013-09-27 15:33:36 -05001544 dev_dbg(dev, "xfer %p ID 0x%08X#%u: bTransferStatus 0x%02x (seg status %u)\n",
1545 xfer, wa_xfer_id(xfer), seg_idx, usb_status, seg->status);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001546 if (seg->status == WA_SEG_ABORTED
1547 || seg->status == WA_SEG_ERROR) /* already handled */
1548 goto segment_aborted;
1549 if (seg->status == WA_SEG_SUBMITTED) /* ops, got here */
1550 seg->status = WA_SEG_PENDING; /* before wa_seg{_dto}_cb() */
1551 if (seg->status != WA_SEG_PENDING) {
1552 if (printk_ratelimit())
1553 dev_err(dev, "xfer %p#%u: Bad segment state %u\n",
1554 xfer, seg_idx, seg->status);
1555 seg->status = WA_SEG_PENDING; /* workaround/"fix" it */
1556 }
1557 if (usb_status & 0x80) {
1558 seg->result = wa_xfer_status_to_errno(usb_status);
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001559 dev_err(dev, "DTI: xfer %p#:%08X:%u failed (0x%02x)\n",
1560 xfer, xfer->id, seg->index, usb_status);
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001561 seg->status = ((usb_status & 0x7F) == WA_XFER_STATUS_ABORTED) ?
1562 WA_SEG_ABORTED : WA_SEG_ERROR;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001563 goto error_complete;
1564 }
1565 /* FIXME: we ignore warnings, tally them for stats */
1566 if (usb_status & 0x40) /* Warning?... */
1567 usb_status = 0; /* ... pass */
1568 if (xfer->is_inbound) { /* IN data phase: read to buffer */
1569 seg->status = WA_SEG_DTI_PENDING;
1570 BUG_ON(wa->buf_in_urb->status == -EINPROGRESS);
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001571 /* this should always be 0 before a resubmit. */
1572 wa->buf_in_urb->num_mapped_sgs = 0;
1573
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001574 if (xfer->is_dma) {
1575 wa->buf_in_urb->transfer_dma =
1576 xfer->urb->transfer_dma
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001577 + (seg_idx * xfer->seg_size);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001578 wa->buf_in_urb->transfer_flags
1579 |= URB_NO_TRANSFER_DMA_MAP;
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001580 wa->buf_in_urb->transfer_buffer = NULL;
1581 wa->buf_in_urb->sg = NULL;
1582 wa->buf_in_urb->num_sgs = 0;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001583 } else {
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001584 /* do buffer or SG processing. */
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001585 wa->buf_in_urb->transfer_flags
1586 &= ~URB_NO_TRANSFER_DMA_MAP;
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001587
1588 if (xfer->urb->transfer_buffer) {
1589 wa->buf_in_urb->transfer_buffer =
1590 xfer->urb->transfer_buffer
1591 + (seg_idx * xfer->seg_size);
1592 wa->buf_in_urb->sg = NULL;
1593 wa->buf_in_urb->num_sgs = 0;
1594 } else {
1595 /* allocate an SG list to store seg_size bytes
1596 and copy the subset of the xfer->urb->sg
1597 that matches the buffer subset we are
1598 about to read. */
1599 wa->buf_in_urb->sg = wa_xfer_create_subset_sg(
1600 xfer->urb->sg,
1601 seg_idx * xfer->seg_size,
1602 le32_to_cpu(
1603 xfer_result->dwTransferLength),
1604 &(wa->buf_in_urb->num_sgs));
1605
1606 if (!(wa->buf_in_urb->sg)) {
1607 wa->buf_in_urb->num_sgs = 0;
1608 goto error_sg_alloc;
1609 }
1610 wa->buf_in_urb->transfer_buffer = NULL;
1611 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001612 }
1613 wa->buf_in_urb->transfer_buffer_length =
1614 le32_to_cpu(xfer_result->dwTransferLength);
1615 wa->buf_in_urb->context = seg;
1616 result = usb_submit_urb(wa->buf_in_urb, GFP_ATOMIC);
1617 if (result < 0)
1618 goto error_submit_buf_in;
1619 } else {
1620 /* OUT data phase, complete it -- */
1621 seg->status = WA_SEG_DONE;
1622 seg->result = le32_to_cpu(xfer_result->dwTransferLength);
1623 xfer->segs_done++;
1624 rpipe_ready = rpipe_avail_inc(rpipe);
1625 done = __wa_xfer_is_done(xfer);
1626 }
1627 spin_unlock_irqrestore(&xfer->lock, flags);
1628 if (done)
1629 wa_xfer_completion(xfer);
1630 if (rpipe_ready)
1631 wa_xfer_delayed_run(rpipe);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001632 return;
1633
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001634error_submit_buf_in:
1635 if (edc_inc(&wa->dti_edc, EDC_MAX_ERRORS, EDC_ERROR_TIMEFRAME)) {
1636 dev_err(dev, "DTI: URB max acceptable errors "
1637 "exceeded, resetting device\n");
1638 wa_reset_all(wa);
1639 }
1640 if (printk_ratelimit())
1641 dev_err(dev, "xfer %p#%u: can't submit DTI data phase: %d\n",
1642 xfer, seg_idx, result);
1643 seg->result = result;
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001644 kfree(wa->buf_in_urb->sg);
Thomas Pugliese67414482013-09-26 14:08:16 -05001645 wa->buf_in_urb->sg = NULL;
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001646error_sg_alloc:
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001647 __wa_xfer_abort(xfer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001648 seg->status = WA_SEG_ERROR;
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001649error_complete:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001650 xfer->segs_done++;
1651 rpipe_ready = rpipe_avail_inc(rpipe);
Thomas Pugliese14e1d2d2013-09-30 15:58:24 -05001652 wa_complete_remaining_xfer_segs(xfer, seg);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001653 done = __wa_xfer_is_done(xfer);
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001654 /*
1655 * queue work item to clear STALL for control endpoints.
1656 * Otherwise, let endpoint_reset take care of it.
1657 */
1658 if (((usb_status & 0x3f) == WA_XFER_STATUS_HALTED) &&
1659 usb_endpoint_xfer_control(&xfer->ep->desc) &&
1660 done) {
1661
1662 dev_info(dev, "Control EP stall. Queue delayed work.\n");
1663 spin_lock_irq(&wa->xfer_list_lock);
Wei Yongjun8eb41292013-09-23 14:16:22 +08001664 /* move xfer from xfer_list to xfer_errored_list. */
1665 list_move_tail(&xfer->list_node, &wa->xfer_errored_list);
Thomas Pugliese6d33f7b2013-08-15 12:21:30 -05001666 spin_unlock_irq(&wa->xfer_list_lock);
1667 spin_unlock_irqrestore(&xfer->lock, flags);
1668 queue_work(wusbd, &wa->xfer_error_work);
1669 } else {
1670 spin_unlock_irqrestore(&xfer->lock, flags);
1671 if (done)
1672 wa_xfer_completion(xfer);
1673 if (rpipe_ready)
1674 wa_xfer_delayed_run(rpipe);
1675 }
1676
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001677 return;
1678
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001679error_bad_seg:
1680 spin_unlock_irqrestore(&xfer->lock, flags);
1681 wa_urb_dequeue(wa, xfer->urb);
1682 if (printk_ratelimit())
1683 dev_err(dev, "xfer %p#%u: bad segment\n", xfer, seg_idx);
1684 if (edc_inc(&wa->dti_edc, EDC_MAX_ERRORS, EDC_ERROR_TIMEFRAME)) {
1685 dev_err(dev, "DTI: URB max acceptable errors "
1686 "exceeded, resetting device\n");
1687 wa_reset_all(wa);
1688 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001689 return;
1690
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001691segment_aborted:
1692 /* nothing to do, as the aborter did the completion */
1693 spin_unlock_irqrestore(&xfer->lock, flags);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001694}
1695
1696/*
1697 * Callback for the IN data phase
1698 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001699 * If successful transition state; otherwise, take a note of the
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001700 * error, mark this segment done and try completion.
1701 *
1702 * Note we don't access until we are sure that the transfer hasn't
1703 * been cancelled (ECONNRESET, ENOENT), which could mean that
1704 * seg->xfer could be already gone.
1705 */
1706static void wa_buf_in_cb(struct urb *urb)
1707{
1708 struct wa_seg *seg = urb->context;
1709 struct wa_xfer *xfer = seg->xfer;
1710 struct wahc *wa;
1711 struct device *dev;
1712 struct wa_rpipe *rpipe;
1713 unsigned rpipe_ready;
1714 unsigned long flags;
1715 u8 done = 0;
1716
Thomas Pugliese2b81c082013-06-11 10:39:31 -05001717 /* free the sg if it was used. */
1718 kfree(urb->sg);
1719 urb->sg = NULL;
1720
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001721 switch (urb->status) {
1722 case 0:
1723 spin_lock_irqsave(&xfer->lock, flags);
1724 wa = xfer->wa;
1725 dev = &wa->usb_iface->dev;
1726 rpipe = xfer->ep->hcpriv;
David Vrabelbce83692008-12-22 18:22:50 +00001727 dev_dbg(dev, "xfer %p#%u: data in done (%zu bytes)\n",
1728 xfer, seg->index, (size_t)urb->actual_length);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001729 seg->status = WA_SEG_DONE;
1730 seg->result = urb->actual_length;
1731 xfer->segs_done++;
1732 rpipe_ready = rpipe_avail_inc(rpipe);
1733 done = __wa_xfer_is_done(xfer);
1734 spin_unlock_irqrestore(&xfer->lock, flags);
1735 if (done)
1736 wa_xfer_completion(xfer);
1737 if (rpipe_ready)
1738 wa_xfer_delayed_run(rpipe);
1739 break;
1740 case -ECONNRESET: /* URB unlinked; no need to do anything */
1741 case -ENOENT: /* as it was done by the who unlinked us */
1742 break;
1743 default: /* Other errors ... */
1744 spin_lock_irqsave(&xfer->lock, flags);
1745 wa = xfer->wa;
1746 dev = &wa->usb_iface->dev;
1747 rpipe = xfer->ep->hcpriv;
1748 if (printk_ratelimit())
1749 dev_err(dev, "xfer %p#%u: data in error %d\n",
1750 xfer, seg->index, urb->status);
1751 if (edc_inc(&wa->nep_edc, EDC_MAX_ERRORS,
1752 EDC_ERROR_TIMEFRAME)){
1753 dev_err(dev, "DTO: URB max acceptable errors "
1754 "exceeded, resetting device\n");
1755 wa_reset_all(wa);
1756 }
1757 seg->status = WA_SEG_ERROR;
1758 seg->result = urb->status;
1759 xfer->segs_done++;
1760 rpipe_ready = rpipe_avail_inc(rpipe);
1761 __wa_xfer_abort(xfer);
1762 done = __wa_xfer_is_done(xfer);
1763 spin_unlock_irqrestore(&xfer->lock, flags);
1764 if (done)
1765 wa_xfer_completion(xfer);
1766 if (rpipe_ready)
1767 wa_xfer_delayed_run(rpipe);
1768 }
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001769}
1770
1771/*
1772 * Handle an incoming transfer result buffer
1773 *
1774 * Given a transfer result buffer, it completes the transfer (possibly
1775 * scheduling and buffer in read) and then resubmits the DTI URB for a
1776 * new transfer result read.
1777 *
1778 *
1779 * The xfer_result DTI URB state machine
1780 *
1781 * States: OFF | RXR (Read-Xfer-Result) | RBI (Read-Buffer-In)
1782 *
1783 * We start in OFF mode, the first xfer_result notification [through
1784 * wa_handle_notif_xfer()] moves us to RXR by posting the DTI-URB to
1785 * read.
1786 *
1787 * We receive a buffer -- if it is not a xfer_result, we complain and
1788 * repost the DTI-URB. If it is a xfer_result then do the xfer seg
1789 * request accounting. If it is an IN segment, we move to RBI and post
1790 * a BUF-IN-URB to the right buffer. The BUF-IN-URB callback will
1791 * repost the DTI-URB and move to RXR state. if there was no IN
1792 * segment, it will repost the DTI-URB.
1793 *
1794 * We go back to OFF when we detect a ENOENT or ESHUTDOWN (or too many
1795 * errors) in the URBs.
1796 */
Thomas Pugliese0367eef2013-09-26 10:49:41 -05001797static void wa_dti_cb(struct urb *urb)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001798{
1799 int result;
1800 struct wahc *wa = urb->context;
1801 struct device *dev = &wa->usb_iface->dev;
1802 struct wa_xfer_result *xfer_result;
1803 u32 xfer_id;
1804 struct wa_xfer *xfer;
1805 u8 usb_status;
1806
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001807 BUG_ON(wa->dti_urb != urb);
1808 switch (wa->dti_urb->status) {
1809 case 0:
1810 /* We have a xfer result buffer; check it */
David Vrabelbce83692008-12-22 18:22:50 +00001811 dev_dbg(dev, "DTI: xfer result %d bytes at %p\n",
1812 urb->actual_length, urb->transfer_buffer);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001813 if (wa->dti_urb->actual_length != sizeof(*xfer_result)) {
1814 dev_err(dev, "DTI Error: xfer result--bad size "
1815 "xfer result (%d bytes vs %zu needed)\n",
1816 urb->actual_length, sizeof(*xfer_result));
1817 break;
1818 }
Thomas Pugliese0367eef2013-09-26 10:49:41 -05001819 xfer_result = (struct wa_xfer_result *)(wa->dti_buf);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001820 if (xfer_result->hdr.bLength != sizeof(*xfer_result)) {
1821 dev_err(dev, "DTI Error: xfer result--"
1822 "bad header length %u\n",
1823 xfer_result->hdr.bLength);
1824 break;
1825 }
1826 if (xfer_result->hdr.bNotifyType != WA_XFER_RESULT) {
1827 dev_err(dev, "DTI Error: xfer result--"
1828 "bad header type 0x%02x\n",
1829 xfer_result->hdr.bNotifyType);
1830 break;
1831 }
1832 usb_status = xfer_result->bTransferStatus & 0x3f;
Thomas Puglieseec58fad2013-08-09 09:52:13 -05001833 if (usb_status == WA_XFER_STATUS_NOT_FOUND)
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001834 /* taken care of already */
1835 break;
Thomas Pugliesefdd160c2013-09-27 15:33:35 -05001836 xfer_id = le32_to_cpu(xfer_result->dwTransferID);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001837 xfer = wa_xfer_get_by_id(wa, xfer_id);
1838 if (xfer == NULL) {
1839 /* FIXME: transaction might have been cancelled */
1840 dev_err(dev, "DTI Error: xfer result--"
1841 "unknown xfer 0x%08x (status 0x%02x)\n",
1842 xfer_id, usb_status);
1843 break;
1844 }
Thomas Pugliese0367eef2013-09-26 10:49:41 -05001845 wa_xfer_result_chew(wa, xfer, xfer_result);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001846 wa_xfer_put(xfer);
1847 break;
1848 case -ENOENT: /* (we killed the URB)...so, no broadcast */
1849 case -ESHUTDOWN: /* going away! */
1850 dev_dbg(dev, "DTI: going down! %d\n", urb->status);
1851 goto out;
1852 default:
1853 /* Unknown error */
1854 if (edc_inc(&wa->dti_edc, EDC_MAX_ERRORS,
1855 EDC_ERROR_TIMEFRAME)) {
1856 dev_err(dev, "DTI: URB max acceptable errors "
1857 "exceeded, resetting device\n");
1858 wa_reset_all(wa);
1859 goto out;
1860 }
1861 if (printk_ratelimit())
1862 dev_err(dev, "DTI: URB error %d\n", urb->status);
1863 break;
1864 }
1865 /* Resubmit the DTI URB */
1866 result = usb_submit_urb(wa->dti_urb, GFP_ATOMIC);
1867 if (result < 0) {
1868 dev_err(dev, "DTI Error: Could not submit DTI URB (%d), "
1869 "resetting\n", result);
1870 wa_reset_all(wa);
1871 }
1872out:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001873 return;
1874}
1875
1876/*
1877 * Transfer complete notification
1878 *
1879 * Called from the notif.c code. We get a notification on EP2 saying
1880 * that some endpoint has some transfer result data available. We are
1881 * about to read it.
1882 *
1883 * To speed up things, we always have a URB reading the DTI URB; we
1884 * don't really set it up and start it until the first xfer complete
1885 * notification arrives, which is what we do here.
1886 *
Thomas Pugliese0367eef2013-09-26 10:49:41 -05001887 * Follow up in wa_dti_cb(), as that's where the whole state
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001888 * machine starts.
1889 *
1890 * So here we just initialize the DTI URB for reading transfer result
1891 * notifications and also the buffer-in URB, for reading buffers. Then
1892 * we just submit the DTI URB.
1893 *
1894 * @wa shall be referenced
1895 */
1896void wa_handle_notif_xfer(struct wahc *wa, struct wa_notif_hdr *notif_hdr)
1897{
1898 int result;
1899 struct device *dev = &wa->usb_iface->dev;
1900 struct wa_notif_xfer *notif_xfer;
1901 const struct usb_endpoint_descriptor *dti_epd = wa->dti_epd;
1902
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001903 notif_xfer = container_of(notif_hdr, struct wa_notif_xfer, hdr);
1904 BUG_ON(notif_hdr->bNotifyType != WA_NOTIF_TRANSFER);
1905
1906 if ((0x80 | notif_xfer->bEndpoint) != dti_epd->bEndpointAddress) {
1907 /* FIXME: hardcoded limitation, adapt */
1908 dev_err(dev, "BUG: DTI ep is %u, not %u (hack me)\n",
1909 notif_xfer->bEndpoint, dti_epd->bEndpointAddress);
1910 goto error;
1911 }
1912 if (wa->dti_urb != NULL) /* DTI URB already started */
1913 goto out;
1914
1915 wa->dti_urb = usb_alloc_urb(0, GFP_KERNEL);
1916 if (wa->dti_urb == NULL) {
1917 dev_err(dev, "Can't allocate DTI URB\n");
1918 goto error_dti_urb_alloc;
1919 }
1920 usb_fill_bulk_urb(
1921 wa->dti_urb, wa->usb_dev,
1922 usb_rcvbulkpipe(wa->usb_dev, 0x80 | notif_xfer->bEndpoint),
Thomas Pugliese0367eef2013-09-26 10:49:41 -05001923 wa->dti_buf, wa->dti_buf_size,
1924 wa_dti_cb, wa);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001925
1926 wa->buf_in_urb = usb_alloc_urb(0, GFP_KERNEL);
1927 if (wa->buf_in_urb == NULL) {
1928 dev_err(dev, "Can't allocate BUF-IN URB\n");
1929 goto error_buf_in_urb_alloc;
1930 }
1931 usb_fill_bulk_urb(
1932 wa->buf_in_urb, wa->usb_dev,
1933 usb_rcvbulkpipe(wa->usb_dev, 0x80 | notif_xfer->bEndpoint),
1934 NULL, 0, wa_buf_in_cb, wa);
1935 result = usb_submit_urb(wa->dti_urb, GFP_KERNEL);
1936 if (result < 0) {
1937 dev_err(dev, "DTI Error: Could not submit DTI URB (%d), "
1938 "resetting\n", result);
1939 goto error_dti_urb_submit;
1940 }
1941out:
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001942 return;
1943
1944error_dti_urb_submit:
1945 usb_put_urb(wa->buf_in_urb);
Thomas Pugliese67414482013-09-26 14:08:16 -05001946 wa->buf_in_urb = NULL;
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001947error_buf_in_urb_alloc:
1948 usb_put_urb(wa->dti_urb);
1949 wa->dti_urb = NULL;
1950error_dti_urb_alloc:
1951error:
1952 wa_reset_all(wa);
Inaky Perez-Gonzalezdf365422008-09-17 16:34:29 +01001953}