2 * Copyright (c) 2001-2004 by David Brownell
3 * Copyright (c) 2003 Michal Sojka, for high-speed iso transfers
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 /* this file is part of ehci-hcd.c */
22 /*-------------------------------------------------------------------------*/
25 * EHCI scheduled transaction support: interrupt, iso, split iso
26 * These are called "periodic" transactions in the EHCI spec.
28 * Note that for interrupt transfers, the QH/QTD manipulation is shared
29 * with the "asynchronous" transaction support (control/bulk transfers).
30 * The only real difference is in how interrupt transfers are scheduled.
32 * For ISO, we make an "iso_stream" head to serve the same role as a QH.
33 * It keeps track of every ITD (or SITD) that's linked, and holds enough
34 * pre-calculated schedule data to make appending to the queue be quick.
37 static int ehci_get_frame (struct usb_hcd
*hcd
);
41 static unsigned ehci_read_frame_index(struct ehci_hcd
*ehci
)
46 * The MosChip MCS9990 controller updates its microframe counter
47 * a little before the frame counter, and occasionally we will read
48 * the invalid intermediate value. Avoid problems by checking the
49 * microframe number (the low-order 3 bits); if they are 0 then
50 * re-read the register to get the correct value.
52 uf
= ehci_readl(ehci
, &ehci
->regs
->frame_index
);
53 if (unlikely(ehci
->frame_index_bug
&& ((uf
& 7) == 0)))
54 uf
= ehci_readl(ehci
, &ehci
->regs
->frame_index
);
60 /*-------------------------------------------------------------------------*/
63 * periodic_next_shadow - return "next" pointer on shadow list
64 * @periodic: host pointer to qh/itd/sitd
65 * @tag: hardware tag for type of this record
67 static union ehci_shadow
*
68 periodic_next_shadow(struct ehci_hcd
*ehci
, union ehci_shadow
*periodic
,
71 switch (hc32_to_cpu(ehci
, tag
)) {
73 return &periodic
->qh
->qh_next
;
75 return &periodic
->fstn
->fstn_next
;
77 return &periodic
->itd
->itd_next
;
80 return &periodic
->sitd
->sitd_next
;
85 shadow_next_periodic(struct ehci_hcd
*ehci
, union ehci_shadow
*periodic
,
88 switch (hc32_to_cpu(ehci
, tag
)) {
89 /* our ehci_shadow.qh is actually software part */
91 return &periodic
->qh
->hw
->hw_next
;
92 /* others are hw parts */
94 return periodic
->hw_next
;
98 /* caller must hold ehci->lock */
99 static void periodic_unlink (struct ehci_hcd
*ehci
, unsigned frame
, void *ptr
)
101 union ehci_shadow
*prev_p
= &ehci
->pshadow
[frame
];
102 __hc32
*hw_p
= &ehci
->periodic
[frame
];
103 union ehci_shadow here
= *prev_p
;
105 /* find predecessor of "ptr"; hw and shadow lists are in sync */
106 while (here
.ptr
&& here
.ptr
!= ptr
) {
107 prev_p
= periodic_next_shadow(ehci
, prev_p
,
108 Q_NEXT_TYPE(ehci
, *hw_p
));
109 hw_p
= shadow_next_periodic(ehci
, &here
,
110 Q_NEXT_TYPE(ehci
, *hw_p
));
113 /* an interrupt entry (at list end) could have been shared */
117 /* update shadow and hardware lists ... the old "next" pointers
118 * from ptr may still be in use, the caller updates them.
120 *prev_p
= *periodic_next_shadow(ehci
, &here
,
121 Q_NEXT_TYPE(ehci
, *hw_p
));
123 if (!ehci
->use_dummy_qh
||
124 *shadow_next_periodic(ehci
, &here
, Q_NEXT_TYPE(ehci
, *hw_p
))
125 != EHCI_LIST_END(ehci
))
126 *hw_p
= *shadow_next_periodic(ehci
, &here
,
127 Q_NEXT_TYPE(ehci
, *hw_p
));
129 *hw_p
= ehci
->dummy
->qh_dma
;
132 /* how many of the uframe's 125 usecs are allocated? */
133 static unsigned short
134 periodic_usecs (struct ehci_hcd
*ehci
, unsigned frame
, unsigned uframe
)
136 __hc32
*hw_p
= &ehci
->periodic
[frame
];
137 union ehci_shadow
*q
= &ehci
->pshadow
[frame
];
139 struct ehci_qh_hw
*hw
;
142 switch (hc32_to_cpu(ehci
, Q_NEXT_TYPE(ehci
, *hw_p
))) {
145 /* is it in the S-mask? */
146 if (hw
->hw_info2
& cpu_to_hc32(ehci
, 1 << uframe
))
147 usecs
+= q
->qh
->usecs
;
149 if (hw
->hw_info2
& cpu_to_hc32(ehci
,
151 usecs
+= q
->qh
->c_usecs
;
157 /* for "save place" FSTNs, count the relevant INTR
158 * bandwidth from the previous frame
160 if (q
->fstn
->hw_prev
!= EHCI_LIST_END(ehci
)) {
161 ehci_dbg (ehci
, "ignoring FSTN cost ...\n");
163 hw_p
= &q
->fstn
->hw_next
;
164 q
= &q
->fstn
->fstn_next
;
167 if (q
->itd
->hw_transaction
[uframe
])
168 usecs
+= q
->itd
->stream
->usecs
;
169 hw_p
= &q
->itd
->hw_next
;
170 q
= &q
->itd
->itd_next
;
173 /* is it in the S-mask? (count SPLIT, DATA) */
174 if (q
->sitd
->hw_uframe
& cpu_to_hc32(ehci
,
176 if (q
->sitd
->hw_fullspeed_ep
&
177 cpu_to_hc32(ehci
, 1<<31))
178 usecs
+= q
->sitd
->stream
->usecs
;
179 else /* worst case for OUT start-split */
180 usecs
+= HS_USECS_ISO (188);
183 /* ... C-mask? (count CSPLIT, DATA) */
184 if (q
->sitd
->hw_uframe
&
185 cpu_to_hc32(ehci
, 1 << (8 + uframe
))) {
186 /* worst case for IN complete-split */
187 usecs
+= q
->sitd
->stream
->c_usecs
;
190 hw_p
= &q
->sitd
->hw_next
;
191 q
= &q
->sitd
->sitd_next
;
196 if (usecs
> ehci
->uframe_periodic_max
)
197 ehci_err (ehci
, "uframe %d sched overrun: %d usecs\n",
198 frame
* 8 + uframe
, usecs
);
203 /*-------------------------------------------------------------------------*/
205 static int same_tt (struct usb_device
*dev1
, struct usb_device
*dev2
)
207 if (!dev1
->tt
|| !dev2
->tt
)
209 if (dev1
->tt
!= dev2
->tt
)
212 return dev1
->ttport
== dev2
->ttport
;
217 #ifdef CONFIG_USB_EHCI_TT_NEWSCHED
219 /* Which uframe does the low/fullspeed transfer start in?
221 * The parameter is the mask of ssplits in "H-frame" terms
222 * and this returns the transfer start uframe in "B-frame" terms,
223 * which allows both to match, e.g. a ssplit in "H-frame" uframe 0
224 * will cause a transfer in "B-frame" uframe 0. "B-frames" lag
225 * "H-frames" by 1 uframe. See the EHCI spec sec 4.5 and figure 4.7.
227 static inline unsigned char tt_start_uframe(struct ehci_hcd
*ehci
, __hc32 mask
)
229 unsigned char smask
= QH_SMASK
& hc32_to_cpu(ehci
, mask
);
231 ehci_err(ehci
, "invalid empty smask!\n");
232 /* uframe 7 can't have bw so this will indicate failure */
235 return ffs(smask
) - 1;
238 static const unsigned char
239 max_tt_usecs
[] = { 125, 125, 125, 125, 125, 125, 30, 0 };
241 /* carryover low/fullspeed bandwidth that crosses uframe boundries */
242 static inline void carryover_tt_bandwidth(unsigned short tt_usecs
[8])
245 for (i
=0; i
<7; i
++) {
246 if (max_tt_usecs
[i
] < tt_usecs
[i
]) {
247 tt_usecs
[i
+1] += tt_usecs
[i
] - max_tt_usecs
[i
];
248 tt_usecs
[i
] = max_tt_usecs
[i
];
253 /* How many of the tt's periodic downstream 1000 usecs are allocated?
255 * While this measures the bandwidth in terms of usecs/uframe,
256 * the low/fullspeed bus has no notion of uframes, so any particular
257 * low/fullspeed transfer can "carry over" from one uframe to the next,
258 * since the TT just performs downstream transfers in sequence.
260 * For example two separate 100 usec transfers can start in the same uframe,
261 * and the second one would "carry over" 75 usecs into the next uframe.
265 struct ehci_hcd
*ehci
,
266 struct usb_device
*dev
,
268 unsigned short tt_usecs
[8]
271 __hc32
*hw_p
= &ehci
->periodic
[frame
];
272 union ehci_shadow
*q
= &ehci
->pshadow
[frame
];
275 memset(tt_usecs
, 0, 16);
278 switch (hc32_to_cpu(ehci
, Q_NEXT_TYPE(ehci
, *hw_p
))) {
280 hw_p
= &q
->itd
->hw_next
;
281 q
= &q
->itd
->itd_next
;
284 if (same_tt(dev
, q
->qh
->dev
)) {
285 uf
= tt_start_uframe(ehci
, q
->qh
->hw
->hw_info2
);
286 tt_usecs
[uf
] += q
->qh
->tt_usecs
;
288 hw_p
= &q
->qh
->hw
->hw_next
;
292 if (same_tt(dev
, q
->sitd
->urb
->dev
)) {
293 uf
= tt_start_uframe(ehci
, q
->sitd
->hw_uframe
);
294 tt_usecs
[uf
] += q
->sitd
->stream
->tt_usecs
;
296 hw_p
= &q
->sitd
->hw_next
;
297 q
= &q
->sitd
->sitd_next
;
301 ehci_dbg(ehci
, "ignoring periodic frame %d FSTN\n",
303 hw_p
= &q
->fstn
->hw_next
;
304 q
= &q
->fstn
->fstn_next
;
308 carryover_tt_bandwidth(tt_usecs
);
310 if (max_tt_usecs
[7] < tt_usecs
[7])
311 ehci_err(ehci
, "frame %d tt sched overrun: %d usecs\n",
312 frame
, tt_usecs
[7] - max_tt_usecs
[7]);
316 * Return true if the device's tt's downstream bus is available for a
317 * periodic transfer of the specified length (usecs), starting at the
318 * specified frame/uframe. Note that (as summarized in section 11.19
319 * of the usb 2.0 spec) TTs can buffer multiple transactions for each
322 * The uframe parameter is when the fullspeed/lowspeed transfer
323 * should be executed in "B-frame" terms, which is the same as the
324 * highspeed ssplit's uframe (which is in "H-frame" terms). For example
325 * a ssplit in "H-frame" 0 causes a transfer in "B-frame" 0.
326 * See the EHCI spec sec 4.5 and fig 4.7.
328 * This checks if the full/lowspeed bus, at the specified starting uframe,
329 * has the specified bandwidth available, according to rules listed
330 * in USB 2.0 spec section 11.18.1 fig 11-60.
332 * This does not check if the transfer would exceed the max ssplit
333 * limit of 16, specified in USB 2.0 spec section 11.18.4 requirement #4,
334 * since proper scheduling limits ssplits to less than 16 per uframe.
336 static int tt_available (
337 struct ehci_hcd
*ehci
,
339 struct usb_device
*dev
,
345 if ((period
== 0) || (uframe
>= 7)) /* error */
348 for (; frame
< ehci
->periodic_size
; frame
+= period
) {
349 unsigned short tt_usecs
[8];
351 periodic_tt_usecs (ehci
, dev
, frame
, tt_usecs
);
353 ehci_vdbg(ehci
, "tt frame %d check %d usecs start uframe %d in"
354 " schedule %d/%d/%d/%d/%d/%d/%d/%d\n",
355 frame
, usecs
, uframe
,
356 tt_usecs
[0], tt_usecs
[1], tt_usecs
[2], tt_usecs
[3],
357 tt_usecs
[4], tt_usecs
[5], tt_usecs
[6], tt_usecs
[7]);
359 if (max_tt_usecs
[uframe
] <= tt_usecs
[uframe
]) {
360 ehci_vdbg(ehci
, "frame %d uframe %d fully scheduled\n",
365 /* special case for isoc transfers larger than 125us:
366 * the first and each subsequent fully used uframe
367 * must be empty, so as to not illegally delay
368 * already scheduled transactions
371 int ufs
= (usecs
/ 125);
373 for (i
= uframe
; i
< (uframe
+ ufs
) && i
< 8; i
++)
374 if (0 < tt_usecs
[i
]) {
376 "multi-uframe xfer can't fit "
377 "in frame %d uframe %d\n",
383 tt_usecs
[uframe
] += usecs
;
385 carryover_tt_bandwidth(tt_usecs
);
387 /* fail if the carryover pushed bw past the last uframe's limit */
388 if (max_tt_usecs
[7] < tt_usecs
[7]) {
390 "tt unavailable usecs %d frame %d uframe %d\n",
391 usecs
, frame
, uframe
);
401 /* return true iff the device's transaction translator is available
402 * for a periodic transfer starting at the specified frame, using
403 * all the uframes in the mask.
405 static int tt_no_collision (
406 struct ehci_hcd
*ehci
,
408 struct usb_device
*dev
,
413 if (period
== 0) /* error */
416 /* note bandwidth wastage: split never follows csplit
417 * (different dev or endpoint) until the next uframe.
418 * calling convention doesn't make that distinction.
420 for (; frame
< ehci
->periodic_size
; frame
+= period
) {
421 union ehci_shadow here
;
423 struct ehci_qh_hw
*hw
;
425 here
= ehci
->pshadow
[frame
];
426 type
= Q_NEXT_TYPE(ehci
, ehci
->periodic
[frame
]);
428 switch (hc32_to_cpu(ehci
, type
)) {
430 type
= Q_NEXT_TYPE(ehci
, here
.itd
->hw_next
);
431 here
= here
.itd
->itd_next
;
435 if (same_tt (dev
, here
.qh
->dev
)) {
438 mask
= hc32_to_cpu(ehci
,
440 /* "knows" no gap is needed */
445 type
= Q_NEXT_TYPE(ehci
, hw
->hw_next
);
446 here
= here
.qh
->qh_next
;
449 if (same_tt (dev
, here
.sitd
->urb
->dev
)) {
452 mask
= hc32_to_cpu(ehci
, here
.sitd
454 /* FIXME assumes no gap for IN! */
459 type
= Q_NEXT_TYPE(ehci
, here
.sitd
->hw_next
);
460 here
= here
.sitd
->sitd_next
;
465 "periodic frame %d bogus type %d\n",
469 /* collision or error */
478 #endif /* CONFIG_USB_EHCI_TT_NEWSCHED */
480 /*-------------------------------------------------------------------------*/
482 static void enable_periodic(struct ehci_hcd
*ehci
)
484 if (ehci
->periodic_count
++)
487 /* Stop waiting to turn off the periodic schedule */
488 ehci
->enabled_hrtimer_events
&= ~BIT(EHCI_HRTIMER_DISABLE_PERIODIC
);
490 /* Don't start the schedule until PSS is 0 */
492 turn_on_io_watchdog(ehci
);
495 static void disable_periodic(struct ehci_hcd
*ehci
)
497 if (--ehci
->periodic_count
)
500 /* Don't turn off the schedule until PSS is 1 */
504 /*-------------------------------------------------------------------------*/
506 /* periodic schedule slots have iso tds (normal or split) first, then a
507 * sparse tree for active interrupt transfers.
509 * this just links in a qh; caller guarantees uframe masks are set right.
510 * no FSTN support (yet; ehci 0.96+)
512 static void qh_link_periodic(struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
515 unsigned period
= qh
->period
;
517 dev_dbg (&qh
->dev
->dev
,
518 "link qh%d-%04x/%p start %d [%d/%d us]\n",
519 period
, hc32_to_cpup(ehci
, &qh
->hw
->hw_info2
)
520 & (QH_CMASK
| QH_SMASK
),
521 qh
, qh
->start
, qh
->usecs
, qh
->c_usecs
);
523 /* high bandwidth, or otherwise every microframe */
527 for (i
= qh
->start
; i
< ehci
->periodic_size
; i
+= period
) {
528 union ehci_shadow
*prev
= &ehci
->pshadow
[i
];
529 __hc32
*hw_p
= &ehci
->periodic
[i
];
530 union ehci_shadow here
= *prev
;
533 /* skip the iso nodes at list head */
535 type
= Q_NEXT_TYPE(ehci
, *hw_p
);
536 if (type
== cpu_to_hc32(ehci
, Q_TYPE_QH
))
538 prev
= periodic_next_shadow(ehci
, prev
, type
);
539 hw_p
= shadow_next_periodic(ehci
, &here
, type
);
543 /* sorting each branch by period (slow-->fast)
544 * enables sharing interior tree nodes
546 while (here
.ptr
&& qh
!= here
.qh
) {
547 if (qh
->period
> here
.qh
->period
)
549 prev
= &here
.qh
->qh_next
;
550 hw_p
= &here
.qh
->hw
->hw_next
;
553 /* link in this qh, unless some earlier pass did that */
557 qh
->hw
->hw_next
= *hw_p
;
560 *hw_p
= QH_NEXT (ehci
, qh
->qh_dma
);
563 qh
->qh_state
= QH_STATE_LINKED
;
566 /* update per-qh bandwidth for usbfs */
567 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
+= qh
->period
568 ? ((qh
->usecs
+ qh
->c_usecs
) / qh
->period
)
571 list_add(&qh
->intr_node
, &ehci
->intr_qh_list
);
573 /* maybe enable periodic schedule processing */
575 enable_periodic(ehci
);
578 static void qh_unlink_periodic(struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
584 * If qh is for a low/full-speed device, simply unlinking it
585 * could interfere with an ongoing split transaction. To unlink
586 * it safely would require setting the QH_INACTIVATE bit and
587 * waiting at least one frame, as described in EHCI 4.12.2.5.
589 * We won't bother with any of this. Instead, we assume that the
590 * only reason for unlinking an interrupt QH while the current URB
591 * is still active is to dequeue all the URBs (flush the whole
594 * If rebalancing the periodic schedule is ever implemented, this
595 * approach will no longer be valid.
598 /* high bandwidth, or otherwise part of every microframe */
599 if ((period
= qh
->period
) == 0)
602 for (i
= qh
->start
; i
< ehci
->periodic_size
; i
+= period
)
603 periodic_unlink (ehci
, i
, qh
);
605 /* update per-qh bandwidth for usbfs */
606 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
-= qh
->period
607 ? ((qh
->usecs
+ qh
->c_usecs
) / qh
->period
)
610 dev_dbg (&qh
->dev
->dev
,
611 "unlink qh%d-%04x/%p start %d [%d/%d us]\n",
613 hc32_to_cpup(ehci
, &qh
->hw
->hw_info2
) & (QH_CMASK
| QH_SMASK
),
614 qh
, qh
->start
, qh
->usecs
, qh
->c_usecs
);
616 /* qh->qh_next still "live" to HC */
617 qh
->qh_state
= QH_STATE_UNLINK
;
618 qh
->qh_next
.ptr
= NULL
;
620 if (ehci
->qh_scan_next
== qh
)
621 ehci
->qh_scan_next
= list_entry(qh
->intr_node
.next
,
622 struct ehci_qh
, intr_node
);
623 list_del(&qh
->intr_node
);
626 static void start_unlink_intr(struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
628 /* If the QH isn't linked then there's nothing we can do
629 * unless we were called during a giveback, in which case
630 * qh_completions() has to deal with it.
632 if (qh
->qh_state
!= QH_STATE_LINKED
) {
633 if (qh
->qh_state
== QH_STATE_COMPLETING
)
634 qh
->needs_rescan
= 1;
638 qh_unlink_periodic (ehci
, qh
);
640 /* Make sure the unlinks are visible before starting the timer */
644 * The EHCI spec doesn't say how long it takes the controller to
645 * stop accessing an unlinked interrupt QH. The timer delay is
646 * 9 uframes; presumably that will be long enough.
648 qh
->unlink_cycle
= ehci
->intr_unlink_cycle
;
650 /* New entries go at the end of the intr_unlink list */
651 if (ehci
->intr_unlink
)
652 ehci
->intr_unlink_last
->unlink_next
= qh
;
654 ehci
->intr_unlink
= qh
;
655 ehci
->intr_unlink_last
= qh
;
657 if (ehci
->intr_unlinking
)
658 ; /* Avoid recursive calls */
659 else if (ehci
->rh_state
< EHCI_RH_RUNNING
)
660 ehci_handle_intr_unlinks(ehci
);
661 else if (ehci
->intr_unlink
== qh
) {
662 ehci_enable_event(ehci
, EHCI_HRTIMER_UNLINK_INTR
, true);
663 ++ehci
->intr_unlink_cycle
;
667 static void end_unlink_intr(struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
669 struct ehci_qh_hw
*hw
= qh
->hw
;
672 qh
->qh_state
= QH_STATE_IDLE
;
673 hw
->hw_next
= EHCI_LIST_END(ehci
);
675 qh_completions(ehci
, qh
);
677 /* reschedule QH iff another request is queued */
678 if (!list_empty(&qh
->qtd_list
) && ehci
->rh_state
== EHCI_RH_RUNNING
) {
679 rc
= qh_schedule(ehci
, qh
);
681 /* An error here likely indicates handshake failure
682 * or no space left in the schedule. Neither fault
683 * should happen often ...
685 * FIXME kill the now-dysfunctional queued urbs
688 ehci_err(ehci
, "can't reschedule qh %p, err %d\n",
692 /* maybe turn off periodic schedule */
694 disable_periodic(ehci
);
697 /*-------------------------------------------------------------------------*/
699 static int check_period (
700 struct ehci_hcd
*ehci
,
708 /* complete split running into next frame?
709 * given FSTN support, we could sometimes check...
714 /* convert "usecs we need" to "max already claimed" */
715 usecs
= ehci
->uframe_periodic_max
- usecs
;
717 /* we "know" 2 and 4 uframe intervals were rejected; so
718 * for period 0, check _every_ microframe in the schedule.
720 if (unlikely (period
== 0)) {
722 for (uframe
= 0; uframe
< 7; uframe
++) {
723 claimed
= periodic_usecs (ehci
, frame
, uframe
);
727 } while ((frame
+= 1) < ehci
->periodic_size
);
729 /* just check the specified uframe, at that period */
732 claimed
= periodic_usecs (ehci
, frame
, uframe
);
735 } while ((frame
+= period
) < ehci
->periodic_size
);
742 static int check_intr_schedule (
743 struct ehci_hcd
*ehci
,
746 const struct ehci_qh
*qh
,
750 int retval
= -ENOSPC
;
753 if (qh
->c_usecs
&& uframe
>= 6) /* FSTN territory? */
756 if (!check_period (ehci
, frame
, uframe
, qh
->period
, qh
->usecs
))
764 #ifdef CONFIG_USB_EHCI_TT_NEWSCHED
765 if (tt_available (ehci
, qh
->period
, qh
->dev
, frame
, uframe
,
769 /* TODO : this may need FSTN for SSPLIT in uframe 5. */
770 for (i
=uframe
+1; i
<8 && i
<uframe
+4; i
++)
771 if (!check_period (ehci
, frame
, i
,
772 qh
->period
, qh
->c_usecs
))
779 *c_maskp
= cpu_to_hc32(ehci
, mask
<< 8);
782 /* Make sure this tt's buffer is also available for CSPLITs.
783 * We pessimize a bit; probably the typical full speed case
784 * doesn't need the second CSPLIT.
786 * NOTE: both SPLIT and CSPLIT could be checked in just
789 mask
= 0x03 << (uframe
+ qh
->gap_uf
);
790 *c_maskp
= cpu_to_hc32(ehci
, mask
<< 8);
793 if (tt_no_collision (ehci
, qh
->period
, qh
->dev
, frame
, mask
)) {
794 if (!check_period (ehci
, frame
, uframe
+ qh
->gap_uf
+ 1,
795 qh
->period
, qh
->c_usecs
))
797 if (!check_period (ehci
, frame
, uframe
+ qh
->gap_uf
,
798 qh
->period
, qh
->c_usecs
))
807 /* "first fit" scheduling policy used the first time through,
808 * or when the previous schedule slot can't be re-used.
810 static int qh_schedule(struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
815 unsigned frame
; /* 0..(qh->period - 1), or NO_FRAME */
816 struct ehci_qh_hw
*hw
= qh
->hw
;
818 qh_refresh(ehci
, qh
);
819 hw
->hw_next
= EHCI_LIST_END(ehci
);
822 /* reuse the previous schedule slots, if we can */
823 if (frame
< qh
->period
) {
824 uframe
= ffs(hc32_to_cpup(ehci
, &hw
->hw_info2
) & QH_SMASK
);
825 status
= check_intr_schedule (ehci
, frame
, --uframe
,
833 /* else scan the schedule to find a group of slots such that all
834 * uframes have enough periodic bandwidth available.
837 /* "normal" case, uframing flexible except with splits */
841 for (i
= qh
->period
; status
&& i
> 0; --i
) {
842 frame
= ++ehci
->random_frame
% qh
->period
;
843 for (uframe
= 0; uframe
< 8; uframe
++) {
844 status
= check_intr_schedule (ehci
,
852 /* qh->period == 0 means every uframe */
855 status
= check_intr_schedule (ehci
, 0, 0, qh
, &c_mask
);
861 /* reset S-frame and (maybe) C-frame masks */
862 hw
->hw_info2
&= cpu_to_hc32(ehci
, ~(QH_CMASK
| QH_SMASK
));
863 hw
->hw_info2
|= qh
->period
864 ? cpu_to_hc32(ehci
, 1 << uframe
)
865 : cpu_to_hc32(ehci
, QH_SMASK
);
866 hw
->hw_info2
|= c_mask
;
868 ehci_dbg (ehci
, "reused qh %p schedule\n", qh
);
870 /* stuff into the periodic schedule */
871 qh_link_periodic(ehci
, qh
);
876 static int intr_submit (
877 struct ehci_hcd
*ehci
,
879 struct list_head
*qtd_list
,
886 struct list_head empty
;
888 /* get endpoint and transfer/schedule data */
889 epnum
= urb
->ep
->desc
.bEndpointAddress
;
891 spin_lock_irqsave (&ehci
->lock
, flags
);
893 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci
)))) {
895 goto done_not_linked
;
897 status
= usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci
), urb
);
898 if (unlikely(status
))
899 goto done_not_linked
;
901 /* get qh and force any scheduling errors */
902 INIT_LIST_HEAD (&empty
);
903 qh
= qh_append_tds(ehci
, urb
, &empty
, epnum
, &urb
->ep
->hcpriv
);
908 if (qh
->qh_state
== QH_STATE_IDLE
) {
909 if ((status
= qh_schedule (ehci
, qh
)) != 0)
913 /* then queue the urb's tds to the qh */
914 qh
= qh_append_tds(ehci
, urb
, qtd_list
, epnum
, &urb
->ep
->hcpriv
);
917 /* ... update usbfs periodic stats */
918 ehci_to_hcd(ehci
)->self
.bandwidth_int_reqs
++;
921 if (unlikely(status
))
922 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci
), urb
);
924 spin_unlock_irqrestore (&ehci
->lock
, flags
);
926 qtd_list_free (ehci
, urb
, qtd_list
);
931 static void scan_intr(struct ehci_hcd
*ehci
)
935 list_for_each_entry_safe(qh
, ehci
->qh_scan_next
, &ehci
->intr_qh_list
,
938 /* clean any finished work for this qh */
939 if (!list_empty(&qh
->qtd_list
)) {
943 * Unlinks could happen here; completion reporting
944 * drops the lock. That's why ehci->qh_scan_next
945 * always holds the next qh to scan; if the next qh
946 * gets unlinked then ehci->qh_scan_next is adjusted
947 * in qh_unlink_periodic().
949 temp
= qh_completions(ehci
, qh
);
950 if (unlikely(qh
->needs_rescan
||
951 (list_empty(&qh
->qtd_list
) &&
952 qh
->qh_state
== QH_STATE_LINKED
)))
953 start_unlink_intr(ehci
, qh
);
960 /*-------------------------------------------------------------------------*/
962 /* ehci_iso_stream ops work with both ITD and SITD */
964 static struct ehci_iso_stream
*
965 iso_stream_alloc (gfp_t mem_flags
)
967 struct ehci_iso_stream
*stream
;
969 stream
= kzalloc(sizeof *stream
, mem_flags
);
970 if (likely (stream
!= NULL
)) {
971 INIT_LIST_HEAD(&stream
->td_list
);
972 INIT_LIST_HEAD(&stream
->free_list
);
973 stream
->next_uframe
= -1;
980 struct ehci_hcd
*ehci
,
981 struct ehci_iso_stream
*stream
,
982 struct usb_device
*dev
,
987 static const u8 smask_out
[] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f };
990 unsigned epnum
, maxp
;
995 * this might be a "high bandwidth" highspeed endpoint,
996 * as encoded in the ep descriptor's wMaxPacket field
998 epnum
= usb_pipeendpoint (pipe
);
999 is_input
= usb_pipein (pipe
) ? USB_DIR_IN
: 0;
1000 maxp
= usb_maxpacket(dev
, pipe
, !is_input
);
1007 /* knows about ITD vs SITD */
1008 if (dev
->speed
== USB_SPEED_HIGH
) {
1009 unsigned multi
= hb_mult(maxp
);
1011 stream
->highspeed
= 1;
1013 maxp
= max_packet(maxp
);
1017 stream
->buf0
= cpu_to_hc32(ehci
, (epnum
<< 8) | dev
->devnum
);
1018 stream
->buf1
= cpu_to_hc32(ehci
, buf1
);
1019 stream
->buf2
= cpu_to_hc32(ehci
, multi
);
1021 /* usbfs wants to report the average usecs per frame tied up
1022 * when transfers on this endpoint are scheduled ...
1024 stream
->usecs
= HS_USECS_ISO (maxp
);
1025 bandwidth
= stream
->usecs
* 8;
1026 bandwidth
/= interval
;
1033 addr
= dev
->ttport
<< 24;
1034 if (!ehci_is_TDI(ehci
)
1036 ehci_to_hcd(ehci
)->self
.root_hub
))
1037 addr
|= dev
->tt
->hub
->devnum
<< 16;
1039 addr
|= dev
->devnum
;
1040 stream
->usecs
= HS_USECS_ISO (maxp
);
1041 think_time
= dev
->tt
? dev
->tt
->think_time
: 0;
1042 stream
->tt_usecs
= NS_TO_US (think_time
+ usb_calc_bus_time (
1043 dev
->speed
, is_input
, 1, maxp
));
1044 hs_transfers
= max (1u, (maxp
+ 187) / 188);
1049 stream
->c_usecs
= stream
->usecs
;
1050 stream
->usecs
= HS_USECS_ISO (1);
1051 stream
->raw_mask
= 1;
1053 /* c-mask as specified in USB 2.0 11.18.4 3.c */
1054 tmp
= (1 << (hs_transfers
+ 2)) - 1;
1055 stream
->raw_mask
|= tmp
<< (8 + 2);
1057 stream
->raw_mask
= smask_out
[hs_transfers
- 1];
1058 bandwidth
= stream
->usecs
+ stream
->c_usecs
;
1059 bandwidth
/= interval
<< 3;
1061 /* stream->splits gets created from raw_mask later */
1062 stream
->address
= cpu_to_hc32(ehci
, addr
);
1064 stream
->bandwidth
= bandwidth
;
1068 stream
->bEndpointAddress
= is_input
| epnum
;
1069 stream
->interval
= interval
;
1070 stream
->maxp
= maxp
;
1073 static struct ehci_iso_stream
*
1074 iso_stream_find (struct ehci_hcd
*ehci
, struct urb
*urb
)
1077 struct ehci_iso_stream
*stream
;
1078 struct usb_host_endpoint
*ep
;
1079 unsigned long flags
;
1081 epnum
= usb_pipeendpoint (urb
->pipe
);
1082 if (usb_pipein(urb
->pipe
))
1083 ep
= urb
->dev
->ep_in
[epnum
];
1085 ep
= urb
->dev
->ep_out
[epnum
];
1087 spin_lock_irqsave (&ehci
->lock
, flags
);
1088 stream
= ep
->hcpriv
;
1090 if (unlikely (stream
== NULL
)) {
1091 stream
= iso_stream_alloc(GFP_ATOMIC
);
1092 if (likely (stream
!= NULL
)) {
1093 ep
->hcpriv
= stream
;
1095 iso_stream_init(ehci
, stream
, urb
->dev
, urb
->pipe
,
1099 /* if dev->ep [epnum] is a QH, hw is set */
1100 } else if (unlikely (stream
->hw
!= NULL
)) {
1101 ehci_dbg (ehci
, "dev %s ep%d%s, not iso??\n",
1102 urb
->dev
->devpath
, epnum
,
1103 usb_pipein(urb
->pipe
) ? "in" : "out");
1107 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1111 /*-------------------------------------------------------------------------*/
1113 /* ehci_iso_sched ops can be ITD-only or SITD-only */
1115 static struct ehci_iso_sched
*
1116 iso_sched_alloc (unsigned packets
, gfp_t mem_flags
)
1118 struct ehci_iso_sched
*iso_sched
;
1119 int size
= sizeof *iso_sched
;
1121 size
+= packets
* sizeof (struct ehci_iso_packet
);
1122 iso_sched
= kzalloc(size
, mem_flags
);
1123 if (likely (iso_sched
!= NULL
)) {
1124 INIT_LIST_HEAD (&iso_sched
->td_list
);
1131 struct ehci_hcd
*ehci
,
1132 struct ehci_iso_sched
*iso_sched
,
1133 struct ehci_iso_stream
*stream
,
1138 dma_addr_t dma
= urb
->transfer_dma
;
1140 /* how many uframes are needed for these transfers */
1141 iso_sched
->span
= urb
->number_of_packets
* stream
->interval
;
1143 /* figure out per-uframe itd fields that we'll need later
1144 * when we fit new itds into the schedule.
1146 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1147 struct ehci_iso_packet
*uframe
= &iso_sched
->packet
[i
];
1152 length
= urb
->iso_frame_desc
[i
].length
;
1153 buf
= dma
+ urb
->iso_frame_desc
[i
].offset
;
1155 trans
= EHCI_ISOC_ACTIVE
;
1156 trans
|= buf
& 0x0fff;
1157 if (unlikely (((i
+ 1) == urb
->number_of_packets
))
1158 && !(urb
->transfer_flags
& URB_NO_INTERRUPT
))
1159 trans
|= EHCI_ITD_IOC
;
1160 trans
|= length
<< 16;
1161 uframe
->transaction
= cpu_to_hc32(ehci
, trans
);
1163 /* might need to cross a buffer page within a uframe */
1164 uframe
->bufp
= (buf
& ~(u64
)0x0fff);
1166 if (unlikely ((uframe
->bufp
!= (buf
& ~(u64
)0x0fff))))
1173 struct ehci_iso_stream
*stream
,
1174 struct ehci_iso_sched
*iso_sched
1179 // caller must hold ehci->lock!
1180 list_splice (&iso_sched
->td_list
, &stream
->free_list
);
1185 itd_urb_transaction (
1186 struct ehci_iso_stream
*stream
,
1187 struct ehci_hcd
*ehci
,
1192 struct ehci_itd
*itd
;
1196 struct ehci_iso_sched
*sched
;
1197 unsigned long flags
;
1199 sched
= iso_sched_alloc (urb
->number_of_packets
, mem_flags
);
1200 if (unlikely (sched
== NULL
))
1203 itd_sched_init(ehci
, sched
, stream
, urb
);
1205 if (urb
->interval
< 8)
1206 num_itds
= 1 + (sched
->span
+ 7) / 8;
1208 num_itds
= urb
->number_of_packets
;
1210 /* allocate/init ITDs */
1211 spin_lock_irqsave (&ehci
->lock
, flags
);
1212 for (i
= 0; i
< num_itds
; i
++) {
1215 * Use iTDs from the free list, but not iTDs that may
1216 * still be in use by the hardware.
1218 if (likely(!list_empty(&stream
->free_list
))) {
1219 itd
= list_first_entry(&stream
->free_list
,
1220 struct ehci_itd
, itd_list
);
1221 if (itd
->frame
== ehci
->now_frame
)
1223 list_del (&itd
->itd_list
);
1224 itd_dma
= itd
->itd_dma
;
1227 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1228 itd
= dma_pool_alloc (ehci
->itd_pool
, mem_flags
,
1230 spin_lock_irqsave (&ehci
->lock
, flags
);
1232 iso_sched_free(stream
, sched
);
1233 spin_unlock_irqrestore(&ehci
->lock
, flags
);
1238 memset (itd
, 0, sizeof *itd
);
1239 itd
->itd_dma
= itd_dma
;
1240 list_add (&itd
->itd_list
, &sched
->td_list
);
1242 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1244 /* temporarily store schedule info in hcpriv */
1245 urb
->hcpriv
= sched
;
1246 urb
->error_count
= 0;
1250 /*-------------------------------------------------------------------------*/
1254 struct ehci_hcd
*ehci
,
1263 /* can't commit more than uframe_periodic_max usec */
1264 if (periodic_usecs (ehci
, uframe
>> 3, uframe
& 0x7)
1265 > (ehci
->uframe_periodic_max
- usecs
))
1268 /* we know urb->interval is 2^N uframes */
1270 } while (uframe
< mod
);
1276 struct ehci_hcd
*ehci
,
1278 struct ehci_iso_stream
*stream
,
1280 struct ehci_iso_sched
*sched
,
1287 mask
= stream
->raw_mask
<< (uframe
& 7);
1289 /* for IN, don't wrap CSPLIT into the next frame */
1293 /* check bandwidth */
1294 uframe
%= period_uframes
;
1295 frame
= uframe
>> 3;
1297 #ifdef CONFIG_USB_EHCI_TT_NEWSCHED
1298 /* The tt's fullspeed bus bandwidth must be available.
1299 * tt_available scheduling guarantees 10+% for control/bulk.
1302 if (!tt_available(ehci
, period_uframes
>> 3,
1303 stream
->udev
, frame
, uf
, stream
->tt_usecs
))
1306 /* tt must be idle for start(s), any gap, and csplit.
1307 * assume scheduling slop leaves 10+% for control/bulk.
1309 if (!tt_no_collision(ehci
, period_uframes
>> 3,
1310 stream
->udev
, frame
, mask
))
1314 /* this multi-pass logic is simple, but performance may
1315 * suffer when the schedule data isn't cached.
1320 frame
= uframe
>> 3;
1323 /* check starts (OUT uses more than one) */
1324 max_used
= ehci
->uframe_periodic_max
- stream
->usecs
;
1325 for (tmp
= stream
->raw_mask
& 0xff; tmp
; tmp
>>= 1, uf
++) {
1326 if (periodic_usecs (ehci
, frame
, uf
) > max_used
)
1330 /* for IN, check CSPLIT */
1331 if (stream
->c_usecs
) {
1333 max_used
= ehci
->uframe_periodic_max
- stream
->c_usecs
;
1337 if ((stream
->raw_mask
& tmp
) == 0)
1339 if (periodic_usecs (ehci
, frame
, uf
)
1345 /* we know urb->interval is 2^N uframes */
1346 uframe
+= period_uframes
;
1347 } while (uframe
< mod
);
1349 stream
->splits
= cpu_to_hc32(ehci
, stream
->raw_mask
<< (uframe
& 7));
1354 * This scheduler plans almost as far into the future as it has actual
1355 * periodic schedule slots. (Affected by TUNE_FLS, which defaults to
1356 * "as small as possible" to be cache-friendlier.) That limits the size
1357 * transfers you can stream reliably; avoid more than 64 msec per urb.
1358 * Also avoid queue depths of less than ehci's worst irq latency (affected
1359 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
1360 * and other factors); or more than about 230 msec total (for portability,
1361 * given EHCI_TUNE_FLS and the slop). Or, write a smarter scheduler!
1364 #define SCHEDULE_SLOP 80 /* microframes */
1367 iso_stream_schedule (
1368 struct ehci_hcd
*ehci
,
1370 struct ehci_iso_stream
*stream
1373 u32 now
, next
, start
, period
, span
;
1375 unsigned mod
= ehci
->periodic_size
<< 3;
1376 struct ehci_iso_sched
*sched
= urb
->hcpriv
;
1378 period
= urb
->interval
;
1380 if (!stream
->highspeed
) {
1385 if (span
> mod
- SCHEDULE_SLOP
) {
1386 ehci_dbg (ehci
, "iso request %p too long\n", urb
);
1391 now
= ehci_read_frame_index(ehci
) & (mod
- 1);
1393 /* Typical case: reuse current schedule, stream is still active.
1394 * Hopefully there are no gaps from the host falling behind
1395 * (irq delays etc), but if there are we'll take the next
1396 * slot in the schedule, implicitly assuming URB_ISO_ASAP.
1398 if (likely (!list_empty (&stream
->td_list
))) {
1401 /* For high speed devices, allow scheduling within the
1402 * isochronous scheduling threshold. For full speed devices
1403 * and Intel PCI-based controllers, don't (work around for
1406 if (!stream
->highspeed
&& ehci
->fs_i_thresh
)
1407 next
= now
+ ehci
->i_thresh
;
1411 /* Fell behind (by up to twice the slop amount)?
1412 * We decide based on the time of the last currently-scheduled
1413 * slot, not the time of the next available slot.
1415 excess
= (stream
->next_uframe
- period
- next
) & (mod
- 1);
1416 if (excess
>= mod
- 2 * SCHEDULE_SLOP
)
1417 start
= next
+ excess
- mod
+ period
*
1418 DIV_ROUND_UP(mod
- excess
, period
);
1420 start
= next
+ excess
+ period
;
1421 if (start
- now
>= mod
) {
1422 ehci_dbg(ehci
, "request %p would overflow (%d+%d >= %d)\n",
1423 urb
, start
- now
- period
, period
,
1430 /* need to schedule; when's the next (u)frame we could start?
1431 * this is bigger than ehci->i_thresh allows; scheduling itself
1432 * isn't free, the slop should handle reasonably slow cpus. it
1433 * can also help high bandwidth if the dma and irq loads don't
1434 * jump until after the queue is primed.
1438 start
= SCHEDULE_SLOP
+ (now
& ~0x07);
1440 /* NOTE: assumes URB_ISO_ASAP, to limit complexity/bugs */
1442 /* find a uframe slot with enough bandwidth.
1443 * Early uframes are more precious because full-speed
1444 * iso IN transfers can't use late uframes,
1445 * and therefore they should be allocated last.
1451 /* check schedule: enough space? */
1452 if (stream
->highspeed
) {
1453 if (itd_slot_ok(ehci
, mod
, start
,
1454 stream
->usecs
, period
))
1457 if ((start
% 8) >= 6)
1459 if (sitd_slot_ok(ehci
, mod
, stream
,
1460 start
, sched
, period
))
1463 } while (start
> next
&& !done
);
1465 /* no room in the schedule */
1467 ehci_dbg(ehci
, "iso resched full %p (now %d max %d)\n",
1468 urb
, now
, now
+ mod
);
1474 /* Tried to schedule too far into the future? */
1475 if (unlikely(start
- now
+ span
- period
1476 >= mod
- 2 * SCHEDULE_SLOP
)) {
1477 ehci_dbg(ehci
, "request %p would overflow (%d+%d >= %d)\n",
1478 urb
, start
- now
, span
- period
,
1479 mod
- 2 * SCHEDULE_SLOP
);
1484 stream
->next_uframe
= start
& (mod
- 1);
1486 /* report high speed start in uframes; full speed, in frames */
1487 urb
->start_frame
= stream
->next_uframe
;
1488 if (!stream
->highspeed
)
1489 urb
->start_frame
>>= 3;
1491 /* Make sure scan_isoc() sees these */
1492 if (ehci
->isoc_count
== 0)
1493 ehci
->next_frame
= now
>> 3;
1497 iso_sched_free(stream
, sched
);
1502 /*-------------------------------------------------------------------------*/
1505 itd_init(struct ehci_hcd
*ehci
, struct ehci_iso_stream
*stream
,
1506 struct ehci_itd
*itd
)
1510 /* it's been recently zeroed */
1511 itd
->hw_next
= EHCI_LIST_END(ehci
);
1512 itd
->hw_bufp
[0] = stream
->buf0
;
1513 itd
->hw_bufp
[1] = stream
->buf1
;
1514 itd
->hw_bufp
[2] = stream
->buf2
;
1516 for (i
= 0; i
< 8; i
++)
1519 /* All other fields are filled when scheduling */
1524 struct ehci_hcd
*ehci
,
1525 struct ehci_itd
*itd
,
1526 struct ehci_iso_sched
*iso_sched
,
1531 struct ehci_iso_packet
*uf
= &iso_sched
->packet
[index
];
1532 unsigned pg
= itd
->pg
;
1534 // BUG_ON (pg == 6 && uf->cross);
1537 itd
->index
[uframe
] = index
;
1539 itd
->hw_transaction
[uframe
] = uf
->transaction
;
1540 itd
->hw_transaction
[uframe
] |= cpu_to_hc32(ehci
, pg
<< 12);
1541 itd
->hw_bufp
[pg
] |= cpu_to_hc32(ehci
, uf
->bufp
& ~(u32
)0);
1542 itd
->hw_bufp_hi
[pg
] |= cpu_to_hc32(ehci
, (u32
)(uf
->bufp
>> 32));
1544 /* iso_frame_desc[].offset must be strictly increasing */
1545 if (unlikely (uf
->cross
)) {
1546 u64 bufp
= uf
->bufp
+ 4096;
1549 itd
->hw_bufp
[pg
] |= cpu_to_hc32(ehci
, bufp
& ~(u32
)0);
1550 itd
->hw_bufp_hi
[pg
] |= cpu_to_hc32(ehci
, (u32
)(bufp
>> 32));
1555 itd_link (struct ehci_hcd
*ehci
, unsigned frame
, struct ehci_itd
*itd
)
1557 union ehci_shadow
*prev
= &ehci
->pshadow
[frame
];
1558 __hc32
*hw_p
= &ehci
->periodic
[frame
];
1559 union ehci_shadow here
= *prev
;
1562 /* skip any iso nodes which might belong to previous microframes */
1564 type
= Q_NEXT_TYPE(ehci
, *hw_p
);
1565 if (type
== cpu_to_hc32(ehci
, Q_TYPE_QH
))
1567 prev
= periodic_next_shadow(ehci
, prev
, type
);
1568 hw_p
= shadow_next_periodic(ehci
, &here
, type
);
1572 itd
->itd_next
= here
;
1573 itd
->hw_next
= *hw_p
;
1577 *hw_p
= cpu_to_hc32(ehci
, itd
->itd_dma
| Q_TYPE_ITD
);
1580 /* fit urb's itds into the selected schedule slot; activate as needed */
1581 static void itd_link_urb(
1582 struct ehci_hcd
*ehci
,
1585 struct ehci_iso_stream
*stream
1589 unsigned next_uframe
, uframe
, frame
;
1590 struct ehci_iso_sched
*iso_sched
= urb
->hcpriv
;
1591 struct ehci_itd
*itd
;
1593 next_uframe
= stream
->next_uframe
& (mod
- 1);
1595 if (unlikely (list_empty(&stream
->td_list
))) {
1596 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
1597 += stream
->bandwidth
;
1599 "schedule devp %s ep%d%s-iso period %d start %d.%d\n",
1600 urb
->dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
1601 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out",
1603 next_uframe
>> 3, next_uframe
& 0x7);
1606 if (ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
== 0) {
1607 if (ehci
->amd_pll_fix
== 1)
1608 usb_amd_quirk_pll_disable();
1611 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
++;
1613 /* fill iTDs uframe by uframe */
1614 for (packet
= 0, itd
= NULL
; packet
< urb
->number_of_packets
; ) {
1616 /* ASSERT: we have all necessary itds */
1617 // BUG_ON (list_empty (&iso_sched->td_list));
1619 /* ASSERT: no itds for this endpoint in this uframe */
1621 itd
= list_entry (iso_sched
->td_list
.next
,
1622 struct ehci_itd
, itd_list
);
1623 list_move_tail (&itd
->itd_list
, &stream
->td_list
);
1624 itd
->stream
= stream
;
1626 itd_init (ehci
, stream
, itd
);
1629 uframe
= next_uframe
& 0x07;
1630 frame
= next_uframe
>> 3;
1632 itd_patch(ehci
, itd
, iso_sched
, packet
, uframe
);
1634 next_uframe
+= stream
->interval
;
1635 next_uframe
&= mod
- 1;
1638 /* link completed itds into the schedule */
1639 if (((next_uframe
>> 3) != frame
)
1640 || packet
== urb
->number_of_packets
) {
1641 itd_link(ehci
, frame
& (ehci
->periodic_size
- 1), itd
);
1645 stream
->next_uframe
= next_uframe
;
1647 /* don't need that schedule data any more */
1648 iso_sched_free (stream
, iso_sched
);
1652 enable_periodic(ehci
);
1655 #define ISO_ERRS (EHCI_ISOC_BUF_ERR | EHCI_ISOC_BABBLE | EHCI_ISOC_XACTERR)
1657 /* Process and recycle a completed ITD. Return true iff its urb completed,
1658 * and hence its completion callback probably added things to the hardware
1661 * Note that we carefully avoid recycling this descriptor until after any
1662 * completion callback runs, so that it won't be reused quickly. That is,
1663 * assuming (a) no more than two urbs per frame on this endpoint, and also
1664 * (b) only this endpoint's completions submit URBs. It seems some silicon
1665 * corrupts things if you reuse completed descriptors very quickly...
1667 static bool itd_complete(struct ehci_hcd
*ehci
, struct ehci_itd
*itd
)
1669 struct urb
*urb
= itd
->urb
;
1670 struct usb_iso_packet_descriptor
*desc
;
1674 struct ehci_iso_stream
*stream
= itd
->stream
;
1675 struct usb_device
*dev
;
1676 bool retval
= false;
1678 /* for each uframe with a packet */
1679 for (uframe
= 0; uframe
< 8; uframe
++) {
1680 if (likely (itd
->index
[uframe
] == -1))
1682 urb_index
= itd
->index
[uframe
];
1683 desc
= &urb
->iso_frame_desc
[urb_index
];
1685 t
= hc32_to_cpup(ehci
, &itd
->hw_transaction
[uframe
]);
1686 itd
->hw_transaction
[uframe
] = 0;
1688 /* report transfer status */
1689 if (unlikely (t
& ISO_ERRS
)) {
1691 if (t
& EHCI_ISOC_BUF_ERR
)
1692 desc
->status
= usb_pipein (urb
->pipe
)
1693 ? -ENOSR
/* hc couldn't read */
1694 : -ECOMM
; /* hc couldn't write */
1695 else if (t
& EHCI_ISOC_BABBLE
)
1696 desc
->status
= -EOVERFLOW
;
1697 else /* (t & EHCI_ISOC_XACTERR) */
1698 desc
->status
= -EPROTO
;
1700 /* HC need not update length with this error */
1701 if (!(t
& EHCI_ISOC_BABBLE
)) {
1702 desc
->actual_length
= EHCI_ITD_LENGTH(t
);
1703 urb
->actual_length
+= desc
->actual_length
;
1705 } else if (likely ((t
& EHCI_ISOC_ACTIVE
) == 0)) {
1707 desc
->actual_length
= EHCI_ITD_LENGTH(t
);
1708 urb
->actual_length
+= desc
->actual_length
;
1710 /* URB was too late */
1711 desc
->status
= -EXDEV
;
1715 /* handle completion now? */
1716 if (likely ((urb_index
+ 1) != urb
->number_of_packets
))
1719 /* ASSERT: it's really the last itd for this urb
1720 list_for_each_entry (itd, &stream->td_list, itd_list)
1721 BUG_ON (itd->urb == urb);
1724 /* give urb back to the driver; completion often (re)submits */
1726 ehci_urb_done(ehci
, urb
, 0);
1731 disable_periodic(ehci
);
1733 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
--;
1734 if (ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
== 0) {
1735 if (ehci
->amd_pll_fix
== 1)
1736 usb_amd_quirk_pll_enable();
1739 if (unlikely(list_is_singular(&stream
->td_list
))) {
1740 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
1741 -= stream
->bandwidth
;
1743 "deschedule devp %s ep%d%s-iso\n",
1744 dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
1745 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out");
1751 /* Add to the end of the free list for later reuse */
1752 list_move_tail(&itd
->itd_list
, &stream
->free_list
);
1754 /* Recycle the iTDs when the pipeline is empty (ep no longer in use) */
1755 if (list_empty(&stream
->td_list
)) {
1756 list_splice_tail_init(&stream
->free_list
,
1757 &ehci
->cached_itd_list
);
1758 start_free_itds(ehci
);
1764 /*-------------------------------------------------------------------------*/
1766 static int itd_submit (struct ehci_hcd
*ehci
, struct urb
*urb
,
1769 int status
= -EINVAL
;
1770 unsigned long flags
;
1771 struct ehci_iso_stream
*stream
;
1773 /* Get iso_stream head */
1774 stream
= iso_stream_find (ehci
, urb
);
1775 if (unlikely (stream
== NULL
)) {
1776 ehci_dbg (ehci
, "can't get iso stream\n");
1779 if (unlikely (urb
->interval
!= stream
->interval
)) {
1780 ehci_dbg (ehci
, "can't change iso interval %d --> %d\n",
1781 stream
->interval
, urb
->interval
);
1785 #ifdef EHCI_URB_TRACE
1787 "%s %s urb %p ep%d%s len %d, %d pkts %d uframes [%p]\n",
1788 __func__
, urb
->dev
->devpath
, urb
,
1789 usb_pipeendpoint (urb
->pipe
),
1790 usb_pipein (urb
->pipe
) ? "in" : "out",
1791 urb
->transfer_buffer_length
,
1792 urb
->number_of_packets
, urb
->interval
,
1796 /* allocate ITDs w/o locking anything */
1797 status
= itd_urb_transaction (stream
, ehci
, urb
, mem_flags
);
1798 if (unlikely (status
< 0)) {
1799 ehci_dbg (ehci
, "can't init itds\n");
1803 /* schedule ... need to lock */
1804 spin_lock_irqsave (&ehci
->lock
, flags
);
1805 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci
)))) {
1806 status
= -ESHUTDOWN
;
1807 goto done_not_linked
;
1809 status
= usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci
), urb
);
1810 if (unlikely(status
))
1811 goto done_not_linked
;
1812 status
= iso_stream_schedule(ehci
, urb
, stream
);
1813 if (likely (status
== 0))
1814 itd_link_urb (ehci
, urb
, ehci
->periodic_size
<< 3, stream
);
1816 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci
), urb
);
1818 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1823 /*-------------------------------------------------------------------------*/
1826 * "Split ISO TDs" ... used for USB 1.1 devices going through the
1827 * TTs in USB 2.0 hubs. These need microframe scheduling.
1832 struct ehci_hcd
*ehci
,
1833 struct ehci_iso_sched
*iso_sched
,
1834 struct ehci_iso_stream
*stream
,
1839 dma_addr_t dma
= urb
->transfer_dma
;
1841 /* how many frames are needed for these transfers */
1842 iso_sched
->span
= urb
->number_of_packets
* stream
->interval
;
1844 /* figure out per-frame sitd fields that we'll need later
1845 * when we fit new sitds into the schedule.
1847 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1848 struct ehci_iso_packet
*packet
= &iso_sched
->packet
[i
];
1853 length
= urb
->iso_frame_desc
[i
].length
& 0x03ff;
1854 buf
= dma
+ urb
->iso_frame_desc
[i
].offset
;
1856 trans
= SITD_STS_ACTIVE
;
1857 if (((i
+ 1) == urb
->number_of_packets
)
1858 && !(urb
->transfer_flags
& URB_NO_INTERRUPT
))
1860 trans
|= length
<< 16;
1861 packet
->transaction
= cpu_to_hc32(ehci
, trans
);
1863 /* might need to cross a buffer page within a td */
1865 packet
->buf1
= (buf
+ length
) & ~0x0fff;
1866 if (packet
->buf1
!= (buf
& ~(u64
)0x0fff))
1869 /* OUT uses multiple start-splits */
1870 if (stream
->bEndpointAddress
& USB_DIR_IN
)
1872 length
= (length
+ 187) / 188;
1873 if (length
> 1) /* BEGIN vs ALL */
1875 packet
->buf1
|= length
;
1880 sitd_urb_transaction (
1881 struct ehci_iso_stream
*stream
,
1882 struct ehci_hcd
*ehci
,
1887 struct ehci_sitd
*sitd
;
1888 dma_addr_t sitd_dma
;
1890 struct ehci_iso_sched
*iso_sched
;
1891 unsigned long flags
;
1893 iso_sched
= iso_sched_alloc (urb
->number_of_packets
, mem_flags
);
1894 if (iso_sched
== NULL
)
1897 sitd_sched_init(ehci
, iso_sched
, stream
, urb
);
1899 /* allocate/init sITDs */
1900 spin_lock_irqsave (&ehci
->lock
, flags
);
1901 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1903 /* NOTE: for now, we don't try to handle wraparound cases
1904 * for IN (using sitd->hw_backpointer, like a FSTN), which
1905 * means we never need two sitds for full speed packets.
1909 * Use siTDs from the free list, but not siTDs that may
1910 * still be in use by the hardware.
1912 if (likely(!list_empty(&stream
->free_list
))) {
1913 sitd
= list_first_entry(&stream
->free_list
,
1914 struct ehci_sitd
, sitd_list
);
1915 if (sitd
->frame
== ehci
->now_frame
)
1917 list_del (&sitd
->sitd_list
);
1918 sitd_dma
= sitd
->sitd_dma
;
1921 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1922 sitd
= dma_pool_alloc (ehci
->sitd_pool
, mem_flags
,
1924 spin_lock_irqsave (&ehci
->lock
, flags
);
1926 iso_sched_free(stream
, iso_sched
);
1927 spin_unlock_irqrestore(&ehci
->lock
, flags
);
1932 memset (sitd
, 0, sizeof *sitd
);
1933 sitd
->sitd_dma
= sitd_dma
;
1934 list_add (&sitd
->sitd_list
, &iso_sched
->td_list
);
1937 /* temporarily store schedule info in hcpriv */
1938 urb
->hcpriv
= iso_sched
;
1939 urb
->error_count
= 0;
1941 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1945 /*-------------------------------------------------------------------------*/
1949 struct ehci_hcd
*ehci
,
1950 struct ehci_iso_stream
*stream
,
1951 struct ehci_sitd
*sitd
,
1952 struct ehci_iso_sched
*iso_sched
,
1956 struct ehci_iso_packet
*uf
= &iso_sched
->packet
[index
];
1957 u64 bufp
= uf
->bufp
;
1959 sitd
->hw_next
= EHCI_LIST_END(ehci
);
1960 sitd
->hw_fullspeed_ep
= stream
->address
;
1961 sitd
->hw_uframe
= stream
->splits
;
1962 sitd
->hw_results
= uf
->transaction
;
1963 sitd
->hw_backpointer
= EHCI_LIST_END(ehci
);
1966 sitd
->hw_buf
[0] = cpu_to_hc32(ehci
, bufp
);
1967 sitd
->hw_buf_hi
[0] = cpu_to_hc32(ehci
, bufp
>> 32);
1969 sitd
->hw_buf
[1] = cpu_to_hc32(ehci
, uf
->buf1
);
1972 sitd
->hw_buf_hi
[1] = cpu_to_hc32(ehci
, bufp
>> 32);
1973 sitd
->index
= index
;
1977 sitd_link (struct ehci_hcd
*ehci
, unsigned frame
, struct ehci_sitd
*sitd
)
1979 /* note: sitd ordering could matter (CSPLIT then SSPLIT) */
1980 sitd
->sitd_next
= ehci
->pshadow
[frame
];
1981 sitd
->hw_next
= ehci
->periodic
[frame
];
1982 ehci
->pshadow
[frame
].sitd
= sitd
;
1983 sitd
->frame
= frame
;
1985 ehci
->periodic
[frame
] = cpu_to_hc32(ehci
, sitd
->sitd_dma
| Q_TYPE_SITD
);
1988 /* fit urb's sitds into the selected schedule slot; activate as needed */
1989 static void sitd_link_urb(
1990 struct ehci_hcd
*ehci
,
1993 struct ehci_iso_stream
*stream
1997 unsigned next_uframe
;
1998 struct ehci_iso_sched
*sched
= urb
->hcpriv
;
1999 struct ehci_sitd
*sitd
;
2001 next_uframe
= stream
->next_uframe
;
2003 if (list_empty(&stream
->td_list
)) {
2004 /* usbfs ignores TT bandwidth */
2005 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
2006 += stream
->bandwidth
;
2008 "sched devp %s ep%d%s-iso [%d] %dms/%04x\n",
2009 urb
->dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
2010 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out",
2011 (next_uframe
>> 3) & (ehci
->periodic_size
- 1),
2012 stream
->interval
, hc32_to_cpu(ehci
, stream
->splits
));
2015 if (ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
== 0) {
2016 if (ehci
->amd_pll_fix
== 1)
2017 usb_amd_quirk_pll_disable();
2020 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
++;
2022 /* fill sITDs frame by frame */
2023 for (packet
= 0, sitd
= NULL
;
2024 packet
< urb
->number_of_packets
;
2027 /* ASSERT: we have all necessary sitds */
2028 BUG_ON (list_empty (&sched
->td_list
));
2030 /* ASSERT: no itds for this endpoint in this frame */
2032 sitd
= list_entry (sched
->td_list
.next
,
2033 struct ehci_sitd
, sitd_list
);
2034 list_move_tail (&sitd
->sitd_list
, &stream
->td_list
);
2035 sitd
->stream
= stream
;
2038 sitd_patch(ehci
, stream
, sitd
, sched
, packet
);
2039 sitd_link(ehci
, (next_uframe
>> 3) & (ehci
->periodic_size
- 1),
2042 next_uframe
+= stream
->interval
<< 3;
2044 stream
->next_uframe
= next_uframe
& (mod
- 1);
2046 /* don't need that schedule data any more */
2047 iso_sched_free (stream
, sched
);
2051 enable_periodic(ehci
);
2054 /*-------------------------------------------------------------------------*/
2056 #define SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
2057 | SITD_STS_XACT | SITD_STS_MMF)
2059 /* Process and recycle a completed SITD. Return true iff its urb completed,
2060 * and hence its completion callback probably added things to the hardware
2063 * Note that we carefully avoid recycling this descriptor until after any
2064 * completion callback runs, so that it won't be reused quickly. That is,
2065 * assuming (a) no more than two urbs per frame on this endpoint, and also
2066 * (b) only this endpoint's completions submit URBs. It seems some silicon
2067 * corrupts things if you reuse completed descriptors very quickly...
2069 static bool sitd_complete(struct ehci_hcd
*ehci
, struct ehci_sitd
*sitd
)
2071 struct urb
*urb
= sitd
->urb
;
2072 struct usb_iso_packet_descriptor
*desc
;
2075 struct ehci_iso_stream
*stream
= sitd
->stream
;
2076 struct usb_device
*dev
;
2077 bool retval
= false;
2079 urb_index
= sitd
->index
;
2080 desc
= &urb
->iso_frame_desc
[urb_index
];
2081 t
= hc32_to_cpup(ehci
, &sitd
->hw_results
);
2083 /* report transfer status */
2084 if (t
& SITD_ERRS
) {
2086 if (t
& SITD_STS_DBE
)
2087 desc
->status
= usb_pipein (urb
->pipe
)
2088 ? -ENOSR
/* hc couldn't read */
2089 : -ECOMM
; /* hc couldn't write */
2090 else if (t
& SITD_STS_BABBLE
)
2091 desc
->status
= -EOVERFLOW
;
2092 else /* XACT, MMF, etc */
2093 desc
->status
= -EPROTO
;
2096 desc
->actual_length
= desc
->length
- SITD_LENGTH(t
);
2097 urb
->actual_length
+= desc
->actual_length
;
2100 /* handle completion now? */
2101 if ((urb_index
+ 1) != urb
->number_of_packets
)
2104 /* ASSERT: it's really the last sitd for this urb
2105 list_for_each_entry (sitd, &stream->td_list, sitd_list)
2106 BUG_ON (sitd->urb == urb);
2109 /* give urb back to the driver; completion often (re)submits */
2111 ehci_urb_done(ehci
, urb
, 0);
2116 disable_periodic(ehci
);
2118 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
--;
2119 if (ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
== 0) {
2120 if (ehci
->amd_pll_fix
== 1)
2121 usb_amd_quirk_pll_enable();
2124 if (list_is_singular(&stream
->td_list
)) {
2125 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
2126 -= stream
->bandwidth
;
2128 "deschedule devp %s ep%d%s-iso\n",
2129 dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
2130 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out");
2136 /* Add to the end of the free list for later reuse */
2137 list_move_tail(&sitd
->sitd_list
, &stream
->free_list
);
2139 /* Recycle the siTDs when the pipeline is empty (ep no longer in use) */
2140 if (list_empty(&stream
->td_list
)) {
2141 list_splice_tail_init(&stream
->free_list
,
2142 &ehci
->cached_sitd_list
);
2143 start_free_itds(ehci
);
2150 static int sitd_submit (struct ehci_hcd
*ehci
, struct urb
*urb
,
2153 int status
= -EINVAL
;
2154 unsigned long flags
;
2155 struct ehci_iso_stream
*stream
;
2157 /* Get iso_stream head */
2158 stream
= iso_stream_find (ehci
, urb
);
2159 if (stream
== NULL
) {
2160 ehci_dbg (ehci
, "can't get iso stream\n");
2163 if (urb
->interval
!= stream
->interval
) {
2164 ehci_dbg (ehci
, "can't change iso interval %d --> %d\n",
2165 stream
->interval
, urb
->interval
);
2169 #ifdef EHCI_URB_TRACE
2171 "submit %p dev%s ep%d%s-iso len %d\n",
2172 urb
, urb
->dev
->devpath
,
2173 usb_pipeendpoint (urb
->pipe
),
2174 usb_pipein (urb
->pipe
) ? "in" : "out",
2175 urb
->transfer_buffer_length
);
2178 /* allocate SITDs */
2179 status
= sitd_urb_transaction (stream
, ehci
, urb
, mem_flags
);
2181 ehci_dbg (ehci
, "can't init sitds\n");
2185 /* schedule ... need to lock */
2186 spin_lock_irqsave (&ehci
->lock
, flags
);
2187 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci
)))) {
2188 status
= -ESHUTDOWN
;
2189 goto done_not_linked
;
2191 status
= usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci
), urb
);
2192 if (unlikely(status
))
2193 goto done_not_linked
;
2194 status
= iso_stream_schedule(ehci
, urb
, stream
);
2196 sitd_link_urb (ehci
, urb
, ehci
->periodic_size
<< 3, stream
);
2198 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci
), urb
);
2200 spin_unlock_irqrestore (&ehci
->lock
, flags
);
2205 /*-------------------------------------------------------------------------*/
2207 static void scan_isoc(struct ehci_hcd
*ehci
)
2209 unsigned uf
, now_frame
, frame
;
2210 unsigned fmask
= ehci
->periodic_size
- 1;
2211 bool modified
, live
;
2214 * When running, scan from last scan point up to "now"
2215 * else clean up by scanning everything that's left.
2216 * Touches as few pages as possible: cache-friendly.
2218 if (ehci
->rh_state
>= EHCI_RH_RUNNING
) {
2219 uf
= ehci_read_frame_index(ehci
);
2220 now_frame
= (uf
>> 3) & fmask
;
2223 now_frame
= (ehci
->next_frame
- 1) & fmask
;
2226 ehci
->now_frame
= now_frame
;
2228 frame
= ehci
->next_frame
;
2230 union ehci_shadow q
, *q_p
;
2234 /* scan each element in frame's queue for completions */
2235 q_p
= &ehci
->pshadow
[frame
];
2236 hw_p
= &ehci
->periodic
[frame
];
2238 type
= Q_NEXT_TYPE(ehci
, *hw_p
);
2241 while (q
.ptr
!= NULL
) {
2242 switch (hc32_to_cpu(ehci
, type
)) {
2244 /* If this ITD is still active, leave it for
2245 * later processing ... check the next entry.
2246 * No need to check for activity unless the
2249 if (frame
== now_frame
&& live
) {
2251 for (uf
= 0; uf
< 8; uf
++) {
2252 if (q
.itd
->hw_transaction
[uf
] &
2257 q_p
= &q
.itd
->itd_next
;
2258 hw_p
= &q
.itd
->hw_next
;
2259 type
= Q_NEXT_TYPE(ehci
,
2266 /* Take finished ITDs out of the schedule
2267 * and process them: recycle, maybe report
2268 * URB completion. HC won't cache the
2269 * pointer for much longer, if at all.
2271 *q_p
= q
.itd
->itd_next
;
2272 if (!ehci
->use_dummy_qh
||
2273 q
.itd
->hw_next
!= EHCI_LIST_END(ehci
))
2274 *hw_p
= q
.itd
->hw_next
;
2276 *hw_p
= ehci
->dummy
->qh_dma
;
2277 type
= Q_NEXT_TYPE(ehci
, q
.itd
->hw_next
);
2279 modified
= itd_complete (ehci
, q
.itd
);
2283 /* If this SITD is still active, leave it for
2284 * later processing ... check the next entry.
2285 * No need to check for activity unless the
2288 if (((frame
== now_frame
) ||
2289 (((frame
+ 1) & fmask
) == now_frame
))
2291 && (q
.sitd
->hw_results
&
2292 SITD_ACTIVE(ehci
))) {
2294 q_p
= &q
.sitd
->sitd_next
;
2295 hw_p
= &q
.sitd
->hw_next
;
2296 type
= Q_NEXT_TYPE(ehci
,
2302 /* Take finished SITDs out of the schedule
2303 * and process them: recycle, maybe report
2306 *q_p
= q
.sitd
->sitd_next
;
2307 if (!ehci
->use_dummy_qh
||
2308 q
.sitd
->hw_next
!= EHCI_LIST_END(ehci
))
2309 *hw_p
= q
.sitd
->hw_next
;
2311 *hw_p
= ehci
->dummy
->qh_dma
;
2312 type
= Q_NEXT_TYPE(ehci
, q
.sitd
->hw_next
);
2314 modified
= sitd_complete (ehci
, q
.sitd
);
2318 ehci_dbg(ehci
, "corrupt type %d frame %d shadow %p\n",
2319 type
, frame
, q
.ptr
);
2324 /* End of the iTDs and siTDs */
2329 /* assume completion callbacks modify the queue */
2330 if (unlikely(modified
&& ehci
->isoc_count
> 0))
2334 /* Stop when we have reached the current frame */
2335 if (frame
== now_frame
)
2337 frame
= (frame
+ 1) & fmask
;
2339 ehci
->next_frame
= now_frame
;