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
);
39 /*-------------------------------------------------------------------------*/
42 * periodic_next_shadow - return "next" pointer on shadow list
43 * @periodic: host pointer to qh/itd/sitd
44 * @tag: hardware tag for type of this record
46 static union ehci_shadow
*
47 periodic_next_shadow(struct ehci_hcd
*ehci
, union ehci_shadow
*periodic
,
50 switch (hc32_to_cpu(ehci
, tag
)) {
52 return &periodic
->qh
->qh_next
;
54 return &periodic
->fstn
->fstn_next
;
56 return &periodic
->itd
->itd_next
;
59 return &periodic
->sitd
->sitd_next
;
63 /* caller must hold ehci->lock */
64 static void periodic_unlink (struct ehci_hcd
*ehci
, unsigned frame
, void *ptr
)
66 union ehci_shadow
*prev_p
= &ehci
->pshadow
[frame
];
67 __hc32
*hw_p
= &ehci
->periodic
[frame
];
68 union ehci_shadow here
= *prev_p
;
70 /* find predecessor of "ptr"; hw and shadow lists are in sync */
71 while (here
.ptr
&& here
.ptr
!= ptr
) {
72 prev_p
= periodic_next_shadow(ehci
, prev_p
,
73 Q_NEXT_TYPE(ehci
, *hw_p
));
77 /* an interrupt entry (at list end) could have been shared */
81 /* update shadow and hardware lists ... the old "next" pointers
82 * from ptr may still be in use, the caller updates them.
84 *prev_p
= *periodic_next_shadow(ehci
, &here
,
85 Q_NEXT_TYPE(ehci
, *hw_p
));
86 *hw_p
= *here
.hw_next
;
89 /* how many of the uframe's 125 usecs are allocated? */
91 periodic_usecs (struct ehci_hcd
*ehci
, unsigned frame
, unsigned uframe
)
93 __hc32
*hw_p
= &ehci
->periodic
[frame
];
94 union ehci_shadow
*q
= &ehci
->pshadow
[frame
];
98 switch (hc32_to_cpu(ehci
, Q_NEXT_TYPE(ehci
, *hw_p
))) {
100 /* is it in the S-mask? */
101 if (q
->qh
->hw_info2
& cpu_to_hc32(ehci
, 1 << uframe
))
102 usecs
+= q
->qh
->usecs
;
104 if (q
->qh
->hw_info2
& cpu_to_hc32(ehci
,
106 usecs
+= q
->qh
->c_usecs
;
107 hw_p
= &q
->qh
->hw_next
;
112 /* for "save place" FSTNs, count the relevant INTR
113 * bandwidth from the previous frame
115 if (q
->fstn
->hw_prev
!= EHCI_LIST_END(ehci
)) {
116 ehci_dbg (ehci
, "ignoring FSTN cost ...\n");
118 hw_p
= &q
->fstn
->hw_next
;
119 q
= &q
->fstn
->fstn_next
;
122 usecs
+= q
->itd
->usecs
[uframe
];
123 hw_p
= &q
->itd
->hw_next
;
124 q
= &q
->itd
->itd_next
;
127 /* is it in the S-mask? (count SPLIT, DATA) */
128 if (q
->sitd
->hw_uframe
& cpu_to_hc32(ehci
,
130 if (q
->sitd
->hw_fullspeed_ep
&
131 cpu_to_hc32(ehci
, 1<<31))
132 usecs
+= q
->sitd
->stream
->usecs
;
133 else /* worst case for OUT start-split */
134 usecs
+= HS_USECS_ISO (188);
137 /* ... C-mask? (count CSPLIT, DATA) */
138 if (q
->sitd
->hw_uframe
&
139 cpu_to_hc32(ehci
, 1 << (8 + uframe
))) {
140 /* worst case for IN complete-split */
141 usecs
+= q
->sitd
->stream
->c_usecs
;
144 hw_p
= &q
->sitd
->hw_next
;
145 q
= &q
->sitd
->sitd_next
;
151 ehci_err (ehci
, "uframe %d sched overrun: %d usecs\n",
152 frame
* 8 + uframe
, usecs
);
157 /*-------------------------------------------------------------------------*/
159 static int same_tt (struct usb_device
*dev1
, struct usb_device
*dev2
)
161 if (!dev1
->tt
|| !dev2
->tt
)
163 if (dev1
->tt
!= dev2
->tt
)
166 return dev1
->ttport
== dev2
->ttport
;
171 #ifdef CONFIG_USB_EHCI_TT_NEWSCHED
173 /* Which uframe does the low/fullspeed transfer start in?
175 * The parameter is the mask of ssplits in "H-frame" terms
176 * and this returns the transfer start uframe in "B-frame" terms,
177 * which allows both to match, e.g. a ssplit in "H-frame" uframe 0
178 * will cause a transfer in "B-frame" uframe 0. "B-frames" lag
179 * "H-frames" by 1 uframe. See the EHCI spec sec 4.5 and figure 4.7.
181 static inline unsigned char tt_start_uframe(struct ehci_hcd
*ehci
, __hc32 mask
)
183 unsigned char smask
= QH_SMASK
& hc32_to_cpu(ehci
, mask
);
185 ehci_err(ehci
, "invalid empty smask!\n");
186 /* uframe 7 can't have bw so this will indicate failure */
189 return ffs(smask
) - 1;
192 static const unsigned char
193 max_tt_usecs
[] = { 125, 125, 125, 125, 125, 125, 30, 0 };
195 /* carryover low/fullspeed bandwidth that crosses uframe boundries */
196 static inline void carryover_tt_bandwidth(unsigned short tt_usecs
[8])
199 for (i
=0; i
<7; i
++) {
200 if (max_tt_usecs
[i
] < tt_usecs
[i
]) {
201 tt_usecs
[i
+1] += tt_usecs
[i
] - max_tt_usecs
[i
];
202 tt_usecs
[i
] = max_tt_usecs
[i
];
207 /* How many of the tt's periodic downstream 1000 usecs are allocated?
209 * While this measures the bandwidth in terms of usecs/uframe,
210 * the low/fullspeed bus has no notion of uframes, so any particular
211 * low/fullspeed transfer can "carry over" from one uframe to the next,
212 * since the TT just performs downstream transfers in sequence.
214 * For example two seperate 100 usec transfers can start in the same uframe,
215 * and the second one would "carry over" 75 usecs into the next uframe.
219 struct ehci_hcd
*ehci
,
220 struct usb_device
*dev
,
222 unsigned short tt_usecs
[8]
225 __hc32
*hw_p
= &ehci
->periodic
[frame
];
226 union ehci_shadow
*q
= &ehci
->pshadow
[frame
];
229 memset(tt_usecs
, 0, 16);
232 switch (hc32_to_cpu(ehci
, Q_NEXT_TYPE(ehci
, *hw_p
))) {
234 hw_p
= &q
->itd
->hw_next
;
235 q
= &q
->itd
->itd_next
;
238 if (same_tt(dev
, q
->qh
->dev
)) {
239 uf
= tt_start_uframe(ehci
, q
->qh
->hw_info2
);
240 tt_usecs
[uf
] += q
->qh
->tt_usecs
;
242 hw_p
= &q
->qh
->hw_next
;
246 if (same_tt(dev
, q
->sitd
->urb
->dev
)) {
247 uf
= tt_start_uframe(ehci
, q
->sitd
->hw_uframe
);
248 tt_usecs
[uf
] += q
->sitd
->stream
->tt_usecs
;
250 hw_p
= &q
->sitd
->hw_next
;
251 q
= &q
->sitd
->sitd_next
;
255 ehci_dbg(ehci
, "ignoring periodic frame %d FSTN\n",
257 hw_p
= &q
->fstn
->hw_next
;
258 q
= &q
->fstn
->fstn_next
;
262 carryover_tt_bandwidth(tt_usecs
);
264 if (max_tt_usecs
[7] < tt_usecs
[7])
265 ehci_err(ehci
, "frame %d tt sched overrun: %d usecs\n",
266 frame
, tt_usecs
[7] - max_tt_usecs
[7]);
270 * Return true if the device's tt's downstream bus is available for a
271 * periodic transfer of the specified length (usecs), starting at the
272 * specified frame/uframe. Note that (as summarized in section 11.19
273 * of the usb 2.0 spec) TTs can buffer multiple transactions for each
276 * The uframe parameter is when the fullspeed/lowspeed transfer
277 * should be executed in "B-frame" terms, which is the same as the
278 * highspeed ssplit's uframe (which is in "H-frame" terms). For example
279 * a ssplit in "H-frame" 0 causes a transfer in "B-frame" 0.
280 * See the EHCI spec sec 4.5 and fig 4.7.
282 * This checks if the full/lowspeed bus, at the specified starting uframe,
283 * has the specified bandwidth available, according to rules listed
284 * in USB 2.0 spec section 11.18.1 fig 11-60.
286 * This does not check if the transfer would exceed the max ssplit
287 * limit of 16, specified in USB 2.0 spec section 11.18.4 requirement #4,
288 * since proper scheduling limits ssplits to less than 16 per uframe.
290 static int tt_available (
291 struct ehci_hcd
*ehci
,
293 struct usb_device
*dev
,
299 if ((period
== 0) || (uframe
>= 7)) /* error */
302 for (; frame
< ehci
->periodic_size
; frame
+= period
) {
303 unsigned short tt_usecs
[8];
305 periodic_tt_usecs (ehci
, dev
, frame
, tt_usecs
);
307 ehci_vdbg(ehci
, "tt frame %d check %d usecs start uframe %d in"
308 " schedule %d/%d/%d/%d/%d/%d/%d/%d\n",
309 frame
, usecs
, uframe
,
310 tt_usecs
[0], tt_usecs
[1], tt_usecs
[2], tt_usecs
[3],
311 tt_usecs
[4], tt_usecs
[5], tt_usecs
[6], tt_usecs
[7]);
313 if (max_tt_usecs
[uframe
] <= tt_usecs
[uframe
]) {
314 ehci_vdbg(ehci
, "frame %d uframe %d fully scheduled\n",
319 /* special case for isoc transfers larger than 125us:
320 * the first and each subsequent fully used uframe
321 * must be empty, so as to not illegally delay
322 * already scheduled transactions
325 int ufs
= (usecs
/ 125) - 1;
327 for (i
= uframe
; i
< (uframe
+ ufs
) && i
< 8; i
++)
328 if (0 < tt_usecs
[i
]) {
330 "multi-uframe xfer can't fit "
331 "in frame %d uframe %d\n",
337 tt_usecs
[uframe
] += usecs
;
339 carryover_tt_bandwidth(tt_usecs
);
341 /* fail if the carryover pushed bw past the last uframe's limit */
342 if (max_tt_usecs
[7] < tt_usecs
[7]) {
344 "tt unavailable usecs %d frame %d uframe %d\n",
345 usecs
, frame
, uframe
);
355 /* return true iff the device's transaction translator is available
356 * for a periodic transfer starting at the specified frame, using
357 * all the uframes in the mask.
359 static int tt_no_collision (
360 struct ehci_hcd
*ehci
,
362 struct usb_device
*dev
,
367 if (period
== 0) /* error */
370 /* note bandwidth wastage: split never follows csplit
371 * (different dev or endpoint) until the next uframe.
372 * calling convention doesn't make that distinction.
374 for (; frame
< ehci
->periodic_size
; frame
+= period
) {
375 union ehci_shadow here
;
378 here
= ehci
->pshadow
[frame
];
379 type
= Q_NEXT_TYPE(ehci
, ehci
->periodic
[frame
]);
381 switch (hc32_to_cpu(ehci
, type
)) {
383 type
= Q_NEXT_TYPE(ehci
, here
.itd
->hw_next
);
384 here
= here
.itd
->itd_next
;
387 if (same_tt (dev
, here
.qh
->dev
)) {
390 mask
= hc32_to_cpu(ehci
,
392 /* "knows" no gap is needed */
397 type
= Q_NEXT_TYPE(ehci
, here
.qh
->hw_next
);
398 here
= here
.qh
->qh_next
;
401 if (same_tt (dev
, here
.sitd
->urb
->dev
)) {
404 mask
= hc32_to_cpu(ehci
, here
.sitd
406 /* FIXME assumes no gap for IN! */
411 type
= Q_NEXT_TYPE(ehci
, here
.sitd
->hw_next
);
412 here
= here
.sitd
->sitd_next
;
417 "periodic frame %d bogus type %d\n",
421 /* collision or error */
430 #endif /* CONFIG_USB_EHCI_TT_NEWSCHED */
432 /*-------------------------------------------------------------------------*/
434 static int enable_periodic (struct ehci_hcd
*ehci
)
439 /* did clearing PSE did take effect yet?
440 * takes effect only at frame boundaries...
442 status
= handshake(ehci
, &ehci
->regs
->status
, STS_PSS
, 0, 9 * 125);
444 ehci_to_hcd(ehci
)->state
= HC_STATE_HALT
;
448 cmd
= ehci_readl(ehci
, &ehci
->regs
->command
) | CMD_PSE
;
449 ehci_writel(ehci
, cmd
, &ehci
->regs
->command
);
450 /* posted write ... PSS happens later */
451 ehci_to_hcd(ehci
)->state
= HC_STATE_RUNNING
;
453 /* make sure ehci_work scans these */
454 ehci
->next_uframe
= ehci_readl(ehci
, &ehci
->regs
->frame_index
)
455 % (ehci
->periodic_size
<< 3);
459 static int disable_periodic (struct ehci_hcd
*ehci
)
464 /* did setting PSE not take effect yet?
465 * takes effect only at frame boundaries...
467 status
= handshake(ehci
, &ehci
->regs
->status
, STS_PSS
, STS_PSS
, 9 * 125);
469 ehci_to_hcd(ehci
)->state
= HC_STATE_HALT
;
473 cmd
= ehci_readl(ehci
, &ehci
->regs
->command
) & ~CMD_PSE
;
474 ehci_writel(ehci
, cmd
, &ehci
->regs
->command
);
475 /* posted write ... */
477 ehci
->next_uframe
= -1;
481 /*-------------------------------------------------------------------------*/
482 #ifdef CONFIG_CPU_FREQ
484 static int safe_to_modify_i (struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
486 int now
; /* current (frame * 8) + uframe */
487 int prev_start
, next_start
; /* uframes from/to split start */
488 int start_uframe
= ffs(le32_to_cpup (&qh
->hw_info2
) & QH_SMASK
);
489 int end_uframe
= fls((le32_to_cpup (&qh
->hw_info2
) & QH_CMASK
) >> 8);
490 int split_duration
= end_uframe
- start_uframe
;
492 now
= readl(&ehci
->regs
->frame_index
) % (ehci
->periodic_size
<< 3);
494 next_start
= ((1024 << 3) + (qh
->start
<< 3) + start_uframe
- now
)
496 prev_start
= (qh
->period
<< 3) - next_start
;
499 * Make sure there will be at least one uframe when qh is safe.
501 if ((qh
->period
<< 3) <= (ehci
->i_thresh
+ 2 + split_duration
))
506 * Wait 1 uframe after transaction should have started, to make
507 * sure controller has time to write back overlay, so we can
508 * check QTD_STS_STS to see if transaction is in progress.
510 if ((next_start
> ehci
->i_thresh
) && (prev_start
> 1))
511 /* safe to set "i" bit if split isn't in progress */
512 return (qh
->hw_token
& STATUS_BIT(ehci
)) ? 0 : 1;
517 /* Set inactivate bit for all the split interrupt QHs. */
518 static void qh_inactivate_split_intr_qhs (struct ehci_hcd
*ehci
)
522 u32 inactivate
= INACTIVATE_BIT(ehci
);
523 u32 active
= ACTIVE_BIT(ehci
);
527 list_for_each_entry(qh
, &ehci
->split_intr_qhs
,
529 if (qh
->hw_info1
& inactivate
)
533 * To avoid setting "I" after the start split happens,
534 * don't set it if the QH might be cached in the
535 * controller. Some HCs (Broadcom/ServerWorks HT1000)
536 * will stop in the middle of a split transaction when
537 * the "I" bit is set.
539 safe
= safe_to_modify_i(ehci
, qh
);
542 } else if (safe
> 0) {
543 qh
->was_active
= qh
->hw_token
& active
;
544 qh
->hw_info1
|= inactivate
;
551 static void qh_reactivate_split_intr_qhs (struct ehci_hcd
*ehci
)
556 u32 inactivate
= INACTIVATE_BIT(ehci
);
557 u32 active
= ACTIVE_BIT(ehci
);
558 u32 halt
= HALT_BIT(ehci
);
562 list_for_each_entry(qh
, &ehci
->split_intr_qhs
, split_intr_qhs
) {
563 if (!(qh
->hw_info1
& inactivate
)) /* already on */
566 * Don't reactivate if cached, or controller might
567 * overwrite overlay after we modify it!
569 safe
= safe_to_modify_i(ehci
, qh
);
572 } else if (safe
> 0) {
573 /* See EHCI 1.0 section 4.15.2.4. */
574 token
= qh
->hw_token
;
575 qh
->hw_token
= (token
| halt
) & ~active
;
577 qh
->hw_info1
&= ~inactivate
;
579 qh
->hw_token
= (token
& ~halt
) | qh
->was_active
;
586 /* periodic schedule slots have iso tds (normal or split) first, then a
587 * sparse tree for active interrupt transfers.
589 * this just links in a qh; caller guarantees uframe masks are set right.
590 * no FSTN support (yet; ehci 0.96+)
592 static int qh_link_periodic (struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
595 unsigned period
= qh
->period
;
597 dev_dbg (&qh
->dev
->dev
,
598 "link qh%d-%04x/%p start %d [%d/%d us]\n",
599 period
, hc32_to_cpup(ehci
, &qh
->hw_info2
) & (QH_CMASK
| QH_SMASK
),
600 qh
, qh
->start
, qh
->usecs
, qh
->c_usecs
);
602 #ifdef CONFIG_CPU_FREQ
604 * If low/full speed interrupt QHs are inactive (because of
605 * cpufreq changing processor speeds), start QH with I flag set--
606 * it will automatically be cleared when cpufreq is done.
608 if (ehci
->cpufreq_changing
)
609 if (!(qh
->hw_info1
& (cpu_to_le32(1 << 13))))
610 qh
->hw_info1
|= INACTIVATE_BIT(ehci
);
613 /* high bandwidth, or otherwise every microframe */
617 for (i
= qh
->start
; i
< ehci
->periodic_size
; i
+= period
) {
618 union ehci_shadow
*prev
= &ehci
->pshadow
[i
];
619 __hc32
*hw_p
= &ehci
->periodic
[i
];
620 union ehci_shadow here
= *prev
;
623 /* skip the iso nodes at list head */
625 type
= Q_NEXT_TYPE(ehci
, *hw_p
);
626 if (type
== cpu_to_hc32(ehci
, Q_TYPE_QH
))
628 prev
= periodic_next_shadow(ehci
, prev
, type
);
629 hw_p
= &here
.qh
->hw_next
;
633 /* sorting each branch by period (slow-->fast)
634 * enables sharing interior tree nodes
636 while (here
.ptr
&& qh
!= here
.qh
) {
637 if (qh
->period
> here
.qh
->period
)
639 prev
= &here
.qh
->qh_next
;
640 hw_p
= &here
.qh
->hw_next
;
643 /* link in this qh, unless some earlier pass did that */
650 *hw_p
= QH_NEXT (ehci
, qh
->qh_dma
);
653 qh
->qh_state
= QH_STATE_LINKED
;
656 /* update per-qh bandwidth for usbfs */
657 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
+= qh
->period
658 ? ((qh
->usecs
+ qh
->c_usecs
) / qh
->period
)
661 #ifdef CONFIG_CPU_FREQ
662 /* add qh to list of low/full speed interrupt QHs, if applicable */
663 if (!(qh
->hw_info1
& (cpu_to_le32(1 << 13)))) {
664 list_add(&qh
->split_intr_qhs
, &ehci
->split_intr_qhs
);
667 /* maybe enable periodic schedule processing */
668 if (!ehci
->periodic_sched
++)
669 return enable_periodic (ehci
);
674 static void qh_unlink_periodic (struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
680 // IF this isn't high speed
681 // and this qh is active in the current uframe
682 // (and overlay token SplitXstate is false?)
684 // qh->hw_info1 |= __constant_cpu_to_hc32(1 << 7 /* "ignore" */);
686 #ifdef CONFIG_CPU_FREQ
687 /* remove qh from list of low/full speed interrupt QHs */
688 if (!(qh
->hw_info1
& (cpu_to_le32(1 << 13)))) {
689 list_del_init(&qh
->split_intr_qhs
);
693 /* high bandwidth, or otherwise part of every microframe */
694 if ((period
= qh
->period
) == 0)
697 for (i
= qh
->start
; i
< ehci
->periodic_size
; i
+= period
)
698 periodic_unlink (ehci
, i
, qh
);
700 /* update per-qh bandwidth for usbfs */
701 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
-= qh
->period
702 ? ((qh
->usecs
+ qh
->c_usecs
) / qh
->period
)
705 dev_dbg (&qh
->dev
->dev
,
706 "unlink qh%d-%04x/%p start %d [%d/%d us]\n",
708 hc32_to_cpup(ehci
, &qh
->hw_info2
) & (QH_CMASK
| QH_SMASK
),
709 qh
, qh
->start
, qh
->usecs
, qh
->c_usecs
);
711 /* qh->qh_next still "live" to HC */
712 qh
->qh_state
= QH_STATE_UNLINK
;
713 qh
->qh_next
.ptr
= NULL
;
716 /* maybe turn off periodic schedule */
717 ehci
->periodic_sched
--;
718 if (!ehci
->periodic_sched
)
719 (void) disable_periodic (ehci
);
722 static void intr_deschedule (struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
726 qh_unlink_periodic (ehci
, qh
);
728 /* simple/paranoid: always delay, expecting the HC needs to read
729 * qh->hw_next or finish a writeback after SPLIT/CSPLIT ... and
730 * expect khubd to clean up after any CSPLITs we won't issue.
731 * active high speed queues may need bigger delays...
733 if (list_empty (&qh
->qtd_list
)
734 || (cpu_to_hc32(ehci
, QH_CMASK
)
735 & qh
->hw_info2
) != 0)
738 wait
= 55; /* worst case: 3 * 1024 */
741 qh
->qh_state
= QH_STATE_IDLE
;
742 qh
->hw_next
= EHCI_LIST_END(ehci
);
746 /*-------------------------------------------------------------------------*/
748 static int check_period (
749 struct ehci_hcd
*ehci
,
757 /* complete split running into next frame?
758 * given FSTN support, we could sometimes check...
764 * 80% periodic == 100 usec/uframe available
765 * convert "usecs we need" to "max already claimed"
769 /* we "know" 2 and 4 uframe intervals were rejected; so
770 * for period 0, check _every_ microframe in the schedule.
772 if (unlikely (period
== 0)) {
774 for (uframe
= 0; uframe
< 7; uframe
++) {
775 claimed
= periodic_usecs (ehci
, frame
, uframe
);
779 } while ((frame
+= 1) < ehci
->periodic_size
);
781 /* just check the specified uframe, at that period */
784 claimed
= periodic_usecs (ehci
, frame
, uframe
);
787 } while ((frame
+= period
) < ehci
->periodic_size
);
794 static int check_intr_schedule (
795 struct ehci_hcd
*ehci
,
798 const struct ehci_qh
*qh
,
802 int retval
= -ENOSPC
;
805 if (qh
->c_usecs
&& uframe
>= 6) /* FSTN territory? */
808 if (!check_period (ehci
, frame
, uframe
, qh
->period
, qh
->usecs
))
816 #ifdef CONFIG_USB_EHCI_TT_NEWSCHED
817 if (tt_available (ehci
, qh
->period
, qh
->dev
, frame
, uframe
,
821 /* TODO : this may need FSTN for SSPLIT in uframe 5. */
822 for (i
=uframe
+1; i
<8 && i
<uframe
+4; i
++)
823 if (!check_period (ehci
, frame
, i
,
824 qh
->period
, qh
->c_usecs
))
831 *c_maskp
= cpu_to_hc32(ehci
, mask
<< 8);
834 /* Make sure this tt's buffer is also available for CSPLITs.
835 * We pessimize a bit; probably the typical full speed case
836 * doesn't need the second CSPLIT.
838 * NOTE: both SPLIT and CSPLIT could be checked in just
841 mask
= 0x03 << (uframe
+ qh
->gap_uf
);
842 *c_maskp
= cpu_to_hc32(ehci
, mask
<< 8);
845 if (tt_no_collision (ehci
, qh
->period
, qh
->dev
, frame
, mask
)) {
846 if (!check_period (ehci
, frame
, uframe
+ qh
->gap_uf
+ 1,
847 qh
->period
, qh
->c_usecs
))
849 if (!check_period (ehci
, frame
, uframe
+ qh
->gap_uf
,
850 qh
->period
, qh
->c_usecs
))
859 /* "first fit" scheduling policy used the first time through,
860 * or when the previous schedule slot can't be re-used.
862 static int qh_schedule(struct ehci_hcd
*ehci
, struct ehci_qh
*qh
)
867 unsigned frame
; /* 0..(qh->period - 1), or NO_FRAME */
869 qh_refresh(ehci
, qh
);
870 qh
->hw_next
= EHCI_LIST_END(ehci
);
873 /* reuse the previous schedule slots, if we can */
874 if (frame
< qh
->period
) {
875 uframe
= ffs(hc32_to_cpup(ehci
, &qh
->hw_info2
) & QH_SMASK
);
876 status
= check_intr_schedule (ehci
, frame
, --uframe
,
884 /* else scan the schedule to find a group of slots such that all
885 * uframes have enough periodic bandwidth available.
888 /* "normal" case, uframing flexible except with splits */
890 frame
= qh
->period
- 1;
892 for (uframe
= 0; uframe
< 8; uframe
++) {
893 status
= check_intr_schedule (ehci
,
899 } while (status
&& frame
--);
901 /* qh->period == 0 means every uframe */
904 status
= check_intr_schedule (ehci
, 0, 0, qh
, &c_mask
);
910 /* reset S-frame and (maybe) C-frame masks */
911 qh
->hw_info2
&= cpu_to_hc32(ehci
, ~(QH_CMASK
| QH_SMASK
));
912 qh
->hw_info2
|= qh
->period
913 ? cpu_to_hc32(ehci
, 1 << uframe
)
914 : cpu_to_hc32(ehci
, QH_SMASK
);
915 qh
->hw_info2
|= c_mask
;
917 ehci_dbg (ehci
, "reused qh %p schedule\n", qh
);
919 /* stuff into the periodic schedule */
920 status
= qh_link_periodic (ehci
, qh
);
925 static int intr_submit (
926 struct ehci_hcd
*ehci
,
927 struct usb_host_endpoint
*ep
,
929 struct list_head
*qtd_list
,
936 struct list_head empty
;
938 /* get endpoint and transfer/schedule data */
939 epnum
= ep
->desc
.bEndpointAddress
;
941 spin_lock_irqsave (&ehci
->lock
, flags
);
943 if (unlikely(!test_bit(HCD_FLAG_HW_ACCESSIBLE
,
944 &ehci_to_hcd(ehci
)->flags
))) {
949 /* get qh and force any scheduling errors */
950 INIT_LIST_HEAD (&empty
);
951 qh
= qh_append_tds (ehci
, urb
, &empty
, epnum
, &ep
->hcpriv
);
956 if (qh
->qh_state
== QH_STATE_IDLE
) {
957 if ((status
= qh_schedule (ehci
, qh
)) != 0)
961 /* then queue the urb's tds to the qh */
962 qh
= qh_append_tds (ehci
, urb
, qtd_list
, epnum
, &ep
->hcpriv
);
965 /* ... update usbfs periodic stats */
966 ehci_to_hcd(ehci
)->self
.bandwidth_int_reqs
++;
969 spin_unlock_irqrestore (&ehci
->lock
, flags
);
971 qtd_list_free (ehci
, urb
, qtd_list
);
976 /*-------------------------------------------------------------------------*/
978 /* ehci_iso_stream ops work with both ITD and SITD */
980 static struct ehci_iso_stream
*
981 iso_stream_alloc (gfp_t mem_flags
)
983 struct ehci_iso_stream
*stream
;
985 stream
= kzalloc(sizeof *stream
, mem_flags
);
986 if (likely (stream
!= NULL
)) {
987 INIT_LIST_HEAD(&stream
->td_list
);
988 INIT_LIST_HEAD(&stream
->free_list
);
989 stream
->next_uframe
= -1;
990 stream
->refcount
= 1;
997 struct ehci_hcd
*ehci
,
998 struct ehci_iso_stream
*stream
,
999 struct usb_device
*dev
,
1004 static const u8 smask_out
[] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f };
1007 unsigned epnum
, maxp
;
1012 * this might be a "high bandwidth" highspeed endpoint,
1013 * as encoded in the ep descriptor's wMaxPacket field
1015 epnum
= usb_pipeendpoint (pipe
);
1016 is_input
= usb_pipein (pipe
) ? USB_DIR_IN
: 0;
1017 maxp
= usb_maxpacket(dev
, pipe
, !is_input
);
1024 /* knows about ITD vs SITD */
1025 if (dev
->speed
== USB_SPEED_HIGH
) {
1026 unsigned multi
= hb_mult(maxp
);
1028 stream
->highspeed
= 1;
1030 maxp
= max_packet(maxp
);
1034 stream
->buf0
= cpu_to_hc32(ehci
, (epnum
<< 8) | dev
->devnum
);
1035 stream
->buf1
= cpu_to_hc32(ehci
, buf1
);
1036 stream
->buf2
= cpu_to_hc32(ehci
, multi
);
1038 /* usbfs wants to report the average usecs per frame tied up
1039 * when transfers on this endpoint are scheduled ...
1041 stream
->usecs
= HS_USECS_ISO (maxp
);
1042 bandwidth
= stream
->usecs
* 8;
1043 bandwidth
/= 1 << (interval
- 1);
1050 addr
= dev
->ttport
<< 24;
1051 if (!ehci_is_TDI(ehci
)
1053 ehci_to_hcd(ehci
)->self
.root_hub
))
1054 addr
|= dev
->tt
->hub
->devnum
<< 16;
1056 addr
|= dev
->devnum
;
1057 stream
->usecs
= HS_USECS_ISO (maxp
);
1058 think_time
= dev
->tt
? dev
->tt
->think_time
: 0;
1059 stream
->tt_usecs
= NS_TO_US (think_time
+ usb_calc_bus_time (
1060 dev
->speed
, is_input
, 1, maxp
));
1061 hs_transfers
= max (1u, (maxp
+ 187) / 188);
1066 stream
->c_usecs
= stream
->usecs
;
1067 stream
->usecs
= HS_USECS_ISO (1);
1068 stream
->raw_mask
= 1;
1070 /* c-mask as specified in USB 2.0 11.18.4 3.c */
1071 tmp
= (1 << (hs_transfers
+ 2)) - 1;
1072 stream
->raw_mask
|= tmp
<< (8 + 2);
1074 stream
->raw_mask
= smask_out
[hs_transfers
- 1];
1075 bandwidth
= stream
->usecs
+ stream
->c_usecs
;
1076 bandwidth
/= 1 << (interval
+ 2);
1078 /* stream->splits gets created from raw_mask later */
1079 stream
->address
= cpu_to_hc32(ehci
, addr
);
1081 stream
->bandwidth
= bandwidth
;
1085 stream
->bEndpointAddress
= is_input
| epnum
;
1086 stream
->interval
= interval
;
1087 stream
->maxp
= maxp
;
1091 iso_stream_put(struct ehci_hcd
*ehci
, struct ehci_iso_stream
*stream
)
1095 /* free whenever just a dev->ep reference remains.
1096 * not like a QH -- no persistent state (toggle, halt)
1098 if (stream
->refcount
== 1) {
1101 // BUG_ON (!list_empty(&stream->td_list));
1103 while (!list_empty (&stream
->free_list
)) {
1104 struct list_head
*entry
;
1106 entry
= stream
->free_list
.next
;
1109 /* knows about ITD vs SITD */
1110 if (stream
->highspeed
) {
1111 struct ehci_itd
*itd
;
1113 itd
= list_entry (entry
, struct ehci_itd
,
1115 dma_pool_free (ehci
->itd_pool
, itd
,
1118 struct ehci_sitd
*sitd
;
1120 sitd
= list_entry (entry
, struct ehci_sitd
,
1122 dma_pool_free (ehci
->sitd_pool
, sitd
,
1127 is_in
= (stream
->bEndpointAddress
& USB_DIR_IN
) ? 0x10 : 0;
1128 stream
->bEndpointAddress
&= 0x0f;
1129 stream
->ep
->hcpriv
= NULL
;
1131 if (stream
->rescheduled
) {
1132 ehci_info (ehci
, "ep%d%s-iso rescheduled "
1133 "%lu times in %lu seconds\n",
1134 stream
->bEndpointAddress
, is_in
? "in" : "out",
1135 stream
->rescheduled
,
1136 ((jiffies
- stream
->start
)/HZ
)
1144 static inline struct ehci_iso_stream
*
1145 iso_stream_get (struct ehci_iso_stream
*stream
)
1147 if (likely (stream
!= NULL
))
1152 static struct ehci_iso_stream
*
1153 iso_stream_find (struct ehci_hcd
*ehci
, struct urb
*urb
)
1156 struct ehci_iso_stream
*stream
;
1157 struct usb_host_endpoint
*ep
;
1158 unsigned long flags
;
1160 epnum
= usb_pipeendpoint (urb
->pipe
);
1161 if (usb_pipein(urb
->pipe
))
1162 ep
= urb
->dev
->ep_in
[epnum
];
1164 ep
= urb
->dev
->ep_out
[epnum
];
1166 spin_lock_irqsave (&ehci
->lock
, flags
);
1167 stream
= ep
->hcpriv
;
1169 if (unlikely (stream
== NULL
)) {
1170 stream
= iso_stream_alloc(GFP_ATOMIC
);
1171 if (likely (stream
!= NULL
)) {
1172 /* dev->ep owns the initial refcount */
1173 ep
->hcpriv
= stream
;
1175 iso_stream_init(ehci
, stream
, urb
->dev
, urb
->pipe
,
1179 /* if dev->ep [epnum] is a QH, info1.maxpacket is nonzero */
1180 } else if (unlikely (stream
->hw_info1
!= 0)) {
1181 ehci_dbg (ehci
, "dev %s ep%d%s, not iso??\n",
1182 urb
->dev
->devpath
, epnum
,
1183 usb_pipein(urb
->pipe
) ? "in" : "out");
1187 /* caller guarantees an eventual matching iso_stream_put */
1188 stream
= iso_stream_get (stream
);
1190 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1194 /*-------------------------------------------------------------------------*/
1196 /* ehci_iso_sched ops can be ITD-only or SITD-only */
1198 static struct ehci_iso_sched
*
1199 iso_sched_alloc (unsigned packets
, gfp_t mem_flags
)
1201 struct ehci_iso_sched
*iso_sched
;
1202 int size
= sizeof *iso_sched
;
1204 size
+= packets
* sizeof (struct ehci_iso_packet
);
1205 iso_sched
= kzalloc(size
, mem_flags
);
1206 if (likely (iso_sched
!= NULL
)) {
1207 INIT_LIST_HEAD (&iso_sched
->td_list
);
1214 struct ehci_hcd
*ehci
,
1215 struct ehci_iso_sched
*iso_sched
,
1216 struct ehci_iso_stream
*stream
,
1221 dma_addr_t dma
= urb
->transfer_dma
;
1223 /* how many uframes are needed for these transfers */
1224 iso_sched
->span
= urb
->number_of_packets
* stream
->interval
;
1226 /* figure out per-uframe itd fields that we'll need later
1227 * when we fit new itds into the schedule.
1229 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1230 struct ehci_iso_packet
*uframe
= &iso_sched
->packet
[i
];
1235 length
= urb
->iso_frame_desc
[i
].length
;
1236 buf
= dma
+ urb
->iso_frame_desc
[i
].offset
;
1238 trans
= EHCI_ISOC_ACTIVE
;
1239 trans
|= buf
& 0x0fff;
1240 if (unlikely (((i
+ 1) == urb
->number_of_packets
))
1241 && !(urb
->transfer_flags
& URB_NO_INTERRUPT
))
1242 trans
|= EHCI_ITD_IOC
;
1243 trans
|= length
<< 16;
1244 uframe
->transaction
= cpu_to_hc32(ehci
, trans
);
1246 /* might need to cross a buffer page within a uframe */
1247 uframe
->bufp
= (buf
& ~(u64
)0x0fff);
1249 if (unlikely ((uframe
->bufp
!= (buf
& ~(u64
)0x0fff))))
1256 struct ehci_iso_stream
*stream
,
1257 struct ehci_iso_sched
*iso_sched
1262 // caller must hold ehci->lock!
1263 list_splice (&iso_sched
->td_list
, &stream
->free_list
);
1268 itd_urb_transaction (
1269 struct ehci_iso_stream
*stream
,
1270 struct ehci_hcd
*ehci
,
1275 struct ehci_itd
*itd
;
1279 struct ehci_iso_sched
*sched
;
1280 unsigned long flags
;
1282 sched
= iso_sched_alloc (urb
->number_of_packets
, mem_flags
);
1283 if (unlikely (sched
== NULL
))
1286 itd_sched_init(ehci
, sched
, stream
, urb
);
1288 if (urb
->interval
< 8)
1289 num_itds
= 1 + (sched
->span
+ 7) / 8;
1291 num_itds
= urb
->number_of_packets
;
1293 /* allocate/init ITDs */
1294 spin_lock_irqsave (&ehci
->lock
, flags
);
1295 for (i
= 0; i
< num_itds
; i
++) {
1297 /* free_list.next might be cache-hot ... but maybe
1298 * the HC caches it too. avoid that issue for now.
1301 /* prefer previously-allocated itds */
1302 if (likely (!list_empty(&stream
->free_list
))) {
1303 itd
= list_entry (stream
->free_list
.prev
,
1304 struct ehci_itd
, itd_list
);
1305 list_del (&itd
->itd_list
);
1306 itd_dma
= itd
->itd_dma
;
1311 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1312 itd
= dma_pool_alloc (ehci
->itd_pool
, mem_flags
,
1314 spin_lock_irqsave (&ehci
->lock
, flags
);
1317 if (unlikely (NULL
== itd
)) {
1318 iso_sched_free (stream
, sched
);
1319 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1322 memset (itd
, 0, sizeof *itd
);
1323 itd
->itd_dma
= itd_dma
;
1324 list_add (&itd
->itd_list
, &sched
->td_list
);
1326 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1328 /* temporarily store schedule info in hcpriv */
1329 urb
->hcpriv
= sched
;
1330 urb
->error_count
= 0;
1334 /*-------------------------------------------------------------------------*/
1338 struct ehci_hcd
*ehci
,
1347 /* can't commit more than 80% periodic == 100 usec */
1348 if (periodic_usecs (ehci
, uframe
>> 3, uframe
& 0x7)
1352 /* we know urb->interval is 2^N uframes */
1354 } while (uframe
< mod
);
1360 struct ehci_hcd
*ehci
,
1362 struct ehci_iso_stream
*stream
,
1364 struct ehci_iso_sched
*sched
,
1371 mask
= stream
->raw_mask
<< (uframe
& 7);
1373 /* for IN, don't wrap CSPLIT into the next frame */
1377 /* this multi-pass logic is simple, but performance may
1378 * suffer when the schedule data isn't cached.
1381 /* check bandwidth */
1382 uframe
%= period_uframes
;
1386 frame
= uframe
>> 3;
1389 #ifdef CONFIG_USB_EHCI_TT_NEWSCHED
1390 /* The tt's fullspeed bus bandwidth must be available.
1391 * tt_available scheduling guarantees 10+% for control/bulk.
1393 if (!tt_available (ehci
, period_uframes
<< 3,
1394 stream
->udev
, frame
, uf
, stream
->tt_usecs
))
1397 /* tt must be idle for start(s), any gap, and csplit.
1398 * assume scheduling slop leaves 10+% for control/bulk.
1400 if (!tt_no_collision (ehci
, period_uframes
<< 3,
1401 stream
->udev
, frame
, mask
))
1405 /* check starts (OUT uses more than one) */
1406 max_used
= 100 - stream
->usecs
;
1407 for (tmp
= stream
->raw_mask
& 0xff; tmp
; tmp
>>= 1, uf
++) {
1408 if (periodic_usecs (ehci
, frame
, uf
) > max_used
)
1412 /* for IN, check CSPLIT */
1413 if (stream
->c_usecs
) {
1415 max_used
= 100 - stream
->c_usecs
;
1419 if ((stream
->raw_mask
& tmp
) == 0)
1421 if (periodic_usecs (ehci
, frame
, uf
)
1427 /* we know urb->interval is 2^N uframes */
1428 uframe
+= period_uframes
;
1429 } while (uframe
< mod
);
1431 stream
->splits
= cpu_to_hc32(ehci
, stream
->raw_mask
<< (uframe
& 7));
1436 * This scheduler plans almost as far into the future as it has actual
1437 * periodic schedule slots. (Affected by TUNE_FLS, which defaults to
1438 * "as small as possible" to be cache-friendlier.) That limits the size
1439 * transfers you can stream reliably; avoid more than 64 msec per urb.
1440 * Also avoid queue depths of less than ehci's worst irq latency (affected
1441 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
1442 * and other factors); or more than about 230 msec total (for portability,
1443 * given EHCI_TUNE_FLS and the slop). Or, write a smarter scheduler!
1446 #define SCHEDULE_SLOP 10 /* frames */
1449 iso_stream_schedule (
1450 struct ehci_hcd
*ehci
,
1452 struct ehci_iso_stream
*stream
1455 u32 now
, start
, max
, period
;
1457 unsigned mod
= ehci
->periodic_size
<< 3;
1458 struct ehci_iso_sched
*sched
= urb
->hcpriv
;
1460 if (sched
->span
> (mod
- 8 * SCHEDULE_SLOP
)) {
1461 ehci_dbg (ehci
, "iso request %p too long\n", urb
);
1466 if ((stream
->depth
+ sched
->span
) > mod
) {
1467 ehci_dbg (ehci
, "request %p would overflow (%d+%d>%d)\n",
1468 urb
, stream
->depth
, sched
->span
, mod
);
1473 now
= ehci_readl(ehci
, &ehci
->regs
->frame_index
) % mod
;
1475 /* when's the last uframe this urb could start? */
1478 /* typical case: reuse current schedule. stream is still active,
1479 * and no gaps from host falling behind (irq delays etc)
1481 if (likely (!list_empty (&stream
->td_list
))) {
1482 start
= stream
->next_uframe
;
1485 if (likely ((start
+ sched
->span
) < max
))
1487 /* else fell behind; someday, try to reschedule */
1492 /* need to schedule; when's the next (u)frame we could start?
1493 * this is bigger than ehci->i_thresh allows; scheduling itself
1494 * isn't free, the slop should handle reasonably slow cpus. it
1495 * can also help high bandwidth if the dma and irq loads don't
1496 * jump until after the queue is primed.
1498 start
= SCHEDULE_SLOP
* 8 + (now
& ~0x07);
1500 stream
->next_uframe
= start
;
1502 /* NOTE: assumes URB_ISO_ASAP, to limit complexity/bugs */
1504 period
= urb
->interval
;
1505 if (!stream
->highspeed
)
1508 /* find a uframe slot with enough bandwidth */
1509 for (; start
< (stream
->next_uframe
+ period
); start
++) {
1512 /* check schedule: enough space? */
1513 if (stream
->highspeed
)
1514 enough_space
= itd_slot_ok (ehci
, mod
, start
,
1515 stream
->usecs
, period
);
1517 if ((start
% 8) >= 6)
1519 enough_space
= sitd_slot_ok (ehci
, mod
, stream
,
1520 start
, sched
, period
);
1523 /* schedule it here if there's enough bandwidth */
1525 stream
->next_uframe
= start
% mod
;
1530 /* no room in the schedule */
1531 ehci_dbg (ehci
, "iso %ssched full %p (now %d max %d)\n",
1532 list_empty (&stream
->td_list
) ? "" : "re",
1537 iso_sched_free (stream
, sched
);
1542 /* report high speed start in uframes; full speed, in frames */
1543 urb
->start_frame
= stream
->next_uframe
;
1544 if (!stream
->highspeed
)
1545 urb
->start_frame
>>= 3;
1549 /*-------------------------------------------------------------------------*/
1552 itd_init(struct ehci_hcd
*ehci
, struct ehci_iso_stream
*stream
,
1553 struct ehci_itd
*itd
)
1557 /* it's been recently zeroed */
1558 itd
->hw_next
= EHCI_LIST_END(ehci
);
1559 itd
->hw_bufp
[0] = stream
->buf0
;
1560 itd
->hw_bufp
[1] = stream
->buf1
;
1561 itd
->hw_bufp
[2] = stream
->buf2
;
1563 for (i
= 0; i
< 8; i
++)
1566 /* All other fields are filled when scheduling */
1571 struct ehci_hcd
*ehci
,
1572 struct ehci_itd
*itd
,
1573 struct ehci_iso_sched
*iso_sched
,
1578 struct ehci_iso_packet
*uf
= &iso_sched
->packet
[index
];
1579 unsigned pg
= itd
->pg
;
1581 // BUG_ON (pg == 6 && uf->cross);
1584 itd
->index
[uframe
] = index
;
1586 itd
->hw_transaction
[uframe
] = uf
->transaction
;
1587 itd
->hw_transaction
[uframe
] |= cpu_to_hc32(ehci
, pg
<< 12);
1588 itd
->hw_bufp
[pg
] |= cpu_to_hc32(ehci
, uf
->bufp
& ~(u32
)0);
1589 itd
->hw_bufp_hi
[pg
] |= cpu_to_hc32(ehci
, (u32
)(uf
->bufp
>> 32));
1591 /* iso_frame_desc[].offset must be strictly increasing */
1592 if (unlikely (uf
->cross
)) {
1593 u64 bufp
= uf
->bufp
+ 4096;
1596 itd
->hw_bufp
[pg
] |= cpu_to_hc32(ehci
, bufp
& ~(u32
)0);
1597 itd
->hw_bufp_hi
[pg
] |= cpu_to_hc32(ehci
, (u32
)(bufp
>> 32));
1602 itd_link (struct ehci_hcd
*ehci
, unsigned frame
, struct ehci_itd
*itd
)
1604 /* always prepend ITD/SITD ... only QH tree is order-sensitive */
1605 itd
->itd_next
= ehci
->pshadow
[frame
];
1606 itd
->hw_next
= ehci
->periodic
[frame
];
1607 ehci
->pshadow
[frame
].itd
= itd
;
1610 ehci
->periodic
[frame
] = cpu_to_hc32(ehci
, itd
->itd_dma
| Q_TYPE_ITD
);
1613 /* fit urb's itds into the selected schedule slot; activate as needed */
1616 struct ehci_hcd
*ehci
,
1619 struct ehci_iso_stream
*stream
1623 unsigned next_uframe
, uframe
, frame
;
1624 struct ehci_iso_sched
*iso_sched
= urb
->hcpriv
;
1625 struct ehci_itd
*itd
;
1627 next_uframe
= stream
->next_uframe
% mod
;
1629 if (unlikely (list_empty(&stream
->td_list
))) {
1630 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
1631 += stream
->bandwidth
;
1633 "schedule devp %s ep%d%s-iso period %d start %d.%d\n",
1634 urb
->dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
1635 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out",
1637 next_uframe
>> 3, next_uframe
& 0x7);
1638 stream
->start
= jiffies
;
1640 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
++;
1642 /* fill iTDs uframe by uframe */
1643 for (packet
= 0, itd
= NULL
; packet
< urb
->number_of_packets
; ) {
1645 /* ASSERT: we have all necessary itds */
1646 // BUG_ON (list_empty (&iso_sched->td_list));
1648 /* ASSERT: no itds for this endpoint in this uframe */
1650 itd
= list_entry (iso_sched
->td_list
.next
,
1651 struct ehci_itd
, itd_list
);
1652 list_move_tail (&itd
->itd_list
, &stream
->td_list
);
1653 itd
->stream
= iso_stream_get (stream
);
1654 itd
->urb
= usb_get_urb (urb
);
1655 itd_init (ehci
, stream
, itd
);
1658 uframe
= next_uframe
& 0x07;
1659 frame
= next_uframe
>> 3;
1661 itd
->usecs
[uframe
] = stream
->usecs
;
1662 itd_patch(ehci
, itd
, iso_sched
, packet
, uframe
);
1664 next_uframe
+= stream
->interval
;
1665 stream
->depth
+= stream
->interval
;
1669 /* link completed itds into the schedule */
1670 if (((next_uframe
>> 3) != frame
)
1671 || packet
== urb
->number_of_packets
) {
1672 itd_link (ehci
, frame
% ehci
->periodic_size
, itd
);
1676 stream
->next_uframe
= next_uframe
;
1678 /* don't need that schedule data any more */
1679 iso_sched_free (stream
, iso_sched
);
1682 timer_action (ehci
, TIMER_IO_WATCHDOG
);
1683 if (unlikely (!ehci
->periodic_sched
++))
1684 return enable_periodic (ehci
);
1688 #define ISO_ERRS (EHCI_ISOC_BUF_ERR | EHCI_ISOC_BABBLE | EHCI_ISOC_XACTERR)
1692 struct ehci_hcd
*ehci
,
1693 struct ehci_itd
*itd
1695 struct urb
*urb
= itd
->urb
;
1696 struct usb_iso_packet_descriptor
*desc
;
1700 struct ehci_iso_stream
*stream
= itd
->stream
;
1701 struct usb_device
*dev
;
1703 /* for each uframe with a packet */
1704 for (uframe
= 0; uframe
< 8; uframe
++) {
1705 if (likely (itd
->index
[uframe
] == -1))
1707 urb_index
= itd
->index
[uframe
];
1708 desc
= &urb
->iso_frame_desc
[urb_index
];
1710 t
= hc32_to_cpup(ehci
, &itd
->hw_transaction
[uframe
]);
1711 itd
->hw_transaction
[uframe
] = 0;
1712 stream
->depth
-= stream
->interval
;
1714 /* report transfer status */
1715 if (unlikely (t
& ISO_ERRS
)) {
1717 if (t
& EHCI_ISOC_BUF_ERR
)
1718 desc
->status
= usb_pipein (urb
->pipe
)
1719 ? -ENOSR
/* hc couldn't read */
1720 : -ECOMM
; /* hc couldn't write */
1721 else if (t
& EHCI_ISOC_BABBLE
)
1722 desc
->status
= -EOVERFLOW
;
1723 else /* (t & EHCI_ISOC_XACTERR) */
1724 desc
->status
= -EPROTO
;
1726 /* HC need not update length with this error */
1727 if (!(t
& EHCI_ISOC_BABBLE
))
1728 desc
->actual_length
= EHCI_ITD_LENGTH (t
);
1729 } else if (likely ((t
& EHCI_ISOC_ACTIVE
) == 0)) {
1731 desc
->actual_length
= EHCI_ITD_LENGTH (t
);
1738 list_move (&itd
->itd_list
, &stream
->free_list
);
1739 iso_stream_put (ehci
, stream
);
1741 /* handle completion now? */
1742 if (likely ((urb_index
+ 1) != urb
->number_of_packets
))
1745 /* ASSERT: it's really the last itd for this urb
1746 list_for_each_entry (itd, &stream->td_list, itd_list)
1747 BUG_ON (itd->urb == urb);
1750 /* give urb back to the driver ... can be out-of-order */
1752 ehci_urb_done (ehci
, urb
);
1755 /* defer stopping schedule; completion can submit */
1756 ehci
->periodic_sched
--;
1757 if (unlikely (!ehci
->periodic_sched
))
1758 (void) disable_periodic (ehci
);
1759 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
--;
1761 if (unlikely (list_empty (&stream
->td_list
))) {
1762 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
1763 -= stream
->bandwidth
;
1765 "deschedule devp %s ep%d%s-iso\n",
1766 dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
1767 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out");
1769 iso_stream_put (ehci
, stream
);
1774 /*-------------------------------------------------------------------------*/
1776 static int itd_submit (struct ehci_hcd
*ehci
, struct urb
*urb
,
1779 int status
= -EINVAL
;
1780 unsigned long flags
;
1781 struct ehci_iso_stream
*stream
;
1783 /* Get iso_stream head */
1784 stream
= iso_stream_find (ehci
, urb
);
1785 if (unlikely (stream
== NULL
)) {
1786 ehci_dbg (ehci
, "can't get iso stream\n");
1789 if (unlikely (urb
->interval
!= stream
->interval
)) {
1790 ehci_dbg (ehci
, "can't change iso interval %d --> %d\n",
1791 stream
->interval
, urb
->interval
);
1795 #ifdef EHCI_URB_TRACE
1797 "%s %s urb %p ep%d%s len %d, %d pkts %d uframes [%p]\n",
1798 __FUNCTION__
, urb
->dev
->devpath
, urb
,
1799 usb_pipeendpoint (urb
->pipe
),
1800 usb_pipein (urb
->pipe
) ? "in" : "out",
1801 urb
->transfer_buffer_length
,
1802 urb
->number_of_packets
, urb
->interval
,
1806 /* allocate ITDs w/o locking anything */
1807 status
= itd_urb_transaction (stream
, ehci
, urb
, mem_flags
);
1808 if (unlikely (status
< 0)) {
1809 ehci_dbg (ehci
, "can't init itds\n");
1813 /* schedule ... need to lock */
1814 spin_lock_irqsave (&ehci
->lock
, flags
);
1815 if (unlikely(!test_bit(HCD_FLAG_HW_ACCESSIBLE
,
1816 &ehci_to_hcd(ehci
)->flags
)))
1817 status
= -ESHUTDOWN
;
1819 status
= iso_stream_schedule (ehci
, urb
, stream
);
1820 if (likely (status
== 0))
1821 itd_link_urb (ehci
, urb
, ehci
->periodic_size
<< 3, stream
);
1822 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1825 if (unlikely (status
< 0))
1826 iso_stream_put (ehci
, stream
);
1830 #ifdef CONFIG_USB_EHCI_SPLIT_ISO
1832 /*-------------------------------------------------------------------------*/
1835 * "Split ISO TDs" ... used for USB 1.1 devices going through the
1836 * TTs in USB 2.0 hubs. These need microframe scheduling.
1841 struct ehci_hcd
*ehci
,
1842 struct ehci_iso_sched
*iso_sched
,
1843 struct ehci_iso_stream
*stream
,
1848 dma_addr_t dma
= urb
->transfer_dma
;
1850 /* how many frames are needed for these transfers */
1851 iso_sched
->span
= urb
->number_of_packets
* stream
->interval
;
1853 /* figure out per-frame sitd fields that we'll need later
1854 * when we fit new sitds into the schedule.
1856 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1857 struct ehci_iso_packet
*packet
= &iso_sched
->packet
[i
];
1862 length
= urb
->iso_frame_desc
[i
].length
& 0x03ff;
1863 buf
= dma
+ urb
->iso_frame_desc
[i
].offset
;
1865 trans
= SITD_STS_ACTIVE
;
1866 if (((i
+ 1) == urb
->number_of_packets
)
1867 && !(urb
->transfer_flags
& URB_NO_INTERRUPT
))
1869 trans
|= length
<< 16;
1870 packet
->transaction
= cpu_to_hc32(ehci
, trans
);
1872 /* might need to cross a buffer page within a td */
1874 packet
->buf1
= (buf
+ length
) & ~0x0fff;
1875 if (packet
->buf1
!= (buf
& ~(u64
)0x0fff))
1878 /* OUT uses multiple start-splits */
1879 if (stream
->bEndpointAddress
& USB_DIR_IN
)
1881 length
= (length
+ 187) / 188;
1882 if (length
> 1) /* BEGIN vs ALL */
1884 packet
->buf1
|= length
;
1889 sitd_urb_transaction (
1890 struct ehci_iso_stream
*stream
,
1891 struct ehci_hcd
*ehci
,
1896 struct ehci_sitd
*sitd
;
1897 dma_addr_t sitd_dma
;
1899 struct ehci_iso_sched
*iso_sched
;
1900 unsigned long flags
;
1902 iso_sched
= iso_sched_alloc (urb
->number_of_packets
, mem_flags
);
1903 if (iso_sched
== NULL
)
1906 sitd_sched_init(ehci
, iso_sched
, stream
, urb
);
1908 /* allocate/init sITDs */
1909 spin_lock_irqsave (&ehci
->lock
, flags
);
1910 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1912 /* NOTE: for now, we don't try to handle wraparound cases
1913 * for IN (using sitd->hw_backpointer, like a FSTN), which
1914 * means we never need two sitds for full speed packets.
1917 /* free_list.next might be cache-hot ... but maybe
1918 * the HC caches it too. avoid that issue for now.
1921 /* prefer previously-allocated sitds */
1922 if (!list_empty(&stream
->free_list
)) {
1923 sitd
= list_entry (stream
->free_list
.prev
,
1924 struct ehci_sitd
, sitd_list
);
1925 list_del (&sitd
->sitd_list
);
1926 sitd_dma
= sitd
->sitd_dma
;
1931 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1932 sitd
= dma_pool_alloc (ehci
->sitd_pool
, mem_flags
,
1934 spin_lock_irqsave (&ehci
->lock
, flags
);
1938 iso_sched_free (stream
, iso_sched
);
1939 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1942 memset (sitd
, 0, sizeof *sitd
);
1943 sitd
->sitd_dma
= sitd_dma
;
1944 list_add (&sitd
->sitd_list
, &iso_sched
->td_list
);
1947 /* temporarily store schedule info in hcpriv */
1948 urb
->hcpriv
= iso_sched
;
1949 urb
->error_count
= 0;
1951 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1955 /*-------------------------------------------------------------------------*/
1959 struct ehci_hcd
*ehci
,
1960 struct ehci_iso_stream
*stream
,
1961 struct ehci_sitd
*sitd
,
1962 struct ehci_iso_sched
*iso_sched
,
1966 struct ehci_iso_packet
*uf
= &iso_sched
->packet
[index
];
1967 u64 bufp
= uf
->bufp
;
1969 sitd
->hw_next
= EHCI_LIST_END(ehci
);
1970 sitd
->hw_fullspeed_ep
= stream
->address
;
1971 sitd
->hw_uframe
= stream
->splits
;
1972 sitd
->hw_results
= uf
->transaction
;
1973 sitd
->hw_backpointer
= EHCI_LIST_END(ehci
);
1976 sitd
->hw_buf
[0] = cpu_to_hc32(ehci
, bufp
);
1977 sitd
->hw_buf_hi
[0] = cpu_to_hc32(ehci
, bufp
>> 32);
1979 sitd
->hw_buf
[1] = cpu_to_hc32(ehci
, uf
->buf1
);
1982 sitd
->hw_buf_hi
[1] = cpu_to_hc32(ehci
, bufp
>> 32);
1983 sitd
->index
= index
;
1987 sitd_link (struct ehci_hcd
*ehci
, unsigned frame
, struct ehci_sitd
*sitd
)
1989 /* note: sitd ordering could matter (CSPLIT then SSPLIT) */
1990 sitd
->sitd_next
= ehci
->pshadow
[frame
];
1991 sitd
->hw_next
= ehci
->periodic
[frame
];
1992 ehci
->pshadow
[frame
].sitd
= sitd
;
1993 sitd
->frame
= frame
;
1995 ehci
->periodic
[frame
] = cpu_to_hc32(ehci
, sitd
->sitd_dma
| Q_TYPE_SITD
);
1998 /* fit urb's sitds into the selected schedule slot; activate as needed */
2001 struct ehci_hcd
*ehci
,
2004 struct ehci_iso_stream
*stream
2008 unsigned next_uframe
;
2009 struct ehci_iso_sched
*sched
= urb
->hcpriv
;
2010 struct ehci_sitd
*sitd
;
2012 next_uframe
= stream
->next_uframe
;
2014 if (list_empty(&stream
->td_list
)) {
2015 /* usbfs ignores TT bandwidth */
2016 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
2017 += stream
->bandwidth
;
2019 "sched devp %s ep%d%s-iso [%d] %dms/%04x\n",
2020 urb
->dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
2021 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out",
2022 (next_uframe
>> 3) % ehci
->periodic_size
,
2023 stream
->interval
, hc32_to_cpu(ehci
, stream
->splits
));
2024 stream
->start
= jiffies
;
2026 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
++;
2028 /* fill sITDs frame by frame */
2029 for (packet
= 0, sitd
= NULL
;
2030 packet
< urb
->number_of_packets
;
2033 /* ASSERT: we have all necessary sitds */
2034 BUG_ON (list_empty (&sched
->td_list
));
2036 /* ASSERT: no itds for this endpoint in this frame */
2038 sitd
= list_entry (sched
->td_list
.next
,
2039 struct ehci_sitd
, sitd_list
);
2040 list_move_tail (&sitd
->sitd_list
, &stream
->td_list
);
2041 sitd
->stream
= iso_stream_get (stream
);
2042 sitd
->urb
= usb_get_urb (urb
);
2044 sitd_patch(ehci
, stream
, sitd
, sched
, packet
);
2045 sitd_link (ehci
, (next_uframe
>> 3) % ehci
->periodic_size
,
2048 next_uframe
+= stream
->interval
<< 3;
2049 stream
->depth
+= stream
->interval
<< 3;
2051 stream
->next_uframe
= next_uframe
% mod
;
2053 /* don't need that schedule data any more */
2054 iso_sched_free (stream
, sched
);
2057 timer_action (ehci
, TIMER_IO_WATCHDOG
);
2058 if (!ehci
->periodic_sched
++)
2059 return enable_periodic (ehci
);
2063 /*-------------------------------------------------------------------------*/
2065 #define SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
2066 | SITD_STS_XACT | SITD_STS_MMF)
2070 struct ehci_hcd
*ehci
,
2071 struct ehci_sitd
*sitd
2073 struct urb
*urb
= sitd
->urb
;
2074 struct usb_iso_packet_descriptor
*desc
;
2077 struct ehci_iso_stream
*stream
= sitd
->stream
;
2078 struct usb_device
*dev
;
2080 urb_index
= sitd
->index
;
2081 desc
= &urb
->iso_frame_desc
[urb_index
];
2082 t
= hc32_to_cpup(ehci
, &sitd
->hw_results
);
2084 /* report transfer status */
2085 if (t
& SITD_ERRS
) {
2087 if (t
& SITD_STS_DBE
)
2088 desc
->status
= usb_pipein (urb
->pipe
)
2089 ? -ENOSR
/* hc couldn't read */
2090 : -ECOMM
; /* hc couldn't write */
2091 else if (t
& SITD_STS_BABBLE
)
2092 desc
->status
= -EOVERFLOW
;
2093 else /* XACT, MMF, etc */
2094 desc
->status
= -EPROTO
;
2097 desc
->actual_length
= desc
->length
- SITD_LENGTH (t
);
2102 sitd
->stream
= NULL
;
2103 list_move (&sitd
->sitd_list
, &stream
->free_list
);
2104 stream
->depth
-= stream
->interval
<< 3;
2105 iso_stream_put (ehci
, stream
);
2107 /* handle completion now? */
2108 if ((urb_index
+ 1) != urb
->number_of_packets
)
2111 /* ASSERT: it's really the last sitd for this urb
2112 list_for_each_entry (sitd, &stream->td_list, sitd_list)
2113 BUG_ON (sitd->urb == urb);
2116 /* give urb back to the driver */
2118 ehci_urb_done (ehci
, urb
);
2121 /* defer stopping schedule; completion can submit */
2122 ehci
->periodic_sched
--;
2123 if (!ehci
->periodic_sched
)
2124 (void) disable_periodic (ehci
);
2125 ehci_to_hcd(ehci
)->self
.bandwidth_isoc_reqs
--;
2127 if (list_empty (&stream
->td_list
)) {
2128 ehci_to_hcd(ehci
)->self
.bandwidth_allocated
2129 -= stream
->bandwidth
;
2131 "deschedule devp %s ep%d%s-iso\n",
2132 dev
->devpath
, stream
->bEndpointAddress
& 0x0f,
2133 (stream
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out");
2135 iso_stream_put (ehci
, stream
);
2141 static int sitd_submit (struct ehci_hcd
*ehci
, struct urb
*urb
,
2144 int status
= -EINVAL
;
2145 unsigned long flags
;
2146 struct ehci_iso_stream
*stream
;
2148 /* Get iso_stream head */
2149 stream
= iso_stream_find (ehci
, urb
);
2150 if (stream
== NULL
) {
2151 ehci_dbg (ehci
, "can't get iso stream\n");
2154 if (urb
->interval
!= stream
->interval
) {
2155 ehci_dbg (ehci
, "can't change iso interval %d --> %d\n",
2156 stream
->interval
, urb
->interval
);
2160 #ifdef EHCI_URB_TRACE
2162 "submit %p dev%s ep%d%s-iso len %d\n",
2163 urb
, urb
->dev
->devpath
,
2164 usb_pipeendpoint (urb
->pipe
),
2165 usb_pipein (urb
->pipe
) ? "in" : "out",
2166 urb
->transfer_buffer_length
);
2169 /* allocate SITDs */
2170 status
= sitd_urb_transaction (stream
, ehci
, urb
, mem_flags
);
2172 ehci_dbg (ehci
, "can't init sitds\n");
2176 /* schedule ... need to lock */
2177 spin_lock_irqsave (&ehci
->lock
, flags
);
2178 if (unlikely(!test_bit(HCD_FLAG_HW_ACCESSIBLE
,
2179 &ehci_to_hcd(ehci
)->flags
)))
2180 status
= -ESHUTDOWN
;
2182 status
= iso_stream_schedule (ehci
, urb
, stream
);
2184 sitd_link_urb (ehci
, urb
, ehci
->periodic_size
<< 3, stream
);
2185 spin_unlock_irqrestore (&ehci
->lock
, flags
);
2189 iso_stream_put (ehci
, stream
);
2196 sitd_submit (struct ehci_hcd
*ehci
, struct urb
*urb
, gfp_t mem_flags
)
2198 ehci_dbg (ehci
, "split iso support is disabled\n");
2202 static inline unsigned
2204 struct ehci_hcd
*ehci
,
2205 struct ehci_sitd
*sitd
2207 ehci_err (ehci
, "sitd_complete %p?\n", sitd
);
2211 #endif /* USB_EHCI_SPLIT_ISO */
2213 /*-------------------------------------------------------------------------*/
2216 scan_periodic (struct ehci_hcd
*ehci
)
2218 unsigned frame
, clock
, now_uframe
, mod
;
2221 mod
= ehci
->periodic_size
<< 3;
2224 * When running, scan from last scan point up to "now"
2225 * else clean up by scanning everything that's left.
2226 * Touches as few pages as possible: cache-friendly.
2228 now_uframe
= ehci
->next_uframe
;
2229 if (HC_IS_RUNNING (ehci_to_hcd(ehci
)->state
))
2230 clock
= ehci_readl(ehci
, &ehci
->regs
->frame_index
);
2232 clock
= now_uframe
+ mod
- 1;
2236 union ehci_shadow q
, *q_p
;
2240 /* don't scan past the live uframe */
2241 frame
= now_uframe
>> 3;
2242 if (frame
== (clock
>> 3))
2243 uframes
= now_uframe
& 0x07;
2245 /* safe to scan the whole frame at once */
2251 /* scan each element in frame's queue for completions */
2252 q_p
= &ehci
->pshadow
[frame
];
2253 hw_p
= &ehci
->periodic
[frame
];
2255 type
= Q_NEXT_TYPE(ehci
, *hw_p
);
2258 while (q
.ptr
!= NULL
) {
2260 union ehci_shadow temp
;
2263 live
= HC_IS_RUNNING (ehci_to_hcd(ehci
)->state
);
2264 switch (hc32_to_cpu(ehci
, type
)) {
2266 /* handle any completions */
2267 temp
.qh
= qh_get (q
.qh
);
2268 type
= Q_NEXT_TYPE(ehci
, q
.qh
->hw_next
);
2270 modified
= qh_completions (ehci
, temp
.qh
);
2271 if (unlikely (list_empty (&temp
.qh
->qtd_list
)))
2272 intr_deschedule (ehci
, temp
.qh
);
2276 /* for "save place" FSTNs, look at QH entries
2277 * in the previous frame for completions.
2279 if (q
.fstn
->hw_prev
!= EHCI_LIST_END(ehci
)) {
2280 dbg ("ignoring completions from FSTNs");
2282 type
= Q_NEXT_TYPE(ehci
, q
.fstn
->hw_next
);
2283 q
= q
.fstn
->fstn_next
;
2286 /* skip itds for later in the frame */
2288 for (uf
= live
? uframes
: 8; uf
< 8; uf
++) {
2289 if (0 == (q
.itd
->hw_transaction
[uf
]
2290 & ITD_ACTIVE(ehci
)))
2292 q_p
= &q
.itd
->itd_next
;
2293 hw_p
= &q
.itd
->hw_next
;
2294 type
= Q_NEXT_TYPE(ehci
,
2302 /* this one's ready ... HC won't cache the
2303 * pointer for much longer, if at all.
2305 *q_p
= q
.itd
->itd_next
;
2306 *hw_p
= q
.itd
->hw_next
;
2307 type
= Q_NEXT_TYPE(ehci
, q
.itd
->hw_next
);
2309 modified
= itd_complete (ehci
, q
.itd
);
2313 if ((q
.sitd
->hw_results
& SITD_ACTIVE(ehci
))
2315 q_p
= &q
.sitd
->sitd_next
;
2316 hw_p
= &q
.sitd
->hw_next
;
2317 type
= Q_NEXT_TYPE(ehci
,
2322 *q_p
= q
.sitd
->sitd_next
;
2323 *hw_p
= q
.sitd
->hw_next
;
2324 type
= Q_NEXT_TYPE(ehci
, q
.sitd
->hw_next
);
2326 modified
= sitd_complete (ehci
, q
.sitd
);
2330 dbg ("corrupt type %d frame %d shadow %p",
2331 type
, frame
, q
.ptr
);
2336 /* assume completion callbacks modify the queue */
2337 if (unlikely (modified
))
2341 /* stop when we catch up to the HC */
2343 // FIXME: this assumes we won't get lapped when
2344 // latencies climb; that should be rare, but...
2345 // detect it, and just go all the way around.
2346 // FLR might help detect this case, so long as latencies
2347 // don't exceed periodic_size msec (default 1.024 sec).
2349 // FIXME: likewise assumes HC doesn't halt mid-scan
2351 if (now_uframe
== clock
) {
2354 if (!HC_IS_RUNNING (ehci_to_hcd(ehci
)->state
))
2356 ehci
->next_uframe
= now_uframe
;
2357 now
= ehci_readl(ehci
, &ehci
->regs
->frame_index
) % mod
;
2358 if (now_uframe
== now
)
2361 /* rescan the rest of this frame, then ... */