usb: wusbcore: fix build warning on 64-bit builds
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / usb / wusbcore / wa-xfer.c
1 /*
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  *
64  *     (a) set up a timer every time an rpipe's use count drops to 1
65  *         (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
79  *     availability of the different required components (blocks,
80  *     rpipes, segment slots, etc), we go scheduling them. Painful.
81  */
82 #include <linux/init.h>
83 #include <linux/spinlock.h>
84 #include <linux/slab.h>
85 #include <linux/hash.h>
86 #include <linux/ratelimit.h>
87 #include <linux/export.h>
88 #include <linux/scatterlist.h>
89
90 #include "wa-hc.h"
91 #include "wusbhc.h"
92
93 enum {
94         WA_SEGS_MAX = 255,
95 };
96
97 enum 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
109 static 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  */
116 struct wa_seg {
117         struct urb tr_urb;              /* transfer request urb. */
118         struct urb *dto_urb;            /* for data output. */
119         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
128 static inline void wa_seg_init(struct wa_seg *seg)
129 {
130         usb_init_urb(&seg->tr_urb);
131
132         /* set the remaining memory to 0. */
133         memset(((void *)seg) + sizeof(seg->tr_urb), 0,
134                 sizeof(*seg) - sizeof(seg->tr_urb));
135 }
136
137 /*
138  * Protected by xfer->lock
139  *
140  */
141 struct 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;
149         struct urb *urb;                /* URB we are transferring for */
150         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
162 static 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 /*
170  * Destroy a transfer structure
171  *
172  * Note that freeing xfer->seg[cnt]->urb will free the containing
173  * xfer->seg[cnt] memory that was allocated by __wa_xfer_setup_segs.
174  */
175 static 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++) {
181                         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                         }
188                 }
189                 kfree(xfer->seg);
190         }
191         kfree(xfer);
192 }
193
194 static void wa_xfer_get(struct wa_xfer *xfer)
195 {
196         kref_get(&xfer->refcnt);
197 }
198
199 static void wa_xfer_put(struct wa_xfer *xfer)
200 {
201         kref_put(&xfer->refcnt, wa_xfer_destroy);
202 }
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  */
214 static void wa_xfer_giveback(struct wa_xfer *xfer)
215 {
216         unsigned long flags;
217
218         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);
225 }
226
227 /*
228  * xfer is referenced
229  *
230  * xfer->lock has to be unlocked
231  */
232 static void wa_xfer_completion(struct wa_xfer *xfer)
233 {
234         if (xfer->wusb_dev)
235                 wusb_dev_put(xfer->wusb_dev);
236         rpipe_put(xfer->ep->hcpriv);
237         wa_xfer_giveback(xfer);
238 }
239
240 /*
241  * 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  */
248 static void wa_xfer_id_init(struct wa_xfer *xfer)
249 {
250         xfer->id = atomic_add_return(1, &xfer->wa->xfer_id_count);
251 }
252
253 /* Return the xfer's ID. */
254 static inline u32 wa_xfer_id(struct wa_xfer *xfer)
255 {
256         return xfer->id;
257 }
258
259 /* Return the xfer's ID in transport format (little endian). */
260 static inline __le32 wa_xfer_id_le32(struct wa_xfer *xfer)
261 {
262         return cpu_to_le32(xfer->id);
263 }
264
265 /*
266  * If transfer is done, wrap it up and return true
267  *
268  * xfer->lock has to be locked
269  */
270 static 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;
304                         dev_dbg(dev, "xfer %p ID %08X#%u: ERROR result %zu(0x%08zX)\n",
305                                 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;
322 out:
323         return result;
324 }
325
326 /*
327  * 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  */
334 static 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;
346 out:
347         spin_unlock_irqrestore(&wa->xfer_list_lock, flags);
348         return xfer_itr;
349 }
350
351 struct wa_xfer_abort_buffer {
352         struct urb urb;
353         struct wa_xfer_abort cmd;
354 };
355
356 static 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
370  * struct, the whole space we allocated is kfreed. *
371  */
372 static int __wa_xfer_abort(struct wa_xfer *xfer)
373 {
374         int result = -ENOMEM;
375         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;
385         b->cmd.dwTransferID = wa_xfer_id_le32(xfer);
386
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;
395         return result;                          /* callback frees! */
396
397
398 error_submit:
399         if (printk_ratelimit())
400                 dev_err(dev, "xfer %p: Can't submit abort request: %d\n",
401                         xfer, result);
402         kfree(b);
403 error_kmalloc:
404         return result;
405
406 }
407
408 /*
409  *
410  * @returns < 0 on error, transfer segment request size if ok
411  */
412 static 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
421         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;
455         xfer->segs = DIV_ROUND_UP(urb->transfer_buffer_length, xfer->seg_size);
456         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;
465 error:
466         return result;
467 }
468
469 /* Fill in the common request header and xfer-type specific data. */
470 static 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;
481         xfer_hdr0->dwTransferID = wa_xfer_id_le32(xfer);
482         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;
488                 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  *
504  * Check wa_seg_tr_cb(); most comments also apply here because this
505  * function does almost the same thing and they work closely
506  * together.
507  *
508  * If the seg request has failed but this DTO phase has succeeded,
509  * wa_seg_tr_cb() has already failed the segment and moved the
510  * status to WA_SEG_ERROR, so this will go through 'case 0' and
511  * effectively do nothing.
512  */
513 static 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
524         /* free the sg if it was used. */
525         kfree(urb->sg);
526         urb->sg = NULL;
527
528         switch (urb->status) {
529         case 0:
530                 spin_lock_irqsave(&xfer->lock, flags);
531                 wa = xfer->wa;
532                 dev = &wa->usb_iface->dev;
533                 dev_dbg(dev, "xfer %p#%u: data out done (%d bytes)\n",
534                         xfer, seg->index, urb->actual_length);
535                 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;
548                 dev_dbg(dev, "xfer %p#%u: data out error %d\n",
549                         xfer, seg->index, urb->status);
550                 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         }
570 }
571
572 /*
573  * Callback for the segment request
574  *
575  * If successful transition state (unless already transitioned or
576  * 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  */
590 static void wa_seg_tr_cb(struct urb *urb)
591 {
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
601         switch (urb->status) {
602         case 0:
603                 spin_lock_irqsave(&xfer->lock, flags);
604                 wa = xfer->wa;
605                 dev = &wa->usb_iface->dev;
606                 dev_dbg(dev, "xfer %p#%u: request done\n", xfer, seg->index);
607                 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())
620                         dev_err(dev, "xfer %p ID 0x%08X#%u: request error %d\n",
621                                 xfer, wa_xfer_id(xfer), seg->index,
622                                 urb->status);
623                 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         }
642 }
643
644 /*
645  * Allocate an SG list to store bytes_to_transfer bytes and copy the
646  * subset of the in_sg that matches the buffer subset
647  * we are about to transfer.
648  */
649 static 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
726 /*
727  * Populate buffer ptr and size, DMA buffer or SG list for the dto urb.
728  */
729 static 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 /*
776  * 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  */
783 static 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;
794         xfer->seg = kcalloc(xfer->segs, sizeof(xfer->seg[0]), GFP_ATOMIC);
795         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++) {
800                 seg = xfer->seg[cnt] = kmalloc(alloc_size, GFP_ATOMIC);
801                 if (seg == NULL)
802                         goto error_seg_kmalloc;
803                 wa_seg_init(seg);
804                 seg->xfer = xfer;
805                 seg->index = cnt;
806                 usb_fill_bulk_urb(&seg->tr_urb, usb_dev,
807                                   usb_sndbulkpipe(usb_dev,
808                                                   dto_epd->bEndpointAddress),
809                                   &seg->xfer_hdr, xfer_hdr_size,
810                                   wa_seg_tr_cb, seg);
811                 buf_itr_size = min(buf_size, xfer->seg_size);
812                 if (xfer->is_inbound == 0 && buf_size > 0) {
813                         /* outbound data. */
814                         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);
822
823                         /* fill in the xfer buffer information. */
824                         result = __wa_populate_dto_urb(xfer, seg,
825                                                 buf_itr, buf_itr_size);
826
827                         if (result < 0)
828                                 goto error_seg_outbound_populate;
829                 }
830                 seg->status = WA_SEG_READY;
831                 buf_itr += buf_itr_size;
832                 buf_size -= buf_itr_size;
833         }
834         return 0;
835
836         /*
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          */
841 error_seg_outbound_populate:
842         usb_free_urb(xfer->seg[cnt]->dto_urb);
843 error_dto_alloc:
844         kfree(xfer->seg[cnt]);
845         xfer->seg[cnt] = NULL;
846 error_seg_kmalloc:
847 error_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  */
861 static 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
869         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;
902 error_setup_segs:
903 error_setup_sizes:
904         return result;
905 }
906
907 /*
908  *
909  *
910  * rpipe->seg_lock is held!
911  */
912 static int __wa_seg_submit(struct wa_rpipe *rpipe, struct wa_xfer *xfer,
913                            struct wa_seg *seg)
914 {
915         int result;
916         /* submit the transfer request. */
917         result = usb_submit_urb(&seg->tr_urb, GFP_ATOMIC);
918         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         }
923         /* submit the out data if this is an out request. */
924         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
936 error_dto_submit:
937         usb_unlink_urb(&seg->tr_urb);
938 error_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  */
951 static 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
959         spin_lock_irqsave(&rpipe->seg_lock, flags);
960         while (atomic_read(&rpipe->segs_available) > 0
961               && !list_empty(&rpipe->seg_list)) {
962                 seg = list_first_entry(&(rpipe->seg_list), struct wa_seg,
963                                  list_node);
964                 list_del(&seg->list_node);
965                 xfer = seg->xfer;
966                 result = __wa_seg_submit(rpipe, xfer, seg);
967                 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);
970                 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);
980 }
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  */
989 static 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
1002         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];
1013                 dev_dbg(dev, "xfer %p ID 0x%08X#%u: available %u empty %u (%s)\n",
1014                         xfer, wa_xfer_id(xfer), cnt, available, empty,
1015                         available == 0 || !empty ? "delayed" : "submitted");
1016                 if (available == 0 || !empty) {
1017                         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);
1021                         if (result < 0) {
1022                                 __wa_xfer_abort(xfer);
1023                                 goto error_seg_submit;
1024                         }
1025                 }
1026                 xfer->segs_submitted++;
1027         }
1028 error_seg_submit:
1029         spin_unlock_irqrestore(&rpipe->seg_lock, flags);
1030         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  */
1055 static void wa_urb_enqueue_b(struct wa_xfer *xfer)
1056 {
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;
1062         struct wusb_dev *wusb_dev;
1063         unsigned done;
1064
1065         result = rpipe_get_by_ep(wa, xfer->ep, urb, xfer->gfp);
1066         if (result < 0)
1067                 goto error_rpipe_get;
1068         result = -ENODEV;
1069         /* FIXME: segmentation broken -- kills DWA */
1070         mutex_lock(&wusbhc->mutex);             /* get a WUSB dev */
1071         if (urb->dev == NULL) {
1072                 mutex_unlock(&wusbhc->mutex);
1073                 goto error_dev_gone;
1074         }
1075         wusb_dev = __wusb_dev_get_by_usb_dev(wusbhc, urb->dev);
1076         if (wusb_dev == NULL) {
1077                 mutex_unlock(&wusbhc->mutex);
1078                 goto error_dev_gone;
1079         }
1080         mutex_unlock(&wusbhc->mutex);
1081
1082         spin_lock_irqsave(&xfer->lock, flags);
1083         xfer->wusb_dev = wusb_dev;
1084         result = urb->status;
1085         if (urb->status != -EINPROGRESS)
1086                 goto error_dequeued;
1087
1088         result = __wa_xfer_setup(xfer, urb);
1089         if (result < 0)
1090                 goto error_xfer_setup;
1091         result = __wa_xfer_submit(xfer);
1092         if (result < 0)
1093                 goto error_xfer_submit;
1094         spin_unlock_irqrestore(&xfer->lock, flags);
1095         return;
1096
1097         /* this is basically wa_xfer_completion() broken up wa_xfer_giveback()
1098          * does a wa_xfer_put() that will call wa_xfer_destroy() and clean
1099          * upundo setup().
1100          */
1101 error_xfer_setup:
1102 error_dequeued:
1103         spin_unlock_irqrestore(&xfer->lock, flags);
1104         /* FIXME: segmentation broken, kills DWA */
1105         if (wusb_dev)
1106                 wusb_dev_put(wusb_dev);
1107 error_dev_gone:
1108         rpipe_put(xfer->ep->hcpriv);
1109 error_rpipe_get:
1110         xfer->result = result;
1111         wa_xfer_giveback(xfer);
1112         return;
1113
1114 error_xfer_submit:
1115         done = __wa_xfer_is_done(xfer);
1116         xfer->result = result;
1117         spin_unlock_irqrestore(&xfer->lock, flags);
1118         if (done)
1119                 wa_xfer_completion(xfer);
1120 }
1121
1122 /*
1123  * Execute the delayed transfers in the Wire Adapter @wa
1124  *
1125  * We need to be careful here, as dequeue() could be called in the
1126  * middle.  That's why we do the whole thing under the
1127  * wa->xfer_list_lock. If dequeue() jumps in, it first locks xfer->lock
1128  * and then checks the list -- so as we would be acquiring in inverse
1129  * order, we move the delayed list to a separate list while locked and then
1130  * submit them without the list lock held.
1131  */
1132 void wa_urb_enqueue_run(struct work_struct *ws)
1133 {
1134         struct wahc *wa = container_of(ws, struct wahc, xfer_enqueue_work);
1135         struct wa_xfer *xfer, *next;
1136         struct urb *urb;
1137         LIST_HEAD(tmp_list);
1138
1139         /* Create a copy of the wa->xfer_delayed_list while holding the lock */
1140         spin_lock_irq(&wa->xfer_list_lock);
1141         list_cut_position(&tmp_list, &wa->xfer_delayed_list,
1142                         wa->xfer_delayed_list.prev);
1143         spin_unlock_irq(&wa->xfer_list_lock);
1144
1145         /*
1146          * enqueue from temp list without list lock held since wa_urb_enqueue_b
1147          * can take xfer->lock as well as lock mutexes.
1148          */
1149         list_for_each_entry_safe(xfer, next, &tmp_list, list_node) {
1150                 list_del_init(&xfer->list_node);
1151
1152                 urb = xfer->urb;
1153                 wa_urb_enqueue_b(xfer);
1154                 usb_put_urb(urb);       /* taken when queuing */
1155         }
1156 }
1157 EXPORT_SYMBOL_GPL(wa_urb_enqueue_run);
1158
1159 /*
1160  * Process the errored transfers on the Wire Adapter outside of interrupt.
1161  */
1162 void wa_process_errored_transfers_run(struct work_struct *ws)
1163 {
1164         struct wahc *wa = container_of(ws, struct wahc, xfer_error_work);
1165         struct wa_xfer *xfer, *next;
1166         LIST_HEAD(tmp_list);
1167
1168         pr_info("%s: Run delayed STALL processing.\n", __func__);
1169
1170         /* Create a copy of the wa->xfer_errored_list while holding the lock */
1171         spin_lock_irq(&wa->xfer_list_lock);
1172         list_cut_position(&tmp_list, &wa->xfer_errored_list,
1173                         wa->xfer_errored_list.prev);
1174         spin_unlock_irq(&wa->xfer_list_lock);
1175
1176         /*
1177          * run rpipe_clear_feature_stalled from temp list without list lock
1178          * held.
1179          */
1180         list_for_each_entry_safe(xfer, next, &tmp_list, list_node) {
1181                 struct usb_host_endpoint *ep;
1182                 unsigned long flags;
1183                 struct wa_rpipe *rpipe;
1184
1185                 spin_lock_irqsave(&xfer->lock, flags);
1186                 ep = xfer->ep;
1187                 rpipe = ep->hcpriv;
1188                 spin_unlock_irqrestore(&xfer->lock, flags);
1189
1190                 /* clear RPIPE feature stalled without holding a lock. */
1191                 rpipe_clear_feature_stalled(wa, ep);
1192
1193                 /* complete the xfer. This removes it from the tmp list. */
1194                 wa_xfer_completion(xfer);
1195
1196                 /* check for work. */
1197                 wa_xfer_delayed_run(rpipe);
1198         }
1199 }
1200 EXPORT_SYMBOL_GPL(wa_process_errored_transfers_run);
1201
1202 /*
1203  * Submit a transfer to the Wire Adapter in a delayed way
1204  *
1205  * The process of enqueuing involves possible sleeps() [see
1206  * enqueue_b(), for the rpipe_get() and the mutex_lock()]. If we are
1207  * in an atomic section, we defer the enqueue_b() call--else we call direct.
1208  *
1209  * @urb: We own a reference to it done by the HCI Linux USB stack that
1210  *       will be given up by calling usb_hcd_giveback_urb() or by
1211  *       returning error from this function -> ergo we don't have to
1212  *       refcount it.
1213  */
1214 int wa_urb_enqueue(struct wahc *wa, struct usb_host_endpoint *ep,
1215                    struct urb *urb, gfp_t gfp)
1216 {
1217         int result;
1218         struct device *dev = &wa->usb_iface->dev;
1219         struct wa_xfer *xfer;
1220         unsigned long my_flags;
1221         unsigned cant_sleep = irqs_disabled() | in_atomic();
1222
1223         if ((urb->transfer_buffer == NULL)
1224             && (urb->sg == NULL)
1225             && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
1226             && urb->transfer_buffer_length != 0) {
1227                 dev_err(dev, "BUG? urb %p: NULL xfer buffer & NODMA\n", urb);
1228                 dump_stack();
1229         }
1230
1231         result = -ENOMEM;
1232         xfer = kzalloc(sizeof(*xfer), gfp);
1233         if (xfer == NULL)
1234                 goto error_kmalloc;
1235
1236         result = -ENOENT;
1237         if (urb->status != -EINPROGRESS)        /* cancelled */
1238                 goto error_dequeued;            /* before starting? */
1239         wa_xfer_init(xfer);
1240         xfer->wa = wa_get(wa);
1241         xfer->urb = urb;
1242         xfer->gfp = gfp;
1243         xfer->ep = ep;
1244         urb->hcpriv = xfer;
1245
1246         dev_dbg(dev, "xfer %p urb %p pipe 0x%02x [%d bytes] %s %s %s\n",
1247                 xfer, urb, urb->pipe, urb->transfer_buffer_length,
1248                 urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP ? "dma" : "nodma",
1249                 urb->pipe & USB_DIR_IN ? "inbound" : "outbound",
1250                 cant_sleep ? "deferred" : "inline");
1251
1252         if (cant_sleep) {
1253                 usb_get_urb(urb);
1254                 spin_lock_irqsave(&wa->xfer_list_lock, my_flags);
1255                 list_add_tail(&xfer->list_node, &wa->xfer_delayed_list);
1256                 spin_unlock_irqrestore(&wa->xfer_list_lock, my_flags);
1257                 queue_work(wusbd, &wa->xfer_enqueue_work);
1258         } else {
1259                 wa_urb_enqueue_b(xfer);
1260         }
1261         return 0;
1262
1263 error_dequeued:
1264         kfree(xfer);
1265 error_kmalloc:
1266         return result;
1267 }
1268 EXPORT_SYMBOL_GPL(wa_urb_enqueue);
1269
1270 /*
1271  * Dequeue a URB and make sure uwb_hcd_giveback_urb() [completion
1272  * handler] is called.
1273  *
1274  * Until a transfer goes successfully through wa_urb_enqueue() it
1275  * needs to be dequeued with completion calling; when stuck in delayed
1276  * or before wa_xfer_setup() is called, we need to do completion.
1277  *
1278  *  not setup  If there is no hcpriv yet, that means that that enqueue
1279  *             still had no time to set the xfer up. Because
1280  *             urb->status should be other than -EINPROGRESS,
1281  *             enqueue() will catch that and bail out.
1282  *
1283  * If the transfer has gone through setup, we just need to clean it
1284  * up. If it has gone through submit(), we have to abort it [with an
1285  * asynch request] and then make sure we cancel each segment.
1286  *
1287  */
1288 int wa_urb_dequeue(struct wahc *wa, struct urb *urb)
1289 {
1290         unsigned long flags, flags2;
1291         struct wa_xfer *xfer;
1292         struct wa_seg *seg;
1293         struct wa_rpipe *rpipe;
1294         unsigned cnt, done = 0, xfer_abort_pending;
1295         unsigned rpipe_ready = 0;
1296
1297         xfer = urb->hcpriv;
1298         if (xfer == NULL) {
1299                 /*
1300                  * Nothing setup yet enqueue will see urb->status !=
1301                  * -EINPROGRESS (by hcd layer) and bail out with
1302                  * error, no need to do completion
1303                  */
1304                 BUG_ON(urb->status == -EINPROGRESS);
1305                 goto out;
1306         }
1307         spin_lock_irqsave(&xfer->lock, flags);
1308         pr_debug("%s: DEQUEUE xfer id 0x%08X\n", __func__, wa_xfer_id(xfer));
1309         rpipe = xfer->ep->hcpriv;
1310         if (rpipe == NULL) {
1311                 pr_debug("%s: xfer id 0x%08X has no RPIPE.  %s",
1312                         __func__, wa_xfer_id(xfer),
1313                         "Probably already aborted.\n" );
1314                 goto out_unlock;
1315         }
1316         /* Check the delayed list -> if there, release and complete */
1317         spin_lock_irqsave(&wa->xfer_list_lock, flags2);
1318         if (!list_empty(&xfer->list_node) && xfer->seg == NULL)
1319                 goto dequeue_delayed;
1320         spin_unlock_irqrestore(&wa->xfer_list_lock, flags2);
1321         if (xfer->seg == NULL)          /* still hasn't reached */
1322                 goto out_unlock;        /* setup(), enqueue_b() completes */
1323         /* Ok, the xfer is in flight already, it's been setup and submitted.*/
1324         xfer_abort_pending = __wa_xfer_abort(xfer) >= 0;
1325         for (cnt = 0; cnt < xfer->segs; cnt++) {
1326                 seg = xfer->seg[cnt];
1327                 pr_debug("%s: xfer id 0x%08X#%d status = %d\n",
1328                         __func__, wa_xfer_id(xfer), cnt, seg->status);
1329                 switch (seg->status) {
1330                 case WA_SEG_NOTREADY:
1331                 case WA_SEG_READY:
1332                         printk(KERN_ERR "xfer %p#%u: dequeue bad state %u\n",
1333                                xfer, cnt, seg->status);
1334                         WARN_ON(1);
1335                         break;
1336                 case WA_SEG_DELAYED:
1337                         /*
1338                          * delete from rpipe delayed list.  If no segments on
1339                          * this xfer have been submitted, __wa_xfer_is_done will
1340                          * trigger a giveback below.  Otherwise, the submitted
1341                          * segments will be completed in the DTI interrupt.
1342                          */
1343                         seg->status = WA_SEG_ABORTED;
1344                         spin_lock_irqsave(&rpipe->seg_lock, flags2);
1345                         list_del(&seg->list_node);
1346                         xfer->segs_done++;
1347                         spin_unlock_irqrestore(&rpipe->seg_lock, flags2);
1348                         break;
1349                 case WA_SEG_DONE:
1350                 case WA_SEG_ERROR:
1351                 case WA_SEG_ABORTED:
1352                         break;
1353                         /*
1354                          * In the states below, the HWA device already knows
1355                          * about the transfer.  If an abort request was sent,
1356                          * allow the HWA to process it and wait for the
1357                          * results.  Otherwise, the DTI state and seg completed
1358                          * counts can get out of sync.
1359                          */
1360                 case WA_SEG_SUBMITTED:
1361                 case WA_SEG_PENDING:
1362                 case WA_SEG_DTI_PENDING:
1363                         /*
1364                          * Check if the abort was successfully sent.  This could
1365                          * be false if the HWA has been removed but we haven't
1366                          * gotten the disconnect notification yet.
1367                          */
1368                         if (!xfer_abort_pending) {
1369                                 seg->status = WA_SEG_ABORTED;
1370                                 rpipe_ready = rpipe_avail_inc(rpipe);
1371                                 xfer->segs_done++;
1372                         }
1373                         break;
1374                 }
1375         }
1376         xfer->result = urb->status;     /* -ENOENT or -ECONNRESET */
1377         done = __wa_xfer_is_done(xfer);
1378         spin_unlock_irqrestore(&xfer->lock, flags);
1379         if (done)
1380                 wa_xfer_completion(xfer);
1381         if (rpipe_ready)
1382                 wa_xfer_delayed_run(rpipe);
1383         return 0;
1384
1385 out_unlock:
1386         spin_unlock_irqrestore(&xfer->lock, flags);
1387 out:
1388         return 0;
1389
1390 dequeue_delayed:
1391         list_del_init(&xfer->list_node);
1392         spin_unlock_irqrestore(&wa->xfer_list_lock, flags2);
1393         xfer->result = urb->status;
1394         spin_unlock_irqrestore(&xfer->lock, flags);
1395         wa_xfer_giveback(xfer);
1396         usb_put_urb(urb);               /* we got a ref in enqueue() */
1397         return 0;
1398 }
1399 EXPORT_SYMBOL_GPL(wa_urb_dequeue);
1400
1401 /*
1402  * Translation from WA status codes (WUSB1.0 Table 8.15) to errno
1403  * codes
1404  *
1405  * Positive errno values are internal inconsistencies and should be
1406  * flagged louder. Negative are to be passed up to the user in the
1407  * normal way.
1408  *
1409  * @status: USB WA status code -- high two bits are stripped.
1410  */
1411 static int wa_xfer_status_to_errno(u8 status)
1412 {
1413         int errno;
1414         u8 real_status = status;
1415         static int xlat[] = {
1416                 [WA_XFER_STATUS_SUCCESS] =              0,
1417                 [WA_XFER_STATUS_HALTED] =               -EPIPE,
1418                 [WA_XFER_STATUS_DATA_BUFFER_ERROR] =    -ENOBUFS,
1419                 [WA_XFER_STATUS_BABBLE] =               -EOVERFLOW,
1420                 [WA_XFER_RESERVED] =                    EINVAL,
1421                 [WA_XFER_STATUS_NOT_FOUND] =            0,
1422                 [WA_XFER_STATUS_INSUFFICIENT_RESOURCE] = -ENOMEM,
1423                 [WA_XFER_STATUS_TRANSACTION_ERROR] =    -EILSEQ,
1424                 [WA_XFER_STATUS_ABORTED] =              -EINTR,
1425                 [WA_XFER_STATUS_RPIPE_NOT_READY] =      EINVAL,
1426                 [WA_XFER_INVALID_FORMAT] =              EINVAL,
1427                 [WA_XFER_UNEXPECTED_SEGMENT_NUMBER] =   EINVAL,
1428                 [WA_XFER_STATUS_RPIPE_TYPE_MISMATCH] =  EINVAL,
1429         };
1430         status &= 0x3f;
1431
1432         if (status == 0)
1433                 return 0;
1434         if (status >= ARRAY_SIZE(xlat)) {
1435                 printk_ratelimited(KERN_ERR "%s(): BUG? "
1436                                "Unknown WA transfer status 0x%02x\n",
1437                                __func__, real_status);
1438                 return -EINVAL;
1439         }
1440         errno = xlat[status];
1441         if (unlikely(errno > 0)) {
1442                 printk_ratelimited(KERN_ERR "%s(): BUG? "
1443                                "Inconsistent WA status: 0x%02x\n",
1444                                __func__, real_status);
1445                 errno = -errno;
1446         }
1447         return errno;
1448 }
1449
1450 /*
1451  * If a last segment flag and/or a transfer result error is encountered,
1452  * no other segment transfer results will be returned from the device.
1453  * Mark the remaining submitted or pending xfers as completed so that
1454  * the xfer will complete cleanly.
1455  */
1456 static void wa_complete_remaining_xfer_segs(struct wa_xfer *xfer,
1457                 struct wa_seg *incoming_seg)
1458 {
1459         int index;
1460         struct wa_rpipe *rpipe = xfer->ep->hcpriv;
1461
1462         for (index = incoming_seg->index + 1; index < xfer->segs_submitted;
1463                 index++) {
1464                 struct wa_seg *current_seg = xfer->seg[index];
1465
1466                 BUG_ON(current_seg == NULL);
1467
1468                 switch (current_seg->status) {
1469                 case WA_SEG_SUBMITTED:
1470                 case WA_SEG_PENDING:
1471                 case WA_SEG_DTI_PENDING:
1472                         rpipe_avail_inc(rpipe);
1473                 /*
1474                  * do not increment RPIPE avail for the WA_SEG_DELAYED case
1475                  * since it has not been submitted to the RPIPE.
1476                  */
1477                 case WA_SEG_DELAYED:
1478                         xfer->segs_done++;
1479                         current_seg->status = incoming_seg->status;
1480                         break;
1481                 case WA_SEG_ABORTED:
1482                         break;
1483                 default:
1484                         WARN(1, "%s: xfer 0x%08X#%d. bad seg status = %d\n",
1485                                 __func__, wa_xfer_id(xfer), index,
1486                                 current_seg->status);
1487                         break;
1488                 }
1489         }
1490 }
1491
1492 /*
1493  * Process a xfer result completion message
1494  *
1495  * inbound transfers: need to schedule a buf_in_urb read
1496  *
1497  * FIXME: this function needs to be broken up in parts
1498  */
1499 static void wa_xfer_result_chew(struct wahc *wa, struct wa_xfer *xfer,
1500                 struct wa_xfer_result *xfer_result)
1501 {
1502         int result;
1503         struct device *dev = &wa->usb_iface->dev;
1504         unsigned long flags;
1505         u8 seg_idx;
1506         struct wa_seg *seg;
1507         struct wa_rpipe *rpipe;
1508         unsigned done = 0;
1509         u8 usb_status;
1510         unsigned rpipe_ready = 0;
1511
1512         spin_lock_irqsave(&xfer->lock, flags);
1513         seg_idx = xfer_result->bTransferSegment & 0x7f;
1514         if (unlikely(seg_idx >= xfer->segs))
1515                 goto error_bad_seg;
1516         seg = xfer->seg[seg_idx];
1517         rpipe = xfer->ep->hcpriv;
1518         usb_status = xfer_result->bTransferStatus;
1519         dev_dbg(dev, "xfer %p ID 0x%08X#%u: bTransferStatus 0x%02x (seg status %u)\n",
1520                 xfer, wa_xfer_id(xfer), seg_idx, usb_status, seg->status);
1521         if (seg->status == WA_SEG_ABORTED
1522             || seg->status == WA_SEG_ERROR)     /* already handled */
1523                 goto segment_aborted;
1524         if (seg->status == WA_SEG_SUBMITTED)    /* ops, got here */
1525                 seg->status = WA_SEG_PENDING;   /* before wa_seg{_dto}_cb() */
1526         if (seg->status != WA_SEG_PENDING) {
1527                 if (printk_ratelimit())
1528                         dev_err(dev, "xfer %p#%u: Bad segment state %u\n",
1529                                 xfer, seg_idx, seg->status);
1530                 seg->status = WA_SEG_PENDING;   /* workaround/"fix" it */
1531         }
1532         if (usb_status & 0x80) {
1533                 seg->result = wa_xfer_status_to_errno(usb_status);
1534                 dev_err(dev, "DTI: xfer %p#:%08X:%u failed (0x%02x)\n",
1535                         xfer, xfer->id, seg->index, usb_status);
1536                 seg->status = ((usb_status & 0x7F) == WA_XFER_STATUS_ABORTED) ?
1537                         WA_SEG_ABORTED : WA_SEG_ERROR;
1538                 goto error_complete;
1539         }
1540         /* FIXME: we ignore warnings, tally them for stats */
1541         if (usb_status & 0x40)          /* Warning?... */
1542                 usb_status = 0;         /* ... pass */
1543         if (xfer->is_inbound) { /* IN data phase: read to buffer */
1544                 seg->status = WA_SEG_DTI_PENDING;
1545                 BUG_ON(wa->buf_in_urb->status == -EINPROGRESS);
1546                 /* this should always be 0 before a resubmit. */
1547                 wa->buf_in_urb->num_mapped_sgs  = 0;
1548
1549                 if (xfer->is_dma) {
1550                         wa->buf_in_urb->transfer_dma =
1551                                 xfer->urb->transfer_dma
1552                                 + (seg_idx * xfer->seg_size);
1553                         wa->buf_in_urb->transfer_flags
1554                                 |= URB_NO_TRANSFER_DMA_MAP;
1555                         wa->buf_in_urb->transfer_buffer = NULL;
1556                         wa->buf_in_urb->sg = NULL;
1557                         wa->buf_in_urb->num_sgs = 0;
1558                 } else {
1559                         /* do buffer or SG processing. */
1560                         wa->buf_in_urb->transfer_flags
1561                                 &= ~URB_NO_TRANSFER_DMA_MAP;
1562
1563                         if (xfer->urb->transfer_buffer) {
1564                                 wa->buf_in_urb->transfer_buffer =
1565                                         xfer->urb->transfer_buffer
1566                                         + (seg_idx * xfer->seg_size);
1567                                 wa->buf_in_urb->sg = NULL;
1568                                 wa->buf_in_urb->num_sgs = 0;
1569                         } else {
1570                                 /* allocate an SG list to store seg_size bytes
1571                                         and copy the subset of the xfer->urb->sg
1572                                         that matches the buffer subset we are
1573                                         about to read. */
1574                                 wa->buf_in_urb->sg = wa_xfer_create_subset_sg(
1575                                         xfer->urb->sg,
1576                                         seg_idx * xfer->seg_size,
1577                                         le32_to_cpu(
1578                                                 xfer_result->dwTransferLength),
1579                                         &(wa->buf_in_urb->num_sgs));
1580
1581                                 if (!(wa->buf_in_urb->sg)) {
1582                                         wa->buf_in_urb->num_sgs = 0;
1583                                         goto error_sg_alloc;
1584                                 }
1585                                 wa->buf_in_urb->transfer_buffer = NULL;
1586                         }
1587                 }
1588                 wa->buf_in_urb->transfer_buffer_length =
1589                         le32_to_cpu(xfer_result->dwTransferLength);
1590                 wa->buf_in_urb->context = seg;
1591                 result = usb_submit_urb(wa->buf_in_urb, GFP_ATOMIC);
1592                 if (result < 0)
1593                         goto error_submit_buf_in;
1594         } else {
1595                 /* OUT data phase, complete it -- */
1596                 seg->status = WA_SEG_DONE;
1597                 seg->result = le32_to_cpu(xfer_result->dwTransferLength);
1598                 xfer->segs_done++;
1599                 rpipe_ready = rpipe_avail_inc(rpipe);
1600                 done = __wa_xfer_is_done(xfer);
1601         }
1602         spin_unlock_irqrestore(&xfer->lock, flags);
1603         if (done)
1604                 wa_xfer_completion(xfer);
1605         if (rpipe_ready)
1606                 wa_xfer_delayed_run(rpipe);
1607         return;
1608
1609 error_submit_buf_in:
1610         if (edc_inc(&wa->dti_edc, EDC_MAX_ERRORS, EDC_ERROR_TIMEFRAME)) {
1611                 dev_err(dev, "DTI: URB max acceptable errors "
1612                         "exceeded, resetting device\n");
1613                 wa_reset_all(wa);
1614         }
1615         if (printk_ratelimit())
1616                 dev_err(dev, "xfer %p#%u: can't submit DTI data phase: %d\n",
1617                         xfer, seg_idx, result);
1618         seg->result = result;
1619         kfree(wa->buf_in_urb->sg);
1620         wa->buf_in_urb->sg = NULL;
1621 error_sg_alloc:
1622         __wa_xfer_abort(xfer);
1623         seg->status = WA_SEG_ERROR;
1624 error_complete:
1625         xfer->segs_done++;
1626         rpipe_ready = rpipe_avail_inc(rpipe);
1627         wa_complete_remaining_xfer_segs(xfer, seg);
1628         done = __wa_xfer_is_done(xfer);
1629         /*
1630          * queue work item to clear STALL for control endpoints.
1631          * Otherwise, let endpoint_reset take care of it.
1632          */
1633         if (((usb_status & 0x3f) == WA_XFER_STATUS_HALTED) &&
1634                 usb_endpoint_xfer_control(&xfer->ep->desc) &&
1635                 done) {
1636
1637                 dev_info(dev, "Control EP stall.  Queue delayed work.\n");
1638                 spin_lock_irq(&wa->xfer_list_lock);
1639                 /* move xfer from xfer_list to xfer_errored_list. */
1640                 list_move_tail(&xfer->list_node, &wa->xfer_errored_list);
1641                 spin_unlock_irq(&wa->xfer_list_lock);
1642                 spin_unlock_irqrestore(&xfer->lock, flags);
1643                 queue_work(wusbd, &wa->xfer_error_work);
1644         } else {
1645                 spin_unlock_irqrestore(&xfer->lock, flags);
1646                 if (done)
1647                         wa_xfer_completion(xfer);
1648                 if (rpipe_ready)
1649                         wa_xfer_delayed_run(rpipe);
1650         }
1651
1652         return;
1653
1654 error_bad_seg:
1655         spin_unlock_irqrestore(&xfer->lock, flags);
1656         wa_urb_dequeue(wa, xfer->urb);
1657         if (printk_ratelimit())
1658                 dev_err(dev, "xfer %p#%u: bad segment\n", xfer, seg_idx);
1659         if (edc_inc(&wa->dti_edc, EDC_MAX_ERRORS, EDC_ERROR_TIMEFRAME)) {
1660                 dev_err(dev, "DTI: URB max acceptable errors "
1661                         "exceeded, resetting device\n");
1662                 wa_reset_all(wa);
1663         }
1664         return;
1665
1666 segment_aborted:
1667         /* nothing to do, as the aborter did the completion */
1668         spin_unlock_irqrestore(&xfer->lock, flags);
1669 }
1670
1671 /*
1672  * Callback for the IN data phase
1673  *
1674  * If successful transition state; otherwise, take a note of the
1675  * error, mark this segment done and try completion.
1676  *
1677  * Note we don't access until we are sure that the transfer hasn't
1678  * been cancelled (ECONNRESET, ENOENT), which could mean that
1679  * seg->xfer could be already gone.
1680  */
1681 static void wa_buf_in_cb(struct urb *urb)
1682 {
1683         struct wa_seg *seg = urb->context;
1684         struct wa_xfer *xfer = seg->xfer;
1685         struct wahc *wa;
1686         struct device *dev;
1687         struct wa_rpipe *rpipe;
1688         unsigned rpipe_ready;
1689         unsigned long flags;
1690         u8 done = 0;
1691
1692         /* free the sg if it was used. */
1693         kfree(urb->sg);
1694         urb->sg = NULL;
1695
1696         switch (urb->status) {
1697         case 0:
1698                 spin_lock_irqsave(&xfer->lock, flags);
1699                 wa = xfer->wa;
1700                 dev = &wa->usb_iface->dev;
1701                 rpipe = xfer->ep->hcpriv;
1702                 dev_dbg(dev, "xfer %p#%u: data in done (%zu bytes)\n",
1703                         xfer, seg->index, (size_t)urb->actual_length);
1704                 seg->status = WA_SEG_DONE;
1705                 seg->result = urb->actual_length;
1706                 xfer->segs_done++;
1707                 rpipe_ready = rpipe_avail_inc(rpipe);
1708                 done = __wa_xfer_is_done(xfer);
1709                 spin_unlock_irqrestore(&xfer->lock, flags);
1710                 if (done)
1711                         wa_xfer_completion(xfer);
1712                 if (rpipe_ready)
1713                         wa_xfer_delayed_run(rpipe);
1714                 break;
1715         case -ECONNRESET:       /* URB unlinked; no need to do anything */
1716         case -ENOENT:           /* as it was done by the who unlinked us */
1717                 break;
1718         default:                /* Other errors ... */
1719                 spin_lock_irqsave(&xfer->lock, flags);
1720                 wa = xfer->wa;
1721                 dev = &wa->usb_iface->dev;
1722                 rpipe = xfer->ep->hcpriv;
1723                 if (printk_ratelimit())
1724                         dev_err(dev, "xfer %p#%u: data in error %d\n",
1725                                 xfer, seg->index, urb->status);
1726                 if (edc_inc(&wa->nep_edc, EDC_MAX_ERRORS,
1727                             EDC_ERROR_TIMEFRAME)){
1728                         dev_err(dev, "DTO: URB max acceptable errors "
1729                                 "exceeded, resetting device\n");
1730                         wa_reset_all(wa);
1731                 }
1732                 seg->status = WA_SEG_ERROR;
1733                 seg->result = urb->status;
1734                 xfer->segs_done++;
1735                 rpipe_ready = rpipe_avail_inc(rpipe);
1736                 __wa_xfer_abort(xfer);
1737                 done = __wa_xfer_is_done(xfer);
1738                 spin_unlock_irqrestore(&xfer->lock, flags);
1739                 if (done)
1740                         wa_xfer_completion(xfer);
1741                 if (rpipe_ready)
1742                         wa_xfer_delayed_run(rpipe);
1743         }
1744 }
1745
1746 /*
1747  * Handle an incoming transfer result buffer
1748  *
1749  * Given a transfer result buffer, it completes the transfer (possibly
1750  * scheduling and buffer in read) and then resubmits the DTI URB for a
1751  * new transfer result read.
1752  *
1753  *
1754  * The xfer_result DTI URB state machine
1755  *
1756  * States: OFF | RXR (Read-Xfer-Result) | RBI (Read-Buffer-In)
1757  *
1758  * We start in OFF mode, the first xfer_result notification [through
1759  * wa_handle_notif_xfer()] moves us to RXR by posting the DTI-URB to
1760  * read.
1761  *
1762  * We receive a buffer -- if it is not a xfer_result, we complain and
1763  * repost the DTI-URB. If it is a xfer_result then do the xfer seg
1764  * request accounting. If it is an IN segment, we move to RBI and post
1765  * a BUF-IN-URB to the right buffer. The BUF-IN-URB callback will
1766  * repost the DTI-URB and move to RXR state. if there was no IN
1767  * segment, it will repost the DTI-URB.
1768  *
1769  * We go back to OFF when we detect a ENOENT or ESHUTDOWN (or too many
1770  * errors) in the URBs.
1771  */
1772 static void wa_dti_cb(struct urb *urb)
1773 {
1774         int result;
1775         struct wahc *wa = urb->context;
1776         struct device *dev = &wa->usb_iface->dev;
1777         struct wa_xfer_result *xfer_result;
1778         u32 xfer_id;
1779         struct wa_xfer *xfer;
1780         u8 usb_status;
1781
1782         BUG_ON(wa->dti_urb != urb);
1783         switch (wa->dti_urb->status) {
1784         case 0:
1785                 /* We have a xfer result buffer; check it */
1786                 dev_dbg(dev, "DTI: xfer result %d bytes at %p\n",
1787                         urb->actual_length, urb->transfer_buffer);
1788                 if (wa->dti_urb->actual_length != sizeof(*xfer_result)) {
1789                         dev_err(dev, "DTI Error: xfer result--bad size "
1790                                 "xfer result (%d bytes vs %zu needed)\n",
1791                                 urb->actual_length, sizeof(*xfer_result));
1792                         break;
1793                 }
1794                 xfer_result = (struct wa_xfer_result *)(wa->dti_buf);
1795                 if (xfer_result->hdr.bLength != sizeof(*xfer_result)) {
1796                         dev_err(dev, "DTI Error: xfer result--"
1797                                 "bad header length %u\n",
1798                                 xfer_result->hdr.bLength);
1799                         break;
1800                 }
1801                 if (xfer_result->hdr.bNotifyType != WA_XFER_RESULT) {
1802                         dev_err(dev, "DTI Error: xfer result--"
1803                                 "bad header type 0x%02x\n",
1804                                 xfer_result->hdr.bNotifyType);
1805                         break;
1806                 }
1807                 usb_status = xfer_result->bTransferStatus & 0x3f;
1808                 if (usb_status == WA_XFER_STATUS_NOT_FOUND)
1809                         /* taken care of already */
1810                         break;
1811                 xfer_id = le32_to_cpu(xfer_result->dwTransferID);
1812                 xfer = wa_xfer_get_by_id(wa, xfer_id);
1813                 if (xfer == NULL) {
1814                         /* FIXME: transaction might have been cancelled */
1815                         dev_err(dev, "DTI Error: xfer result--"
1816                                 "unknown xfer 0x%08x (status 0x%02x)\n",
1817                                 xfer_id, usb_status);
1818                         break;
1819                 }
1820                 wa_xfer_result_chew(wa, xfer, xfer_result);
1821                 wa_xfer_put(xfer);
1822                 break;
1823         case -ENOENT:           /* (we killed the URB)...so, no broadcast */
1824         case -ESHUTDOWN:        /* going away! */
1825                 dev_dbg(dev, "DTI: going down! %d\n", urb->status);
1826                 goto out;
1827         default:
1828                 /* Unknown error */
1829                 if (edc_inc(&wa->dti_edc, EDC_MAX_ERRORS,
1830                             EDC_ERROR_TIMEFRAME)) {
1831                         dev_err(dev, "DTI: URB max acceptable errors "
1832                                 "exceeded, resetting device\n");
1833                         wa_reset_all(wa);
1834                         goto out;
1835                 }
1836                 if (printk_ratelimit())
1837                         dev_err(dev, "DTI: URB error %d\n", urb->status);
1838                 break;
1839         }
1840         /* Resubmit the DTI URB */
1841         result = usb_submit_urb(wa->dti_urb, GFP_ATOMIC);
1842         if (result < 0) {
1843                 dev_err(dev, "DTI Error: Could not submit DTI URB (%d), "
1844                         "resetting\n", result);
1845                 wa_reset_all(wa);
1846         }
1847 out:
1848         return;
1849 }
1850
1851 /*
1852  * Transfer complete notification
1853  *
1854  * Called from the notif.c code. We get a notification on EP2 saying
1855  * that some endpoint has some transfer result data available. We are
1856  * about to read it.
1857  *
1858  * To speed up things, we always have a URB reading the DTI URB; we
1859  * don't really set it up and start it until the first xfer complete
1860  * notification arrives, which is what we do here.
1861  *
1862  * Follow up in wa_dti_cb(), as that's where the whole state
1863  * machine starts.
1864  *
1865  * So here we just initialize the DTI URB for reading transfer result
1866  * notifications and also the buffer-in URB, for reading buffers. Then
1867  * we just submit the DTI URB.
1868  *
1869  * @wa shall be referenced
1870  */
1871 void wa_handle_notif_xfer(struct wahc *wa, struct wa_notif_hdr *notif_hdr)
1872 {
1873         int result;
1874         struct device *dev = &wa->usb_iface->dev;
1875         struct wa_notif_xfer *notif_xfer;
1876         const struct usb_endpoint_descriptor *dti_epd = wa->dti_epd;
1877
1878         notif_xfer = container_of(notif_hdr, struct wa_notif_xfer, hdr);
1879         BUG_ON(notif_hdr->bNotifyType != WA_NOTIF_TRANSFER);
1880
1881         if ((0x80 | notif_xfer->bEndpoint) != dti_epd->bEndpointAddress) {
1882                 /* FIXME: hardcoded limitation, adapt */
1883                 dev_err(dev, "BUG: DTI ep is %u, not %u (hack me)\n",
1884                         notif_xfer->bEndpoint, dti_epd->bEndpointAddress);
1885                 goto error;
1886         }
1887         if (wa->dti_urb != NULL)        /* DTI URB already started */
1888                 goto out;
1889
1890         wa->dti_urb = usb_alloc_urb(0, GFP_KERNEL);
1891         if (wa->dti_urb == NULL) {
1892                 dev_err(dev, "Can't allocate DTI URB\n");
1893                 goto error_dti_urb_alloc;
1894         }
1895         usb_fill_bulk_urb(
1896                 wa->dti_urb, wa->usb_dev,
1897                 usb_rcvbulkpipe(wa->usb_dev, 0x80 | notif_xfer->bEndpoint),
1898                 wa->dti_buf, wa->dti_buf_size,
1899                 wa_dti_cb, wa);
1900
1901         wa->buf_in_urb = usb_alloc_urb(0, GFP_KERNEL);
1902         if (wa->buf_in_urb == NULL) {
1903                 dev_err(dev, "Can't allocate BUF-IN URB\n");
1904                 goto error_buf_in_urb_alloc;
1905         }
1906         usb_fill_bulk_urb(
1907                 wa->buf_in_urb, wa->usb_dev,
1908                 usb_rcvbulkpipe(wa->usb_dev, 0x80 | notif_xfer->bEndpoint),
1909                 NULL, 0, wa_buf_in_cb, wa);
1910         result = usb_submit_urb(wa->dti_urb, GFP_KERNEL);
1911         if (result < 0) {
1912                 dev_err(dev, "DTI Error: Could not submit DTI URB (%d), "
1913                         "resetting\n", result);
1914                 goto error_dti_urb_submit;
1915         }
1916 out:
1917         return;
1918
1919 error_dti_urb_submit:
1920         usb_put_urb(wa->buf_in_urb);
1921         wa->buf_in_urb = NULL;
1922 error_buf_in_urb_alloc:
1923         usb_put_urb(wa->dti_urb);
1924         wa->dti_urb = NULL;
1925 error_dti_urb_alloc:
1926 error:
1927         wa_reset_all(wa);
1928 }