3 * Data transfer and URB enqueing
5 * Copyright (C) 2005-2006 Intel Corporation
6 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
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.
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.
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
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).
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.
33 * Sounds simple, it is a pain to implement.
40 * LIFE CYCLE / STATE DIAGRAM
44 * THIS CODE IS DISGUSTING
46 * Warned you are; it's my second try and still not happy with it.
52 * - Supports DMA xfers, control, bulk and maybe interrupt
54 * - Does not recycle unused rpipes
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).
62 * Two methods it could be done:
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()].
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
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.
82 #include <linux/spinlock.h>
83 #include <linux/slab.h>
84 #include <linux/hash.h>
85 #include <linux/ratelimit.h>
86 #include <linux/export.h>
87 #include <linux/scatterlist.h>
93 /* [WUSB] section 8.3.3 allocates 7 bits for the segment index. */
109 static void wa_xfer_delayed_run(struct wa_rpipe
*);
110 static int __wa_xfer_delayed_run(struct wa_rpipe
*rpipe
, int *dto_waiting
);
113 * Life cycle governed by 'struct urb' (the refcount of the struct is
114 * that of the 'struct urb' and usb_free_urb() would free the whole
118 struct urb tr_urb
; /* transfer request urb. */
119 struct urb
*isoc_pack_desc_urb
; /* for isoc packet descriptor. */
120 struct urb
*dto_urb
; /* for data output. */
121 struct list_head list_node
; /* for rpipe->req_list */
122 struct wa_xfer
*xfer
; /* out xfer */
123 u8 index
; /* which segment we are */
124 int isoc_frame_count
; /* number of isoc frames in this segment. */
125 int isoc_frame_offset
; /* starting frame offset in the xfer URB. */
126 /* Isoc frame that the current transfer buffer corresponds to. */
127 int isoc_frame_index
;
128 int isoc_size
; /* size of all isoc frames sent by this seg. */
129 enum wa_seg_status status
;
130 ssize_t result
; /* bytes xfered or error */
131 struct wa_xfer_hdr xfer_hdr
;
134 static inline void wa_seg_init(struct wa_seg
*seg
)
136 usb_init_urb(&seg
->tr_urb
);
138 /* set the remaining memory to 0. */
139 memset(((void *)seg
) + sizeof(seg
->tr_urb
), 0,
140 sizeof(*seg
) - sizeof(seg
->tr_urb
));
144 * Protected by xfer->lock
149 struct list_head list_node
;
153 struct wahc
*wa
; /* Wire adapter we are plugged to */
154 struct usb_host_endpoint
*ep
;
155 struct urb
*urb
; /* URB we are transferring for */
156 struct wa_seg
**seg
; /* transfer segments */
157 u8 segs
, segs_submitted
, segs_done
;
158 unsigned is_inbound
:1;
163 gfp_t gfp
; /* allocation mask */
165 struct wusb_dev
*wusb_dev
; /* for activity timestamps */
168 static void __wa_populate_dto_urb_isoc(struct wa_xfer
*xfer
,
169 struct wa_seg
*seg
, int curr_iso_frame
);
170 static void wa_complete_remaining_xfer_segs(struct wa_xfer
*xfer
,
171 int starting_index
, enum wa_seg_status status
);
173 static inline void wa_xfer_init(struct wa_xfer
*xfer
)
175 kref_init(&xfer
->refcnt
);
176 INIT_LIST_HEAD(&xfer
->list_node
);
177 spin_lock_init(&xfer
->lock
);
181 * Destroy a transfer structure
183 * Note that freeing xfer->seg[cnt]->tr_urb will free the containing
184 * xfer->seg[cnt] memory that was allocated by __wa_xfer_setup_segs.
186 static void wa_xfer_destroy(struct kref
*_xfer
)
188 struct wa_xfer
*xfer
= container_of(_xfer
, struct wa_xfer
, refcnt
);
191 for (cnt
= 0; cnt
< xfer
->segs
; cnt
++) {
192 struct wa_seg
*seg
= xfer
->seg
[cnt
];
194 usb_free_urb(seg
->isoc_pack_desc_urb
);
196 kfree(seg
->dto_urb
->sg
);
197 usb_free_urb(seg
->dto_urb
);
199 usb_free_urb(&seg
->tr_urb
);
207 static void wa_xfer_get(struct wa_xfer
*xfer
)
209 kref_get(&xfer
->refcnt
);
212 static void wa_xfer_put(struct wa_xfer
*xfer
)
214 kref_put(&xfer
->refcnt
, wa_xfer_destroy
);
218 * Try to get exclusive access to the DTO endpoint resource. Return true
221 static inline int __wa_dto_try_get(struct wahc
*wa
)
223 return (test_and_set_bit(0, &wa
->dto_in_use
) == 0);
226 /* Release the DTO endpoint resource. */
227 static inline void __wa_dto_put(struct wahc
*wa
)
229 clear_bit_unlock(0, &wa
->dto_in_use
);
232 /* Service RPIPEs that are waiting on the DTO resource. */
233 static void wa_check_for_delayed_rpipes(struct wahc
*wa
)
237 struct wa_rpipe
*rpipe
;
239 spin_lock_irqsave(&wa
->rpipe_lock
, flags
);
240 while (!list_empty(&wa
->rpipe_delayed_list
) && !dto_waiting
) {
241 rpipe
= list_first_entry(&wa
->rpipe_delayed_list
,
242 struct wa_rpipe
, list_node
);
243 __wa_xfer_delayed_run(rpipe
, &dto_waiting
);
244 /* remove this RPIPE from the list if it is not waiting. */
246 pr_debug("%s: RPIPE %d serviced and removed from delayed list.\n",
248 le16_to_cpu(rpipe
->descr
.wRPipeIndex
));
249 list_del_init(&rpipe
->list_node
);
252 spin_unlock_irqrestore(&wa
->rpipe_lock
, flags
);
255 /* add this RPIPE to the end of the delayed RPIPE list. */
256 static void wa_add_delayed_rpipe(struct wahc
*wa
, struct wa_rpipe
*rpipe
)
260 spin_lock_irqsave(&wa
->rpipe_lock
, flags
);
261 /* add rpipe to the list if it is not already on it. */
262 if (list_empty(&rpipe
->list_node
)) {
263 pr_debug("%s: adding RPIPE %d to the delayed list.\n",
264 __func__
, le16_to_cpu(rpipe
->descr
.wRPipeIndex
));
265 list_add_tail(&rpipe
->list_node
, &wa
->rpipe_delayed_list
);
267 spin_unlock_irqrestore(&wa
->rpipe_lock
, flags
);
273 * xfer->lock has to be unlocked
275 * We take xfer->lock for setting the result; this is a barrier
276 * against drivers/usb/core/hcd.c:unlink1() being called after we call
277 * usb_hcd_giveback_urb() and wa_urb_dequeue() trying to get a
278 * reference to the transfer.
280 static void wa_xfer_giveback(struct wa_xfer
*xfer
)
284 spin_lock_irqsave(&xfer
->wa
->xfer_list_lock
, flags
);
285 list_del_init(&xfer
->list_node
);
286 usb_hcd_unlink_urb_from_ep(&(xfer
->wa
->wusb
->usb_hcd
), xfer
->urb
);
287 spin_unlock_irqrestore(&xfer
->wa
->xfer_list_lock
, flags
);
288 /* FIXME: segmentation broken -- kills DWA */
289 wusbhc_giveback_urb(xfer
->wa
->wusb
, xfer
->urb
, xfer
->result
);
297 * xfer->lock has to be unlocked
299 static void wa_xfer_completion(struct wa_xfer
*xfer
)
302 wusb_dev_put(xfer
->wusb_dev
);
303 rpipe_put(xfer
->ep
->hcpriv
);
304 wa_xfer_giveback(xfer
);
308 * Initialize a transfer's ID
310 * We need to use a sequential number; if we use the pointer or the
311 * hash of the pointer, it can repeat over sequential transfers and
312 * then it will confuse the HWA....wonder why in hell they put a 32
313 * bit handle in there then.
315 static void wa_xfer_id_init(struct wa_xfer
*xfer
)
317 xfer
->id
= atomic_add_return(1, &xfer
->wa
->xfer_id_count
);
320 /* Return the xfer's ID. */
321 static inline u32
wa_xfer_id(struct wa_xfer
*xfer
)
326 /* Return the xfer's ID in transport format (little endian). */
327 static inline __le32
wa_xfer_id_le32(struct wa_xfer
*xfer
)
329 return cpu_to_le32(xfer
->id
);
333 * If transfer is done, wrap it up and return true
335 * xfer->lock has to be locked
337 static unsigned __wa_xfer_is_done(struct wa_xfer
*xfer
)
339 struct device
*dev
= &xfer
->wa
->usb_iface
->dev
;
340 unsigned result
, cnt
;
342 struct urb
*urb
= xfer
->urb
;
343 unsigned found_short
= 0;
345 result
= xfer
->segs_done
== xfer
->segs_submitted
;
348 urb
->actual_length
= 0;
349 for (cnt
= 0; cnt
< xfer
->segs
; cnt
++) {
350 seg
= xfer
->seg
[cnt
];
351 switch (seg
->status
) {
353 if (found_short
&& seg
->result
> 0) {
354 dev_dbg(dev
, "xfer %p ID %08X#%u: bad short segments (%zu)\n",
355 xfer
, wa_xfer_id(xfer
), cnt
,
357 urb
->status
= -EINVAL
;
360 urb
->actual_length
+= seg
->result
;
361 if (!(usb_pipeisoc(xfer
->urb
->pipe
))
362 && seg
->result
< xfer
->seg_size
363 && cnt
!= xfer
->segs
-1)
365 dev_dbg(dev
, "xfer %p ID %08X#%u: DONE short %d "
366 "result %zu urb->actual_length %d\n",
367 xfer
, wa_xfer_id(xfer
), seg
->index
, found_short
,
368 seg
->result
, urb
->actual_length
);
371 xfer
->result
= seg
->result
;
372 dev_dbg(dev
, "xfer %p ID %08X#%u: ERROR result %zi(0x%08zX)\n",
373 xfer
, wa_xfer_id(xfer
), seg
->index
, seg
->result
,
377 xfer
->result
= seg
->result
;
378 dev_dbg(dev
, "xfer %p ID %08X#%u: ABORTED result %zi(0x%08zX)\n",
379 xfer
, wa_xfer_id(xfer
), seg
->index
, seg
->result
,
383 dev_warn(dev
, "xfer %p ID %08X#%u: is_done bad state %d\n",
384 xfer
, wa_xfer_id(xfer
), cnt
, seg
->status
);
385 xfer
->result
= -EINVAL
;
395 * Mark the given segment as done. Return true if this completes the xfer.
396 * This should only be called for segs that have been submitted to an RPIPE.
397 * Delayed segs are not marked as submitted so they do not need to be marked
398 * as done when cleaning up.
400 * xfer->lock has to be locked
402 static unsigned __wa_xfer_mark_seg_as_done(struct wa_xfer
*xfer
,
403 struct wa_seg
*seg
, enum wa_seg_status status
)
405 seg
->status
= status
;
408 /* check for done. */
409 return __wa_xfer_is_done(xfer
);
413 * Search for a transfer list ID on the HCD's URB list
415 * For 32 bit architectures, we use the pointer itself; for 64 bits, a
416 * 32-bit hash of the pointer.
418 * @returns NULL if not found.
420 static struct wa_xfer
*wa_xfer_get_by_id(struct wahc
*wa
, u32 id
)
423 struct wa_xfer
*xfer_itr
;
424 spin_lock_irqsave(&wa
->xfer_list_lock
, flags
);
425 list_for_each_entry(xfer_itr
, &wa
->xfer_list
, list_node
) {
426 if (id
== xfer_itr
->id
) {
427 wa_xfer_get(xfer_itr
);
433 spin_unlock_irqrestore(&wa
->xfer_list_lock
, flags
);
437 struct wa_xfer_abort_buffer
{
440 struct wa_xfer_abort cmd
;
443 static void __wa_xfer_abort_cb(struct urb
*urb
)
445 struct wa_xfer_abort_buffer
*b
= urb
->context
;
446 struct wahc
*wa
= b
->wa
;
449 * If the abort request URB failed, then the HWA did not get the abort
450 * command. Forcibly clean up the xfer without waiting for a Transfer
451 * Result from the HWA.
453 if (urb
->status
< 0) {
454 struct wa_xfer
*xfer
;
455 struct device
*dev
= &wa
->usb_iface
->dev
;
457 xfer
= wa_xfer_get_by_id(wa
, le32_to_cpu(b
->cmd
.dwTransferID
));
458 dev_err(dev
, "%s: Transfer Abort request failed. result: %d\n",
459 __func__
, urb
->status
);
463 struct wa_rpipe
*rpipe
= xfer
->ep
->hcpriv
;
465 dev_err(dev
, "%s: cleaning up xfer %p ID 0x%08X.\n",
466 __func__
, xfer
, wa_xfer_id(xfer
));
467 spin_lock_irqsave(&xfer
->lock
, flags
);
468 /* mark all segs as aborted. */
469 wa_complete_remaining_xfer_segs(xfer
, 0,
471 done
= __wa_xfer_is_done(xfer
);
472 spin_unlock_irqrestore(&xfer
->lock
, flags
);
474 wa_xfer_completion(xfer
);
475 wa_xfer_delayed_run(rpipe
);
478 dev_err(dev
, "%s: xfer ID 0x%08X already gone.\n",
479 __func__
, le32_to_cpu(b
->cmd
.dwTransferID
));
483 wa_put(wa
); /* taken in __wa_xfer_abort */
484 usb_put_urb(&b
->urb
);
488 * Aborts an ongoing transaction
490 * Assumes the transfer is referenced and locked and in a submitted
491 * state (mainly that there is an endpoint/rpipe assigned).
493 * The callback (see above) does nothing but freeing up the data by
494 * putting the URB. Because the URB is allocated at the head of the
495 * struct, the whole space we allocated is kfreed. *
497 static int __wa_xfer_abort(struct wa_xfer
*xfer
)
499 int result
= -ENOMEM
;
500 struct device
*dev
= &xfer
->wa
->usb_iface
->dev
;
501 struct wa_xfer_abort_buffer
*b
;
502 struct wa_rpipe
*rpipe
= xfer
->ep
->hcpriv
;
504 b
= kmalloc(sizeof(*b
), GFP_ATOMIC
);
507 b
->cmd
.bLength
= sizeof(b
->cmd
);
508 b
->cmd
.bRequestType
= WA_XFER_ABORT
;
509 b
->cmd
.wRPipe
= rpipe
->descr
.wRPipeIndex
;
510 b
->cmd
.dwTransferID
= wa_xfer_id_le32(xfer
);
511 b
->wa
= wa_get(xfer
->wa
);
513 usb_init_urb(&b
->urb
);
514 usb_fill_bulk_urb(&b
->urb
, xfer
->wa
->usb_dev
,
515 usb_sndbulkpipe(xfer
->wa
->usb_dev
,
516 xfer
->wa
->dto_epd
->bEndpointAddress
),
517 &b
->cmd
, sizeof(b
->cmd
), __wa_xfer_abort_cb
, b
);
518 result
= usb_submit_urb(&b
->urb
, GFP_ATOMIC
);
521 return result
; /* callback frees! */
526 if (printk_ratelimit())
527 dev_err(dev
, "xfer %p: Can't submit abort request: %d\n",
536 * Calculate the number of isoc frames starting from isoc_frame_offset
537 * that will fit a in transfer segment.
539 static int __wa_seg_calculate_isoc_frame_count(struct wa_xfer
*xfer
,
540 int isoc_frame_offset
, int *total_size
)
542 int segment_size
= 0, frame_count
= 0;
543 int index
= isoc_frame_offset
;
544 struct usb_iso_packet_descriptor
*iso_frame_desc
=
545 xfer
->urb
->iso_frame_desc
;
547 while ((index
< xfer
->urb
->number_of_packets
)
548 && ((segment_size
+ iso_frame_desc
[index
].length
)
549 <= xfer
->seg_size
)) {
551 * For Alereon HWA devices, only include an isoc frame in an
552 * out segment if it is physically contiguous with the previous
553 * frame. This is required because those devices expect
554 * the isoc frames to be sent as a single USB transaction as
555 * opposed to one transaction per frame with standard HWA.
557 if ((xfer
->wa
->quirks
& WUSB_QUIRK_ALEREON_HWA_CONCAT_ISOC
)
558 && (xfer
->is_inbound
== 0)
559 && (index
> isoc_frame_offset
)
560 && ((iso_frame_desc
[index
- 1].offset
+
561 iso_frame_desc
[index
- 1].length
) !=
562 iso_frame_desc
[index
].offset
))
565 /* this frame fits. count it. */
567 segment_size
+= iso_frame_desc
[index
].length
;
569 /* move to the next isoc frame. */
573 *total_size
= segment_size
;
579 * @returns < 0 on error, transfer segment request size if ok
581 static ssize_t
__wa_xfer_setup_sizes(struct wa_xfer
*xfer
,
582 enum wa_xfer_type
*pxfer_type
)
585 struct device
*dev
= &xfer
->wa
->usb_iface
->dev
;
587 struct urb
*urb
= xfer
->urb
;
588 struct wa_rpipe
*rpipe
= xfer
->ep
->hcpriv
;
590 switch (rpipe
->descr
.bmAttribute
& 0x3) {
591 case USB_ENDPOINT_XFER_CONTROL
:
592 *pxfer_type
= WA_XFER_TYPE_CTL
;
593 result
= sizeof(struct wa_xfer_ctl
);
595 case USB_ENDPOINT_XFER_INT
:
596 case USB_ENDPOINT_XFER_BULK
:
597 *pxfer_type
= WA_XFER_TYPE_BI
;
598 result
= sizeof(struct wa_xfer_bi
);
600 case USB_ENDPOINT_XFER_ISOC
:
601 *pxfer_type
= WA_XFER_TYPE_ISO
;
602 result
= sizeof(struct wa_xfer_hwaiso
);
607 result
= -EINVAL
; /* shut gcc up */
609 xfer
->is_inbound
= urb
->pipe
& USB_DIR_IN
? 1 : 0;
610 xfer
->is_dma
= urb
->transfer_flags
& URB_NO_TRANSFER_DMA_MAP
? 1 : 0;
612 maxpktsize
= le16_to_cpu(rpipe
->descr
.wMaxPacketSize
);
613 xfer
->seg_size
= le16_to_cpu(rpipe
->descr
.wBlocks
)
614 * 1 << (xfer
->wa
->wa_descr
->bRPipeBlockSize
- 1);
615 /* Compute the segment size and make sure it is a multiple of
616 * the maxpktsize (WUSB1.0[8.3.3.1])...not really too much of
618 if (xfer
->seg_size
< maxpktsize
) {
620 "HW BUG? seg_size %zu smaller than maxpktsize %zu\n",
621 xfer
->seg_size
, maxpktsize
);
625 xfer
->seg_size
= (xfer
->seg_size
/ maxpktsize
) * maxpktsize
;
626 if ((rpipe
->descr
.bmAttribute
& 0x3) == USB_ENDPOINT_XFER_ISOC
) {
631 * loop over urb->number_of_packets to determine how many
632 * xfer segments will be needed to send the isoc frames.
634 while (index
< urb
->number_of_packets
) {
635 int seg_size
; /* don't care. */
636 index
+= __wa_seg_calculate_isoc_frame_count(xfer
,
641 xfer
->segs
= DIV_ROUND_UP(urb
->transfer_buffer_length
,
643 if (xfer
->segs
== 0 && *pxfer_type
== WA_XFER_TYPE_CTL
)
647 if (xfer
->segs
> WA_SEGS_MAX
) {
648 dev_err(dev
, "BUG? oops, number of segments %zu bigger than %d\n",
649 (urb
->transfer_buffer_length
/xfer
->seg_size
),
658 static void __wa_setup_isoc_packet_descr(
659 struct wa_xfer_packet_info_hwaiso
*packet_desc
,
660 struct wa_xfer
*xfer
,
661 struct wa_seg
*seg
) {
662 struct usb_iso_packet_descriptor
*iso_frame_desc
=
663 xfer
->urb
->iso_frame_desc
;
666 /* populate isoc packet descriptor. */
667 packet_desc
->bPacketType
= WA_XFER_ISO_PACKET_INFO
;
668 packet_desc
->wLength
= cpu_to_le16(sizeof(*packet_desc
) +
669 (sizeof(packet_desc
->PacketLength
[0]) *
670 seg
->isoc_frame_count
));
671 for (frame_index
= 0; frame_index
< seg
->isoc_frame_count
;
673 int offset_index
= frame_index
+ seg
->isoc_frame_offset
;
674 packet_desc
->PacketLength
[frame_index
] =
675 cpu_to_le16(iso_frame_desc
[offset_index
].length
);
680 /* Fill in the common request header and xfer-type specific data. */
681 static void __wa_xfer_setup_hdr0(struct wa_xfer
*xfer
,
682 struct wa_xfer_hdr
*xfer_hdr0
,
683 enum wa_xfer_type xfer_type
,
684 size_t xfer_hdr_size
)
686 struct wa_rpipe
*rpipe
= xfer
->ep
->hcpriv
;
687 struct wa_seg
*seg
= xfer
->seg
[0];
689 xfer_hdr0
= &seg
->xfer_hdr
;
690 xfer_hdr0
->bLength
= xfer_hdr_size
;
691 xfer_hdr0
->bRequestType
= xfer_type
;
692 xfer_hdr0
->wRPipe
= rpipe
->descr
.wRPipeIndex
;
693 xfer_hdr0
->dwTransferID
= wa_xfer_id_le32(xfer
);
694 xfer_hdr0
->bTransferSegment
= 0;
696 case WA_XFER_TYPE_CTL
: {
697 struct wa_xfer_ctl
*xfer_ctl
=
698 container_of(xfer_hdr0
, struct wa_xfer_ctl
, hdr
);
699 xfer_ctl
->bmAttribute
= xfer
->is_inbound
? 1 : 0;
700 memcpy(&xfer_ctl
->baSetupData
, xfer
->urb
->setup_packet
,
701 sizeof(xfer_ctl
->baSetupData
));
704 case WA_XFER_TYPE_BI
:
706 case WA_XFER_TYPE_ISO
: {
707 struct wa_xfer_hwaiso
*xfer_iso
=
708 container_of(xfer_hdr0
, struct wa_xfer_hwaiso
, hdr
);
709 struct wa_xfer_packet_info_hwaiso
*packet_desc
=
710 ((void *)xfer_iso
) + xfer_hdr_size
;
712 /* populate the isoc section of the transfer request. */
713 xfer_iso
->dwNumOfPackets
= cpu_to_le32(seg
->isoc_frame_count
);
714 /* populate isoc packet descriptor. */
715 __wa_setup_isoc_packet_descr(packet_desc
, xfer
, seg
);
724 * Callback for the OUT data phase of the segment request
726 * Check wa_seg_tr_cb(); most comments also apply here because this
727 * function does almost the same thing and they work closely
730 * If the seg request has failed but this DTO phase has succeeded,
731 * wa_seg_tr_cb() has already failed the segment and moved the
732 * status to WA_SEG_ERROR, so this will go through 'case 0' and
733 * effectively do nothing.
735 static void wa_seg_dto_cb(struct urb
*urb
)
737 struct wa_seg
*seg
= urb
->context
;
738 struct wa_xfer
*xfer
= seg
->xfer
;
741 struct wa_rpipe
*rpipe
;
743 unsigned rpipe_ready
= 0;
744 int data_send_done
= 1, release_dto
= 0, holding_dto
= 0;
748 /* free the sg if it was used. */
752 spin_lock_irqsave(&xfer
->lock
, flags
);
754 dev
= &wa
->usb_iface
->dev
;
755 if (usb_pipeisoc(xfer
->urb
->pipe
)) {
756 /* Alereon HWA sends all isoc frames in a single transfer. */
757 if (wa
->quirks
& WUSB_QUIRK_ALEREON_HWA_CONCAT_ISOC
)
758 seg
->isoc_frame_index
+= seg
->isoc_frame_count
;
760 seg
->isoc_frame_index
+= 1;
761 if (seg
->isoc_frame_index
< seg
->isoc_frame_count
) {
763 holding_dto
= 1; /* checked in error cases. */
765 * if this is the last isoc frame of the segment, we
766 * can release DTO after sending this frame.
768 if ((seg
->isoc_frame_index
+ 1) >=
769 seg
->isoc_frame_count
)
772 dev_dbg(dev
, "xfer 0x%08X#%u: isoc frame = %d, holding_dto = %d, release_dto = %d.\n",
773 wa_xfer_id(xfer
), seg
->index
, seg
->isoc_frame_index
,
774 holding_dto
, release_dto
);
776 spin_unlock_irqrestore(&xfer
->lock
, flags
);
778 switch (urb
->status
) {
780 spin_lock_irqsave(&xfer
->lock
, flags
);
781 seg
->result
+= urb
->actual_length
;
782 if (data_send_done
) {
783 dev_dbg(dev
, "xfer 0x%08X#%u: data out done (%zu bytes)\n",
784 wa_xfer_id(xfer
), seg
->index
, seg
->result
);
785 if (seg
->status
< WA_SEG_PENDING
)
786 seg
->status
= WA_SEG_PENDING
;
788 /* should only hit this for isoc xfers. */
790 * Populate the dto URB with the next isoc frame buffer,
791 * send the URB and release DTO if we no longer need it.
793 __wa_populate_dto_urb_isoc(xfer
, seg
,
794 seg
->isoc_frame_offset
+ seg
->isoc_frame_index
);
796 /* resubmit the URB with the next isoc frame. */
797 /* take a ref on resubmit. */
799 result
= usb_submit_urb(seg
->dto_urb
, GFP_ATOMIC
);
801 dev_err(dev
, "xfer 0x%08X#%u: DTO submit failed: %d\n",
802 wa_xfer_id(xfer
), seg
->index
, result
);
803 spin_unlock_irqrestore(&xfer
->lock
, flags
);
804 goto error_dto_submit
;
807 spin_unlock_irqrestore(&xfer
->lock
, flags
);
810 wa_check_for_delayed_rpipes(wa
);
813 case -ECONNRESET
: /* URB unlinked; no need to do anything */
814 case -ENOENT
: /* as it was done by the who unlinked us */
817 wa_check_for_delayed_rpipes(wa
);
820 default: /* Other errors ... */
821 dev_err(dev
, "xfer 0x%08X#%u: data out error %d\n",
822 wa_xfer_id(xfer
), seg
->index
, urb
->status
);
826 /* taken when this URB was submitted. */
831 /* taken on resubmit attempt. */
834 spin_lock_irqsave(&xfer
->lock
, flags
);
835 rpipe
= xfer
->ep
->hcpriv
;
836 if (edc_inc(&wa
->nep_edc
, EDC_MAX_ERRORS
,
837 EDC_ERROR_TIMEFRAME
)){
838 dev_err(dev
, "DTO: URB max acceptable errors exceeded, resetting device\n");
841 if (seg
->status
!= WA_SEG_ERROR
) {
842 seg
->result
= urb
->status
;
843 __wa_xfer_abort(xfer
);
844 rpipe_ready
= rpipe_avail_inc(rpipe
);
845 done
= __wa_xfer_mark_seg_as_done(xfer
, seg
, WA_SEG_ERROR
);
847 spin_unlock_irqrestore(&xfer
->lock
, flags
);
850 wa_check_for_delayed_rpipes(wa
);
853 wa_xfer_completion(xfer
);
855 wa_xfer_delayed_run(rpipe
);
856 /* taken when this URB was submitted. */
861 * Callback for the isoc packet descriptor phase of the segment request
863 * Check wa_seg_tr_cb(); most comments also apply here because this
864 * function does almost the same thing and they work closely
867 * If the seg request has failed but this phase has succeeded,
868 * wa_seg_tr_cb() has already failed the segment and moved the
869 * status to WA_SEG_ERROR, so this will go through 'case 0' and
870 * effectively do nothing.
872 static void wa_seg_iso_pack_desc_cb(struct urb
*urb
)
874 struct wa_seg
*seg
= urb
->context
;
875 struct wa_xfer
*xfer
= seg
->xfer
;
878 struct wa_rpipe
*rpipe
;
880 unsigned rpipe_ready
= 0;
883 switch (urb
->status
) {
885 spin_lock_irqsave(&xfer
->lock
, flags
);
887 dev
= &wa
->usb_iface
->dev
;
888 dev_dbg(dev
, "iso xfer %08X#%u: packet descriptor done\n",
889 wa_xfer_id(xfer
), seg
->index
);
890 if (xfer
->is_inbound
&& seg
->status
< WA_SEG_PENDING
)
891 seg
->status
= WA_SEG_PENDING
;
892 spin_unlock_irqrestore(&xfer
->lock
, flags
);
894 case -ECONNRESET
: /* URB unlinked; no need to do anything */
895 case -ENOENT
: /* as it was done by the who unlinked us */
897 default: /* Other errors ... */
898 spin_lock_irqsave(&xfer
->lock
, flags
);
900 dev
= &wa
->usb_iface
->dev
;
901 rpipe
= xfer
->ep
->hcpriv
;
902 pr_err_ratelimited("iso xfer %08X#%u: packet descriptor error %d\n",
903 wa_xfer_id(xfer
), seg
->index
, urb
->status
);
904 if (edc_inc(&wa
->nep_edc
, EDC_MAX_ERRORS
,
905 EDC_ERROR_TIMEFRAME
)){
906 dev_err(dev
, "iso xfer: URB max acceptable errors exceeded, resetting device\n");
909 if (seg
->status
!= WA_SEG_ERROR
) {
910 usb_unlink_urb(seg
->dto_urb
);
911 seg
->result
= urb
->status
;
912 __wa_xfer_abort(xfer
);
913 rpipe_ready
= rpipe_avail_inc(rpipe
);
914 done
= __wa_xfer_mark_seg_as_done(xfer
, seg
,
917 spin_unlock_irqrestore(&xfer
->lock
, flags
);
919 wa_xfer_completion(xfer
);
921 wa_xfer_delayed_run(rpipe
);
923 /* taken when this URB was submitted. */
928 * Callback for the segment request
930 * If successful transition state (unless already transitioned or
931 * outbound transfer); otherwise, take a note of the error, mark this
932 * segment done and try completion.
934 * Note we don't access until we are sure that the transfer hasn't
935 * been cancelled (ECONNRESET, ENOENT), which could mean that
936 * seg->xfer could be already gone.
938 * We have to check before setting the status to WA_SEG_PENDING
939 * because sometimes the xfer result callback arrives before this
940 * callback (geeeeeeze), so it might happen that we are already in
941 * another state. As well, we don't set it if the transfer is not inbound,
942 * as in that case, wa_seg_dto_cb will do it when the OUT data phase
945 static void wa_seg_tr_cb(struct urb
*urb
)
947 struct wa_seg
*seg
= urb
->context
;
948 struct wa_xfer
*xfer
= seg
->xfer
;
951 struct wa_rpipe
*rpipe
;
953 unsigned rpipe_ready
;
956 switch (urb
->status
) {
958 spin_lock_irqsave(&xfer
->lock
, flags
);
960 dev
= &wa
->usb_iface
->dev
;
961 dev_dbg(dev
, "xfer %p ID 0x%08X#%u: request done\n",
962 xfer
, wa_xfer_id(xfer
), seg
->index
);
963 if (xfer
->is_inbound
&&
964 seg
->status
< WA_SEG_PENDING
&&
965 !(usb_pipeisoc(xfer
->urb
->pipe
)))
966 seg
->status
= WA_SEG_PENDING
;
967 spin_unlock_irqrestore(&xfer
->lock
, flags
);
969 case -ECONNRESET
: /* URB unlinked; no need to do anything */
970 case -ENOENT
: /* as it was done by the who unlinked us */
972 default: /* Other errors ... */
973 spin_lock_irqsave(&xfer
->lock
, flags
);
975 dev
= &wa
->usb_iface
->dev
;
976 rpipe
= xfer
->ep
->hcpriv
;
977 if (printk_ratelimit())
978 dev_err(dev
, "xfer %p ID 0x%08X#%u: request error %d\n",
979 xfer
, wa_xfer_id(xfer
), seg
->index
,
981 if (edc_inc(&wa
->nep_edc
, EDC_MAX_ERRORS
,
982 EDC_ERROR_TIMEFRAME
)){
983 dev_err(dev
, "DTO: URB max acceptable errors "
984 "exceeded, resetting device\n");
987 usb_unlink_urb(seg
->isoc_pack_desc_urb
);
988 usb_unlink_urb(seg
->dto_urb
);
989 seg
->result
= urb
->status
;
990 __wa_xfer_abort(xfer
);
991 rpipe_ready
= rpipe_avail_inc(rpipe
);
992 done
= __wa_xfer_mark_seg_as_done(xfer
, seg
, WA_SEG_ERROR
);
993 spin_unlock_irqrestore(&xfer
->lock
, flags
);
995 wa_xfer_completion(xfer
);
997 wa_xfer_delayed_run(rpipe
);
999 /* taken when this URB was submitted. */
1004 * Allocate an SG list to store bytes_to_transfer bytes and copy the
1005 * subset of the in_sg that matches the buffer subset
1006 * we are about to transfer.
1008 static struct scatterlist
*wa_xfer_create_subset_sg(struct scatterlist
*in_sg
,
1009 const unsigned int bytes_transferred
,
1010 const unsigned int bytes_to_transfer
, int *out_num_sgs
)
1012 struct scatterlist
*out_sg
;
1013 unsigned int bytes_processed
= 0, offset_into_current_page_data
= 0,
1015 struct scatterlist
*current_xfer_sg
= in_sg
;
1016 struct scatterlist
*current_seg_sg
, *last_seg_sg
;
1018 /* skip previously transferred pages. */
1019 while ((current_xfer_sg
) &&
1020 (bytes_processed
< bytes_transferred
)) {
1021 bytes_processed
+= current_xfer_sg
->length
;
1023 /* advance the sg if current segment starts on or past the
1025 if (bytes_processed
<= bytes_transferred
)
1026 current_xfer_sg
= sg_next(current_xfer_sg
);
1029 /* the data for the current segment starts in current_xfer_sg.
1030 calculate the offset. */
1031 if (bytes_processed
> bytes_transferred
) {
1032 offset_into_current_page_data
= current_xfer_sg
->length
-
1033 (bytes_processed
- bytes_transferred
);
1036 /* calculate the number of pages needed by this segment. */
1037 nents
= DIV_ROUND_UP((bytes_to_transfer
+
1038 offset_into_current_page_data
+
1039 current_xfer_sg
->offset
),
1042 out_sg
= kmalloc((sizeof(struct scatterlist
) * nents
), GFP_ATOMIC
);
1044 sg_init_table(out_sg
, nents
);
1046 /* copy the portion of the incoming SG that correlates to the
1047 * data to be transferred by this segment to the segment SG. */
1048 last_seg_sg
= current_seg_sg
= out_sg
;
1049 bytes_processed
= 0;
1051 /* reset nents and calculate the actual number of sg entries
1054 while ((bytes_processed
< bytes_to_transfer
) &&
1055 current_seg_sg
&& current_xfer_sg
) {
1056 unsigned int page_len
= min((current_xfer_sg
->length
-
1057 offset_into_current_page_data
),
1058 (bytes_to_transfer
- bytes_processed
));
1060 sg_set_page(current_seg_sg
, sg_page(current_xfer_sg
),
1062 current_xfer_sg
->offset
+
1063 offset_into_current_page_data
);
1065 bytes_processed
+= page_len
;
1067 last_seg_sg
= current_seg_sg
;
1068 current_seg_sg
= sg_next(current_seg_sg
);
1069 current_xfer_sg
= sg_next(current_xfer_sg
);
1071 /* only the first page may require additional offset. */
1072 offset_into_current_page_data
= 0;
1076 /* update num_sgs and terminate the list since we may have
1077 * concatenated pages. */
1078 sg_mark_end(last_seg_sg
);
1079 *out_num_sgs
= nents
;
1086 * Populate DMA buffer info for the isoc dto urb.
1088 static void __wa_populate_dto_urb_isoc(struct wa_xfer
*xfer
,
1089 struct wa_seg
*seg
, int curr_iso_frame
)
1091 seg
->dto_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1092 seg
->dto_urb
->sg
= NULL
;
1093 seg
->dto_urb
->num_sgs
= 0;
1094 /* dto urb buffer address pulled from iso_frame_desc. */
1095 seg
->dto_urb
->transfer_dma
= xfer
->urb
->transfer_dma
+
1096 xfer
->urb
->iso_frame_desc
[curr_iso_frame
].offset
;
1097 /* The Alereon HWA sends a single URB with all isoc segs. */
1098 if (xfer
->wa
->quirks
& WUSB_QUIRK_ALEREON_HWA_CONCAT_ISOC
)
1099 seg
->dto_urb
->transfer_buffer_length
= seg
->isoc_size
;
1101 seg
->dto_urb
->transfer_buffer_length
=
1102 xfer
->urb
->iso_frame_desc
[curr_iso_frame
].length
;
1106 * Populate buffer ptr and size, DMA buffer or SG list for the dto urb.
1108 static int __wa_populate_dto_urb(struct wa_xfer
*xfer
,
1109 struct wa_seg
*seg
, size_t buf_itr_offset
, size_t buf_itr_size
)
1114 seg
->dto_urb
->transfer_dma
=
1115 xfer
->urb
->transfer_dma
+ buf_itr_offset
;
1116 seg
->dto_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1117 seg
->dto_urb
->sg
= NULL
;
1118 seg
->dto_urb
->num_sgs
= 0;
1120 /* do buffer or SG processing. */
1121 seg
->dto_urb
->transfer_flags
&=
1122 ~URB_NO_TRANSFER_DMA_MAP
;
1123 /* this should always be 0 before a resubmit. */
1124 seg
->dto_urb
->num_mapped_sgs
= 0;
1126 if (xfer
->urb
->transfer_buffer
) {
1127 seg
->dto_urb
->transfer_buffer
=
1128 xfer
->urb
->transfer_buffer
+
1130 seg
->dto_urb
->sg
= NULL
;
1131 seg
->dto_urb
->num_sgs
= 0;
1133 seg
->dto_urb
->transfer_buffer
= NULL
;
1136 * allocate an SG list to store seg_size bytes
1137 * and copy the subset of the xfer->urb->sg that
1138 * matches the buffer subset we are about to
1141 seg
->dto_urb
->sg
= wa_xfer_create_subset_sg(
1143 buf_itr_offset
, buf_itr_size
,
1144 &(seg
->dto_urb
->num_sgs
));
1145 if (!(seg
->dto_urb
->sg
))
1149 seg
->dto_urb
->transfer_buffer_length
= buf_itr_size
;
1155 * Allocate the segs array and initialize each of them
1157 * The segments are freed by wa_xfer_destroy() when the xfer use count
1158 * drops to zero; however, because each segment is given the same life
1159 * cycle as the USB URB it contains, it is actually freed by
1160 * usb_put_urb() on the contained USB URB (twisted, eh?).
1162 static int __wa_xfer_setup_segs(struct wa_xfer
*xfer
, size_t xfer_hdr_size
)
1164 int result
, cnt
, isoc_frame_offset
= 0;
1165 size_t alloc_size
= sizeof(*xfer
->seg
[0])
1166 - sizeof(xfer
->seg
[0]->xfer_hdr
) + xfer_hdr_size
;
1167 struct usb_device
*usb_dev
= xfer
->wa
->usb_dev
;
1168 const struct usb_endpoint_descriptor
*dto_epd
= xfer
->wa
->dto_epd
;
1170 size_t buf_itr
, buf_size
, buf_itr_size
;
1173 xfer
->seg
= kcalloc(xfer
->segs
, sizeof(xfer
->seg
[0]), GFP_ATOMIC
);
1174 if (xfer
->seg
== NULL
)
1175 goto error_segs_kzalloc
;
1177 buf_size
= xfer
->urb
->transfer_buffer_length
;
1178 for (cnt
= 0; cnt
< xfer
->segs
; cnt
++) {
1179 size_t iso_pkt_descr_size
= 0;
1180 int seg_isoc_frame_count
= 0, seg_isoc_size
= 0;
1183 * Adjust the size of the segment object to contain space for
1184 * the isoc packet descriptor buffer.
1186 if (usb_pipeisoc(xfer
->urb
->pipe
)) {
1187 seg_isoc_frame_count
=
1188 __wa_seg_calculate_isoc_frame_count(xfer
,
1189 isoc_frame_offset
, &seg_isoc_size
);
1191 iso_pkt_descr_size
=
1192 sizeof(struct wa_xfer_packet_info_hwaiso
) +
1193 (seg_isoc_frame_count
* sizeof(__le16
));
1195 seg
= xfer
->seg
[cnt
] = kmalloc(alloc_size
+ iso_pkt_descr_size
,
1198 goto error_seg_kmalloc
;
1202 usb_fill_bulk_urb(&seg
->tr_urb
, usb_dev
,
1203 usb_sndbulkpipe(usb_dev
,
1204 dto_epd
->bEndpointAddress
),
1205 &seg
->xfer_hdr
, xfer_hdr_size
,
1207 buf_itr_size
= min(buf_size
, xfer
->seg_size
);
1209 if (usb_pipeisoc(xfer
->urb
->pipe
)) {
1210 seg
->isoc_frame_count
= seg_isoc_frame_count
;
1211 seg
->isoc_frame_offset
= isoc_frame_offset
;
1212 seg
->isoc_size
= seg_isoc_size
;
1213 /* iso packet descriptor. */
1214 seg
->isoc_pack_desc_urb
=
1215 usb_alloc_urb(0, GFP_ATOMIC
);
1216 if (seg
->isoc_pack_desc_urb
== NULL
)
1217 goto error_iso_pack_desc_alloc
;
1219 * The buffer for the isoc packet descriptor starts
1220 * after the transfer request header in the
1221 * segment object memory buffer.
1224 seg
->isoc_pack_desc_urb
, usb_dev
,
1225 usb_sndbulkpipe(usb_dev
,
1226 dto_epd
->bEndpointAddress
),
1227 (void *)(&seg
->xfer_hdr
) +
1230 wa_seg_iso_pack_desc_cb
, seg
);
1232 /* adjust starting frame offset for next seg. */
1233 isoc_frame_offset
+= seg_isoc_frame_count
;
1236 if (xfer
->is_inbound
== 0 && buf_size
> 0) {
1237 /* outbound data. */
1238 seg
->dto_urb
= usb_alloc_urb(0, GFP_ATOMIC
);
1239 if (seg
->dto_urb
== NULL
)
1240 goto error_dto_alloc
;
1242 seg
->dto_urb
, usb_dev
,
1243 usb_sndbulkpipe(usb_dev
,
1244 dto_epd
->bEndpointAddress
),
1245 NULL
, 0, wa_seg_dto_cb
, seg
);
1247 if (usb_pipeisoc(xfer
->urb
->pipe
)) {
1249 * Fill in the xfer buffer information for the
1250 * first isoc frame. Subsequent frames in this
1251 * segment will be filled in and sent from the
1252 * DTO completion routine, if needed.
1254 __wa_populate_dto_urb_isoc(xfer
, seg
,
1255 seg
->isoc_frame_offset
);
1257 /* fill in the xfer buffer information. */
1258 result
= __wa_populate_dto_urb(xfer
, seg
,
1259 buf_itr
, buf_itr_size
);
1261 goto error_seg_outbound_populate
;
1263 buf_itr
+= buf_itr_size
;
1264 buf_size
-= buf_itr_size
;
1267 seg
->status
= WA_SEG_READY
;
1272 * Free the memory for the current segment which failed to init.
1273 * Use the fact that cnt is left at were it failed. The remaining
1274 * segments will be cleaned up by wa_xfer_destroy.
1276 error_seg_outbound_populate
:
1277 usb_free_urb(xfer
->seg
[cnt
]->dto_urb
);
1279 usb_free_urb(xfer
->seg
[cnt
]->isoc_pack_desc_urb
);
1280 error_iso_pack_desc_alloc
:
1281 kfree(xfer
->seg
[cnt
]);
1282 xfer
->seg
[cnt
] = NULL
;
1289 * Allocates all the stuff needed to submit a transfer
1291 * Breaks the whole data buffer in a list of segments, each one has a
1292 * structure allocated to it and linked in xfer->seg[index]
1294 * FIXME: merge setup_segs() and the last part of this function, no
1295 * need to do two for loops when we could run everything in a
1298 static int __wa_xfer_setup(struct wa_xfer
*xfer
, struct urb
*urb
)
1301 struct device
*dev
= &xfer
->wa
->usb_iface
->dev
;
1302 enum wa_xfer_type xfer_type
= 0; /* shut up GCC */
1303 size_t xfer_hdr_size
, cnt
, transfer_size
;
1304 struct wa_xfer_hdr
*xfer_hdr0
, *xfer_hdr
;
1306 result
= __wa_xfer_setup_sizes(xfer
, &xfer_type
);
1308 goto error_setup_sizes
;
1309 xfer_hdr_size
= result
;
1310 result
= __wa_xfer_setup_segs(xfer
, xfer_hdr_size
);
1312 dev_err(dev
, "xfer %p: Failed to allocate %d segments: %d\n",
1313 xfer
, xfer
->segs
, result
);
1314 goto error_setup_segs
;
1316 /* Fill the first header */
1317 xfer_hdr0
= &xfer
->seg
[0]->xfer_hdr
;
1318 wa_xfer_id_init(xfer
);
1319 __wa_xfer_setup_hdr0(xfer
, xfer_hdr0
, xfer_type
, xfer_hdr_size
);
1321 /* Fill remaining headers */
1322 xfer_hdr
= xfer_hdr0
;
1323 if (xfer_type
== WA_XFER_TYPE_ISO
) {
1324 xfer_hdr0
->dwTransferLength
=
1325 cpu_to_le32(xfer
->seg
[0]->isoc_size
);
1326 for (cnt
= 1; cnt
< xfer
->segs
; cnt
++) {
1327 struct wa_xfer_packet_info_hwaiso
*packet_desc
;
1328 struct wa_seg
*seg
= xfer
->seg
[cnt
];
1329 struct wa_xfer_hwaiso
*xfer_iso
;
1331 xfer_hdr
= &seg
->xfer_hdr
;
1332 xfer_iso
= container_of(xfer_hdr
,
1333 struct wa_xfer_hwaiso
, hdr
);
1334 packet_desc
= ((void *)xfer_hdr
) + xfer_hdr_size
;
1336 * Copy values from the 0th header. Segment specific
1337 * values are set below.
1339 memcpy(xfer_hdr
, xfer_hdr0
, xfer_hdr_size
);
1340 xfer_hdr
->bTransferSegment
= cnt
;
1341 xfer_hdr
->dwTransferLength
=
1342 cpu_to_le32(seg
->isoc_size
);
1343 xfer_iso
->dwNumOfPackets
=
1344 cpu_to_le32(seg
->isoc_frame_count
);
1345 __wa_setup_isoc_packet_descr(packet_desc
, xfer
, seg
);
1346 seg
->status
= WA_SEG_READY
;
1349 transfer_size
= urb
->transfer_buffer_length
;
1350 xfer_hdr0
->dwTransferLength
= transfer_size
> xfer
->seg_size
?
1351 cpu_to_le32(xfer
->seg_size
) :
1352 cpu_to_le32(transfer_size
);
1353 transfer_size
-= xfer
->seg_size
;
1354 for (cnt
= 1; cnt
< xfer
->segs
; cnt
++) {
1355 xfer_hdr
= &xfer
->seg
[cnt
]->xfer_hdr
;
1356 memcpy(xfer_hdr
, xfer_hdr0
, xfer_hdr_size
);
1357 xfer_hdr
->bTransferSegment
= cnt
;
1358 xfer_hdr
->dwTransferLength
=
1359 transfer_size
> xfer
->seg_size
?
1360 cpu_to_le32(xfer
->seg_size
)
1361 : cpu_to_le32(transfer_size
);
1362 xfer
->seg
[cnt
]->status
= WA_SEG_READY
;
1363 transfer_size
-= xfer
->seg_size
;
1366 xfer_hdr
->bTransferSegment
|= 0x80; /* this is the last segment */
1376 * rpipe->seg_lock is held!
1378 static int __wa_seg_submit(struct wa_rpipe
*rpipe
, struct wa_xfer
*xfer
,
1379 struct wa_seg
*seg
, int *dto_done
)
1383 /* default to done unless we encounter a multi-frame isoc segment. */
1387 * Take a ref for each segment urb so the xfer cannot disappear until
1388 * all of the callbacks run.
1391 /* submit the transfer request. */
1392 seg
->status
= WA_SEG_SUBMITTED
;
1393 result
= usb_submit_urb(&seg
->tr_urb
, GFP_ATOMIC
);
1395 pr_err("%s: xfer %p#%u: REQ submit failed: %d\n",
1396 __func__
, xfer
, seg
->index
, result
);
1398 goto error_tr_submit
;
1400 /* submit the isoc packet descriptor if present. */
1401 if (seg
->isoc_pack_desc_urb
) {
1403 result
= usb_submit_urb(seg
->isoc_pack_desc_urb
, GFP_ATOMIC
);
1404 seg
->isoc_frame_index
= 0;
1406 pr_err("%s: xfer %p#%u: ISO packet descriptor submit failed: %d\n",
1407 __func__
, xfer
, seg
->index
, result
);
1409 goto error_iso_pack_desc_submit
;
1412 /* submit the out data if this is an out request. */
1414 struct wahc
*wa
= xfer
->wa
;
1416 result
= usb_submit_urb(seg
->dto_urb
, GFP_ATOMIC
);
1418 pr_err("%s: xfer %p#%u: DTO submit failed: %d\n",
1419 __func__
, xfer
, seg
->index
, result
);
1421 goto error_dto_submit
;
1424 * If this segment contains more than one isoc frame, hold
1425 * onto the dto resource until we send all frames.
1426 * Only applies to non-Alereon devices.
1428 if (((wa
->quirks
& WUSB_QUIRK_ALEREON_HWA_CONCAT_ISOC
) == 0)
1429 && (seg
->isoc_frame_count
> 1))
1432 rpipe_avail_dec(rpipe
);
1436 usb_unlink_urb(seg
->isoc_pack_desc_urb
);
1437 error_iso_pack_desc_submit
:
1438 usb_unlink_urb(&seg
->tr_urb
);
1440 seg
->status
= WA_SEG_ERROR
;
1441 seg
->result
= result
;
1447 * Execute more queued request segments until the maximum concurrent allowed.
1448 * Return true if the DTO resource was acquired and released.
1450 * The ugly unlock/lock sequence on the error path is needed as the
1451 * xfer->lock normally nests the seg_lock and not viceversa.
1453 static int __wa_xfer_delayed_run(struct wa_rpipe
*rpipe
, int *dto_waiting
)
1455 int result
, dto_acquired
= 0, dto_done
= 0;
1456 struct device
*dev
= &rpipe
->wa
->usb_iface
->dev
;
1458 struct wa_xfer
*xfer
;
1459 unsigned long flags
;
1463 spin_lock_irqsave(&rpipe
->seg_lock
, flags
);
1464 while (atomic_read(&rpipe
->segs_available
) > 0
1465 && !list_empty(&rpipe
->seg_list
)
1466 && (dto_acquired
= __wa_dto_try_get(rpipe
->wa
))) {
1467 seg
= list_first_entry(&(rpipe
->seg_list
), struct wa_seg
,
1469 list_del(&seg
->list_node
);
1472 * Get a reference to the xfer in case the callbacks for the
1473 * URBs submitted by __wa_seg_submit attempt to complete
1474 * the xfer before this function completes.
1477 result
= __wa_seg_submit(rpipe
, xfer
, seg
, &dto_done
);
1478 /* release the dto resource if this RPIPE is done with it. */
1480 __wa_dto_put(rpipe
->wa
);
1481 dev_dbg(dev
, "xfer %p ID %08X#%u submitted from delayed [%d segments available] %d\n",
1482 xfer
, wa_xfer_id(xfer
), seg
->index
,
1483 atomic_read(&rpipe
->segs_available
), result
);
1484 if (unlikely(result
< 0)) {
1487 spin_unlock_irqrestore(&rpipe
->seg_lock
, flags
);
1488 spin_lock_irqsave(&xfer
->lock
, flags
);
1489 __wa_xfer_abort(xfer
);
1491 * This seg was marked as submitted when it was put on
1492 * the RPIPE seg_list. Mark it done.
1495 done
= __wa_xfer_is_done(xfer
);
1496 spin_unlock_irqrestore(&xfer
->lock
, flags
);
1498 wa_xfer_completion(xfer
);
1499 spin_lock_irqsave(&rpipe
->seg_lock
, flags
);
1504 * Mark this RPIPE as waiting if dto was not acquired, there are
1505 * delayed segs and no active transfers to wake us up later.
1507 if (!dto_acquired
&& !list_empty(&rpipe
->seg_list
)
1508 && (atomic_read(&rpipe
->segs_available
) ==
1509 le16_to_cpu(rpipe
->descr
.wRequests
)))
1512 spin_unlock_irqrestore(&rpipe
->seg_lock
, flags
);
1517 static void wa_xfer_delayed_run(struct wa_rpipe
*rpipe
)
1520 int dto_done
= __wa_xfer_delayed_run(rpipe
, &dto_waiting
);
1523 * If this RPIPE is waiting on the DTO resource, add it to the tail of
1525 * Otherwise, if the WA DTO resource was acquired and released by
1526 * __wa_xfer_delayed_run, another RPIPE may have attempted to acquire
1527 * DTO and failed during that time. Check the delayed list and process
1528 * any waiters. Start searching from the next RPIPE index.
1531 wa_add_delayed_rpipe(rpipe
->wa
, rpipe
);
1533 wa_check_for_delayed_rpipes(rpipe
->wa
);
1538 * xfer->lock is taken
1540 * On failure submitting we just stop submitting and return error;
1541 * wa_urb_enqueue_b() will execute the completion path
1543 static int __wa_xfer_submit(struct wa_xfer
*xfer
)
1545 int result
, dto_acquired
= 0, dto_done
= 0, dto_waiting
= 0;
1546 struct wahc
*wa
= xfer
->wa
;
1547 struct device
*dev
= &wa
->usb_iface
->dev
;
1550 unsigned long flags
;
1551 struct wa_rpipe
*rpipe
= xfer
->ep
->hcpriv
;
1552 size_t maxrequests
= le16_to_cpu(rpipe
->descr
.wRequests
);
1556 spin_lock_irqsave(&wa
->xfer_list_lock
, flags
);
1557 list_add_tail(&xfer
->list_node
, &wa
->xfer_list
);
1558 spin_unlock_irqrestore(&wa
->xfer_list_lock
, flags
);
1560 BUG_ON(atomic_read(&rpipe
->segs_available
) > maxrequests
);
1562 spin_lock_irqsave(&rpipe
->seg_lock
, flags
);
1563 for (cnt
= 0; cnt
< xfer
->segs
; cnt
++) {
1566 available
= atomic_read(&rpipe
->segs_available
);
1567 empty
= list_empty(&rpipe
->seg_list
);
1568 seg
= xfer
->seg
[cnt
];
1569 if (available
&& empty
) {
1571 * Only attempt to acquire DTO if we have a segment
1574 dto_acquired
= __wa_dto_try_get(rpipe
->wa
);
1577 result
= __wa_seg_submit(rpipe
, xfer
, seg
,
1579 dev_dbg(dev
, "xfer %p ID 0x%08X#%u: available %u empty %u submitted\n",
1580 xfer
, wa_xfer_id(xfer
), cnt
, available
,
1583 __wa_dto_put(rpipe
->wa
);
1586 __wa_xfer_abort(xfer
);
1587 goto error_seg_submit
;
1593 dev_dbg(dev
, "xfer %p ID 0x%08X#%u: available %u empty %u delayed\n",
1594 xfer
, wa_xfer_id(xfer
), cnt
, available
, empty
);
1595 seg
->status
= WA_SEG_DELAYED
;
1596 list_add_tail(&seg
->list_node
, &rpipe
->seg_list
);
1598 xfer
->segs_submitted
++;
1602 * Mark this RPIPE as waiting if dto was not acquired, there are
1603 * delayed segs and no active transfers to wake us up later.
1605 if (!dto_acquired
&& !list_empty(&rpipe
->seg_list
)
1606 && (atomic_read(&rpipe
->segs_available
) ==
1607 le16_to_cpu(rpipe
->descr
.wRequests
)))
1609 spin_unlock_irqrestore(&rpipe
->seg_lock
, flags
);
1612 wa_add_delayed_rpipe(rpipe
->wa
, rpipe
);
1614 wa_check_for_delayed_rpipes(rpipe
->wa
);
1620 * Second part of a URB/transfer enqueuement
1622 * Assumes this comes from wa_urb_enqueue() [maybe through
1623 * wa_urb_enqueue_run()]. At this point:
1625 * xfer->wa filled and refcounted
1626 * xfer->ep filled with rpipe refcounted if
1628 * xfer->urb filled and refcounted (this is the case when called
1629 * from wa_urb_enqueue() as we come from usb_submit_urb()
1630 * and when called by wa_urb_enqueue_run(), as we took an
1631 * extra ref dropped by _run() after we return).
1634 * If we fail at __wa_xfer_submit(), then we just check if we are done
1635 * and if so, we run the completion procedure. However, if we are not
1636 * yet done, we do nothing and wait for the completion handlers from
1637 * the submitted URBs or from the xfer-result path to kick in. If xfer
1638 * result never kicks in, the xfer will timeout from the USB code and
1639 * dequeue() will be called.
1641 static int wa_urb_enqueue_b(struct wa_xfer
*xfer
)
1644 unsigned long flags
;
1645 struct urb
*urb
= xfer
->urb
;
1646 struct wahc
*wa
= xfer
->wa
;
1647 struct wusbhc
*wusbhc
= wa
->wusb
;
1648 struct wusb_dev
*wusb_dev
;
1651 result
= rpipe_get_by_ep(wa
, xfer
->ep
, urb
, xfer
->gfp
);
1653 pr_err("%s: error_rpipe_get\n", __func__
);
1654 goto error_rpipe_get
;
1657 /* FIXME: segmentation broken -- kills DWA */
1658 mutex_lock(&wusbhc
->mutex
); /* get a WUSB dev */
1659 if (urb
->dev
== NULL
) {
1660 mutex_unlock(&wusbhc
->mutex
);
1661 pr_err("%s: error usb dev gone\n", __func__
);
1662 goto error_dev_gone
;
1664 wusb_dev
= __wusb_dev_get_by_usb_dev(wusbhc
, urb
->dev
);
1665 if (wusb_dev
== NULL
) {
1666 mutex_unlock(&wusbhc
->mutex
);
1667 dev_err(&(urb
->dev
->dev
), "%s: error wusb dev gone\n",
1669 goto error_dev_gone
;
1671 mutex_unlock(&wusbhc
->mutex
);
1673 spin_lock_irqsave(&xfer
->lock
, flags
);
1674 xfer
->wusb_dev
= wusb_dev
;
1675 result
= urb
->status
;
1676 if (urb
->status
!= -EINPROGRESS
) {
1677 dev_err(&(urb
->dev
->dev
), "%s: error_dequeued\n", __func__
);
1678 goto error_dequeued
;
1681 result
= __wa_xfer_setup(xfer
, urb
);
1683 dev_err(&(urb
->dev
->dev
), "%s: error_xfer_setup\n", __func__
);
1684 goto error_xfer_setup
;
1687 * Get a xfer reference since __wa_xfer_submit starts asynchronous
1688 * operations that may try to complete the xfer before this function
1692 result
= __wa_xfer_submit(xfer
);
1694 dev_err(&(urb
->dev
->dev
), "%s: error_xfer_submit\n", __func__
);
1695 goto error_xfer_submit
;
1697 spin_unlock_irqrestore(&xfer
->lock
, flags
);
1702 * this is basically wa_xfer_completion() broken up wa_xfer_giveback()
1703 * does a wa_xfer_put() that will call wa_xfer_destroy() and undo
1708 spin_unlock_irqrestore(&xfer
->lock
, flags
);
1709 /* FIXME: segmentation broken, kills DWA */
1711 wusb_dev_put(wusb_dev
);
1713 rpipe_put(xfer
->ep
->hcpriv
);
1715 xfer
->result
= result
;
1719 done
= __wa_xfer_is_done(xfer
);
1720 xfer
->result
= result
;
1721 spin_unlock_irqrestore(&xfer
->lock
, flags
);
1723 wa_xfer_completion(xfer
);
1725 /* return success since the completion routine will run. */
1730 * Execute the delayed transfers in the Wire Adapter @wa
1732 * We need to be careful here, as dequeue() could be called in the
1733 * middle. That's why we do the whole thing under the
1734 * wa->xfer_list_lock. If dequeue() jumps in, it first locks xfer->lock
1735 * and then checks the list -- so as we would be acquiring in inverse
1736 * order, we move the delayed list to a separate list while locked and then
1737 * submit them without the list lock held.
1739 void wa_urb_enqueue_run(struct work_struct
*ws
)
1741 struct wahc
*wa
= container_of(ws
, struct wahc
, xfer_enqueue_work
);
1742 struct wa_xfer
*xfer
, *next
;
1744 LIST_HEAD(tmp_list
);
1746 /* Create a copy of the wa->xfer_delayed_list while holding the lock */
1747 spin_lock_irq(&wa
->xfer_list_lock
);
1748 list_cut_position(&tmp_list
, &wa
->xfer_delayed_list
,
1749 wa
->xfer_delayed_list
.prev
);
1750 spin_unlock_irq(&wa
->xfer_list_lock
);
1753 * enqueue from temp list without list lock held since wa_urb_enqueue_b
1754 * can take xfer->lock as well as lock mutexes.
1756 list_for_each_entry_safe(xfer
, next
, &tmp_list
, list_node
) {
1757 list_del_init(&xfer
->list_node
);
1760 if (wa_urb_enqueue_b(xfer
) < 0)
1761 wa_xfer_giveback(xfer
);
1762 usb_put_urb(urb
); /* taken when queuing */
1765 EXPORT_SYMBOL_GPL(wa_urb_enqueue_run
);
1768 * Process the errored transfers on the Wire Adapter outside of interrupt.
1770 void wa_process_errored_transfers_run(struct work_struct
*ws
)
1772 struct wahc
*wa
= container_of(ws
, struct wahc
, xfer_error_work
);
1773 struct wa_xfer
*xfer
, *next
;
1774 LIST_HEAD(tmp_list
);
1776 pr_info("%s: Run delayed STALL processing.\n", __func__
);
1778 /* Create a copy of the wa->xfer_errored_list while holding the lock */
1779 spin_lock_irq(&wa
->xfer_list_lock
);
1780 list_cut_position(&tmp_list
, &wa
->xfer_errored_list
,
1781 wa
->xfer_errored_list
.prev
);
1782 spin_unlock_irq(&wa
->xfer_list_lock
);
1785 * run rpipe_clear_feature_stalled from temp list without list lock
1788 list_for_each_entry_safe(xfer
, next
, &tmp_list
, list_node
) {
1789 struct usb_host_endpoint
*ep
;
1790 unsigned long flags
;
1791 struct wa_rpipe
*rpipe
;
1793 spin_lock_irqsave(&xfer
->lock
, flags
);
1796 spin_unlock_irqrestore(&xfer
->lock
, flags
);
1798 /* clear RPIPE feature stalled without holding a lock. */
1799 rpipe_clear_feature_stalled(wa
, ep
);
1801 /* complete the xfer. This removes it from the tmp list. */
1802 wa_xfer_completion(xfer
);
1804 /* check for work. */
1805 wa_xfer_delayed_run(rpipe
);
1808 EXPORT_SYMBOL_GPL(wa_process_errored_transfers_run
);
1811 * Submit a transfer to the Wire Adapter in a delayed way
1813 * The process of enqueuing involves possible sleeps() [see
1814 * enqueue_b(), for the rpipe_get() and the mutex_lock()]. If we are
1815 * in an atomic section, we defer the enqueue_b() call--else we call direct.
1817 * @urb: We own a reference to it done by the HCI Linux USB stack that
1818 * will be given up by calling usb_hcd_giveback_urb() or by
1819 * returning error from this function -> ergo we don't have to
1822 int wa_urb_enqueue(struct wahc
*wa
, struct usb_host_endpoint
*ep
,
1823 struct urb
*urb
, gfp_t gfp
)
1826 struct device
*dev
= &wa
->usb_iface
->dev
;
1827 struct wa_xfer
*xfer
;
1828 unsigned long my_flags
;
1829 unsigned cant_sleep
= irqs_disabled() | in_atomic();
1831 if ((urb
->transfer_buffer
== NULL
)
1832 && (urb
->sg
== NULL
)
1833 && !(urb
->transfer_flags
& URB_NO_TRANSFER_DMA_MAP
)
1834 && urb
->transfer_buffer_length
!= 0) {
1835 dev_err(dev
, "BUG? urb %p: NULL xfer buffer & NODMA\n", urb
);
1839 spin_lock_irqsave(&wa
->xfer_list_lock
, my_flags
);
1840 result
= usb_hcd_link_urb_to_ep(&(wa
->wusb
->usb_hcd
), urb
);
1841 spin_unlock_irqrestore(&wa
->xfer_list_lock
, my_flags
);
1843 goto error_link_urb
;
1846 xfer
= kzalloc(sizeof(*xfer
), gfp
);
1851 if (urb
->status
!= -EINPROGRESS
) /* cancelled */
1852 goto error_dequeued
; /* before starting? */
1854 xfer
->wa
= wa_get(wa
);
1860 dev_dbg(dev
, "xfer %p urb %p pipe 0x%02x [%d bytes] %s %s %s\n",
1861 xfer
, urb
, urb
->pipe
, urb
->transfer_buffer_length
,
1862 urb
->transfer_flags
& URB_NO_TRANSFER_DMA_MAP
? "dma" : "nodma",
1863 urb
->pipe
& USB_DIR_IN
? "inbound" : "outbound",
1864 cant_sleep
? "deferred" : "inline");
1868 spin_lock_irqsave(&wa
->xfer_list_lock
, my_flags
);
1869 list_add_tail(&xfer
->list_node
, &wa
->xfer_delayed_list
);
1870 spin_unlock_irqrestore(&wa
->xfer_list_lock
, my_flags
);
1871 queue_work(wusbd
, &wa
->xfer_enqueue_work
);
1873 result
= wa_urb_enqueue_b(xfer
);
1876 * URB submit/enqueue failed. Clean up, return an
1877 * error and do not run the callback. This avoids
1878 * an infinite submit/complete loop.
1880 dev_err(dev
, "%s: URB enqueue failed: %d\n",
1884 spin_lock_irqsave(&wa
->xfer_list_lock
, my_flags
);
1885 usb_hcd_unlink_urb_from_ep(&(wa
->wusb
->usb_hcd
), urb
);
1886 spin_unlock_irqrestore(&wa
->xfer_list_lock
, my_flags
);
1895 spin_lock_irqsave(&wa
->xfer_list_lock
, my_flags
);
1896 usb_hcd_unlink_urb_from_ep(&(wa
->wusb
->usb_hcd
), urb
);
1897 spin_unlock_irqrestore(&wa
->xfer_list_lock
, my_flags
);
1901 EXPORT_SYMBOL_GPL(wa_urb_enqueue
);
1904 * Dequeue a URB and make sure uwb_hcd_giveback_urb() [completion
1905 * handler] is called.
1907 * Until a transfer goes successfully through wa_urb_enqueue() it
1908 * needs to be dequeued with completion calling; when stuck in delayed
1909 * or before wa_xfer_setup() is called, we need to do completion.
1911 * not setup If there is no hcpriv yet, that means that that enqueue
1912 * still had no time to set the xfer up. Because
1913 * urb->status should be other than -EINPROGRESS,
1914 * enqueue() will catch that and bail out.
1916 * If the transfer has gone through setup, we just need to clean it
1917 * up. If it has gone through submit(), we have to abort it [with an
1918 * asynch request] and then make sure we cancel each segment.
1921 int wa_urb_dequeue(struct wahc
*wa
, struct urb
*urb
, int status
)
1923 unsigned long flags
, flags2
;
1924 struct wa_xfer
*xfer
;
1926 struct wa_rpipe
*rpipe
;
1927 unsigned cnt
, done
= 0, xfer_abort_pending
;
1928 unsigned rpipe_ready
= 0;
1931 /* check if it is safe to unlink. */
1932 spin_lock_irqsave(&wa
->xfer_list_lock
, flags
);
1933 result
= usb_hcd_check_unlink_urb(&(wa
->wusb
->usb_hcd
), urb
, status
);
1934 if ((result
== 0) && urb
->hcpriv
) {
1936 * Get a xfer ref to prevent a race with wa_xfer_giveback
1937 * cleaning up the xfer while we are working with it.
1939 wa_xfer_get(urb
->hcpriv
);
1941 spin_unlock_irqrestore(&wa
->xfer_list_lock
, flags
);
1948 spin_lock_irqsave(&xfer
->lock
, flags
);
1949 pr_debug("%s: DEQUEUE xfer id 0x%08X\n", __func__
, wa_xfer_id(xfer
));
1950 rpipe
= xfer
->ep
->hcpriv
;
1951 if (rpipe
== NULL
) {
1952 pr_debug("%s: xfer %p id 0x%08X has no RPIPE. %s",
1953 __func__
, xfer
, wa_xfer_id(xfer
),
1954 "Probably already aborted.\n" );
1959 * Check for done to avoid racing with wa_xfer_giveback and completing
1962 if (__wa_xfer_is_done(xfer
)) {
1963 pr_debug("%s: xfer %p id 0x%08X already done.\n", __func__
,
1964 xfer
, wa_xfer_id(xfer
));
1968 /* Check the delayed list -> if there, release and complete */
1969 spin_lock_irqsave(&wa
->xfer_list_lock
, flags2
);
1970 if (!list_empty(&xfer
->list_node
) && xfer
->seg
== NULL
)
1971 goto dequeue_delayed
;
1972 spin_unlock_irqrestore(&wa
->xfer_list_lock
, flags2
);
1973 if (xfer
->seg
== NULL
) /* still hasn't reached */
1974 goto out_unlock
; /* setup(), enqueue_b() completes */
1975 /* Ok, the xfer is in flight already, it's been setup and submitted.*/
1976 xfer_abort_pending
= __wa_xfer_abort(xfer
) >= 0;
1978 * grab the rpipe->seg_lock here to prevent racing with
1979 * __wa_xfer_delayed_run.
1981 spin_lock(&rpipe
->seg_lock
);
1982 for (cnt
= 0; cnt
< xfer
->segs
; cnt
++) {
1983 seg
= xfer
->seg
[cnt
];
1984 pr_debug("%s: xfer id 0x%08X#%d status = %d\n",
1985 __func__
, wa_xfer_id(xfer
), cnt
, seg
->status
);
1986 switch (seg
->status
) {
1987 case WA_SEG_NOTREADY
:
1989 printk(KERN_ERR
"xfer %p#%u: dequeue bad state %u\n",
1990 xfer
, cnt
, seg
->status
);
1993 case WA_SEG_DELAYED
:
1995 * delete from rpipe delayed list. If no segments on
1996 * this xfer have been submitted, __wa_xfer_is_done will
1997 * trigger a giveback below. Otherwise, the submitted
1998 * segments will be completed in the DTI interrupt.
2000 seg
->status
= WA_SEG_ABORTED
;
2001 seg
->result
= -ENOENT
;
2002 list_del(&seg
->list_node
);
2007 case WA_SEG_ABORTED
:
2010 * The buf_in data for a segment in the
2011 * WA_SEG_DTI_PENDING state is actively being read.
2012 * Let wa_buf_in_cb handle it since it will be called
2013 * and will increment xfer->segs_done. Cleaning up
2014 * here could cause wa_buf_in_cb to access the xfer
2015 * after it has been completed/freed.
2017 case WA_SEG_DTI_PENDING
:
2020 * In the states below, the HWA device already knows
2021 * about the transfer. If an abort request was sent,
2022 * allow the HWA to process it and wait for the
2023 * results. Otherwise, the DTI state and seg completed
2024 * counts can get out of sync.
2026 case WA_SEG_SUBMITTED
:
2027 case WA_SEG_PENDING
:
2029 * Check if the abort was successfully sent. This could
2030 * be false if the HWA has been removed but we haven't
2031 * gotten the disconnect notification yet.
2033 if (!xfer_abort_pending
) {
2034 seg
->status
= WA_SEG_ABORTED
;
2035 rpipe_ready
= rpipe_avail_inc(rpipe
);
2041 spin_unlock(&rpipe
->seg_lock
);
2042 xfer
->result
= urb
->status
; /* -ENOENT or -ECONNRESET */
2043 done
= __wa_xfer_is_done(xfer
);
2044 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2046 wa_xfer_completion(xfer
);
2048 wa_xfer_delayed_run(rpipe
);
2053 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2058 list_del_init(&xfer
->list_node
);
2059 spin_unlock_irqrestore(&wa
->xfer_list_lock
, flags2
);
2060 xfer
->result
= urb
->status
;
2061 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2062 wa_xfer_giveback(xfer
);
2064 usb_put_urb(urb
); /* we got a ref in enqueue() */
2067 EXPORT_SYMBOL_GPL(wa_urb_dequeue
);
2070 * Translation from WA status codes (WUSB1.0 Table 8.15) to errno
2073 * Positive errno values are internal inconsistencies and should be
2074 * flagged louder. Negative are to be passed up to the user in the
2077 * @status: USB WA status code -- high two bits are stripped.
2079 static int wa_xfer_status_to_errno(u8 status
)
2082 u8 real_status
= status
;
2083 static int xlat
[] = {
2084 [WA_XFER_STATUS_SUCCESS
] = 0,
2085 [WA_XFER_STATUS_HALTED
] = -EPIPE
,
2086 [WA_XFER_STATUS_DATA_BUFFER_ERROR
] = -ENOBUFS
,
2087 [WA_XFER_STATUS_BABBLE
] = -EOVERFLOW
,
2088 [WA_XFER_RESERVED
] = EINVAL
,
2089 [WA_XFER_STATUS_NOT_FOUND
] = 0,
2090 [WA_XFER_STATUS_INSUFFICIENT_RESOURCE
] = -ENOMEM
,
2091 [WA_XFER_STATUS_TRANSACTION_ERROR
] = -EILSEQ
,
2092 [WA_XFER_STATUS_ABORTED
] = -ENOENT
,
2093 [WA_XFER_STATUS_RPIPE_NOT_READY
] = EINVAL
,
2094 [WA_XFER_INVALID_FORMAT
] = EINVAL
,
2095 [WA_XFER_UNEXPECTED_SEGMENT_NUMBER
] = EINVAL
,
2096 [WA_XFER_STATUS_RPIPE_TYPE_MISMATCH
] = EINVAL
,
2102 if (status
>= ARRAY_SIZE(xlat
)) {
2103 printk_ratelimited(KERN_ERR
"%s(): BUG? "
2104 "Unknown WA transfer status 0x%02x\n",
2105 __func__
, real_status
);
2108 errno
= xlat
[status
];
2109 if (unlikely(errno
> 0)) {
2110 printk_ratelimited(KERN_ERR
"%s(): BUG? "
2111 "Inconsistent WA status: 0x%02x\n",
2112 __func__
, real_status
);
2119 * If a last segment flag and/or a transfer result error is encountered,
2120 * no other segment transfer results will be returned from the device.
2121 * Mark the remaining submitted or pending xfers as completed so that
2122 * the xfer will complete cleanly.
2124 * xfer->lock must be held
2127 static void wa_complete_remaining_xfer_segs(struct wa_xfer
*xfer
,
2128 int starting_index
, enum wa_seg_status status
)
2131 struct wa_rpipe
*rpipe
= xfer
->ep
->hcpriv
;
2133 for (index
= starting_index
; index
< xfer
->segs_submitted
; index
++) {
2134 struct wa_seg
*current_seg
= xfer
->seg
[index
];
2136 BUG_ON(current_seg
== NULL
);
2138 switch (current_seg
->status
) {
2139 case WA_SEG_SUBMITTED
:
2140 case WA_SEG_PENDING
:
2141 case WA_SEG_DTI_PENDING
:
2142 rpipe_avail_inc(rpipe
);
2144 * do not increment RPIPE avail for the WA_SEG_DELAYED case
2145 * since it has not been submitted to the RPIPE.
2147 case WA_SEG_DELAYED
:
2149 current_seg
->status
= status
;
2151 case WA_SEG_ABORTED
:
2154 WARN(1, "%s: xfer 0x%08X#%d. bad seg status = %d\n",
2155 __func__
, wa_xfer_id(xfer
), index
,
2156 current_seg
->status
);
2162 /* Populate the given urb based on the current isoc transfer state. */
2163 static int __wa_populate_buf_in_urb_isoc(struct wahc
*wa
,
2164 struct urb
*buf_in_urb
, struct wa_xfer
*xfer
, struct wa_seg
*seg
)
2166 int urb_start_frame
= seg
->isoc_frame_index
+ seg
->isoc_frame_offset
;
2167 int seg_index
, total_len
= 0, urb_frame_index
= urb_start_frame
;
2168 struct usb_iso_packet_descriptor
*iso_frame_desc
=
2169 xfer
->urb
->iso_frame_desc
;
2170 const int dti_packet_size
= usb_endpoint_maxp(wa
->dti_epd
);
2171 int next_frame_contiguous
;
2172 struct usb_iso_packet_descriptor
*iso_frame
;
2174 BUG_ON(buf_in_urb
->status
== -EINPROGRESS
);
2177 * If the current frame actual_length is contiguous with the next frame
2178 * and actual_length is a multiple of the DTI endpoint max packet size,
2179 * combine the current frame with the next frame in a single URB. This
2180 * reduces the number of URBs that must be submitted in that case.
2182 seg_index
= seg
->isoc_frame_index
;
2184 next_frame_contiguous
= 0;
2186 iso_frame
= &iso_frame_desc
[urb_frame_index
];
2187 total_len
+= iso_frame
->actual_length
;
2191 if (seg_index
< seg
->isoc_frame_count
) {
2192 struct usb_iso_packet_descriptor
*next_iso_frame
;
2194 next_iso_frame
= &iso_frame_desc
[urb_frame_index
];
2196 if ((iso_frame
->offset
+ iso_frame
->actual_length
) ==
2197 next_iso_frame
->offset
)
2198 next_frame_contiguous
= 1;
2200 } while (next_frame_contiguous
2201 && ((iso_frame
->actual_length
% dti_packet_size
) == 0));
2203 /* this should always be 0 before a resubmit. */
2204 buf_in_urb
->num_mapped_sgs
= 0;
2205 buf_in_urb
->transfer_dma
= xfer
->urb
->transfer_dma
+
2206 iso_frame_desc
[urb_start_frame
].offset
;
2207 buf_in_urb
->transfer_buffer_length
= total_len
;
2208 buf_in_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
2209 buf_in_urb
->transfer_buffer
= NULL
;
2210 buf_in_urb
->sg
= NULL
;
2211 buf_in_urb
->num_sgs
= 0;
2212 buf_in_urb
->context
= seg
;
2214 /* return the number of frames included in this URB. */
2215 return seg_index
- seg
->isoc_frame_index
;
2218 /* Populate the given urb based on the current transfer state. */
2219 static int wa_populate_buf_in_urb(struct urb
*buf_in_urb
, struct wa_xfer
*xfer
,
2220 unsigned int seg_idx
, unsigned int bytes_transferred
)
2223 struct wa_seg
*seg
= xfer
->seg
[seg_idx
];
2225 BUG_ON(buf_in_urb
->status
== -EINPROGRESS
);
2226 /* this should always be 0 before a resubmit. */
2227 buf_in_urb
->num_mapped_sgs
= 0;
2230 buf_in_urb
->transfer_dma
= xfer
->urb
->transfer_dma
2231 + (seg_idx
* xfer
->seg_size
);
2232 buf_in_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
2233 buf_in_urb
->transfer_buffer
= NULL
;
2234 buf_in_urb
->sg
= NULL
;
2235 buf_in_urb
->num_sgs
= 0;
2237 /* do buffer or SG processing. */
2238 buf_in_urb
->transfer_flags
&= ~URB_NO_TRANSFER_DMA_MAP
;
2240 if (xfer
->urb
->transfer_buffer
) {
2241 buf_in_urb
->transfer_buffer
=
2242 xfer
->urb
->transfer_buffer
2243 + (seg_idx
* xfer
->seg_size
);
2244 buf_in_urb
->sg
= NULL
;
2245 buf_in_urb
->num_sgs
= 0;
2247 /* allocate an SG list to store seg_size bytes
2248 and copy the subset of the xfer->urb->sg
2249 that matches the buffer subset we are
2251 buf_in_urb
->sg
= wa_xfer_create_subset_sg(
2253 seg_idx
* xfer
->seg_size
,
2255 &(buf_in_urb
->num_sgs
));
2257 if (!(buf_in_urb
->sg
)) {
2258 buf_in_urb
->num_sgs
= 0;
2261 buf_in_urb
->transfer_buffer
= NULL
;
2264 buf_in_urb
->transfer_buffer_length
= bytes_transferred
;
2265 buf_in_urb
->context
= seg
;
2271 * Process a xfer result completion message
2273 * inbound transfers: need to schedule a buf_in_urb read
2275 * FIXME: this function needs to be broken up in parts
2277 static void wa_xfer_result_chew(struct wahc
*wa
, struct wa_xfer
*xfer
,
2278 struct wa_xfer_result
*xfer_result
)
2281 struct device
*dev
= &wa
->usb_iface
->dev
;
2282 unsigned long flags
;
2283 unsigned int seg_idx
;
2285 struct wa_rpipe
*rpipe
;
2288 unsigned rpipe_ready
= 0;
2289 unsigned bytes_transferred
= le32_to_cpu(xfer_result
->dwTransferLength
);
2290 struct urb
*buf_in_urb
= &(wa
->buf_in_urbs
[0]);
2292 spin_lock_irqsave(&xfer
->lock
, flags
);
2293 seg_idx
= xfer_result
->bTransferSegment
& 0x7f;
2294 if (unlikely(seg_idx
>= xfer
->segs
))
2296 seg
= xfer
->seg
[seg_idx
];
2297 rpipe
= xfer
->ep
->hcpriv
;
2298 usb_status
= xfer_result
->bTransferStatus
;
2299 dev_dbg(dev
, "xfer %p ID 0x%08X#%u: bTransferStatus 0x%02x (seg status %u)\n",
2300 xfer
, wa_xfer_id(xfer
), seg_idx
, usb_status
, seg
->status
);
2301 if (seg
->status
== WA_SEG_ABORTED
2302 || seg
->status
== WA_SEG_ERROR
) /* already handled */
2303 goto segment_aborted
;
2304 if (seg
->status
== WA_SEG_SUBMITTED
) /* ops, got here */
2305 seg
->status
= WA_SEG_PENDING
; /* before wa_seg{_dto}_cb() */
2306 if (seg
->status
!= WA_SEG_PENDING
) {
2307 if (printk_ratelimit())
2308 dev_err(dev
, "xfer %p#%u: Bad segment state %u\n",
2309 xfer
, seg_idx
, seg
->status
);
2310 seg
->status
= WA_SEG_PENDING
; /* workaround/"fix" it */
2312 if (usb_status
& 0x80) {
2313 seg
->result
= wa_xfer_status_to_errno(usb_status
);
2314 dev_err(dev
, "DTI: xfer %p 0x%08X:#%u failed (0x%02x)\n",
2315 xfer
, xfer
->id
, seg
->index
, usb_status
);
2316 seg
->status
= ((usb_status
& 0x7F) == WA_XFER_STATUS_ABORTED
) ?
2317 WA_SEG_ABORTED
: WA_SEG_ERROR
;
2318 goto error_complete
;
2320 /* FIXME: we ignore warnings, tally them for stats */
2321 if (usb_status
& 0x40) /* Warning?... */
2322 usb_status
= 0; /* ... pass */
2324 * If the last segment bit is set, complete the remaining segments.
2325 * When the current segment is completed, either in wa_buf_in_cb for
2326 * transfers with data or below for no data, the xfer will complete.
2328 if (xfer_result
->bTransferSegment
& 0x80)
2329 wa_complete_remaining_xfer_segs(xfer
, seg
->index
+ 1,
2331 if (usb_pipeisoc(xfer
->urb
->pipe
)
2332 && (le32_to_cpu(xfer_result
->dwNumOfPackets
) > 0)) {
2333 /* set up WA state to read the isoc packet status next. */
2334 wa
->dti_isoc_xfer_in_progress
= wa_xfer_id(xfer
);
2335 wa
->dti_isoc_xfer_seg
= seg_idx
;
2336 wa
->dti_state
= WA_DTI_ISOC_PACKET_STATUS_PENDING
;
2337 } else if (xfer
->is_inbound
&& !usb_pipeisoc(xfer
->urb
->pipe
)
2338 && (bytes_transferred
> 0)) {
2339 /* IN data phase: read to buffer */
2340 seg
->status
= WA_SEG_DTI_PENDING
;
2341 result
= wa_populate_buf_in_urb(buf_in_urb
, xfer
, seg_idx
,
2344 goto error_buf_in_populate
;
2345 ++(wa
->active_buf_in_urbs
);
2346 result
= usb_submit_urb(buf_in_urb
, GFP_ATOMIC
);
2348 --(wa
->active_buf_in_urbs
);
2349 goto error_submit_buf_in
;
2352 /* OUT data phase or no data, complete it -- */
2353 seg
->result
= bytes_transferred
;
2354 rpipe_ready
= rpipe_avail_inc(rpipe
);
2355 done
= __wa_xfer_mark_seg_as_done(xfer
, seg
, WA_SEG_DONE
);
2357 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2359 wa_xfer_completion(xfer
);
2361 wa_xfer_delayed_run(rpipe
);
2364 error_submit_buf_in
:
2365 if (edc_inc(&wa
->dti_edc
, EDC_MAX_ERRORS
, EDC_ERROR_TIMEFRAME
)) {
2366 dev_err(dev
, "DTI: URB max acceptable errors "
2367 "exceeded, resetting device\n");
2370 if (printk_ratelimit())
2371 dev_err(dev
, "xfer %p#%u: can't submit DTI data phase: %d\n",
2372 xfer
, seg_idx
, result
);
2373 seg
->result
= result
;
2374 kfree(buf_in_urb
->sg
);
2375 buf_in_urb
->sg
= NULL
;
2376 error_buf_in_populate
:
2377 __wa_xfer_abort(xfer
);
2378 seg
->status
= WA_SEG_ERROR
;
2381 rpipe_ready
= rpipe_avail_inc(rpipe
);
2382 wa_complete_remaining_xfer_segs(xfer
, seg
->index
+ 1, seg
->status
);
2383 done
= __wa_xfer_is_done(xfer
);
2385 * queue work item to clear STALL for control endpoints.
2386 * Otherwise, let endpoint_reset take care of it.
2388 if (((usb_status
& 0x3f) == WA_XFER_STATUS_HALTED
) &&
2389 usb_endpoint_xfer_control(&xfer
->ep
->desc
) &&
2392 dev_info(dev
, "Control EP stall. Queue delayed work.\n");
2393 spin_lock(&wa
->xfer_list_lock
);
2394 /* move xfer from xfer_list to xfer_errored_list. */
2395 list_move_tail(&xfer
->list_node
, &wa
->xfer_errored_list
);
2396 spin_unlock(&wa
->xfer_list_lock
);
2397 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2398 queue_work(wusbd
, &wa
->xfer_error_work
);
2400 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2402 wa_xfer_completion(xfer
);
2404 wa_xfer_delayed_run(rpipe
);
2410 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2411 wa_urb_dequeue(wa
, xfer
->urb
, -ENOENT
);
2412 if (printk_ratelimit())
2413 dev_err(dev
, "xfer %p#%u: bad segment\n", xfer
, seg_idx
);
2414 if (edc_inc(&wa
->dti_edc
, EDC_MAX_ERRORS
, EDC_ERROR_TIMEFRAME
)) {
2415 dev_err(dev
, "DTI: URB max acceptable errors "
2416 "exceeded, resetting device\n");
2422 /* nothing to do, as the aborter did the completion */
2423 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2427 * Process a isochronous packet status message
2429 * inbound transfers: need to schedule a buf_in_urb read
2431 static int wa_process_iso_packet_status(struct wahc
*wa
, struct urb
*urb
)
2433 struct device
*dev
= &wa
->usb_iface
->dev
;
2434 struct wa_xfer_packet_status_hwaiso
*packet_status
;
2435 struct wa_xfer_packet_status_len_hwaiso
*status_array
;
2436 struct wa_xfer
*xfer
;
2437 unsigned long flags
;
2439 struct wa_rpipe
*rpipe
;
2440 unsigned done
= 0, dti_busy
= 0, data_frame_count
= 0, seg_index
;
2441 unsigned first_frame_index
= 0, rpipe_ready
= 0;
2444 /* We have a xfer result buffer; check it */
2445 dev_dbg(dev
, "DTI: isoc packet status %d bytes at %p\n",
2446 urb
->actual_length
, urb
->transfer_buffer
);
2447 packet_status
= (struct wa_xfer_packet_status_hwaiso
*)(wa
->dti_buf
);
2448 if (packet_status
->bPacketType
!= WA_XFER_ISO_PACKET_STATUS
) {
2449 dev_err(dev
, "DTI Error: isoc packet status--bad type 0x%02x\n",
2450 packet_status
->bPacketType
);
2451 goto error_parse_buffer
;
2453 xfer
= wa_xfer_get_by_id(wa
, wa
->dti_isoc_xfer_in_progress
);
2455 dev_err(dev
, "DTI Error: isoc packet status--unknown xfer 0x%08x\n",
2456 wa
->dti_isoc_xfer_in_progress
);
2457 goto error_parse_buffer
;
2459 spin_lock_irqsave(&xfer
->lock
, flags
);
2460 if (unlikely(wa
->dti_isoc_xfer_seg
>= xfer
->segs
))
2462 seg
= xfer
->seg
[wa
->dti_isoc_xfer_seg
];
2463 rpipe
= xfer
->ep
->hcpriv
;
2464 expected_size
= sizeof(*packet_status
) +
2465 (sizeof(packet_status
->PacketStatus
[0]) *
2466 seg
->isoc_frame_count
);
2467 if (urb
->actual_length
!= expected_size
) {
2468 dev_err(dev
, "DTI Error: isoc packet status--bad urb length (%d bytes vs %d needed)\n",
2469 urb
->actual_length
, expected_size
);
2472 if (le16_to_cpu(packet_status
->wLength
) != expected_size
) {
2473 dev_err(dev
, "DTI Error: isoc packet status--bad length %u\n",
2474 le16_to_cpu(packet_status
->wLength
));
2477 /* write isoc packet status and lengths back to the xfer urb. */
2478 status_array
= packet_status
->PacketStatus
;
2479 xfer
->urb
->start_frame
=
2480 wa
->wusb
->usb_hcd
.driver
->get_frame_number(&wa
->wusb
->usb_hcd
);
2481 for (seg_index
= 0; seg_index
< seg
->isoc_frame_count
; ++seg_index
) {
2482 struct usb_iso_packet_descriptor
*iso_frame_desc
=
2483 xfer
->urb
->iso_frame_desc
;
2484 const int xfer_frame_index
=
2485 seg
->isoc_frame_offset
+ seg_index
;
2487 iso_frame_desc
[xfer_frame_index
].status
=
2488 wa_xfer_status_to_errno(
2489 le16_to_cpu(status_array
[seg_index
].PacketStatus
));
2490 iso_frame_desc
[xfer_frame_index
].actual_length
=
2491 le16_to_cpu(status_array
[seg_index
].PacketLength
);
2492 /* track the number of frames successfully transferred. */
2493 if (iso_frame_desc
[xfer_frame_index
].actual_length
> 0) {
2494 /* save the starting frame index for buf_in_urb. */
2495 if (!data_frame_count
)
2496 first_frame_index
= seg_index
;
2501 if (xfer
->is_inbound
&& data_frame_count
) {
2502 int result
, total_frames_read
= 0, urb_index
= 0;
2503 struct urb
*buf_in_urb
;
2505 /* IN data phase: read to buffer */
2506 seg
->status
= WA_SEG_DTI_PENDING
;
2508 /* start with the first frame with data. */
2509 seg
->isoc_frame_index
= first_frame_index
;
2510 /* submit up to WA_MAX_BUF_IN_URBS read URBs. */
2512 int urb_frame_index
, urb_frame_count
;
2513 struct usb_iso_packet_descriptor
*iso_frame_desc
;
2515 buf_in_urb
= &(wa
->buf_in_urbs
[urb_index
]);
2516 urb_frame_count
= __wa_populate_buf_in_urb_isoc(wa
,
2517 buf_in_urb
, xfer
, seg
);
2518 /* advance frame index to start of next read URB. */
2519 seg
->isoc_frame_index
+= urb_frame_count
;
2520 total_frames_read
+= urb_frame_count
;
2522 ++(wa
->active_buf_in_urbs
);
2523 result
= usb_submit_urb(buf_in_urb
, GFP_ATOMIC
);
2525 /* skip 0-byte frames. */
2527 seg
->isoc_frame_offset
+ seg
->isoc_frame_index
;
2529 &(xfer
->urb
->iso_frame_desc
[urb_frame_index
]);
2530 while ((seg
->isoc_frame_index
<
2531 seg
->isoc_frame_count
) &&
2532 (iso_frame_desc
->actual_length
== 0)) {
2533 ++(seg
->isoc_frame_index
);
2538 } while ((result
== 0) && (urb_index
< WA_MAX_BUF_IN_URBS
)
2539 && (seg
->isoc_frame_index
<
2540 seg
->isoc_frame_count
));
2543 --(wa
->active_buf_in_urbs
);
2544 dev_err(dev
, "DTI Error: Could not submit buf in URB (%d)",
2547 } else if (data_frame_count
> total_frames_read
)
2548 /* If we need to read more frames, set DTI busy. */
2551 /* OUT transfer or no more IN data, complete it -- */
2552 rpipe_ready
= rpipe_avail_inc(rpipe
);
2553 done
= __wa_xfer_mark_seg_as_done(xfer
, seg
, WA_SEG_DONE
);
2555 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2557 wa
->dti_state
= WA_DTI_BUF_IN_DATA_PENDING
;
2559 wa
->dti_state
= WA_DTI_TRANSFER_RESULT_PENDING
;
2561 wa_xfer_completion(xfer
);
2563 wa_xfer_delayed_run(rpipe
);
2568 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2575 * Callback for the IN data phase
2577 * If successful transition state; otherwise, take a note of the
2578 * error, mark this segment done and try completion.
2580 * Note we don't access until we are sure that the transfer hasn't
2581 * been cancelled (ECONNRESET, ENOENT), which could mean that
2582 * seg->xfer could be already gone.
2584 static void wa_buf_in_cb(struct urb
*urb
)
2586 struct wa_seg
*seg
= urb
->context
;
2587 struct wa_xfer
*xfer
= seg
->xfer
;
2590 struct wa_rpipe
*rpipe
;
2591 unsigned rpipe_ready
= 0, isoc_data_frame_count
= 0;
2592 unsigned long flags
;
2593 int resubmit_dti
= 0, active_buf_in_urbs
;
2596 /* free the sg if it was used. */
2600 spin_lock_irqsave(&xfer
->lock
, flags
);
2602 dev
= &wa
->usb_iface
->dev
;
2603 --(wa
->active_buf_in_urbs
);
2604 active_buf_in_urbs
= wa
->active_buf_in_urbs
;
2606 if (usb_pipeisoc(xfer
->urb
->pipe
)) {
2607 struct usb_iso_packet_descriptor
*iso_frame_desc
=
2608 xfer
->urb
->iso_frame_desc
;
2612 * Find the next isoc frame with data and count how many
2613 * frames with data remain.
2615 seg_index
= seg
->isoc_frame_index
;
2616 while (seg_index
< seg
->isoc_frame_count
) {
2617 const int urb_frame_index
=
2618 seg
->isoc_frame_offset
+ seg_index
;
2620 if (iso_frame_desc
[urb_frame_index
].actual_length
> 0) {
2621 /* save the index of the next frame with data */
2622 if (!isoc_data_frame_count
)
2623 seg
->isoc_frame_index
= seg_index
;
2624 ++isoc_data_frame_count
;
2629 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2631 switch (urb
->status
) {
2633 spin_lock_irqsave(&xfer
->lock
, flags
);
2635 seg
->result
+= urb
->actual_length
;
2636 if (isoc_data_frame_count
> 0) {
2637 int result
, urb_frame_count
;
2639 /* submit a read URB for the next frame with data. */
2640 urb_frame_count
= __wa_populate_buf_in_urb_isoc(wa
, urb
,
2642 /* advance index to start of next read URB. */
2643 seg
->isoc_frame_index
+= urb_frame_count
;
2644 ++(wa
->active_buf_in_urbs
);
2645 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
2647 --(wa
->active_buf_in_urbs
);
2648 dev_err(dev
, "DTI Error: Could not submit buf in URB (%d)",
2653 * If we are in this callback and
2654 * isoc_data_frame_count > 0, it means that the dti_urb
2655 * submission was delayed in wa_dti_cb. Once
2656 * we submit the last buf_in_urb, we can submit the
2659 resubmit_dti
= (isoc_data_frame_count
==
2661 } else if (active_buf_in_urbs
== 0) {
2662 rpipe
= xfer
->ep
->hcpriv
;
2664 "xfer %p 0x%08X#%u: data in done (%zu bytes)\n",
2665 xfer
, wa_xfer_id(xfer
), seg
->index
,
2667 rpipe_ready
= rpipe_avail_inc(rpipe
);
2668 done
= __wa_xfer_mark_seg_as_done(xfer
, seg
,
2671 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2673 wa_xfer_completion(xfer
);
2675 wa_xfer_delayed_run(rpipe
);
2677 case -ECONNRESET
: /* URB unlinked; no need to do anything */
2678 case -ENOENT
: /* as it was done by the who unlinked us */
2680 default: /* Other errors ... */
2682 * Error on data buf read. Only resubmit DTI if it hasn't
2683 * already been done by previously hitting this error or by a
2684 * successful completion of the previous buf_in_urb.
2686 resubmit_dti
= wa
->dti_state
!= WA_DTI_TRANSFER_RESULT_PENDING
;
2687 spin_lock_irqsave(&xfer
->lock
, flags
);
2688 rpipe
= xfer
->ep
->hcpriv
;
2689 if (printk_ratelimit())
2690 dev_err(dev
, "xfer %p 0x%08X#%u: data in error %d\n",
2691 xfer
, wa_xfer_id(xfer
), seg
->index
,
2693 if (edc_inc(&wa
->nep_edc
, EDC_MAX_ERRORS
,
2694 EDC_ERROR_TIMEFRAME
)){
2695 dev_err(dev
, "DTO: URB max acceptable errors "
2696 "exceeded, resetting device\n");
2699 seg
->result
= urb
->status
;
2700 rpipe_ready
= rpipe_avail_inc(rpipe
);
2701 if (active_buf_in_urbs
== 0)
2702 done
= __wa_xfer_mark_seg_as_done(xfer
, seg
,
2705 __wa_xfer_abort(xfer
);
2706 spin_unlock_irqrestore(&xfer
->lock
, flags
);
2708 wa_xfer_completion(xfer
);
2710 wa_xfer_delayed_run(rpipe
);
2716 wa
->dti_state
= WA_DTI_TRANSFER_RESULT_PENDING
;
2718 result
= usb_submit_urb(wa
->dti_urb
, GFP_ATOMIC
);
2720 dev_err(dev
, "DTI Error: Could not submit DTI URB (%d)\n",
2728 * Handle an incoming transfer result buffer
2730 * Given a transfer result buffer, it completes the transfer (possibly
2731 * scheduling and buffer in read) and then resubmits the DTI URB for a
2732 * new transfer result read.
2735 * The xfer_result DTI URB state machine
2737 * States: OFF | RXR (Read-Xfer-Result) | RBI (Read-Buffer-In)
2739 * We start in OFF mode, the first xfer_result notification [through
2740 * wa_handle_notif_xfer()] moves us to RXR by posting the DTI-URB to
2743 * We receive a buffer -- if it is not a xfer_result, we complain and
2744 * repost the DTI-URB. If it is a xfer_result then do the xfer seg
2745 * request accounting. If it is an IN segment, we move to RBI and post
2746 * a BUF-IN-URB to the right buffer. The BUF-IN-URB callback will
2747 * repost the DTI-URB and move to RXR state. if there was no IN
2748 * segment, it will repost the DTI-URB.
2750 * We go back to OFF when we detect a ENOENT or ESHUTDOWN (or too many
2751 * errors) in the URBs.
2753 static void wa_dti_cb(struct urb
*urb
)
2755 int result
, dti_busy
= 0;
2756 struct wahc
*wa
= urb
->context
;
2757 struct device
*dev
= &wa
->usb_iface
->dev
;
2761 BUG_ON(wa
->dti_urb
!= urb
);
2762 switch (wa
->dti_urb
->status
) {
2764 if (wa
->dti_state
== WA_DTI_TRANSFER_RESULT_PENDING
) {
2765 struct wa_xfer_result
*xfer_result
;
2766 struct wa_xfer
*xfer
;
2768 /* We have a xfer result buffer; check it */
2769 dev_dbg(dev
, "DTI: xfer result %d bytes at %p\n",
2770 urb
->actual_length
, urb
->transfer_buffer
);
2771 if (urb
->actual_length
!= sizeof(*xfer_result
)) {
2772 dev_err(dev
, "DTI Error: xfer result--bad size xfer result (%d bytes vs %zu needed)\n",
2774 sizeof(*xfer_result
));
2777 xfer_result
= (struct wa_xfer_result
*)(wa
->dti_buf
);
2778 if (xfer_result
->hdr
.bLength
!= sizeof(*xfer_result
)) {
2779 dev_err(dev
, "DTI Error: xfer result--bad header length %u\n",
2780 xfer_result
->hdr
.bLength
);
2783 if (xfer_result
->hdr
.bNotifyType
!= WA_XFER_RESULT
) {
2784 dev_err(dev
, "DTI Error: xfer result--bad header type 0x%02x\n",
2785 xfer_result
->hdr
.bNotifyType
);
2788 xfer_id
= le32_to_cpu(xfer_result
->dwTransferID
);
2789 usb_status
= xfer_result
->bTransferStatus
& 0x3f;
2790 if (usb_status
== WA_XFER_STATUS_NOT_FOUND
) {
2791 /* taken care of already */
2792 dev_dbg(dev
, "%s: xfer 0x%08X#%u not found.\n",
2794 xfer_result
->bTransferSegment
& 0x7f);
2797 xfer
= wa_xfer_get_by_id(wa
, xfer_id
);
2799 /* FIXME: transaction not found. */
2800 dev_err(dev
, "DTI Error: xfer result--unknown xfer 0x%08x (status 0x%02x)\n",
2801 xfer_id
, usb_status
);
2804 wa_xfer_result_chew(wa
, xfer
, xfer_result
);
2806 } else if (wa
->dti_state
== WA_DTI_ISOC_PACKET_STATUS_PENDING
) {
2807 dti_busy
= wa_process_iso_packet_status(wa
, urb
);
2809 dev_err(dev
, "DTI Error: unexpected EP state = %d\n",
2813 case -ENOENT
: /* (we killed the URB)...so, no broadcast */
2814 case -ESHUTDOWN
: /* going away! */
2815 dev_dbg(dev
, "DTI: going down! %d\n", urb
->status
);
2819 if (edc_inc(&wa
->dti_edc
, EDC_MAX_ERRORS
,
2820 EDC_ERROR_TIMEFRAME
)) {
2821 dev_err(dev
, "DTI: URB max acceptable errors "
2822 "exceeded, resetting device\n");
2826 if (printk_ratelimit())
2827 dev_err(dev
, "DTI: URB error %d\n", urb
->status
);
2831 /* Resubmit the DTI URB if we are not busy processing isoc in frames. */
2833 result
= usb_submit_urb(wa
->dti_urb
, GFP_ATOMIC
);
2835 dev_err(dev
, "DTI Error: Could not submit DTI URB (%d)\n",
2845 * Initialize the DTI URB for reading transfer result notifications and also
2846 * the buffer-in URB, for reading buffers. Then we just submit the DTI URB.
2848 int wa_dti_start(struct wahc
*wa
)
2850 const struct usb_endpoint_descriptor
*dti_epd
= wa
->dti_epd
;
2851 struct device
*dev
= &wa
->usb_iface
->dev
;
2852 int result
= -ENOMEM
, index
;
2854 if (wa
->dti_urb
!= NULL
) /* DTI URB already started */
2857 wa
->dti_urb
= usb_alloc_urb(0, GFP_KERNEL
);
2858 if (wa
->dti_urb
== NULL
) {
2859 dev_err(dev
, "Can't allocate DTI URB\n");
2860 goto error_dti_urb_alloc
;
2863 wa
->dti_urb
, wa
->usb_dev
,
2864 usb_rcvbulkpipe(wa
->usb_dev
, 0x80 | dti_epd
->bEndpointAddress
),
2865 wa
->dti_buf
, wa
->dti_buf_size
,
2868 /* init the buf in URBs */
2869 for (index
= 0; index
< WA_MAX_BUF_IN_URBS
; ++index
) {
2871 &(wa
->buf_in_urbs
[index
]), wa
->usb_dev
,
2872 usb_rcvbulkpipe(wa
->usb_dev
,
2873 0x80 | dti_epd
->bEndpointAddress
),
2874 NULL
, 0, wa_buf_in_cb
, wa
);
2876 result
= usb_submit_urb(wa
->dti_urb
, GFP_KERNEL
);
2878 dev_err(dev
, "DTI Error: Could not submit DTI URB (%d) resetting\n",
2880 goto error_dti_urb_submit
;
2885 error_dti_urb_submit
:
2886 usb_put_urb(wa
->dti_urb
);
2888 error_dti_urb_alloc
:
2891 EXPORT_SYMBOL_GPL(wa_dti_start
);
2893 * Transfer complete notification
2895 * Called from the notif.c code. We get a notification on EP2 saying
2896 * that some endpoint has some transfer result data available. We are
2899 * To speed up things, we always have a URB reading the DTI URB; we
2900 * don't really set it up and start it until the first xfer complete
2901 * notification arrives, which is what we do here.
2903 * Follow up in wa_dti_cb(), as that's where the whole state
2906 * @wa shall be referenced
2908 void wa_handle_notif_xfer(struct wahc
*wa
, struct wa_notif_hdr
*notif_hdr
)
2910 struct device
*dev
= &wa
->usb_iface
->dev
;
2911 struct wa_notif_xfer
*notif_xfer
;
2912 const struct usb_endpoint_descriptor
*dti_epd
= wa
->dti_epd
;
2914 notif_xfer
= container_of(notif_hdr
, struct wa_notif_xfer
, hdr
);
2915 BUG_ON(notif_hdr
->bNotifyType
!= WA_NOTIF_TRANSFER
);
2917 if ((0x80 | notif_xfer
->bEndpoint
) != dti_epd
->bEndpointAddress
) {
2918 /* FIXME: hardcoded limitation, adapt */
2919 dev_err(dev
, "BUG: DTI ep is %u, not %u (hack me)\n",
2920 notif_xfer
->bEndpoint
, dti_epd
->bEndpointAddress
);
2924 /* attempt to start the DTI ep processing. */
2925 if (wa_dti_start(wa
) < 0)