]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/usb/host/ehci-sched.c
USB: EHCI: use hrtimer for the I/O watchdog
[mirror_ubuntu-bionic-kernel.git] / drivers / usb / host / ehci-sched.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2001-2004 by David Brownell
3 * Copyright (c) 2003 Michal Sojka, for high-speed iso transfers
53bd6a60 4 *
1da177e4
LT
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.
9 *
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
13 * for more details.
14 *
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.
18 */
19
20/* this file is part of ehci-hcd.c */
21
22/*-------------------------------------------------------------------------*/
23
24/*
25 * EHCI scheduled transaction support: interrupt, iso, split iso
26 * These are called "periodic" transactions in the EHCI spec.
27 *
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.
31 *
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.
35 */
36
37static int ehci_get_frame (struct usb_hcd *hcd);
38
68aa95d5
AS
39#ifdef CONFIG_PCI
40
41static unsigned ehci_read_frame_index(struct ehci_hcd *ehci)
42{
43 unsigned uf;
44
45 /*
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.
51 */
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);
55 return uf;
56}
57
58#endif
59
1da177e4
LT
60/*-------------------------------------------------------------------------*/
61
62/*
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
66 */
67static union ehci_shadow *
6dbd682b
SR
68periodic_next_shadow(struct ehci_hcd *ehci, union ehci_shadow *periodic,
69 __hc32 tag)
1da177e4 70{
6dbd682b 71 switch (hc32_to_cpu(ehci, tag)) {
1da177e4
LT
72 case Q_TYPE_QH:
73 return &periodic->qh->qh_next;
74 case Q_TYPE_FSTN:
75 return &periodic->fstn->fstn_next;
76 case Q_TYPE_ITD:
77 return &periodic->itd->itd_next;
78 // case Q_TYPE_SITD:
79 default:
80 return &periodic->sitd->sitd_next;
81 }
82}
83
3807e26d
AD
84static __hc32 *
85shadow_next_periodic(struct ehci_hcd *ehci, union ehci_shadow *periodic,
86 __hc32 tag)
87{
88 switch (hc32_to_cpu(ehci, tag)) {
89 /* our ehci_shadow.qh is actually software part */
90 case Q_TYPE_QH:
91 return &periodic->qh->hw->hw_next;
92 /* others are hw parts */
93 default:
94 return periodic->hw_next;
95 }
96}
97
1da177e4
LT
98/* caller must hold ehci->lock */
99static void periodic_unlink (struct ehci_hcd *ehci, unsigned frame, void *ptr)
100{
6dbd682b
SR
101 union ehci_shadow *prev_p = &ehci->pshadow[frame];
102 __hc32 *hw_p = &ehci->periodic[frame];
1da177e4
LT
103 union ehci_shadow here = *prev_p;
104
105 /* find predecessor of "ptr"; hw and shadow lists are in sync */
106 while (here.ptr && here.ptr != ptr) {
6dbd682b
SR
107 prev_p = periodic_next_shadow(ehci, prev_p,
108 Q_NEXT_TYPE(ehci, *hw_p));
3807e26d
AD
109 hw_p = shadow_next_periodic(ehci, &here,
110 Q_NEXT_TYPE(ehci, *hw_p));
1da177e4
LT
111 here = *prev_p;
112 }
113 /* an interrupt entry (at list end) could have been shared */
114 if (!here.ptr)
115 return;
116
117 /* update shadow and hardware lists ... the old "next" pointers
118 * from ptr may still be in use, the caller updates them.
119 */
6dbd682b
SR
120 *prev_p = *periodic_next_shadow(ehci, &here,
121 Q_NEXT_TYPE(ehci, *hw_p));
3d091a6f
AX
122
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));
128 else
129 *hw_p = ehci->dummy->qh_dma;
1da177e4
LT
130}
131
132/* how many of the uframe's 125 usecs are allocated? */
133static unsigned short
134periodic_usecs (struct ehci_hcd *ehci, unsigned frame, unsigned uframe)
135{
6dbd682b 136 __hc32 *hw_p = &ehci->periodic [frame];
1da177e4
LT
137 union ehci_shadow *q = &ehci->pshadow [frame];
138 unsigned usecs = 0;
3807e26d 139 struct ehci_qh_hw *hw;
1da177e4
LT
140
141 while (q->ptr) {
6dbd682b 142 switch (hc32_to_cpu(ehci, Q_NEXT_TYPE(ehci, *hw_p))) {
1da177e4 143 case Q_TYPE_QH:
3807e26d 144 hw = q->qh->hw;
1da177e4 145 /* is it in the S-mask? */
3807e26d 146 if (hw->hw_info2 & cpu_to_hc32(ehci, 1 << uframe))
1da177e4
LT
147 usecs += q->qh->usecs;
148 /* ... or C-mask? */
3807e26d 149 if (hw->hw_info2 & cpu_to_hc32(ehci,
6dbd682b 150 1 << (8 + uframe)))
1da177e4 151 usecs += q->qh->c_usecs;
3807e26d 152 hw_p = &hw->hw_next;
1da177e4
LT
153 q = &q->qh->qh_next;
154 break;
155 // case Q_TYPE_FSTN:
156 default:
157 /* for "save place" FSTNs, count the relevant INTR
158 * bandwidth from the previous frame
159 */
6dbd682b 160 if (q->fstn->hw_prev != EHCI_LIST_END(ehci)) {
1da177e4
LT
161 ehci_dbg (ehci, "ignoring FSTN cost ...\n");
162 }
163 hw_p = &q->fstn->hw_next;
164 q = &q->fstn->fstn_next;
165 break;
166 case Q_TYPE_ITD:
3b6fcfd0
KW
167 if (q->itd->hw_transaction[uframe])
168 usecs += q->itd->stream->usecs;
1da177e4
LT
169 hw_p = &q->itd->hw_next;
170 q = &q->itd->itd_next;
171 break;
172 case Q_TYPE_SITD:
173 /* is it in the S-mask? (count SPLIT, DATA) */
6dbd682b
SR
174 if (q->sitd->hw_uframe & cpu_to_hc32(ehci,
175 1 << uframe)) {
1da177e4 176 if (q->sitd->hw_fullspeed_ep &
6dbd682b 177 cpu_to_hc32(ehci, 1<<31))
1da177e4
LT
178 usecs += q->sitd->stream->usecs;
179 else /* worst case for OUT start-split */
180 usecs += HS_USECS_ISO (188);
181 }
182
183 /* ... C-mask? (count CSPLIT, DATA) */
184 if (q->sitd->hw_uframe &
6dbd682b 185 cpu_to_hc32(ehci, 1 << (8 + uframe))) {
1da177e4
LT
186 /* worst case for IN complete-split */
187 usecs += q->sitd->stream->c_usecs;
188 }
189
190 hw_p = &q->sitd->hw_next;
191 q = &q->sitd->sitd_next;
192 break;
193 }
194 }
195#ifdef DEBUG
cc62a7eb 196 if (usecs > ehci->uframe_periodic_max)
1da177e4
LT
197 ehci_err (ehci, "uframe %d sched overrun: %d usecs\n",
198 frame * 8 + uframe, usecs);
199#endif
200 return usecs;
201}
202
203/*-------------------------------------------------------------------------*/
204
205static int same_tt (struct usb_device *dev1, struct usb_device *dev2)
206{
207 if (!dev1->tt || !dev2->tt)
208 return 0;
209 if (dev1->tt != dev2->tt)
210 return 0;
211 if (dev1->tt->multi)
212 return dev1->ttport == dev2->ttport;
213 else
214 return 1;
215}
216
ba47f66b
DS
217#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
218
219/* Which uframe does the low/fullspeed transfer start in?
220 *
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.
226 */
6dbd682b 227static inline unsigned char tt_start_uframe(struct ehci_hcd *ehci, __hc32 mask)
ba47f66b 228{
6dbd682b 229 unsigned char smask = QH_SMASK & hc32_to_cpu(ehci, mask);
ba47f66b
DS
230 if (!smask) {
231 ehci_err(ehci, "invalid empty smask!\n");
232 /* uframe 7 can't have bw so this will indicate failure */
233 return 7;
234 }
235 return ffs(smask) - 1;
236}
237
238static const unsigned char
239max_tt_usecs[] = { 125, 125, 125, 125, 125, 125, 30, 0 };
240
241/* carryover low/fullspeed bandwidth that crosses uframe boundries */
242static inline void carryover_tt_bandwidth(unsigned short tt_usecs[8])
243{
244 int i;
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];
249 }
250 }
251}
252
253/* How many of the tt's periodic downstream 1000 usecs are allocated?
254 *
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.
259 *
dc0d5c1e 260 * For example two separate 100 usec transfers can start in the same uframe,
ba47f66b
DS
261 * and the second one would "carry over" 75 usecs into the next uframe.
262 */
263static void
264periodic_tt_usecs (
265 struct ehci_hcd *ehci,
266 struct usb_device *dev,
267 unsigned frame,
268 unsigned short tt_usecs[8]
269)
270{
6dbd682b 271 __hc32 *hw_p = &ehci->periodic [frame];
ba47f66b
DS
272 union ehci_shadow *q = &ehci->pshadow [frame];
273 unsigned char uf;
274
275 memset(tt_usecs, 0, 16);
276
277 while (q->ptr) {
6dbd682b 278 switch (hc32_to_cpu(ehci, Q_NEXT_TYPE(ehci, *hw_p))) {
ba47f66b
DS
279 case Q_TYPE_ITD:
280 hw_p = &q->itd->hw_next;
281 q = &q->itd->itd_next;
282 continue;
283 case Q_TYPE_QH:
284 if (same_tt(dev, q->qh->dev)) {
3807e26d 285 uf = tt_start_uframe(ehci, q->qh->hw->hw_info2);
ba47f66b
DS
286 tt_usecs[uf] += q->qh->tt_usecs;
287 }
3807e26d 288 hw_p = &q->qh->hw->hw_next;
ba47f66b
DS
289 q = &q->qh->qh_next;
290 continue;
291 case Q_TYPE_SITD:
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;
295 }
296 hw_p = &q->sitd->hw_next;
297 q = &q->sitd->sitd_next;
298 continue;
299 // case Q_TYPE_FSTN:
300 default:
6dbd682b
SR
301 ehci_dbg(ehci, "ignoring periodic frame %d FSTN\n",
302 frame);
ba47f66b
DS
303 hw_p = &q->fstn->hw_next;
304 q = &q->fstn->fstn_next;
305 }
306 }
307
308 carryover_tt_bandwidth(tt_usecs);
309
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]);
313}
314
315/*
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
320 * uframe.
321 *
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.
327 *
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.
331 *
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.
335 */
336static int tt_available (
337 struct ehci_hcd *ehci,
338 unsigned period,
339 struct usb_device *dev,
340 unsigned frame,
341 unsigned uframe,
342 u16 usecs
343)
344{
345 if ((period == 0) || (uframe >= 7)) /* error */
346 return 0;
347
348 for (; frame < ehci->periodic_size; frame += period) {
349 unsigned short tt_usecs[8];
350
351 periodic_tt_usecs (ehci, dev, frame, tt_usecs);
352
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]);
358
359 if (max_tt_usecs[uframe] <= tt_usecs[uframe]) {
360 ehci_vdbg(ehci, "frame %d uframe %d fully scheduled\n",
361 frame, uframe);
362 return 0;
363 }
364
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
369 */
370 if (125 < usecs) {
c065c60e 371 int ufs = (usecs / 125);
ba47f66b
DS
372 int i;
373 for (i = uframe; i < (uframe + ufs) && i < 8; i++)
374 if (0 < tt_usecs[i]) {
375 ehci_vdbg(ehci,
376 "multi-uframe xfer can't fit "
377 "in frame %d uframe %d\n",
378 frame, i);
379 return 0;
380 }
381 }
382
383 tt_usecs[uframe] += usecs;
384
385 carryover_tt_bandwidth(tt_usecs);
386
387 /* fail if the carryover pushed bw past the last uframe's limit */
388 if (max_tt_usecs[7] < tt_usecs[7]) {
389 ehci_vdbg(ehci,
390 "tt unavailable usecs %d frame %d uframe %d\n",
391 usecs, frame, uframe);
392 return 0;
393 }
394 }
395
396 return 1;
397}
398
399#else
400
1da177e4
LT
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.
404 */
405static int tt_no_collision (
406 struct ehci_hcd *ehci,
407 unsigned period,
408 struct usb_device *dev,
409 unsigned frame,
410 u32 uf_mask
411)
412{
413 if (period == 0) /* error */
414 return 0;
415
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.
419 */
420 for (; frame < ehci->periodic_size; frame += period) {
421 union ehci_shadow here;
6dbd682b 422 __hc32 type;
3807e26d 423 struct ehci_qh_hw *hw;
1da177e4
LT
424
425 here = ehci->pshadow [frame];
6dbd682b 426 type = Q_NEXT_TYPE(ehci, ehci->periodic [frame]);
1da177e4 427 while (here.ptr) {
6dbd682b 428 switch (hc32_to_cpu(ehci, type)) {
1da177e4 429 case Q_TYPE_ITD:
6dbd682b 430 type = Q_NEXT_TYPE(ehci, here.itd->hw_next);
1da177e4
LT
431 here = here.itd->itd_next;
432 continue;
433 case Q_TYPE_QH:
3807e26d 434 hw = here.qh->hw;
1da177e4
LT
435 if (same_tt (dev, here.qh->dev)) {
436 u32 mask;
437
6dbd682b 438 mask = hc32_to_cpu(ehci,
3807e26d 439 hw->hw_info2);
1da177e4
LT
440 /* "knows" no gap is needed */
441 mask |= mask >> 8;
442 if (mask & uf_mask)
443 break;
444 }
3807e26d 445 type = Q_NEXT_TYPE(ehci, hw->hw_next);
1da177e4
LT
446 here = here.qh->qh_next;
447 continue;
448 case Q_TYPE_SITD:
449 if (same_tt (dev, here.sitd->urb->dev)) {
450 u16 mask;
451
6dbd682b 452 mask = hc32_to_cpu(ehci, here.sitd
1da177e4
LT
453 ->hw_uframe);
454 /* FIXME assumes no gap for IN! */
455 mask |= mask >> 8;
456 if (mask & uf_mask)
457 break;
458 }
6dbd682b 459 type = Q_NEXT_TYPE(ehci, here.sitd->hw_next);
1da177e4
LT
460 here = here.sitd->sitd_next;
461 continue;
462 // case Q_TYPE_FSTN:
463 default:
464 ehci_dbg (ehci,
465 "periodic frame %d bogus type %d\n",
466 frame, type);
467 }
468
469 /* collision or error */
470 return 0;
471 }
472 }
473
474 /* no collision */
475 return 1;
476}
477
ba47f66b
DS
478#endif /* CONFIG_USB_EHCI_TT_NEWSCHED */
479
1da177e4
LT
480/*-------------------------------------------------------------------------*/
481
b015cb79 482static void enable_periodic(struct ehci_hcd *ehci)
1da177e4 483{
3ca9aeba 484 if (ehci->periodic_count++)
b015cb79 485 return;
01c17142 486
3ca9aeba
AS
487 /* Stop waiting to turn off the periodic schedule */
488 ehci->enabled_hrtimer_events &= ~BIT(EHCI_HRTIMER_DISABLE_PERIODIC);
1da177e4 489
3ca9aeba
AS
490 /* Don't start the schedule until PSS is 0 */
491 ehci_poll_PSS(ehci);
18aafe64 492 turn_on_io_watchdog(ehci);
1da177e4
LT
493}
494
b015cb79 495static void disable_periodic(struct ehci_hcd *ehci)
1da177e4 496{
3ca9aeba 497 if (--ehci->periodic_count)
b015cb79 498 return;
01c17142 499
3ca9aeba 500 ehci->next_uframe = -1; /* the periodic schedule is empty */
d63c66d2 501
3ca9aeba
AS
502 /* Don't turn off the schedule until PSS is 1 */
503 ehci_poll_PSS(ehci);
1da177e4
LT
504}
505
506/*-------------------------------------------------------------------------*/
507
508/* periodic schedule slots have iso tds (normal or split) first, then a
509 * sparse tree for active interrupt transfers.
510 *
511 * this just links in a qh; caller guarantees uframe masks are set right.
512 * no FSTN support (yet; ehci 0.96+)
513 */
b015cb79 514static void qh_link_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4
LT
515{
516 unsigned i;
517 unsigned period = qh->period;
518
519 dev_dbg (&qh->dev->dev,
520 "link qh%d-%04x/%p start %d [%d/%d us]\n",
3807e26d
AD
521 period, hc32_to_cpup(ehci, &qh->hw->hw_info2)
522 & (QH_CMASK | QH_SMASK),
1da177e4
LT
523 qh, qh->start, qh->usecs, qh->c_usecs);
524
525 /* high bandwidth, or otherwise every microframe */
526 if (period == 0)
527 period = 1;
528
529 for (i = qh->start; i < ehci->periodic_size; i += period) {
6dbd682b
SR
530 union ehci_shadow *prev = &ehci->pshadow[i];
531 __hc32 *hw_p = &ehci->periodic[i];
1da177e4 532 union ehci_shadow here = *prev;
6dbd682b 533 __hc32 type = 0;
1da177e4
LT
534
535 /* skip the iso nodes at list head */
536 while (here.ptr) {
6dbd682b
SR
537 type = Q_NEXT_TYPE(ehci, *hw_p);
538 if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
1da177e4 539 break;
6dbd682b 540 prev = periodic_next_shadow(ehci, prev, type);
3807e26d 541 hw_p = shadow_next_periodic(ehci, &here, type);
1da177e4
LT
542 here = *prev;
543 }
544
545 /* sorting each branch by period (slow-->fast)
546 * enables sharing interior tree nodes
547 */
548 while (here.ptr && qh != here.qh) {
549 if (qh->period > here.qh->period)
550 break;
551 prev = &here.qh->qh_next;
3807e26d 552 hw_p = &here.qh->hw->hw_next;
1da177e4
LT
553 here = *prev;
554 }
555 /* link in this qh, unless some earlier pass did that */
556 if (qh != here.qh) {
557 qh->qh_next = here;
558 if (here.qh)
3807e26d 559 qh->hw->hw_next = *hw_p;
1da177e4
LT
560 wmb ();
561 prev->qh = qh;
6dbd682b 562 *hw_p = QH_NEXT (ehci, qh->qh_dma);
1da177e4
LT
563 }
564 }
565 qh->qh_state = QH_STATE_LINKED;
ef4638f9 566 qh->xacterrs = 0;
1da177e4
LT
567
568 /* update per-qh bandwidth for usbfs */
569 ehci_to_hcd(ehci)->self.bandwidth_allocated += qh->period
570 ? ((qh->usecs + qh->c_usecs) / qh->period)
571 : (qh->usecs * 8);
572
569b394f
AS
573 list_add(&qh->intr_node, &ehci->intr_qh_list);
574
1da177e4 575 /* maybe enable periodic schedule processing */
569b394f 576 ++ehci->intr_count;
b015cb79 577 enable_periodic(ehci);
1da177e4
LT
578}
579
b015cb79 580static void qh_unlink_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4
LT
581{
582 unsigned i;
583 unsigned period;
584
df202255
AS
585 /*
586 * If qh is for a low/full-speed device, simply unlinking it
587 * could interfere with an ongoing split transaction. To unlink
588 * it safely would require setting the QH_INACTIVATE bit and
589 * waiting at least one frame, as described in EHCI 4.12.2.5.
590 *
591 * We won't bother with any of this. Instead, we assume that the
592 * only reason for unlinking an interrupt QH while the current URB
593 * is still active is to dequeue all the URBs (flush the whole
594 * endpoint queue).
595 *
596 * If rebalancing the periodic schedule is ever implemented, this
597 * approach will no longer be valid.
598 */
1da177e4
LT
599
600 /* high bandwidth, or otherwise part of every microframe */
601 if ((period = qh->period) == 0)
602 period = 1;
603
604 for (i = qh->start; i < ehci->periodic_size; i += period)
605 periodic_unlink (ehci, i, qh);
606
607 /* update per-qh bandwidth for usbfs */
608 ehci_to_hcd(ehci)->self.bandwidth_allocated -= qh->period
609 ? ((qh->usecs + qh->c_usecs) / qh->period)
610 : (qh->usecs * 8);
611
612 dev_dbg (&qh->dev->dev,
613 "unlink qh%d-%04x/%p start %d [%d/%d us]\n",
7dedacf4 614 qh->period,
3807e26d 615 hc32_to_cpup(ehci, &qh->hw->hw_info2) & (QH_CMASK | QH_SMASK),
1da177e4
LT
616 qh, qh->start, qh->usecs, qh->c_usecs);
617
618 /* qh->qh_next still "live" to HC */
619 qh->qh_state = QH_STATE_UNLINK;
620 qh->qh_next.ptr = NULL;
569b394f
AS
621
622 if (ehci->qh_scan_next == qh)
623 ehci->qh_scan_next = list_entry(qh->intr_node.next,
624 struct ehci_qh, intr_node);
625 list_del(&qh->intr_node);
1da177e4
LT
626}
627
df202255 628static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4 629{
a448c9d8
AS
630 /* If the QH isn't linked then there's nothing we can do
631 * unless we were called during a giveback, in which case
632 * qh_completions() has to deal with it.
633 */
634 if (qh->qh_state != QH_STATE_LINKED) {
635 if (qh->qh_state == QH_STATE_COMPLETING)
636 qh->needs_rescan = 1;
637 return;
638 }
1da177e4
LT
639
640 qh_unlink_periodic (ehci, qh);
641
df202255
AS
642 /* Make sure the unlinks are visible before starting the timer */
643 wmb();
644
645 /*
646 * The EHCI spec doesn't say how long it takes the controller to
647 * stop accessing an unlinked interrupt QH. The timer delay is
648 * 9 uframes; presumably that will be long enough.
1da177e4 649 */
df202255
AS
650 qh->unlink_cycle = ehci->intr_unlink_cycle;
651
652 /* New entries go at the end of the intr_unlink list */
653 if (ehci->intr_unlink)
654 ehci->intr_unlink_last->unlink_next = qh;
1da177e4 655 else
df202255
AS
656 ehci->intr_unlink = qh;
657 ehci->intr_unlink_last = qh;
658
659 if (ehci->intr_unlinking)
660 ; /* Avoid recursive calls */
661 else if (ehci->rh_state < EHCI_RH_RUNNING)
662 ehci_handle_intr_unlinks(ehci);
663 else if (ehci->intr_unlink == qh) {
664 ehci_enable_event(ehci, EHCI_HRTIMER_UNLINK_INTR, true);
665 ++ehci->intr_unlink_cycle;
666 }
667}
668
669static void end_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
670{
671 struct ehci_qh_hw *hw = qh->hw;
672 int rc;
1da177e4 673
1da177e4 674 qh->qh_state = QH_STATE_IDLE;
3807e26d 675 hw->hw_next = EHCI_LIST_END(ehci);
a448c9d8
AS
676
677 qh_completions(ehci, qh);
678
679 /* reschedule QH iff another request is queued */
df202255 680 if (!list_empty(&qh->qtd_list) && ehci->rh_state == EHCI_RH_RUNNING) {
a448c9d8
AS
681 rc = qh_schedule(ehci, qh);
682
683 /* An error here likely indicates handshake failure
684 * or no space left in the schedule. Neither fault
685 * should happen often ...
686 *
687 * FIXME kill the now-dysfunctional queued urbs
688 */
689 if (rc != 0)
690 ehci_err(ehci, "can't reschedule qh %p, err %d\n",
691 qh, rc);
692 }
3ca9aeba
AS
693
694 /* maybe turn off periodic schedule */
569b394f 695 --ehci->intr_count;
3ca9aeba 696 disable_periodic(ehci);
1da177e4
LT
697}
698
699/*-------------------------------------------------------------------------*/
700
701static int check_period (
53bd6a60 702 struct ehci_hcd *ehci,
1da177e4
LT
703 unsigned frame,
704 unsigned uframe,
705 unsigned period,
706 unsigned usecs
707) {
708 int claimed;
709
710 /* complete split running into next frame?
711 * given FSTN support, we could sometimes check...
712 */
713 if (uframe >= 8)
714 return 0;
715
cc62a7eb
KS
716 /* convert "usecs we need" to "max already claimed" */
717 usecs = ehci->uframe_periodic_max - usecs;
1da177e4
LT
718
719 /* we "know" 2 and 4 uframe intervals were rejected; so
720 * for period 0, check _every_ microframe in the schedule.
721 */
722 if (unlikely (period == 0)) {
723 do {
724 for (uframe = 0; uframe < 7; uframe++) {
725 claimed = periodic_usecs (ehci, frame, uframe);
726 if (claimed > usecs)
727 return 0;
728 }
729 } while ((frame += 1) < ehci->periodic_size);
730
731 /* just check the specified uframe, at that period */
732 } else {
733 do {
734 claimed = periodic_usecs (ehci, frame, uframe);
735 if (claimed > usecs)
736 return 0;
737 } while ((frame += period) < ehci->periodic_size);
738 }
739
740 // success!
741 return 1;
742}
743
744static int check_intr_schedule (
53bd6a60 745 struct ehci_hcd *ehci,
1da177e4
LT
746 unsigned frame,
747 unsigned uframe,
748 const struct ehci_qh *qh,
6dbd682b 749 __hc32 *c_maskp
1da177e4
LT
750)
751{
53bd6a60 752 int retval = -ENOSPC;
ba47f66b 753 u8 mask = 0;
1da177e4
LT
754
755 if (qh->c_usecs && uframe >= 6) /* FSTN territory? */
756 goto done;
757
758 if (!check_period (ehci, frame, uframe, qh->period, qh->usecs))
759 goto done;
760 if (!qh->c_usecs) {
761 retval = 0;
762 *c_maskp = 0;
763 goto done;
764 }
765
ba47f66b
DS
766#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
767 if (tt_available (ehci, qh->period, qh->dev, frame, uframe,
768 qh->tt_usecs)) {
769 unsigned i;
770
771 /* TODO : this may need FSTN for SSPLIT in uframe 5. */
772 for (i=uframe+1; i<8 && i<uframe+4; i++)
773 if (!check_period (ehci, frame, i,
774 qh->period, qh->c_usecs))
775 goto done;
776 else
777 mask |= 1 << i;
778
779 retval = 0;
780
6dbd682b 781 *c_maskp = cpu_to_hc32(ehci, mask << 8);
ba47f66b
DS
782 }
783#else
1da177e4
LT
784 /* Make sure this tt's buffer is also available for CSPLITs.
785 * We pessimize a bit; probably the typical full speed case
786 * doesn't need the second CSPLIT.
53bd6a60 787 *
1da177e4
LT
788 * NOTE: both SPLIT and CSPLIT could be checked in just
789 * one smart pass...
790 */
791 mask = 0x03 << (uframe + qh->gap_uf);
6dbd682b 792 *c_maskp = cpu_to_hc32(ehci, mask << 8);
1da177e4
LT
793
794 mask |= 1 << uframe;
795 if (tt_no_collision (ehci, qh->period, qh->dev, frame, mask)) {
796 if (!check_period (ehci, frame, uframe + qh->gap_uf + 1,
797 qh->period, qh->c_usecs))
798 goto done;
799 if (!check_period (ehci, frame, uframe + qh->gap_uf,
800 qh->period, qh->c_usecs))
801 goto done;
802 retval = 0;
803 }
ba47f66b 804#endif
1da177e4
LT
805done:
806 return retval;
807}
808
809/* "first fit" scheduling policy used the first time through,
810 * or when the previous schedule slot can't be re-used.
811 */
6dbd682b 812static int qh_schedule(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4 813{
53bd6a60 814 int status;
1da177e4 815 unsigned uframe;
6dbd682b 816 __hc32 c_mask;
1da177e4 817 unsigned frame; /* 0..(qh->period - 1), or NO_FRAME */
3807e26d 818 struct ehci_qh_hw *hw = qh->hw;
1da177e4
LT
819
820 qh_refresh(ehci, qh);
3807e26d 821 hw->hw_next = EHCI_LIST_END(ehci);
1da177e4
LT
822 frame = qh->start;
823
824 /* reuse the previous schedule slots, if we can */
825 if (frame < qh->period) {
3807e26d 826 uframe = ffs(hc32_to_cpup(ehci, &hw->hw_info2) & QH_SMASK);
1da177e4
LT
827 status = check_intr_schedule (ehci, frame, --uframe,
828 qh, &c_mask);
829 } else {
830 uframe = 0;
831 c_mask = 0;
832 status = -ENOSPC;
833 }
834
835 /* else scan the schedule to find a group of slots such that all
836 * uframes have enough periodic bandwidth available.
837 */
838 if (status) {
839 /* "normal" case, uframing flexible except with splits */
840 if (qh->period) {
68335e81
AS
841 int i;
842
843 for (i = qh->period; status && i > 0; --i) {
844 frame = ++ehci->random_frame % qh->period;
1da177e4
LT
845 for (uframe = 0; uframe < 8; uframe++) {
846 status = check_intr_schedule (ehci,
847 frame, uframe, qh,
848 &c_mask);
849 if (status == 0)
850 break;
851 }
68335e81 852 }
1da177e4
LT
853
854 /* qh->period == 0 means every uframe */
855 } else {
856 frame = 0;
857 status = check_intr_schedule (ehci, 0, 0, qh, &c_mask);
858 }
859 if (status)
860 goto done;
861 qh->start = frame;
862
863 /* reset S-frame and (maybe) C-frame masks */
3807e26d
AD
864 hw->hw_info2 &= cpu_to_hc32(ehci, ~(QH_CMASK | QH_SMASK));
865 hw->hw_info2 |= qh->period
6dbd682b
SR
866 ? cpu_to_hc32(ehci, 1 << uframe)
867 : cpu_to_hc32(ehci, QH_SMASK);
3807e26d 868 hw->hw_info2 |= c_mask;
1da177e4
LT
869 } else
870 ehci_dbg (ehci, "reused qh %p schedule\n", qh);
871
872 /* stuff into the periodic schedule */
b015cb79 873 qh_link_periodic(ehci, qh);
1da177e4
LT
874done:
875 return status;
876}
877
878static int intr_submit (
879 struct ehci_hcd *ehci,
1da177e4
LT
880 struct urb *urb,
881 struct list_head *qtd_list,
55016f10 882 gfp_t mem_flags
1da177e4
LT
883) {
884 unsigned epnum;
885 unsigned long flags;
886 struct ehci_qh *qh;
e9df41c5 887 int status;
1da177e4
LT
888 struct list_head empty;
889
890 /* get endpoint and transfer/schedule data */
e9df41c5 891 epnum = urb->ep->desc.bEndpointAddress;
1da177e4
LT
892
893 spin_lock_irqsave (&ehci->lock, flags);
894
541c7d43 895 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
8de98402 896 status = -ESHUTDOWN;
e9df41c5 897 goto done_not_linked;
8de98402 898 }
e9df41c5
AS
899 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
900 if (unlikely(status))
901 goto done_not_linked;
8de98402 902
1da177e4
LT
903 /* get qh and force any scheduling errors */
904 INIT_LIST_HEAD (&empty);
e9df41c5 905 qh = qh_append_tds(ehci, urb, &empty, epnum, &urb->ep->hcpriv);
1da177e4
LT
906 if (qh == NULL) {
907 status = -ENOMEM;
908 goto done;
909 }
910 if (qh->qh_state == QH_STATE_IDLE) {
911 if ((status = qh_schedule (ehci, qh)) != 0)
912 goto done;
913 }
914
915 /* then queue the urb's tds to the qh */
e9df41c5 916 qh = qh_append_tds(ehci, urb, qtd_list, epnum, &urb->ep->hcpriv);
1da177e4
LT
917 BUG_ON (qh == NULL);
918
919 /* ... update usbfs periodic stats */
920 ehci_to_hcd(ehci)->self.bandwidth_int_reqs++;
921
922done:
e9df41c5
AS
923 if (unlikely(status))
924 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
925done_not_linked:
1da177e4
LT
926 spin_unlock_irqrestore (&ehci->lock, flags);
927 if (status)
928 qtd_list_free (ehci, urb, qtd_list);
929
930 return status;
931}
932
569b394f
AS
933static void scan_intr(struct ehci_hcd *ehci)
934{
935 struct ehci_qh *qh;
936
937 list_for_each_entry_safe(qh, ehci->qh_scan_next, &ehci->intr_qh_list,
938 intr_node) {
939 rescan:
940 /* clean any finished work for this qh */
941 if (!list_empty(&qh->qtd_list)) {
942 int temp;
943
944 /*
945 * Unlinks could happen here; completion reporting
946 * drops the lock. That's why ehci->qh_scan_next
947 * always holds the next qh to scan; if the next qh
948 * gets unlinked then ehci->qh_scan_next is adjusted
949 * in qh_unlink_periodic().
950 */
951 temp = qh_completions(ehci, qh);
952 if (unlikely(qh->needs_rescan ||
953 (list_empty(&qh->qtd_list) &&
954 qh->qh_state == QH_STATE_LINKED)))
955 start_unlink_intr(ehci, qh);
956 else if (temp != 0)
957 goto rescan;
958 }
959 }
960}
961
1da177e4
LT
962/*-------------------------------------------------------------------------*/
963
964/* ehci_iso_stream ops work with both ITD and SITD */
965
966static struct ehci_iso_stream *
55016f10 967iso_stream_alloc (gfp_t mem_flags)
1da177e4
LT
968{
969 struct ehci_iso_stream *stream;
970
7b842b6e 971 stream = kzalloc(sizeof *stream, mem_flags);
1da177e4 972 if (likely (stream != NULL)) {
1da177e4
LT
973 INIT_LIST_HEAD(&stream->td_list);
974 INIT_LIST_HEAD(&stream->free_list);
975 stream->next_uframe = -1;
1da177e4
LT
976 }
977 return stream;
978}
979
980static void
981iso_stream_init (
982 struct ehci_hcd *ehci,
983 struct ehci_iso_stream *stream,
984 struct usb_device *dev,
985 int pipe,
986 unsigned interval
987)
988{
989 static const u8 smask_out [] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f };
990
991 u32 buf1;
992 unsigned epnum, maxp;
993 int is_input;
994 long bandwidth;
995
996 /*
997 * this might be a "high bandwidth" highspeed endpoint,
998 * as encoded in the ep descriptor's wMaxPacket field
999 */
1000 epnum = usb_pipeendpoint (pipe);
1001 is_input = usb_pipein (pipe) ? USB_DIR_IN : 0;
1002 maxp = usb_maxpacket(dev, pipe, !is_input);
1003 if (is_input) {
1004 buf1 = (1 << 11);
1005 } else {
1006 buf1 = 0;
1007 }
1008
1009 /* knows about ITD vs SITD */
1010 if (dev->speed == USB_SPEED_HIGH) {
1011 unsigned multi = hb_mult(maxp);
1012
1013 stream->highspeed = 1;
1014
1015 maxp = max_packet(maxp);
1016 buf1 |= maxp;
1017 maxp *= multi;
1018
6dbd682b
SR
1019 stream->buf0 = cpu_to_hc32(ehci, (epnum << 8) | dev->devnum);
1020 stream->buf1 = cpu_to_hc32(ehci, buf1);
1021 stream->buf2 = cpu_to_hc32(ehci, multi);
1da177e4
LT
1022
1023 /* usbfs wants to report the average usecs per frame tied up
1024 * when transfers on this endpoint are scheduled ...
1025 */
1026 stream->usecs = HS_USECS_ISO (maxp);
1027 bandwidth = stream->usecs * 8;
372dd6e8 1028 bandwidth /= interval;
1da177e4
LT
1029
1030 } else {
1031 u32 addr;
d0384200 1032 int think_time;
469d0229 1033 int hs_transfers;
1da177e4
LT
1034
1035 addr = dev->ttport << 24;
1036 if (!ehci_is_TDI(ehci)
1037 || (dev->tt->hub !=
1038 ehci_to_hcd(ehci)->self.root_hub))
1039 addr |= dev->tt->hub->devnum << 16;
1040 addr |= epnum << 8;
1041 addr |= dev->devnum;
1042 stream->usecs = HS_USECS_ISO (maxp);
d0384200
DB
1043 think_time = dev->tt ? dev->tt->think_time : 0;
1044 stream->tt_usecs = NS_TO_US (think_time + usb_calc_bus_time (
1045 dev->speed, is_input, 1, maxp));
469d0229 1046 hs_transfers = max (1u, (maxp + 187) / 188);
1da177e4
LT
1047 if (is_input) {
1048 u32 tmp;
1049
1050 addr |= 1 << 31;
1051 stream->c_usecs = stream->usecs;
1052 stream->usecs = HS_USECS_ISO (1);
1053 stream->raw_mask = 1;
1054
469d0229
CL
1055 /* c-mask as specified in USB 2.0 11.18.4 3.c */
1056 tmp = (1 << (hs_transfers + 2)) - 1;
1057 stream->raw_mask |= tmp << (8 + 2);
1da177e4 1058 } else
469d0229 1059 stream->raw_mask = smask_out [hs_transfers - 1];
1da177e4 1060 bandwidth = stream->usecs + stream->c_usecs;
372dd6e8 1061 bandwidth /= interval << 3;
1da177e4
LT
1062
1063 /* stream->splits gets created from raw_mask later */
6dbd682b 1064 stream->address = cpu_to_hc32(ehci, addr);
1da177e4
LT
1065 }
1066 stream->bandwidth = bandwidth;
1067
1068 stream->udev = dev;
1069
1070 stream->bEndpointAddress = is_input | epnum;
1071 stream->interval = interval;
1072 stream->maxp = maxp;
1073}
1074
1da177e4
LT
1075static struct ehci_iso_stream *
1076iso_stream_find (struct ehci_hcd *ehci, struct urb *urb)
1077{
1078 unsigned epnum;
1079 struct ehci_iso_stream *stream;
1080 struct usb_host_endpoint *ep;
1081 unsigned long flags;
1082
1083 epnum = usb_pipeendpoint (urb->pipe);
1084 if (usb_pipein(urb->pipe))
1085 ep = urb->dev->ep_in[epnum];
1086 else
1087 ep = urb->dev->ep_out[epnum];
1088
1089 spin_lock_irqsave (&ehci->lock, flags);
1090 stream = ep->hcpriv;
1091
1092 if (unlikely (stream == NULL)) {
1093 stream = iso_stream_alloc(GFP_ATOMIC);
1094 if (likely (stream != NULL)) {
1da177e4
LT
1095 ep->hcpriv = stream;
1096 stream->ep = ep;
1097 iso_stream_init(ehci, stream, urb->dev, urb->pipe,
1098 urb->interval);
1099 }
1100
1082f57a
CL
1101 /* if dev->ep [epnum] is a QH, hw is set */
1102 } else if (unlikely (stream->hw != NULL)) {
1da177e4
LT
1103 ehci_dbg (ehci, "dev %s ep%d%s, not iso??\n",
1104 urb->dev->devpath, epnum,
1105 usb_pipein(urb->pipe) ? "in" : "out");
1106 stream = NULL;
1107 }
1108
1da177e4
LT
1109 spin_unlock_irqrestore (&ehci->lock, flags);
1110 return stream;
1111}
1112
1113/*-------------------------------------------------------------------------*/
1114
1115/* ehci_iso_sched ops can be ITD-only or SITD-only */
1116
1117static struct ehci_iso_sched *
55016f10 1118iso_sched_alloc (unsigned packets, gfp_t mem_flags)
1da177e4
LT
1119{
1120 struct ehci_iso_sched *iso_sched;
1121 int size = sizeof *iso_sched;
1122
1123 size += packets * sizeof (struct ehci_iso_packet);
80b6ca48 1124 iso_sched = kzalloc(size, mem_flags);
1da177e4 1125 if (likely (iso_sched != NULL)) {
1da177e4
LT
1126 INIT_LIST_HEAD (&iso_sched->td_list);
1127 }
1128 return iso_sched;
1129}
1130
1131static inline void
6dbd682b
SR
1132itd_sched_init(
1133 struct ehci_hcd *ehci,
1da177e4
LT
1134 struct ehci_iso_sched *iso_sched,
1135 struct ehci_iso_stream *stream,
1136 struct urb *urb
1137)
1138{
1139 unsigned i;
1140 dma_addr_t dma = urb->transfer_dma;
1141
1142 /* how many uframes are needed for these transfers */
1143 iso_sched->span = urb->number_of_packets * stream->interval;
1144
1145 /* figure out per-uframe itd fields that we'll need later
1146 * when we fit new itds into the schedule.
1147 */
1148 for (i = 0; i < urb->number_of_packets; i++) {
1149 struct ehci_iso_packet *uframe = &iso_sched->packet [i];
1150 unsigned length;
1151 dma_addr_t buf;
1152 u32 trans;
1153
1154 length = urb->iso_frame_desc [i].length;
1155 buf = dma + urb->iso_frame_desc [i].offset;
1156
1157 trans = EHCI_ISOC_ACTIVE;
1158 trans |= buf & 0x0fff;
1159 if (unlikely (((i + 1) == urb->number_of_packets))
1160 && !(urb->transfer_flags & URB_NO_INTERRUPT))
1161 trans |= EHCI_ITD_IOC;
1162 trans |= length << 16;
6dbd682b 1163 uframe->transaction = cpu_to_hc32(ehci, trans);
1da177e4 1164
77078570 1165 /* might need to cross a buffer page within a uframe */
1da177e4
LT
1166 uframe->bufp = (buf & ~(u64)0x0fff);
1167 buf += length;
1168 if (unlikely ((uframe->bufp != (buf & ~(u64)0x0fff))))
1169 uframe->cross = 1;
1170 }
1171}
1172
1173static void
1174iso_sched_free (
1175 struct ehci_iso_stream *stream,
1176 struct ehci_iso_sched *iso_sched
1177)
1178{
1179 if (!iso_sched)
1180 return;
1181 // caller must hold ehci->lock!
1182 list_splice (&iso_sched->td_list, &stream->free_list);
1183 kfree (iso_sched);
1184}
1185
1186static int
1187itd_urb_transaction (
1188 struct ehci_iso_stream *stream,
1189 struct ehci_hcd *ehci,
1190 struct urb *urb,
55016f10 1191 gfp_t mem_flags
1da177e4
LT
1192)
1193{
1194 struct ehci_itd *itd;
1195 dma_addr_t itd_dma;
1196 int i;
1197 unsigned num_itds;
1198 struct ehci_iso_sched *sched;
1199 unsigned long flags;
1200
1201 sched = iso_sched_alloc (urb->number_of_packets, mem_flags);
1202 if (unlikely (sched == NULL))
1203 return -ENOMEM;
1204
6dbd682b 1205 itd_sched_init(ehci, sched, stream, urb);
1da177e4
LT
1206
1207 if (urb->interval < 8)
1208 num_itds = 1 + (sched->span + 7) / 8;
1209 else
1210 num_itds = urb->number_of_packets;
1211
1212 /* allocate/init ITDs */
1213 spin_lock_irqsave (&ehci->lock, flags);
1214 for (i = 0; i < num_itds; i++) {
1215
55934eb3
AS
1216 /*
1217 * Use iTDs from the free list, but not iTDs that may
1218 * still be in use by the hardware.
1da177e4 1219 */
55934eb3
AS
1220 if (likely(!list_empty(&stream->free_list))) {
1221 itd = list_first_entry(&stream->free_list,
6dbd682b 1222 struct ehci_itd, itd_list);
55934eb3
AS
1223 if (itd->frame == ehci->clock_frame)
1224 goto alloc_itd;
1da177e4
LT
1225 list_del (&itd->itd_list);
1226 itd_dma = itd->itd_dma;
3d01f0fe 1227 } else {
55934eb3 1228 alloc_itd:
1da177e4
LT
1229 spin_unlock_irqrestore (&ehci->lock, flags);
1230 itd = dma_pool_alloc (ehci->itd_pool, mem_flags,
1231 &itd_dma);
1232 spin_lock_irqsave (&ehci->lock, flags);
3d01f0fe
KW
1233 if (!itd) {
1234 iso_sched_free(stream, sched);
1235 spin_unlock_irqrestore(&ehci->lock, flags);
1236 return -ENOMEM;
1237 }
1da177e4
LT
1238 }
1239
1da177e4
LT
1240 memset (itd, 0, sizeof *itd);
1241 itd->itd_dma = itd_dma;
1242 list_add (&itd->itd_list, &sched->td_list);
1243 }
1244 spin_unlock_irqrestore (&ehci->lock, flags);
1245
1246 /* temporarily store schedule info in hcpriv */
1247 urb->hcpriv = sched;
1248 urb->error_count = 0;
1249 return 0;
1250}
1251
1252/*-------------------------------------------------------------------------*/
1253
1254static inline int
1255itd_slot_ok (
1256 struct ehci_hcd *ehci,
1257 u32 mod,
1258 u32 uframe,
1259 u8 usecs,
1260 u32 period
1261)
1262{
1263 uframe %= period;
1264 do {
cc62a7eb 1265 /* can't commit more than uframe_periodic_max usec */
1da177e4 1266 if (periodic_usecs (ehci, uframe >> 3, uframe & 0x7)
cc62a7eb 1267 > (ehci->uframe_periodic_max - usecs))
1da177e4
LT
1268 return 0;
1269
1270 /* we know urb->interval is 2^N uframes */
1271 uframe += period;
1272 } while (uframe < mod);
1273 return 1;
1274}
1275
1276static inline int
1277sitd_slot_ok (
1278 struct ehci_hcd *ehci,
1279 u32 mod,
1280 struct ehci_iso_stream *stream,
1281 u32 uframe,
1282 struct ehci_iso_sched *sched,
1283 u32 period_uframes
1284)
1285{
1286 u32 mask, tmp;
1287 u32 frame, uf;
1288
1289 mask = stream->raw_mask << (uframe & 7);
1290
1291 /* for IN, don't wrap CSPLIT into the next frame */
1292 if (mask & ~0xffff)
1293 return 0;
1294
65b8e5cb
AS
1295 /* check bandwidth */
1296 uframe %= period_uframes;
1297 frame = uframe >> 3;
1298
1299#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
1300 /* The tt's fullspeed bus bandwidth must be available.
1301 * tt_available scheduling guarantees 10+% for control/bulk.
1302 */
1303 uf = uframe & 7;
1304 if (!tt_available(ehci, period_uframes >> 3,
1305 stream->udev, frame, uf, stream->tt_usecs))
1306 return 0;
1307#else
1308 /* tt must be idle for start(s), any gap, and csplit.
1309 * assume scheduling slop leaves 10+% for control/bulk.
1310 */
1311 if (!tt_no_collision(ehci, period_uframes >> 3,
1312 stream->udev, frame, mask))
1313 return 0;
1314#endif
1315
1da177e4
LT
1316 /* this multi-pass logic is simple, but performance may
1317 * suffer when the schedule data isn't cached.
1318 */
1da177e4
LT
1319 do {
1320 u32 max_used;
1321
1322 frame = uframe >> 3;
1323 uf = uframe & 7;
1324
1da177e4 1325 /* check starts (OUT uses more than one) */
cc62a7eb 1326 max_used = ehci->uframe_periodic_max - stream->usecs;
1da177e4
LT
1327 for (tmp = stream->raw_mask & 0xff; tmp; tmp >>= 1, uf++) {
1328 if (periodic_usecs (ehci, frame, uf) > max_used)
1329 return 0;
1330 }
1331
1332 /* for IN, check CSPLIT */
1333 if (stream->c_usecs) {
0c734622 1334 uf = uframe & 7;
cc62a7eb 1335 max_used = ehci->uframe_periodic_max - stream->c_usecs;
1da177e4
LT
1336 do {
1337 tmp = 1 << uf;
1338 tmp <<= 8;
1339 if ((stream->raw_mask & tmp) == 0)
1340 continue;
1341 if (periodic_usecs (ehci, frame, uf)
1342 > max_used)
1343 return 0;
1344 } while (++uf < 8);
1345 }
1346
1347 /* we know urb->interval is 2^N uframes */
1348 uframe += period_uframes;
1349 } while (uframe < mod);
1350
6dbd682b 1351 stream->splits = cpu_to_hc32(ehci, stream->raw_mask << (uframe & 7));
1da177e4
LT
1352 return 1;
1353}
1354
1355/*
1356 * This scheduler plans almost as far into the future as it has actual
1357 * periodic schedule slots. (Affected by TUNE_FLS, which defaults to
1358 * "as small as possible" to be cache-friendlier.) That limits the size
1359 * transfers you can stream reliably; avoid more than 64 msec per urb.
1360 * Also avoid queue depths of less than ehci's worst irq latency (affected
1361 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
1362 * and other factors); or more than about 230 msec total (for portability,
1363 * given EHCI_TUNE_FLS and the slop). Or, write a smarter scheduler!
1364 */
1365
d7e055f1 1366#define SCHEDULE_SLOP 80 /* microframes */
1da177e4
LT
1367
1368static int
1369iso_stream_schedule (
1370 struct ehci_hcd *ehci,
1371 struct urb *urb,
1372 struct ehci_iso_stream *stream
1373)
1374{
ffda0803 1375 u32 now, next, start, period, span;
1da177e4
LT
1376 int status;
1377 unsigned mod = ehci->periodic_size << 3;
1378 struct ehci_iso_sched *sched = urb->hcpriv;
1379
ffda0803
AS
1380 period = urb->interval;
1381 span = sched->span;
1382 if (!stream->highspeed) {
1383 period <<= 3;
1384 span <<= 3;
1385 }
1386
1387 if (span > mod - SCHEDULE_SLOP) {
1da177e4
LT
1388 ehci_dbg (ehci, "iso request %p too long\n", urb);
1389 status = -EFBIG;
1390 goto fail;
1391 }
1392
68aa95d5 1393 now = ehci_read_frame_index(ehci) & (mod - 1);
1da177e4 1394
b40e43fc
AS
1395 /* Typical case: reuse current schedule, stream is still active.
1396 * Hopefully there are no gaps from the host falling behind
1397 * (irq delays etc), but if there are we'll take the next
1398 * slot in the schedule, implicitly assuming URB_ISO_ASAP.
1da177e4
LT
1399 */
1400 if (likely (!list_empty (&stream->td_list))) {
1fb2e055 1401 u32 excess;
dccd574c
SS
1402
1403 /* For high speed devices, allow scheduling within the
ae68a83b
AS
1404 * isochronous scheduling threshold. For full speed devices
1405 * and Intel PCI-based controllers, don't (work around for
1406 * Intel ICH9 bug).
dccd574c 1407 */
ae68a83b 1408 if (!stream->highspeed && ehci->fs_i_thresh)
dccd574c
SS
1409 next = now + ehci->i_thresh;
1410 else
1411 next = now;
b40e43fc 1412
1fb2e055
AS
1413 /* Fell behind (by up to twice the slop amount)?
1414 * We decide based on the time of the last currently-scheduled
1415 * slot, not the time of the next available slot.
1416 */
1417 excess = (stream->next_uframe - period - next) & (mod - 1);
1418 if (excess >= mod - 2 * SCHEDULE_SLOP)
1419 start = next + excess - mod + period *
1420 DIV_ROUND_UP(mod - excess, period);
1421 else
1422 start = next + excess + period;
1423 if (start - now >= mod) {
1424 ehci_dbg(ehci, "request %p would overflow (%d+%d >= %d)\n",
1425 urb, start - now - period, period,
1426 mod);
b40e43fc
AS
1427 status = -EFBIG;
1428 goto fail;
1429 }
1da177e4
LT
1430 }
1431
1432 /* need to schedule; when's the next (u)frame we could start?
1433 * this is bigger than ehci->i_thresh allows; scheduling itself
1434 * isn't free, the slop should handle reasonably slow cpus. it
1435 * can also help high bandwidth if the dma and irq loads don't
1436 * jump until after the queue is primed.
1437 */
1fb2e055 1438 else {
e3420901 1439 int done = 0;
1fb2e055
AS
1440 start = SCHEDULE_SLOP + (now & ~0x07);
1441
1442 /* NOTE: assumes URB_ISO_ASAP, to limit complexity/bugs */
1443
811c926c
TP
1444 /* find a uframe slot with enough bandwidth.
1445 * Early uframes are more precious because full-speed
1446 * iso IN transfers can't use late uframes,
1447 * and therefore they should be allocated last.
1448 */
1449 next = start;
1450 start += period;
1451 do {
1452 start--;
1fb2e055
AS
1453 /* check schedule: enough space? */
1454 if (stream->highspeed) {
1455 if (itd_slot_ok(ehci, mod, start,
1456 stream->usecs, period))
e3420901 1457 done = 1;
1fb2e055
AS
1458 } else {
1459 if ((start % 8) >= 6)
1460 continue;
1461 if (sitd_slot_ok(ehci, mod, stream,
1462 start, sched, period))
e3420901 1463 done = 1;
1fb2e055 1464 }
e3420901 1465 } while (start > next && !done);
1da177e4 1466
1fb2e055 1467 /* no room in the schedule */
e3420901 1468 if (!done) {
1fb2e055
AS
1469 ehci_dbg(ehci, "iso resched full %p (now %d max %d)\n",
1470 urb, now, now + mod);
1471 status = -ENOSPC;
1472 goto fail;
1da177e4
LT
1473 }
1474 }
1475
1fb2e055
AS
1476 /* Tried to schedule too far into the future? */
1477 if (unlikely(start - now + span - period
1478 >= mod - 2 * SCHEDULE_SLOP)) {
1479 ehci_dbg(ehci, "request %p would overflow (%d+%d >= %d)\n",
1480 urb, start - now, span - period,
1481 mod - 2 * SCHEDULE_SLOP);
1482 status = -EFBIG;
1483 goto fail;
1484 }
1da177e4 1485
1fb2e055 1486 stream->next_uframe = start & (mod - 1);
1da177e4 1487
1da177e4
LT
1488 /* report high speed start in uframes; full speed, in frames */
1489 urb->start_frame = stream->next_uframe;
1490 if (!stream->highspeed)
1491 urb->start_frame >>= 3;
569b394f
AS
1492
1493 /* Make sure scan_isoc() sees these */
1494 if (ehci->isoc_count == 0)
1495 ehci->next_uframe = now;
1da177e4 1496 return 0;
1fb2e055
AS
1497
1498 fail:
1499 iso_sched_free(stream, sched);
1500 urb->hcpriv = NULL;
1501 return status;
1da177e4
LT
1502}
1503
1504/*-------------------------------------------------------------------------*/
1505
1506static inline void
6dbd682b
SR
1507itd_init(struct ehci_hcd *ehci, struct ehci_iso_stream *stream,
1508 struct ehci_itd *itd)
1da177e4
LT
1509{
1510 int i;
1511
77078570 1512 /* it's been recently zeroed */
6dbd682b 1513 itd->hw_next = EHCI_LIST_END(ehci);
1da177e4
LT
1514 itd->hw_bufp [0] = stream->buf0;
1515 itd->hw_bufp [1] = stream->buf1;
1516 itd->hw_bufp [2] = stream->buf2;
1517
1518 for (i = 0; i < 8; i++)
1519 itd->index[i] = -1;
1520
1521 /* All other fields are filled when scheduling */
1522}
1523
1524static inline void
6dbd682b
SR
1525itd_patch(
1526 struct ehci_hcd *ehci,
1da177e4
LT
1527 struct ehci_itd *itd,
1528 struct ehci_iso_sched *iso_sched,
1529 unsigned index,
77078570 1530 u16 uframe
1da177e4
LT
1531)
1532{
1533 struct ehci_iso_packet *uf = &iso_sched->packet [index];
1534 unsigned pg = itd->pg;
1535
1536 // BUG_ON (pg == 6 && uf->cross);
1537
1538 uframe &= 0x07;
1539 itd->index [uframe] = index;
1540
6dbd682b
SR
1541 itd->hw_transaction[uframe] = uf->transaction;
1542 itd->hw_transaction[uframe] |= cpu_to_hc32(ehci, pg << 12);
1543 itd->hw_bufp[pg] |= cpu_to_hc32(ehci, uf->bufp & ~(u32)0);
1544 itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(uf->bufp >> 32));
1da177e4
LT
1545
1546 /* iso_frame_desc[].offset must be strictly increasing */
77078570 1547 if (unlikely (uf->cross)) {
1da177e4 1548 u64 bufp = uf->bufp + 4096;
6dbd682b 1549
1da177e4 1550 itd->pg = ++pg;
6dbd682b
SR
1551 itd->hw_bufp[pg] |= cpu_to_hc32(ehci, bufp & ~(u32)0);
1552 itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(bufp >> 32));
1da177e4
LT
1553 }
1554}
1555
1556static inline void
1557itd_link (struct ehci_hcd *ehci, unsigned frame, struct ehci_itd *itd)
1558{
92bc3648
CL
1559 union ehci_shadow *prev = &ehci->pshadow[frame];
1560 __hc32 *hw_p = &ehci->periodic[frame];
1561 union ehci_shadow here = *prev;
1562 __hc32 type = 0;
1563
1564 /* skip any iso nodes which might belong to previous microframes */
1565 while (here.ptr) {
1566 type = Q_NEXT_TYPE(ehci, *hw_p);
1567 if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
1568 break;
1569 prev = periodic_next_shadow(ehci, prev, type);
1570 hw_p = shadow_next_periodic(ehci, &here, type);
1571 here = *prev;
1572 }
1573
1574 itd->itd_next = here;
1575 itd->hw_next = *hw_p;
1576 prev->itd = itd;
1da177e4
LT
1577 itd->frame = frame;
1578 wmb ();
92bc3648 1579 *hw_p = cpu_to_hc32(ehci, itd->itd_dma | Q_TYPE_ITD);
1da177e4
LT
1580}
1581
1582/* fit urb's itds into the selected schedule slot; activate as needed */
b015cb79 1583static void itd_link_urb(
1da177e4
LT
1584 struct ehci_hcd *ehci,
1585 struct urb *urb,
1586 unsigned mod,
1587 struct ehci_iso_stream *stream
1588)
1589{
77078570 1590 int packet;
1da177e4
LT
1591 unsigned next_uframe, uframe, frame;
1592 struct ehci_iso_sched *iso_sched = urb->hcpriv;
1593 struct ehci_itd *itd;
1594
bccbefaa 1595 next_uframe = stream->next_uframe & (mod - 1);
1da177e4
LT
1596
1597 if (unlikely (list_empty(&stream->td_list))) {
1598 ehci_to_hcd(ehci)->self.bandwidth_allocated
1599 += stream->bandwidth;
1600 ehci_vdbg (ehci,
1601 "schedule devp %s ep%d%s-iso period %d start %d.%d\n",
1602 urb->dev->devpath, stream->bEndpointAddress & 0x0f,
1603 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
1604 urb->interval,
1605 next_uframe >> 3, next_uframe & 0x7);
1da177e4 1606 }
05570297
AH
1607
1608 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
ad93562b
AX
1609 if (ehci->amd_pll_fix == 1)
1610 usb_amd_quirk_pll_disable();
05570297
AH
1611 }
1612
1da177e4
LT
1613 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
1614
1615 /* fill iTDs uframe by uframe */
1616 for (packet = 0, itd = NULL; packet < urb->number_of_packets; ) {
1617 if (itd == NULL) {
1618 /* ASSERT: we have all necessary itds */
1619 // BUG_ON (list_empty (&iso_sched->td_list));
1620
1621 /* ASSERT: no itds for this endpoint in this uframe */
1622
1623 itd = list_entry (iso_sched->td_list.next,
1624 struct ehci_itd, itd_list);
1625 list_move_tail (&itd->itd_list, &stream->td_list);
8c5bf7be 1626 itd->stream = stream;
508db8c9 1627 itd->urb = urb;
6dbd682b 1628 itd_init (ehci, stream, itd);
1da177e4
LT
1629 }
1630
1631 uframe = next_uframe & 0x07;
1632 frame = next_uframe >> 3;
1633
6dbd682b 1634 itd_patch(ehci, itd, iso_sched, packet, uframe);
1da177e4
LT
1635
1636 next_uframe += stream->interval;
bccbefaa 1637 next_uframe &= mod - 1;
1da177e4
LT
1638 packet++;
1639
1640 /* link completed itds into the schedule */
1641 if (((next_uframe >> 3) != frame)
1642 || packet == urb->number_of_packets) {
bccbefaa 1643 itd_link(ehci, frame & (ehci->periodic_size - 1), itd);
1da177e4
LT
1644 itd = NULL;
1645 }
1646 }
1647 stream->next_uframe = next_uframe;
1648
1649 /* don't need that schedule data any more */
1650 iso_sched_free (stream, iso_sched);
1651 urb->hcpriv = NULL;
1652
569b394f 1653 ++ehci->isoc_count;
b015cb79 1654 enable_periodic(ehci);
1da177e4
LT
1655}
1656
1657#define ISO_ERRS (EHCI_ISOC_BUF_ERR | EHCI_ISOC_BABBLE | EHCI_ISOC_XACTERR)
1658
30bf54e6
DB
1659/* Process and recycle a completed ITD. Return true iff its urb completed,
1660 * and hence its completion callback probably added things to the hardware
1661 * schedule.
1662 *
1663 * Note that we carefully avoid recycling this descriptor until after any
1664 * completion callback runs, so that it won't be reused quickly. That is,
1665 * assuming (a) no more than two urbs per frame on this endpoint, and also
1666 * (b) only this endpoint's completions submit URBs. It seems some silicon
1667 * corrupts things if you reuse completed descriptors very quickly...
1668 */
1da177e4
LT
1669static unsigned
1670itd_complete (
1671 struct ehci_hcd *ehci,
7d12e780 1672 struct ehci_itd *itd
1da177e4
LT
1673) {
1674 struct urb *urb = itd->urb;
1675 struct usb_iso_packet_descriptor *desc;
1676 u32 t;
1677 unsigned uframe;
1678 int urb_index = -1;
1679 struct ehci_iso_stream *stream = itd->stream;
1680 struct usb_device *dev;
30bf54e6 1681 unsigned retval = false;
1da177e4
LT
1682
1683 /* for each uframe with a packet */
1684 for (uframe = 0; uframe < 8; uframe++) {
1685 if (likely (itd->index[uframe] == -1))
1686 continue;
1687 urb_index = itd->index[uframe];
1688 desc = &urb->iso_frame_desc [urb_index];
1689
6dbd682b 1690 t = hc32_to_cpup(ehci, &itd->hw_transaction [uframe]);
1da177e4 1691 itd->hw_transaction [uframe] = 0;
1da177e4
LT
1692
1693 /* report transfer status */
1694 if (unlikely (t & ISO_ERRS)) {
1695 urb->error_count++;
1696 if (t & EHCI_ISOC_BUF_ERR)
1697 desc->status = usb_pipein (urb->pipe)
1698 ? -ENOSR /* hc couldn't read */
1699 : -ECOMM; /* hc couldn't write */
1700 else if (t & EHCI_ISOC_BABBLE)
1701 desc->status = -EOVERFLOW;
1702 else /* (t & EHCI_ISOC_XACTERR) */
1703 desc->status = -EPROTO;
1704
1705 /* HC need not update length with this error */
ec6d67e3
AS
1706 if (!(t & EHCI_ISOC_BABBLE)) {
1707 desc->actual_length = EHCI_ITD_LENGTH(t);
1708 urb->actual_length += desc->actual_length;
1709 }
1da177e4
LT
1710 } else if (likely ((t & EHCI_ISOC_ACTIVE) == 0)) {
1711 desc->status = 0;
ec6d67e3
AS
1712 desc->actual_length = EHCI_ITD_LENGTH(t);
1713 urb->actual_length += desc->actual_length;
b40e43fc
AS
1714 } else {
1715 /* URB was too late */
1716 desc->status = -EXDEV;
1da177e4
LT
1717 }
1718 }
1719
1da177e4
LT
1720 /* handle completion now? */
1721 if (likely ((urb_index + 1) != urb->number_of_packets))
30bf54e6 1722 goto done;
1da177e4
LT
1723
1724 /* ASSERT: it's really the last itd for this urb
1725 list_for_each_entry (itd, &stream->td_list, itd_list)
1726 BUG_ON (itd->urb == urb);
1727 */
1728
aa16ca30 1729 /* give urb back to the driver; completion often (re)submits */
6a8e87b2 1730 dev = urb->dev;
14c04c0f 1731 ehci_urb_done(ehci, urb, 0);
30bf54e6 1732 retval = true;
1da177e4 1733 urb = NULL;
569b394f
AS
1734
1735 --ehci->isoc_count;
b015cb79 1736 disable_periodic(ehci);
1da177e4 1737
569b394f 1738 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
05570297 1739 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
ad93562b
AX
1740 if (ehci->amd_pll_fix == 1)
1741 usb_amd_quirk_pll_enable();
05570297
AH
1742 }
1743
508db8c9 1744 if (unlikely(list_is_singular(&stream->td_list))) {
1da177e4
LT
1745 ehci_to_hcd(ehci)->self.bandwidth_allocated
1746 -= stream->bandwidth;
1747 ehci_vdbg (ehci,
1748 "deschedule devp %s ep%d%s-iso\n",
1749 dev->devpath, stream->bEndpointAddress & 0x0f,
1750 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out");
1751 }
9aa09d2f 1752
30bf54e6 1753done:
30bf54e6 1754 itd->urb = NULL;
55934eb3
AS
1755
1756 /* Add to the end of the free list for later reuse */
1757 list_move_tail(&itd->itd_list, &stream->free_list);
1758
1759 /* Recycle the iTDs when the pipeline is empty (ep no longer in use) */
1760 if (list_empty(&stream->td_list)) {
1761 list_splice_tail_init(&stream->free_list,
1762 &ehci->cached_itd_list);
1763 start_free_itds(ehci);
9aa09d2f 1764 }
55934eb3 1765
30bf54e6 1766 return retval;
1da177e4
LT
1767}
1768
1769/*-------------------------------------------------------------------------*/
1770
5db539e4 1771static int itd_submit (struct ehci_hcd *ehci, struct urb *urb,
55016f10 1772 gfp_t mem_flags)
1da177e4
LT
1773{
1774 int status = -EINVAL;
1775 unsigned long flags;
1776 struct ehci_iso_stream *stream;
1777
1778 /* Get iso_stream head */
1779 stream = iso_stream_find (ehci, urb);
1780 if (unlikely (stream == NULL)) {
1781 ehci_dbg (ehci, "can't get iso stream\n");
1782 return -ENOMEM;
1783 }
1784 if (unlikely (urb->interval != stream->interval)) {
1785 ehci_dbg (ehci, "can't change iso interval %d --> %d\n",
1786 stream->interval, urb->interval);
1787 goto done;
1788 }
1789
1790#ifdef EHCI_URB_TRACE
1791 ehci_dbg (ehci,
1792 "%s %s urb %p ep%d%s len %d, %d pkts %d uframes [%p]\n",
441b62c1 1793 __func__, urb->dev->devpath, urb,
1da177e4
LT
1794 usb_pipeendpoint (urb->pipe),
1795 usb_pipein (urb->pipe) ? "in" : "out",
1796 urb->transfer_buffer_length,
1797 urb->number_of_packets, urb->interval,
1798 stream);
1799#endif
1800
1801 /* allocate ITDs w/o locking anything */
1802 status = itd_urb_transaction (stream, ehci, urb, mem_flags);
1803 if (unlikely (status < 0)) {
1804 ehci_dbg (ehci, "can't init itds\n");
1805 goto done;
1806 }
1807
1808 /* schedule ... need to lock */
1809 spin_lock_irqsave (&ehci->lock, flags);
541c7d43 1810 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
8de98402 1811 status = -ESHUTDOWN;
e9df41c5
AS
1812 goto done_not_linked;
1813 }
1814 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
1815 if (unlikely(status))
1816 goto done_not_linked;
1817 status = iso_stream_schedule(ehci, urb, stream);
53bd6a60 1818 if (likely (status == 0))
1da177e4 1819 itd_link_urb (ehci, urb, ehci->periodic_size << 3, stream);
e9df41c5
AS
1820 else
1821 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
8c5bf7be 1822 done_not_linked:
1da177e4 1823 spin_unlock_irqrestore (&ehci->lock, flags);
8c5bf7be 1824 done:
1da177e4
LT
1825 return status;
1826}
1827
1da177e4
LT
1828/*-------------------------------------------------------------------------*/
1829
1830/*
1831 * "Split ISO TDs" ... used for USB 1.1 devices going through the
1832 * TTs in USB 2.0 hubs. These need microframe scheduling.
1833 */
1834
1835static inline void
6dbd682b
SR
1836sitd_sched_init(
1837 struct ehci_hcd *ehci,
1da177e4
LT
1838 struct ehci_iso_sched *iso_sched,
1839 struct ehci_iso_stream *stream,
1840 struct urb *urb
1841)
1842{
1843 unsigned i;
1844 dma_addr_t dma = urb->transfer_dma;
1845
1846 /* how many frames are needed for these transfers */
1847 iso_sched->span = urb->number_of_packets * stream->interval;
1848
1849 /* figure out per-frame sitd fields that we'll need later
1850 * when we fit new sitds into the schedule.
1851 */
1852 for (i = 0; i < urb->number_of_packets; i++) {
1853 struct ehci_iso_packet *packet = &iso_sched->packet [i];
1854 unsigned length;
1855 dma_addr_t buf;
1856 u32 trans;
1857
1858 length = urb->iso_frame_desc [i].length & 0x03ff;
1859 buf = dma + urb->iso_frame_desc [i].offset;
1860
1861 trans = SITD_STS_ACTIVE;
1862 if (((i + 1) == urb->number_of_packets)
1863 && !(urb->transfer_flags & URB_NO_INTERRUPT))
1864 trans |= SITD_IOC;
1865 trans |= length << 16;
6dbd682b 1866 packet->transaction = cpu_to_hc32(ehci, trans);
1da177e4
LT
1867
1868 /* might need to cross a buffer page within a td */
1869 packet->bufp = buf;
1870 packet->buf1 = (buf + length) & ~0x0fff;
1871 if (packet->buf1 != (buf & ~(u64)0x0fff))
1872 packet->cross = 1;
1873
53bd6a60 1874 /* OUT uses multiple start-splits */
1da177e4
LT
1875 if (stream->bEndpointAddress & USB_DIR_IN)
1876 continue;
1877 length = (length + 187) / 188;
1878 if (length > 1) /* BEGIN vs ALL */
1879 length |= 1 << 3;
1880 packet->buf1 |= length;
1881 }
1882}
1883
1884static int
1885sitd_urb_transaction (
1886 struct ehci_iso_stream *stream,
1887 struct ehci_hcd *ehci,
1888 struct urb *urb,
55016f10 1889 gfp_t mem_flags
1da177e4
LT
1890)
1891{
1892 struct ehci_sitd *sitd;
1893 dma_addr_t sitd_dma;
1894 int i;
1895 struct ehci_iso_sched *iso_sched;
1896 unsigned long flags;
1897
1898 iso_sched = iso_sched_alloc (urb->number_of_packets, mem_flags);
1899 if (iso_sched == NULL)
1900 return -ENOMEM;
1901
6dbd682b 1902 sitd_sched_init(ehci, iso_sched, stream, urb);
1da177e4
LT
1903
1904 /* allocate/init sITDs */
1905 spin_lock_irqsave (&ehci->lock, flags);
1906 for (i = 0; i < urb->number_of_packets; i++) {
1907
1908 /* NOTE: for now, we don't try to handle wraparound cases
1909 * for IN (using sitd->hw_backpointer, like a FSTN), which
1910 * means we never need two sitds for full speed packets.
1911 */
1912
55934eb3
AS
1913 /*
1914 * Use siTDs from the free list, but not siTDs that may
1915 * still be in use by the hardware.
1da177e4 1916 */
55934eb3
AS
1917 if (likely(!list_empty(&stream->free_list))) {
1918 sitd = list_first_entry(&stream->free_list,
1da177e4 1919 struct ehci_sitd, sitd_list);
55934eb3
AS
1920 if (sitd->frame == ehci->clock_frame)
1921 goto alloc_sitd;
1da177e4
LT
1922 list_del (&sitd->sitd_list);
1923 sitd_dma = sitd->sitd_dma;
3d01f0fe 1924 } else {
55934eb3 1925 alloc_sitd:
1da177e4
LT
1926 spin_unlock_irqrestore (&ehci->lock, flags);
1927 sitd = dma_pool_alloc (ehci->sitd_pool, mem_flags,
1928 &sitd_dma);
1929 spin_lock_irqsave (&ehci->lock, flags);
3d01f0fe
KW
1930 if (!sitd) {
1931 iso_sched_free(stream, iso_sched);
1932 spin_unlock_irqrestore(&ehci->lock, flags);
1933 return -ENOMEM;
1934 }
1da177e4
LT
1935 }
1936
1da177e4
LT
1937 memset (sitd, 0, sizeof *sitd);
1938 sitd->sitd_dma = sitd_dma;
1939 list_add (&sitd->sitd_list, &iso_sched->td_list);
1940 }
1941
1942 /* temporarily store schedule info in hcpriv */
1943 urb->hcpriv = iso_sched;
1944 urb->error_count = 0;
1945
1946 spin_unlock_irqrestore (&ehci->lock, flags);
1947 return 0;
1948}
1949
1950/*-------------------------------------------------------------------------*/
1951
1952static inline void
6dbd682b
SR
1953sitd_patch(
1954 struct ehci_hcd *ehci,
1da177e4
LT
1955 struct ehci_iso_stream *stream,
1956 struct ehci_sitd *sitd,
1957 struct ehci_iso_sched *iso_sched,
1958 unsigned index
1959)
1960{
1961 struct ehci_iso_packet *uf = &iso_sched->packet [index];
1962 u64 bufp = uf->bufp;
1963
6dbd682b 1964 sitd->hw_next = EHCI_LIST_END(ehci);
1da177e4
LT
1965 sitd->hw_fullspeed_ep = stream->address;
1966 sitd->hw_uframe = stream->splits;
1967 sitd->hw_results = uf->transaction;
6dbd682b 1968 sitd->hw_backpointer = EHCI_LIST_END(ehci);
1da177e4
LT
1969
1970 bufp = uf->bufp;
6dbd682b
SR
1971 sitd->hw_buf[0] = cpu_to_hc32(ehci, bufp);
1972 sitd->hw_buf_hi[0] = cpu_to_hc32(ehci, bufp >> 32);
1da177e4 1973
6dbd682b 1974 sitd->hw_buf[1] = cpu_to_hc32(ehci, uf->buf1);
1da177e4
LT
1975 if (uf->cross)
1976 bufp += 4096;
6dbd682b 1977 sitd->hw_buf_hi[1] = cpu_to_hc32(ehci, bufp >> 32);
1da177e4
LT
1978 sitd->index = index;
1979}
1980
1981static inline void
1982sitd_link (struct ehci_hcd *ehci, unsigned frame, struct ehci_sitd *sitd)
1983{
1984 /* note: sitd ordering could matter (CSPLIT then SSPLIT) */
1985 sitd->sitd_next = ehci->pshadow [frame];
1986 sitd->hw_next = ehci->periodic [frame];
1987 ehci->pshadow [frame].sitd = sitd;
1988 sitd->frame = frame;
1989 wmb ();
6dbd682b 1990 ehci->periodic[frame] = cpu_to_hc32(ehci, sitd->sitd_dma | Q_TYPE_SITD);
1da177e4
LT
1991}
1992
1993/* fit urb's sitds into the selected schedule slot; activate as needed */
b015cb79 1994static void sitd_link_urb(
1da177e4
LT
1995 struct ehci_hcd *ehci,
1996 struct urb *urb,
1997 unsigned mod,
1998 struct ehci_iso_stream *stream
1999)
2000{
2001 int packet;
2002 unsigned next_uframe;
2003 struct ehci_iso_sched *sched = urb->hcpriv;
2004 struct ehci_sitd *sitd;
2005
2006 next_uframe = stream->next_uframe;
2007
2008 if (list_empty(&stream->td_list)) {
2009 /* usbfs ignores TT bandwidth */
2010 ehci_to_hcd(ehci)->self.bandwidth_allocated
2011 += stream->bandwidth;
2012 ehci_vdbg (ehci,
2013 "sched devp %s ep%d%s-iso [%d] %dms/%04x\n",
2014 urb->dev->devpath, stream->bEndpointAddress & 0x0f,
2015 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
bccbefaa 2016 (next_uframe >> 3) & (ehci->periodic_size - 1),
6dbd682b 2017 stream->interval, hc32_to_cpu(ehci, stream->splits));
1da177e4 2018 }
05570297
AH
2019
2020 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
ad93562b
AX
2021 if (ehci->amd_pll_fix == 1)
2022 usb_amd_quirk_pll_disable();
05570297
AH
2023 }
2024
1da177e4
LT
2025 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
2026
2027 /* fill sITDs frame by frame */
2028 for (packet = 0, sitd = NULL;
2029 packet < urb->number_of_packets;
2030 packet++) {
2031
2032 /* ASSERT: we have all necessary sitds */
2033 BUG_ON (list_empty (&sched->td_list));
2034
2035 /* ASSERT: no itds for this endpoint in this frame */
2036
2037 sitd = list_entry (sched->td_list.next,
2038 struct ehci_sitd, sitd_list);
2039 list_move_tail (&sitd->sitd_list, &stream->td_list);
8c5bf7be 2040 sitd->stream = stream;
508db8c9 2041 sitd->urb = urb;
1da177e4 2042
6dbd682b 2043 sitd_patch(ehci, stream, sitd, sched, packet);
bccbefaa 2044 sitd_link(ehci, (next_uframe >> 3) & (ehci->periodic_size - 1),
1da177e4
LT
2045 sitd);
2046
2047 next_uframe += stream->interval << 3;
1da177e4 2048 }
bccbefaa 2049 stream->next_uframe = next_uframe & (mod - 1);
1da177e4
LT
2050
2051 /* don't need that schedule data any more */
2052 iso_sched_free (stream, sched);
2053 urb->hcpriv = NULL;
2054
569b394f 2055 ++ehci->isoc_count;
b015cb79 2056 enable_periodic(ehci);
1da177e4
LT
2057}
2058
2059/*-------------------------------------------------------------------------*/
2060
2061#define SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
53bd6a60 2062 | SITD_STS_XACT | SITD_STS_MMF)
1da177e4 2063
30bf54e6
DB
2064/* Process and recycle a completed SITD. Return true iff its urb completed,
2065 * and hence its completion callback probably added things to the hardware
2066 * schedule.
2067 *
2068 * Note that we carefully avoid recycling this descriptor until after any
2069 * completion callback runs, so that it won't be reused quickly. That is,
2070 * assuming (a) no more than two urbs per frame on this endpoint, and also
2071 * (b) only this endpoint's completions submit URBs. It seems some silicon
2072 * corrupts things if you reuse completed descriptors very quickly...
2073 */
1da177e4
LT
2074static unsigned
2075sitd_complete (
2076 struct ehci_hcd *ehci,
7d12e780 2077 struct ehci_sitd *sitd
1da177e4
LT
2078) {
2079 struct urb *urb = sitd->urb;
2080 struct usb_iso_packet_descriptor *desc;
2081 u32 t;
2082 int urb_index = -1;
2083 struct ehci_iso_stream *stream = sitd->stream;
2084 struct usb_device *dev;
30bf54e6 2085 unsigned retval = false;
1da177e4
LT
2086
2087 urb_index = sitd->index;
2088 desc = &urb->iso_frame_desc [urb_index];
6dbd682b 2089 t = hc32_to_cpup(ehci, &sitd->hw_results);
1da177e4
LT
2090
2091 /* report transfer status */
2092 if (t & SITD_ERRS) {
2093 urb->error_count++;
2094 if (t & SITD_STS_DBE)
2095 desc->status = usb_pipein (urb->pipe)
2096 ? -ENOSR /* hc couldn't read */
2097 : -ECOMM; /* hc couldn't write */
2098 else if (t & SITD_STS_BABBLE)
2099 desc->status = -EOVERFLOW;
2100 else /* XACT, MMF, etc */
2101 desc->status = -EPROTO;
2102 } else {
2103 desc->status = 0;
ec6d67e3
AS
2104 desc->actual_length = desc->length - SITD_LENGTH(t);
2105 urb->actual_length += desc->actual_length;
1da177e4 2106 }
1da177e4
LT
2107
2108 /* handle completion now? */
2109 if ((urb_index + 1) != urb->number_of_packets)
30bf54e6 2110 goto done;
1da177e4
LT
2111
2112 /* ASSERT: it's really the last sitd for this urb
2113 list_for_each_entry (sitd, &stream->td_list, sitd_list)
2114 BUG_ON (sitd->urb == urb);
2115 */
2116
aa16ca30 2117 /* give urb back to the driver; completion often (re)submits */
6a8e87b2 2118 dev = urb->dev;
14c04c0f 2119 ehci_urb_done(ehci, urb, 0);
30bf54e6 2120 retval = true;
1da177e4 2121 urb = NULL;
569b394f
AS
2122
2123 --ehci->isoc_count;
b015cb79 2124 disable_periodic(ehci);
1da177e4 2125
569b394f 2126 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
05570297 2127 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
ad93562b
AX
2128 if (ehci->amd_pll_fix == 1)
2129 usb_amd_quirk_pll_enable();
05570297
AH
2130 }
2131
508db8c9 2132 if (list_is_singular(&stream->td_list)) {
1da177e4
LT
2133 ehci_to_hcd(ehci)->self.bandwidth_allocated
2134 -= stream->bandwidth;
2135 ehci_vdbg (ehci,
2136 "deschedule devp %s ep%d%s-iso\n",
2137 dev->devpath, stream->bEndpointAddress & 0x0f,
2138 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out");
2139 }
0e5f231b 2140
30bf54e6 2141done:
30bf54e6 2142 sitd->urb = NULL;
55934eb3
AS
2143
2144 /* Add to the end of the free list for later reuse */
2145 list_move_tail(&sitd->sitd_list, &stream->free_list);
2146
2147 /* Recycle the siTDs when the pipeline is empty (ep no longer in use) */
2148 if (list_empty(&stream->td_list)) {
2149 list_splice_tail_init(&stream->free_list,
2150 &ehci->cached_sitd_list);
2151 start_free_itds(ehci);
0e5f231b 2152 }
55934eb3 2153
30bf54e6 2154 return retval;
1da177e4
LT
2155}
2156
2157
5db539e4 2158static int sitd_submit (struct ehci_hcd *ehci, struct urb *urb,
55016f10 2159 gfp_t mem_flags)
1da177e4
LT
2160{
2161 int status = -EINVAL;
2162 unsigned long flags;
2163 struct ehci_iso_stream *stream;
2164
2165 /* Get iso_stream head */
2166 stream = iso_stream_find (ehci, urb);
2167 if (stream == NULL) {
2168 ehci_dbg (ehci, "can't get iso stream\n");
2169 return -ENOMEM;
2170 }
2171 if (urb->interval != stream->interval) {
2172 ehci_dbg (ehci, "can't change iso interval %d --> %d\n",
2173 stream->interval, urb->interval);
2174 goto done;
2175 }
2176
2177#ifdef EHCI_URB_TRACE
2178 ehci_dbg (ehci,
2179 "submit %p dev%s ep%d%s-iso len %d\n",
2180 urb, urb->dev->devpath,
2181 usb_pipeendpoint (urb->pipe),
2182 usb_pipein (urb->pipe) ? "in" : "out",
2183 urb->transfer_buffer_length);
2184#endif
2185
2186 /* allocate SITDs */
2187 status = sitd_urb_transaction (stream, ehci, urb, mem_flags);
2188 if (status < 0) {
2189 ehci_dbg (ehci, "can't init sitds\n");
2190 goto done;
2191 }
2192
2193 /* schedule ... need to lock */
2194 spin_lock_irqsave (&ehci->lock, flags);
541c7d43 2195 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
8de98402 2196 status = -ESHUTDOWN;
e9df41c5
AS
2197 goto done_not_linked;
2198 }
2199 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
2200 if (unlikely(status))
2201 goto done_not_linked;
2202 status = iso_stream_schedule(ehci, urb, stream);
53bd6a60 2203 if (status == 0)
1da177e4 2204 sitd_link_urb (ehci, urb, ehci->periodic_size << 3, stream);
e9df41c5
AS
2205 else
2206 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
8c5bf7be 2207 done_not_linked:
1da177e4 2208 spin_unlock_irqrestore (&ehci->lock, flags);
8c5bf7be 2209 done:
1da177e4
LT
2210 return status;
2211}
2212
1da177e4
LT
2213/*-------------------------------------------------------------------------*/
2214
569b394f 2215static void scan_isoc(struct ehci_hcd *ehci)
1da177e4 2216{
b40e43fc 2217 unsigned now_uframe, frame, clock, clock_frame, mod;
1da177e4
LT
2218 unsigned modified;
2219
2220 mod = ehci->periodic_size << 3;
2221
2222 /*
2223 * When running, scan from last scan point up to "now"
2224 * else clean up by scanning everything that's left.
2225 * Touches as few pages as possible: cache-friendly.
2226 */
2227 now_uframe = ehci->next_uframe;
c0c53dbc 2228 if (ehci->rh_state >= EHCI_RH_RUNNING) {
68aa95d5 2229 clock = ehci_read_frame_index(ehci);
bccbefaa 2230 clock_frame = (clock >> 3) & (ehci->periodic_size - 1);
9aa09d2f 2231 } else {
1da177e4 2232 clock = now_uframe + mod - 1;
9aa09d2f
KW
2233 clock_frame = -1;
2234 }
55934eb3 2235 ehci->clock_frame = clock_frame;
bccbefaa 2236 clock &= mod - 1;
b40e43fc 2237 clock_frame = clock >> 3;
1da177e4
LT
2238
2239 for (;;) {
2240 union ehci_shadow q, *q_p;
6dbd682b 2241 __hc32 type, *hw_p;
79592b72 2242 unsigned incomplete = false;
1da177e4 2243
1da177e4 2244 frame = now_uframe >> 3;
1da177e4
LT
2245
2246restart:
2247 /* scan each element in frame's queue for completions */
2248 q_p = &ehci->pshadow [frame];
2249 hw_p = &ehci->periodic [frame];
2250 q.ptr = q_p->ptr;
6dbd682b 2251 type = Q_NEXT_TYPE(ehci, *hw_p);
1da177e4
LT
2252 modified = 0;
2253
2254 while (q.ptr != NULL) {
2255 unsigned uf;
1da177e4
LT
2256 int live;
2257
c0c53dbc 2258 live = (ehci->rh_state >= EHCI_RH_RUNNING);
6dbd682b 2259 switch (hc32_to_cpu(ehci, type)) {
1da177e4 2260 case Q_TYPE_ITD:
79592b72
DB
2261 /* If this ITD is still active, leave it for
2262 * later processing ... check the next entry.
b40e43fc
AS
2263 * No need to check for activity unless the
2264 * frame is current.
79592b72 2265 */
b40e43fc
AS
2266 if (frame == clock_frame && live) {
2267 rmb();
2268 for (uf = 0; uf < 8; uf++) {
2269 if (q.itd->hw_transaction[uf] &
2270 ITD_ACTIVE(ehci))
2271 break;
2272 }
2273 if (uf < 8) {
2274 incomplete = true;
2275 q_p = &q.itd->itd_next;
2276 hw_p = &q.itd->hw_next;
2277 type = Q_NEXT_TYPE(ehci,
6dbd682b 2278 q.itd->hw_next);
b40e43fc
AS
2279 q = *q_p;
2280 break;
2281 }
1da177e4 2282 }
1da177e4 2283
79592b72
DB
2284 /* Take finished ITDs out of the schedule
2285 * and process them: recycle, maybe report
2286 * URB completion. HC won't cache the
1da177e4
LT
2287 * pointer for much longer, if at all.
2288 */
2289 *q_p = q.itd->itd_next;
3d091a6f
AX
2290 if (!ehci->use_dummy_qh ||
2291 q.itd->hw_next != EHCI_LIST_END(ehci))
2292 *hw_p = q.itd->hw_next;
2293 else
2294 *hw_p = ehci->dummy->qh_dma;
6dbd682b 2295 type = Q_NEXT_TYPE(ehci, q.itd->hw_next);
1da177e4 2296 wmb();
7d12e780 2297 modified = itd_complete (ehci, q.itd);
1da177e4
LT
2298 q = *q_p;
2299 break;
2300 case Q_TYPE_SITD:
79592b72
DB
2301 /* If this SITD is still active, leave it for
2302 * later processing ... check the next entry.
b40e43fc
AS
2303 * No need to check for activity unless the
2304 * frame is current.
79592b72 2305 */
22e18694 2306 if (((frame == clock_frame) ||
bccbefaa 2307 (((frame + 1) & (ehci->periodic_size - 1))
22e18694
DE
2308 == clock_frame))
2309 && live
2310 && (q.sitd->hw_results &
2311 SITD_ACTIVE(ehci))) {
2312
79592b72 2313 incomplete = true;
1da177e4
LT
2314 q_p = &q.sitd->sitd_next;
2315 hw_p = &q.sitd->hw_next;
6dbd682b
SR
2316 type = Q_NEXT_TYPE(ehci,
2317 q.sitd->hw_next);
1da177e4
LT
2318 q = *q_p;
2319 break;
2320 }
79592b72
DB
2321
2322 /* Take finished SITDs out of the schedule
2323 * and process them: recycle, maybe report
2324 * URB completion.
2325 */
1da177e4 2326 *q_p = q.sitd->sitd_next;
3d091a6f
AX
2327 if (!ehci->use_dummy_qh ||
2328 q.sitd->hw_next != EHCI_LIST_END(ehci))
2329 *hw_p = q.sitd->hw_next;
2330 else
2331 *hw_p = ehci->dummy->qh_dma;
6dbd682b 2332 type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
1da177e4 2333 wmb();
7d12e780 2334 modified = sitd_complete (ehci, q.sitd);
1da177e4
LT
2335 q = *q_p;
2336 break;
2337 default:
2d0fe1bb 2338 ehci_dbg(ehci, "corrupt type %d frame %d shadow %p\n",
1da177e4
LT
2339 type, frame, q.ptr);
2340 // BUG ();
569b394f
AS
2341 /* FALL THROUGH */
2342 case Q_TYPE_QH:
2343 case Q_TYPE_FSTN:
2344 /* End of the iTDs and siTDs */
1da177e4 2345 q.ptr = NULL;
569b394f 2346 break;
1da177e4
LT
2347 }
2348
2349 /* assume completion callbacks modify the queue */
aa16ca30 2350 if (unlikely (modified)) {
569b394f 2351 if (likely(ehci->isoc_count > 0))
aa16ca30 2352 goto restart;
01c17142 2353 /* short-circuit this scan */
aa16ca30
DB
2354 now_uframe = clock;
2355 break;
2356 }
1da177e4
LT
2357 }
2358
79592b72
DB
2359 /* If we can tell we caught up to the hardware, stop now.
2360 * We can't advance our scan without collecting the ISO
2361 * transfers that are still pending in this frame.
2362 */
c0c53dbc 2363 if (incomplete && ehci->rh_state >= EHCI_RH_RUNNING) {
79592b72
DB
2364 ehci->next_uframe = now_uframe;
2365 break;
2366 }
1da177e4
LT
2367
2368 // FIXME: this assumes we won't get lapped when
2369 // latencies climb; that should be rare, but...
2370 // detect it, and just go all the way around.
2371 // FLR might help detect this case, so long as latencies
2372 // don't exceed periodic_size msec (default 1.024 sec).
2373
2374 // FIXME: likewise assumes HC doesn't halt mid-scan
2375
2376 if (now_uframe == clock) {
2377 unsigned now;
2378
c0c53dbc 2379 if (ehci->rh_state < EHCI_RH_RUNNING
569b394f 2380 || ehci->isoc_count == 0)
1da177e4
LT
2381 break;
2382 ehci->next_uframe = now_uframe;
68aa95d5 2383 now = ehci_read_frame_index(ehci) & (mod - 1);
1da177e4
LT
2384 if (now_uframe == now)
2385 break;
2386
2387 /* rescan the rest of this frame, then ... */
2388 clock = now;
b40e43fc 2389 clock_frame = clock >> 3;
569b394f 2390 ehci->clock_frame = clock_frame;
1da177e4
LT
2391 } else {
2392 now_uframe++;
bccbefaa 2393 now_uframe &= mod - 1;
1da177e4 2394 }
53bd6a60 2395 }
1da177e4 2396}