USB: EHCI: always scan each interrupt QH
[deliverable/linux.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);
1da177e4
LT
492}
493
b015cb79 494static void disable_periodic(struct ehci_hcd *ehci)
1da177e4 495{
3ca9aeba 496 if (--ehci->periodic_count)
b015cb79 497 return;
01c17142 498
3ca9aeba 499 ehci->next_uframe = -1; /* the periodic schedule is empty */
d63c66d2 500
3ca9aeba
AS
501 /* Don't turn off the schedule until PSS is 1 */
502 ehci_poll_PSS(ehci);
1da177e4
LT
503}
504
505/*-------------------------------------------------------------------------*/
506
507/* periodic schedule slots have iso tds (normal or split) first, then a
508 * sparse tree for active interrupt transfers.
509 *
510 * this just links in a qh; caller guarantees uframe masks are set right.
511 * no FSTN support (yet; ehci 0.96+)
512 */
b015cb79 513static void qh_link_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4
LT
514{
515 unsigned i;
516 unsigned period = qh->period;
517
518 dev_dbg (&qh->dev->dev,
519 "link qh%d-%04x/%p start %d [%d/%d us]\n",
3807e26d
AD
520 period, hc32_to_cpup(ehci, &qh->hw->hw_info2)
521 & (QH_CMASK | QH_SMASK),
1da177e4
LT
522 qh, qh->start, qh->usecs, qh->c_usecs);
523
524 /* high bandwidth, or otherwise every microframe */
525 if (period == 0)
526 period = 1;
527
528 for (i = qh->start; i < ehci->periodic_size; i += period) {
6dbd682b
SR
529 union ehci_shadow *prev = &ehci->pshadow[i];
530 __hc32 *hw_p = &ehci->periodic[i];
1da177e4 531 union ehci_shadow here = *prev;
6dbd682b 532 __hc32 type = 0;
1da177e4
LT
533
534 /* skip the iso nodes at list head */
535 while (here.ptr) {
6dbd682b
SR
536 type = Q_NEXT_TYPE(ehci, *hw_p);
537 if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
1da177e4 538 break;
6dbd682b 539 prev = periodic_next_shadow(ehci, prev, type);
3807e26d 540 hw_p = shadow_next_periodic(ehci, &here, type);
1da177e4
LT
541 here = *prev;
542 }
543
544 /* sorting each branch by period (slow-->fast)
545 * enables sharing interior tree nodes
546 */
547 while (here.ptr && qh != here.qh) {
548 if (qh->period > here.qh->period)
549 break;
550 prev = &here.qh->qh_next;
3807e26d 551 hw_p = &here.qh->hw->hw_next;
1da177e4
LT
552 here = *prev;
553 }
554 /* link in this qh, unless some earlier pass did that */
555 if (qh != here.qh) {
556 qh->qh_next = here;
557 if (here.qh)
3807e26d 558 qh->hw->hw_next = *hw_p;
1da177e4
LT
559 wmb ();
560 prev->qh = qh;
6dbd682b 561 *hw_p = QH_NEXT (ehci, qh->qh_dma);
1da177e4
LT
562 }
563 }
564 qh->qh_state = QH_STATE_LINKED;
ef4638f9 565 qh->xacterrs = 0;
1da177e4
LT
566
567 /* update per-qh bandwidth for usbfs */
568 ehci_to_hcd(ehci)->self.bandwidth_allocated += qh->period
569 ? ((qh->usecs + qh->c_usecs) / qh->period)
570 : (qh->usecs * 8);
571
569b394f
AS
572 list_add(&qh->intr_node, &ehci->intr_qh_list);
573
1da177e4 574 /* maybe enable periodic schedule processing */
569b394f 575 ++ehci->intr_count;
b015cb79 576 enable_periodic(ehci);
1da177e4
LT
577}
578
b015cb79 579static void qh_unlink_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4
LT
580{
581 unsigned i;
582 unsigned period;
583
df202255
AS
584 /*
585 * If qh is for a low/full-speed device, simply unlinking it
586 * could interfere with an ongoing split transaction. To unlink
587 * it safely would require setting the QH_INACTIVATE bit and
588 * waiting at least one frame, as described in EHCI 4.12.2.5.
589 *
590 * We won't bother with any of this. Instead, we assume that the
591 * only reason for unlinking an interrupt QH while the current URB
592 * is still active is to dequeue all the URBs (flush the whole
593 * endpoint queue).
594 *
595 * If rebalancing the periodic schedule is ever implemented, this
596 * approach will no longer be valid.
597 */
1da177e4
LT
598
599 /* high bandwidth, or otherwise part of every microframe */
600 if ((period = qh->period) == 0)
601 period = 1;
602
603 for (i = qh->start; i < ehci->periodic_size; i += period)
604 periodic_unlink (ehci, i, qh);
605
606 /* update per-qh bandwidth for usbfs */
607 ehci_to_hcd(ehci)->self.bandwidth_allocated -= qh->period
608 ? ((qh->usecs + qh->c_usecs) / qh->period)
609 : (qh->usecs * 8);
610
611 dev_dbg (&qh->dev->dev,
612 "unlink qh%d-%04x/%p start %d [%d/%d us]\n",
7dedacf4 613 qh->period,
3807e26d 614 hc32_to_cpup(ehci, &qh->hw->hw_info2) & (QH_CMASK | QH_SMASK),
1da177e4
LT
615 qh, qh->start, qh->usecs, qh->c_usecs);
616
617 /* qh->qh_next still "live" to HC */
618 qh->qh_state = QH_STATE_UNLINK;
619 qh->qh_next.ptr = NULL;
569b394f
AS
620
621 if (ehci->qh_scan_next == qh)
622 ehci->qh_scan_next = list_entry(qh->intr_node.next,
623 struct ehci_qh, intr_node);
624 list_del(&qh->intr_node);
1da177e4
LT
625}
626
df202255 627static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4 628{
a448c9d8
AS
629 /* If the QH isn't linked then there's nothing we can do
630 * unless we were called during a giveback, in which case
631 * qh_completions() has to deal with it.
632 */
633 if (qh->qh_state != QH_STATE_LINKED) {
634 if (qh->qh_state == QH_STATE_COMPLETING)
635 qh->needs_rescan = 1;
636 return;
637 }
1da177e4
LT
638
639 qh_unlink_periodic (ehci, qh);
640
df202255
AS
641 /* Make sure the unlinks are visible before starting the timer */
642 wmb();
643
644 /*
645 * The EHCI spec doesn't say how long it takes the controller to
646 * stop accessing an unlinked interrupt QH. The timer delay is
647 * 9 uframes; presumably that will be long enough.
1da177e4 648 */
df202255
AS
649 qh->unlink_cycle = ehci->intr_unlink_cycle;
650
651 /* New entries go at the end of the intr_unlink list */
652 if (ehci->intr_unlink)
653 ehci->intr_unlink_last->unlink_next = qh;
1da177e4 654 else
df202255
AS
655 ehci->intr_unlink = qh;
656 ehci->intr_unlink_last = qh;
657
658 if (ehci->intr_unlinking)
659 ; /* Avoid recursive calls */
660 else if (ehci->rh_state < EHCI_RH_RUNNING)
661 ehci_handle_intr_unlinks(ehci);
662 else if (ehci->intr_unlink == qh) {
663 ehci_enable_event(ehci, EHCI_HRTIMER_UNLINK_INTR, true);
664 ++ehci->intr_unlink_cycle;
665 }
666}
667
668static void end_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
669{
670 struct ehci_qh_hw *hw = qh->hw;
671 int rc;
1da177e4 672
1da177e4 673 qh->qh_state = QH_STATE_IDLE;
3807e26d 674 hw->hw_next = EHCI_LIST_END(ehci);
a448c9d8
AS
675
676 qh_completions(ehci, qh);
677
678 /* reschedule QH iff another request is queued */
df202255 679 if (!list_empty(&qh->qtd_list) && ehci->rh_state == EHCI_RH_RUNNING) {
a448c9d8
AS
680 rc = qh_schedule(ehci, qh);
681
682 /* An error here likely indicates handshake failure
683 * or no space left in the schedule. Neither fault
684 * should happen often ...
685 *
686 * FIXME kill the now-dysfunctional queued urbs
687 */
688 if (rc != 0)
689 ehci_err(ehci, "can't reschedule qh %p, err %d\n",
690 qh, rc);
691 }
3ca9aeba
AS
692
693 /* maybe turn off periodic schedule */
569b394f 694 --ehci->intr_count;
3ca9aeba 695 disable_periodic(ehci);
1da177e4
LT
696}
697
698/*-------------------------------------------------------------------------*/
699
700static int check_period (
53bd6a60 701 struct ehci_hcd *ehci,
1da177e4
LT
702 unsigned frame,
703 unsigned uframe,
704 unsigned period,
705 unsigned usecs
706) {
707 int claimed;
708
709 /* complete split running into next frame?
710 * given FSTN support, we could sometimes check...
711 */
712 if (uframe >= 8)
713 return 0;
714
cc62a7eb
KS
715 /* convert "usecs we need" to "max already claimed" */
716 usecs = ehci->uframe_periodic_max - usecs;
1da177e4
LT
717
718 /* we "know" 2 and 4 uframe intervals were rejected; so
719 * for period 0, check _every_ microframe in the schedule.
720 */
721 if (unlikely (period == 0)) {
722 do {
723 for (uframe = 0; uframe < 7; uframe++) {
724 claimed = periodic_usecs (ehci, frame, uframe);
725 if (claimed > usecs)
726 return 0;
727 }
728 } while ((frame += 1) < ehci->periodic_size);
729
730 /* just check the specified uframe, at that period */
731 } else {
732 do {
733 claimed = periodic_usecs (ehci, frame, uframe);
734 if (claimed > usecs)
735 return 0;
736 } while ((frame += period) < ehci->periodic_size);
737 }
738
739 // success!
740 return 1;
741}
742
743static int check_intr_schedule (
53bd6a60 744 struct ehci_hcd *ehci,
1da177e4
LT
745 unsigned frame,
746 unsigned uframe,
747 const struct ehci_qh *qh,
6dbd682b 748 __hc32 *c_maskp
1da177e4
LT
749)
750{
53bd6a60 751 int retval = -ENOSPC;
ba47f66b 752 u8 mask = 0;
1da177e4
LT
753
754 if (qh->c_usecs && uframe >= 6) /* FSTN territory? */
755 goto done;
756
757 if (!check_period (ehci, frame, uframe, qh->period, qh->usecs))
758 goto done;
759 if (!qh->c_usecs) {
760 retval = 0;
761 *c_maskp = 0;
762 goto done;
763 }
764
ba47f66b
DS
765#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
766 if (tt_available (ehci, qh->period, qh->dev, frame, uframe,
767 qh->tt_usecs)) {
768 unsigned i;
769
770 /* TODO : this may need FSTN for SSPLIT in uframe 5. */
771 for (i=uframe+1; i<8 && i<uframe+4; i++)
772 if (!check_period (ehci, frame, i,
773 qh->period, qh->c_usecs))
774 goto done;
775 else
776 mask |= 1 << i;
777
778 retval = 0;
779
6dbd682b 780 *c_maskp = cpu_to_hc32(ehci, mask << 8);
ba47f66b
DS
781 }
782#else
1da177e4
LT
783 /* Make sure this tt's buffer is also available for CSPLITs.
784 * We pessimize a bit; probably the typical full speed case
785 * doesn't need the second CSPLIT.
53bd6a60 786 *
1da177e4
LT
787 * NOTE: both SPLIT and CSPLIT could be checked in just
788 * one smart pass...
789 */
790 mask = 0x03 << (uframe + qh->gap_uf);
6dbd682b 791 *c_maskp = cpu_to_hc32(ehci, mask << 8);
1da177e4
LT
792
793 mask |= 1 << uframe;
794 if (tt_no_collision (ehci, qh->period, qh->dev, frame, mask)) {
795 if (!check_period (ehci, frame, uframe + qh->gap_uf + 1,
796 qh->period, qh->c_usecs))
797 goto done;
798 if (!check_period (ehci, frame, uframe + qh->gap_uf,
799 qh->period, qh->c_usecs))
800 goto done;
801 retval = 0;
802 }
ba47f66b 803#endif
1da177e4
LT
804done:
805 return retval;
806}
807
808/* "first fit" scheduling policy used the first time through,
809 * or when the previous schedule slot can't be re-used.
810 */
6dbd682b 811static int qh_schedule(struct ehci_hcd *ehci, struct ehci_qh *qh)
1da177e4 812{
53bd6a60 813 int status;
1da177e4 814 unsigned uframe;
6dbd682b 815 __hc32 c_mask;
1da177e4 816 unsigned frame; /* 0..(qh->period - 1), or NO_FRAME */
3807e26d 817 struct ehci_qh_hw *hw = qh->hw;
1da177e4
LT
818
819 qh_refresh(ehci, qh);
3807e26d 820 hw->hw_next = EHCI_LIST_END(ehci);
1da177e4
LT
821 frame = qh->start;
822
823 /* reuse the previous schedule slots, if we can */
824 if (frame < qh->period) {
3807e26d 825 uframe = ffs(hc32_to_cpup(ehci, &hw->hw_info2) & QH_SMASK);
1da177e4
LT
826 status = check_intr_schedule (ehci, frame, --uframe,
827 qh, &c_mask);
828 } else {
829 uframe = 0;
830 c_mask = 0;
831 status = -ENOSPC;
832 }
833
834 /* else scan the schedule to find a group of slots such that all
835 * uframes have enough periodic bandwidth available.
836 */
837 if (status) {
838 /* "normal" case, uframing flexible except with splits */
839 if (qh->period) {
68335e81
AS
840 int i;
841
842 for (i = qh->period; status && i > 0; --i) {
843 frame = ++ehci->random_frame % qh->period;
1da177e4
LT
844 for (uframe = 0; uframe < 8; uframe++) {
845 status = check_intr_schedule (ehci,
846 frame, uframe, qh,
847 &c_mask);
848 if (status == 0)
849 break;
850 }
68335e81 851 }
1da177e4
LT
852
853 /* qh->period == 0 means every uframe */
854 } else {
855 frame = 0;
856 status = check_intr_schedule (ehci, 0, 0, qh, &c_mask);
857 }
858 if (status)
859 goto done;
860 qh->start = frame;
861
862 /* reset S-frame and (maybe) C-frame masks */
3807e26d
AD
863 hw->hw_info2 &= cpu_to_hc32(ehci, ~(QH_CMASK | QH_SMASK));
864 hw->hw_info2 |= qh->period
6dbd682b
SR
865 ? cpu_to_hc32(ehci, 1 << uframe)
866 : cpu_to_hc32(ehci, QH_SMASK);
3807e26d 867 hw->hw_info2 |= c_mask;
1da177e4
LT
868 } else
869 ehci_dbg (ehci, "reused qh %p schedule\n", qh);
870
871 /* stuff into the periodic schedule */
b015cb79 872 qh_link_periodic(ehci, qh);
1da177e4
LT
873done:
874 return status;
875}
876
877static int intr_submit (
878 struct ehci_hcd *ehci,
1da177e4
LT
879 struct urb *urb,
880 struct list_head *qtd_list,
55016f10 881 gfp_t mem_flags
1da177e4
LT
882) {
883 unsigned epnum;
884 unsigned long flags;
885 struct ehci_qh *qh;
e9df41c5 886 int status;
1da177e4
LT
887 struct list_head empty;
888
889 /* get endpoint and transfer/schedule data */
e9df41c5 890 epnum = urb->ep->desc.bEndpointAddress;
1da177e4
LT
891
892 spin_lock_irqsave (&ehci->lock, flags);
893
541c7d43 894 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
8de98402 895 status = -ESHUTDOWN;
e9df41c5 896 goto done_not_linked;
8de98402 897 }
e9df41c5
AS
898 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
899 if (unlikely(status))
900 goto done_not_linked;
8de98402 901
1da177e4
LT
902 /* get qh and force any scheduling errors */
903 INIT_LIST_HEAD (&empty);
e9df41c5 904 qh = qh_append_tds(ehci, urb, &empty, epnum, &urb->ep->hcpriv);
1da177e4
LT
905 if (qh == NULL) {
906 status = -ENOMEM;
907 goto done;
908 }
909 if (qh->qh_state == QH_STATE_IDLE) {
910 if ((status = qh_schedule (ehci, qh)) != 0)
911 goto done;
912 }
913
914 /* then queue the urb's tds to the qh */
e9df41c5 915 qh = qh_append_tds(ehci, urb, qtd_list, epnum, &urb->ep->hcpriv);
1da177e4
LT
916 BUG_ON (qh == NULL);
917
918 /* ... update usbfs periodic stats */
919 ehci_to_hcd(ehci)->self.bandwidth_int_reqs++;
920
921done:
e9df41c5
AS
922 if (unlikely(status))
923 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
924done_not_linked:
1da177e4
LT
925 spin_unlock_irqrestore (&ehci->lock, flags);
926 if (status)
927 qtd_list_free (ehci, urb, qtd_list);
928
929 return status;
930}
931
569b394f
AS
932static void scan_intr(struct ehci_hcd *ehci)
933{
934 struct ehci_qh *qh;
935
936 list_for_each_entry_safe(qh, ehci->qh_scan_next, &ehci->intr_qh_list,
937 intr_node) {
938 rescan:
939 /* clean any finished work for this qh */
940 if (!list_empty(&qh->qtd_list)) {
941 int temp;
942
943 /*
944 * Unlinks could happen here; completion reporting
945 * drops the lock. That's why ehci->qh_scan_next
946 * always holds the next qh to scan; if the next qh
947 * gets unlinked then ehci->qh_scan_next is adjusted
948 * in qh_unlink_periodic().
949 */
950 temp = qh_completions(ehci, qh);
951 if (unlikely(qh->needs_rescan ||
952 (list_empty(&qh->qtd_list) &&
953 qh->qh_state == QH_STATE_LINKED)))
954 start_unlink_intr(ehci, qh);
955 else if (temp != 0)
956 goto rescan;
957 }
958 }
959}
960
1da177e4
LT
961/*-------------------------------------------------------------------------*/
962
963/* ehci_iso_stream ops work with both ITD and SITD */
964
965static struct ehci_iso_stream *
55016f10 966iso_stream_alloc (gfp_t mem_flags)
1da177e4
LT
967{
968 struct ehci_iso_stream *stream;
969
7b842b6e 970 stream = kzalloc(sizeof *stream, mem_flags);
1da177e4 971 if (likely (stream != NULL)) {
1da177e4
LT
972 INIT_LIST_HEAD(&stream->td_list);
973 INIT_LIST_HEAD(&stream->free_list);
974 stream->next_uframe = -1;
1da177e4
LT
975 }
976 return stream;
977}
978
979static void
980iso_stream_init (
981 struct ehci_hcd *ehci,
982 struct ehci_iso_stream *stream,
983 struct usb_device *dev,
984 int pipe,
985 unsigned interval
986)
987{
988 static const u8 smask_out [] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f };
989
990 u32 buf1;
991 unsigned epnum, maxp;
992 int is_input;
993 long bandwidth;
994
995 /*
996 * this might be a "high bandwidth" highspeed endpoint,
997 * as encoded in the ep descriptor's wMaxPacket field
998 */
999 epnum = usb_pipeendpoint (pipe);
1000 is_input = usb_pipein (pipe) ? USB_DIR_IN : 0;
1001 maxp = usb_maxpacket(dev, pipe, !is_input);
1002 if (is_input) {
1003 buf1 = (1 << 11);
1004 } else {
1005 buf1 = 0;
1006 }
1007
1008 /* knows about ITD vs SITD */
1009 if (dev->speed == USB_SPEED_HIGH) {
1010 unsigned multi = hb_mult(maxp);
1011
1012 stream->highspeed = 1;
1013
1014 maxp = max_packet(maxp);
1015 buf1 |= maxp;
1016 maxp *= multi;
1017
6dbd682b
SR
1018 stream->buf0 = cpu_to_hc32(ehci, (epnum << 8) | dev->devnum);
1019 stream->buf1 = cpu_to_hc32(ehci, buf1);
1020 stream->buf2 = cpu_to_hc32(ehci, multi);
1da177e4
LT
1021
1022 /* usbfs wants to report the average usecs per frame tied up
1023 * when transfers on this endpoint are scheduled ...
1024 */
1025 stream->usecs = HS_USECS_ISO (maxp);
1026 bandwidth = stream->usecs * 8;
372dd6e8 1027 bandwidth /= interval;
1da177e4
LT
1028
1029 } else {
1030 u32 addr;
d0384200 1031 int think_time;
469d0229 1032 int hs_transfers;
1da177e4
LT
1033
1034 addr = dev->ttport << 24;
1035 if (!ehci_is_TDI(ehci)
1036 || (dev->tt->hub !=
1037 ehci_to_hcd(ehci)->self.root_hub))
1038 addr |= dev->tt->hub->devnum << 16;
1039 addr |= epnum << 8;
1040 addr |= dev->devnum;
1041 stream->usecs = HS_USECS_ISO (maxp);
d0384200 1042 think_time = dev->tt ? dev->tt->think_time : 0;
1043 stream->tt_usecs = NS_TO_US (think_time + usb_calc_bus_time (
1044 dev->speed, is_input, 1, maxp));
469d0229 1045 hs_transfers = max (1u, (maxp + 187) / 188);
1da177e4
LT
1046 if (is_input) {
1047 u32 tmp;
1048
1049 addr |= 1 << 31;
1050 stream->c_usecs = stream->usecs;
1051 stream->usecs = HS_USECS_ISO (1);
1052 stream->raw_mask = 1;
1053
469d0229
CL
1054 /* c-mask as specified in USB 2.0 11.18.4 3.c */
1055 tmp = (1 << (hs_transfers + 2)) - 1;
1056 stream->raw_mask |= tmp << (8 + 2);
1da177e4 1057 } else
469d0229 1058 stream->raw_mask = smask_out [hs_transfers - 1];
1da177e4 1059 bandwidth = stream->usecs + stream->c_usecs;
372dd6e8 1060 bandwidth /= interval << 3;
1da177e4
LT
1061
1062 /* stream->splits gets created from raw_mask later */
6dbd682b 1063 stream->address = cpu_to_hc32(ehci, addr);
1da177e4
LT
1064 }
1065 stream->bandwidth = bandwidth;
1066
1067 stream->udev = dev;
1068
1069 stream->bEndpointAddress = is_input | epnum;
1070 stream->interval = interval;
1071 stream->maxp = maxp;
1072}
1073
1da177e4
LT
1074static struct ehci_iso_stream *
1075iso_stream_find (struct ehci_hcd *ehci, struct urb *urb)
1076{
1077 unsigned epnum;
1078 struct ehci_iso_stream *stream;
1079 struct usb_host_endpoint *ep;
1080 unsigned long flags;
1081
1082 epnum = usb_pipeendpoint (urb->pipe);
1083 if (usb_pipein(urb->pipe))
1084 ep = urb->dev->ep_in[epnum];
1085 else
1086 ep = urb->dev->ep_out[epnum];
1087
1088 spin_lock_irqsave (&ehci->lock, flags);
1089 stream = ep->hcpriv;
1090
1091 if (unlikely (stream == NULL)) {
1092 stream = iso_stream_alloc(GFP_ATOMIC);
1093 if (likely (stream != NULL)) {
1da177e4
LT
1094 ep->hcpriv = stream;
1095 stream->ep = ep;
1096 iso_stream_init(ehci, stream, urb->dev, urb->pipe,
1097 urb->interval);
1098 }
1099
1082f57a
CL
1100 /* if dev->ep [epnum] is a QH, hw is set */
1101 } else if (unlikely (stream->hw != NULL)) {
1da177e4
LT
1102 ehci_dbg (ehci, "dev %s ep%d%s, not iso??\n",
1103 urb->dev->devpath, epnum,
1104 usb_pipein(urb->pipe) ? "in" : "out");
1105 stream = NULL;
1106 }
1107
1da177e4
LT
1108 spin_unlock_irqrestore (&ehci->lock, flags);
1109 return stream;
1110}
1111
1112/*-------------------------------------------------------------------------*/
1113
1114/* ehci_iso_sched ops can be ITD-only or SITD-only */
1115
1116static struct ehci_iso_sched *
55016f10 1117iso_sched_alloc (unsigned packets, gfp_t mem_flags)
1da177e4
LT
1118{
1119 struct ehci_iso_sched *iso_sched;
1120 int size = sizeof *iso_sched;
1121
1122 size += packets * sizeof (struct ehci_iso_packet);
80b6ca48 1123 iso_sched = kzalloc(size, mem_flags);
1da177e4 1124 if (likely (iso_sched != NULL)) {
1da177e4
LT
1125 INIT_LIST_HEAD (&iso_sched->td_list);
1126 }
1127 return iso_sched;
1128}
1129
1130static inline void
6dbd682b
SR
1131itd_sched_init(
1132 struct ehci_hcd *ehci,
1da177e4
LT
1133 struct ehci_iso_sched *iso_sched,
1134 struct ehci_iso_stream *stream,
1135 struct urb *urb
1136)
1137{
1138 unsigned i;
1139 dma_addr_t dma = urb->transfer_dma;
1140
1141 /* how many uframes are needed for these transfers */
1142 iso_sched->span = urb->number_of_packets * stream->interval;
1143
1144 /* figure out per-uframe itd fields that we'll need later
1145 * when we fit new itds into the schedule.
1146 */
1147 for (i = 0; i < urb->number_of_packets; i++) {
1148 struct ehci_iso_packet *uframe = &iso_sched->packet [i];
1149 unsigned length;
1150 dma_addr_t buf;
1151 u32 trans;
1152
1153 length = urb->iso_frame_desc [i].length;
1154 buf = dma + urb->iso_frame_desc [i].offset;
1155
1156 trans = EHCI_ISOC_ACTIVE;
1157 trans |= buf & 0x0fff;
1158 if (unlikely (((i + 1) == urb->number_of_packets))
1159 && !(urb->transfer_flags & URB_NO_INTERRUPT))
1160 trans |= EHCI_ITD_IOC;
1161 trans |= length << 16;
6dbd682b 1162 uframe->transaction = cpu_to_hc32(ehci, trans);
1da177e4 1163
77078570 1164 /* might need to cross a buffer page within a uframe */
1da177e4
LT
1165 uframe->bufp = (buf & ~(u64)0x0fff);
1166 buf += length;
1167 if (unlikely ((uframe->bufp != (buf & ~(u64)0x0fff))))
1168 uframe->cross = 1;
1169 }
1170}
1171
1172static void
1173iso_sched_free (
1174 struct ehci_iso_stream *stream,
1175 struct ehci_iso_sched *iso_sched
1176)
1177{
1178 if (!iso_sched)
1179 return;
1180 // caller must hold ehci->lock!
1181 list_splice (&iso_sched->td_list, &stream->free_list);
1182 kfree (iso_sched);
1183}
1184
1185static int
1186itd_urb_transaction (
1187 struct ehci_iso_stream *stream,
1188 struct ehci_hcd *ehci,
1189 struct urb *urb,
55016f10 1190 gfp_t mem_flags
1da177e4
LT
1191)
1192{
1193 struct ehci_itd *itd;
1194 dma_addr_t itd_dma;
1195 int i;
1196 unsigned num_itds;
1197 struct ehci_iso_sched *sched;
1198 unsigned long flags;
1199
1200 sched = iso_sched_alloc (urb->number_of_packets, mem_flags);
1201 if (unlikely (sched == NULL))
1202 return -ENOMEM;
1203
6dbd682b 1204 itd_sched_init(ehci, sched, stream, urb);
1da177e4
LT
1205
1206 if (urb->interval < 8)
1207 num_itds = 1 + (sched->span + 7) / 8;
1208 else
1209 num_itds = urb->number_of_packets;
1210
1211 /* allocate/init ITDs */
1212 spin_lock_irqsave (&ehci->lock, flags);
1213 for (i = 0; i < num_itds; i++) {
1214
55934eb3
AS
1215 /*
1216 * Use iTDs from the free list, but not iTDs that may
1217 * still be in use by the hardware.
1da177e4 1218 */
55934eb3
AS
1219 if (likely(!list_empty(&stream->free_list))) {
1220 itd = list_first_entry(&stream->free_list,
6dbd682b 1221 struct ehci_itd, itd_list);
55934eb3
AS
1222 if (itd->frame == ehci->clock_frame)
1223 goto alloc_itd;
1da177e4
LT
1224 list_del (&itd->itd_list);
1225 itd_dma = itd->itd_dma;
3d01f0fe 1226 } else {
55934eb3 1227 alloc_itd:
1da177e4
LT
1228 spin_unlock_irqrestore (&ehci->lock, flags);
1229 itd = dma_pool_alloc (ehci->itd_pool, mem_flags,
1230 &itd_dma);
1231 spin_lock_irqsave (&ehci->lock, flags);
3d01f0fe
KW
1232 if (!itd) {
1233 iso_sched_free(stream, sched);
1234 spin_unlock_irqrestore(&ehci->lock, flags);
1235 return -ENOMEM;
1236 }
1da177e4
LT
1237 }
1238
1da177e4
LT
1239 memset (itd, 0, sizeof *itd);
1240 itd->itd_dma = itd_dma;
1241 list_add (&itd->itd_list, &sched->td_list);
1242 }
1243 spin_unlock_irqrestore (&ehci->lock, flags);
1244
1245 /* temporarily store schedule info in hcpriv */
1246 urb->hcpriv = sched;
1247 urb->error_count = 0;
1248 return 0;
1249}
1250
1251/*-------------------------------------------------------------------------*/
1252
1253static inline int
1254itd_slot_ok (
1255 struct ehci_hcd *ehci,
1256 u32 mod,
1257 u32 uframe,
1258 u8 usecs,
1259 u32 period
1260)
1261{
1262 uframe %= period;
1263 do {
cc62a7eb 1264 /* can't commit more than uframe_periodic_max usec */
1da177e4 1265 if (periodic_usecs (ehci, uframe >> 3, uframe & 0x7)
cc62a7eb 1266 > (ehci->uframe_periodic_max - usecs))
1da177e4
LT
1267 return 0;
1268
1269 /* we know urb->interval is 2^N uframes */
1270 uframe += period;
1271 } while (uframe < mod);
1272 return 1;
1273}
1274
1275static inline int
1276sitd_slot_ok (
1277 struct ehci_hcd *ehci,
1278 u32 mod,
1279 struct ehci_iso_stream *stream,
1280 u32 uframe,
1281 struct ehci_iso_sched *sched,
1282 u32 period_uframes
1283)
1284{
1285 u32 mask, tmp;
1286 u32 frame, uf;
1287
1288 mask = stream->raw_mask << (uframe & 7);
1289
1290 /* for IN, don't wrap CSPLIT into the next frame */
1291 if (mask & ~0xffff)
1292 return 0;
1293
65b8e5cb
AS
1294 /* check bandwidth */
1295 uframe %= period_uframes;
1296 frame = uframe >> 3;
1297
1298#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
1299 /* The tt's fullspeed bus bandwidth must be available.
1300 * tt_available scheduling guarantees 10+% for control/bulk.
1301 */
1302 uf = uframe & 7;
1303 if (!tt_available(ehci, period_uframes >> 3,
1304 stream->udev, frame, uf, stream->tt_usecs))
1305 return 0;
1306#else
1307 /* tt must be idle for start(s), any gap, and csplit.
1308 * assume scheduling slop leaves 10+% for control/bulk.
1309 */
1310 if (!tt_no_collision(ehci, period_uframes >> 3,
1311 stream->udev, frame, mask))
1312 return 0;
1313#endif
1314
1da177e4
LT
1315 /* this multi-pass logic is simple, but performance may
1316 * suffer when the schedule data isn't cached.
1317 */
1da177e4
LT
1318 do {
1319 u32 max_used;
1320
1321 frame = uframe >> 3;
1322 uf = uframe & 7;
1323
1da177e4 1324 /* check starts (OUT uses more than one) */
cc62a7eb 1325 max_used = ehci->uframe_periodic_max - stream->usecs;
1da177e4
LT
1326 for (tmp = stream->raw_mask & 0xff; tmp; tmp >>= 1, uf++) {
1327 if (periodic_usecs (ehci, frame, uf) > max_used)
1328 return 0;
1329 }
1330
1331 /* for IN, check CSPLIT */
1332 if (stream->c_usecs) {
0c734622 1333 uf = uframe & 7;
cc62a7eb 1334 max_used = ehci->uframe_periodic_max - stream->c_usecs;
1da177e4
LT
1335 do {
1336 tmp = 1 << uf;
1337 tmp <<= 8;
1338 if ((stream->raw_mask & tmp) == 0)
1339 continue;
1340 if (periodic_usecs (ehci, frame, uf)
1341 > max_used)
1342 return 0;
1343 } while (++uf < 8);
1344 }
1345
1346 /* we know urb->interval is 2^N uframes */
1347 uframe += period_uframes;
1348 } while (uframe < mod);
1349
6dbd682b 1350 stream->splits = cpu_to_hc32(ehci, stream->raw_mask << (uframe & 7));
1da177e4
LT
1351 return 1;
1352}
1353
1354/*
1355 * This scheduler plans almost as far into the future as it has actual
1356 * periodic schedule slots. (Affected by TUNE_FLS, which defaults to
1357 * "as small as possible" to be cache-friendlier.) That limits the size
1358 * transfers you can stream reliably; avoid more than 64 msec per urb.
1359 * Also avoid queue depths of less than ehci's worst irq latency (affected
1360 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
1361 * and other factors); or more than about 230 msec total (for portability,
1362 * given EHCI_TUNE_FLS and the slop). Or, write a smarter scheduler!
1363 */
1364
d7e055f1 1365#define SCHEDULE_SLOP 80 /* microframes */
1da177e4
LT
1366
1367static int
1368iso_stream_schedule (
1369 struct ehci_hcd *ehci,
1370 struct urb *urb,
1371 struct ehci_iso_stream *stream
1372)
1373{
ffda0803 1374 u32 now, next, start, period, span;
1da177e4
LT
1375 int status;
1376 unsigned mod = ehci->periodic_size << 3;
1377 struct ehci_iso_sched *sched = urb->hcpriv;
1378
ffda0803
AS
1379 period = urb->interval;
1380 span = sched->span;
1381 if (!stream->highspeed) {
1382 period <<= 3;
1383 span <<= 3;
1384 }
1385
1386 if (span > mod - SCHEDULE_SLOP) {
1da177e4
LT
1387 ehci_dbg (ehci, "iso request %p too long\n", urb);
1388 status = -EFBIG;
1389 goto fail;
1390 }
1391
68aa95d5 1392 now = ehci_read_frame_index(ehci) & (mod - 1);
1da177e4 1393
b40e43fc
AS
1394 /* Typical case: reuse current schedule, stream is still active.
1395 * Hopefully there are no gaps from the host falling behind
1396 * (irq delays etc), but if there are we'll take the next
1397 * slot in the schedule, implicitly assuming URB_ISO_ASAP.
1da177e4
LT
1398 */
1399 if (likely (!list_empty (&stream->td_list))) {
1fb2e055 1400 u32 excess;
dccd574c
SS
1401
1402 /* For high speed devices, allow scheduling within the
ae68a83b
AS
1403 * isochronous scheduling threshold. For full speed devices
1404 * and Intel PCI-based controllers, don't (work around for
1405 * Intel ICH9 bug).
dccd574c 1406 */
ae68a83b 1407 if (!stream->highspeed && ehci->fs_i_thresh)
dccd574c
SS
1408 next = now + ehci->i_thresh;
1409 else
1410 next = now;
b40e43fc 1411
1fb2e055
AS
1412 /* Fell behind (by up to twice the slop amount)?
1413 * We decide based on the time of the last currently-scheduled
1414 * slot, not the time of the next available slot.
1415 */
1416 excess = (stream->next_uframe - period - next) & (mod - 1);
1417 if (excess >= mod - 2 * SCHEDULE_SLOP)
1418 start = next + excess - mod + period *
1419 DIV_ROUND_UP(mod - excess, period);
1420 else
1421 start = next + excess + period;
1422 if (start - now >= mod) {
1423 ehci_dbg(ehci, "request %p would overflow (%d+%d >= %d)\n",
1424 urb, start - now - period, period,
1425 mod);
b40e43fc
AS
1426 status = -EFBIG;
1427 goto fail;
1428 }
1da177e4
LT
1429 }
1430
1431 /* need to schedule; when's the next (u)frame we could start?
1432 * this is bigger than ehci->i_thresh allows; scheduling itself
1433 * isn't free, the slop should handle reasonably slow cpus. it
1434 * can also help high bandwidth if the dma and irq loads don't
1435 * jump until after the queue is primed.
1436 */
1fb2e055 1437 else {
e3420901 1438 int done = 0;
1fb2e055
AS
1439 start = SCHEDULE_SLOP + (now & ~0x07);
1440
1441 /* NOTE: assumes URB_ISO_ASAP, to limit complexity/bugs */
1442
811c926c
TP
1443 /* find a uframe slot with enough bandwidth.
1444 * Early uframes are more precious because full-speed
1445 * iso IN transfers can't use late uframes,
1446 * and therefore they should be allocated last.
1447 */
1448 next = start;
1449 start += period;
1450 do {
1451 start--;
1fb2e055
AS
1452 /* check schedule: enough space? */
1453 if (stream->highspeed) {
1454 if (itd_slot_ok(ehci, mod, start,
1455 stream->usecs, period))
e3420901 1456 done = 1;
1fb2e055
AS
1457 } else {
1458 if ((start % 8) >= 6)
1459 continue;
1460 if (sitd_slot_ok(ehci, mod, stream,
1461 start, sched, period))
e3420901 1462 done = 1;
1fb2e055 1463 }
e3420901 1464 } while (start > next && !done);
1da177e4 1465
1fb2e055 1466 /* no room in the schedule */
e3420901 1467 if (!done) {
1fb2e055
AS
1468 ehci_dbg(ehci, "iso resched full %p (now %d max %d)\n",
1469 urb, now, now + mod);
1470 status = -ENOSPC;
1471 goto fail;
1da177e4
LT
1472 }
1473 }
1474
1fb2e055
AS
1475 /* Tried to schedule too far into the future? */
1476 if (unlikely(start - now + span - period
1477 >= mod - 2 * SCHEDULE_SLOP)) {
1478 ehci_dbg(ehci, "request %p would overflow (%d+%d >= %d)\n",
1479 urb, start - now, span - period,
1480 mod - 2 * SCHEDULE_SLOP);
1481 status = -EFBIG;
1482 goto fail;
1483 }
1da177e4 1484
1fb2e055 1485 stream->next_uframe = start & (mod - 1);
1da177e4 1486
1da177e4
LT
1487 /* report high speed start in uframes; full speed, in frames */
1488 urb->start_frame = stream->next_uframe;
1489 if (!stream->highspeed)
1490 urb->start_frame >>= 3;
569b394f
AS
1491
1492 /* Make sure scan_isoc() sees these */
1493 if (ehci->isoc_count == 0)
1494 ehci->next_uframe = now;
1da177e4 1495 return 0;
1fb2e055
AS
1496
1497 fail:
1498 iso_sched_free(stream, sched);
1499 urb->hcpriv = NULL;
1500 return status;
1da177e4
LT
1501}
1502
1503/*-------------------------------------------------------------------------*/
1504
1505static inline void
6dbd682b
SR
1506itd_init(struct ehci_hcd *ehci, struct ehci_iso_stream *stream,
1507 struct ehci_itd *itd)
1da177e4
LT
1508{
1509 int i;
1510
77078570 1511 /* it's been recently zeroed */
6dbd682b 1512 itd->hw_next = EHCI_LIST_END(ehci);
1da177e4
LT
1513 itd->hw_bufp [0] = stream->buf0;
1514 itd->hw_bufp [1] = stream->buf1;
1515 itd->hw_bufp [2] = stream->buf2;
1516
1517 for (i = 0; i < 8; i++)
1518 itd->index[i] = -1;
1519
1520 /* All other fields are filled when scheduling */
1521}
1522
1523static inline void
6dbd682b
SR
1524itd_patch(
1525 struct ehci_hcd *ehci,
1da177e4
LT
1526 struct ehci_itd *itd,
1527 struct ehci_iso_sched *iso_sched,
1528 unsigned index,
77078570 1529 u16 uframe
1da177e4
LT
1530)
1531{
1532 struct ehci_iso_packet *uf = &iso_sched->packet [index];
1533 unsigned pg = itd->pg;
1534
1535 // BUG_ON (pg == 6 && uf->cross);
1536
1537 uframe &= 0x07;
1538 itd->index [uframe] = index;
1539
6dbd682b
SR
1540 itd->hw_transaction[uframe] = uf->transaction;
1541 itd->hw_transaction[uframe] |= cpu_to_hc32(ehci, pg << 12);
1542 itd->hw_bufp[pg] |= cpu_to_hc32(ehci, uf->bufp & ~(u32)0);
1543 itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(uf->bufp >> 32));
1da177e4
LT
1544
1545 /* iso_frame_desc[].offset must be strictly increasing */
77078570 1546 if (unlikely (uf->cross)) {
1da177e4 1547 u64 bufp = uf->bufp + 4096;
6dbd682b 1548
1da177e4 1549 itd->pg = ++pg;
6dbd682b
SR
1550 itd->hw_bufp[pg] |= cpu_to_hc32(ehci, bufp & ~(u32)0);
1551 itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(bufp >> 32));
1da177e4
LT
1552 }
1553}
1554
1555static inline void
1556itd_link (struct ehci_hcd *ehci, unsigned frame, struct ehci_itd *itd)
1557{
92bc3648
CL
1558 union ehci_shadow *prev = &ehci->pshadow[frame];
1559 __hc32 *hw_p = &ehci->periodic[frame];
1560 union ehci_shadow here = *prev;
1561 __hc32 type = 0;
1562
1563 /* skip any iso nodes which might belong to previous microframes */
1564 while (here.ptr) {
1565 type = Q_NEXT_TYPE(ehci, *hw_p);
1566 if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
1567 break;
1568 prev = periodic_next_shadow(ehci, prev, type);
1569 hw_p = shadow_next_periodic(ehci, &here, type);
1570 here = *prev;
1571 }
1572
1573 itd->itd_next = here;
1574 itd->hw_next = *hw_p;
1575 prev->itd = itd;
1da177e4
LT
1576 itd->frame = frame;
1577 wmb ();
92bc3648 1578 *hw_p = cpu_to_hc32(ehci, itd->itd_dma | Q_TYPE_ITD);
1da177e4
LT
1579}
1580
1581/* fit urb's itds into the selected schedule slot; activate as needed */
b015cb79 1582static void itd_link_urb(
1da177e4
LT
1583 struct ehci_hcd *ehci,
1584 struct urb *urb,
1585 unsigned mod,
1586 struct ehci_iso_stream *stream
1587)
1588{
77078570 1589 int packet;
1da177e4
LT
1590 unsigned next_uframe, uframe, frame;
1591 struct ehci_iso_sched *iso_sched = urb->hcpriv;
1592 struct ehci_itd *itd;
1593
bccbefaa 1594 next_uframe = stream->next_uframe & (mod - 1);
1da177e4
LT
1595
1596 if (unlikely (list_empty(&stream->td_list))) {
1597 ehci_to_hcd(ehci)->self.bandwidth_allocated
1598 += stream->bandwidth;
1599 ehci_vdbg (ehci,
1600 "schedule devp %s ep%d%s-iso period %d start %d.%d\n",
1601 urb->dev->devpath, stream->bEndpointAddress & 0x0f,
1602 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
1603 urb->interval,
1604 next_uframe >> 3, next_uframe & 0x7);
1da177e4 1605 }
05570297
AH
1606
1607 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
ad93562b
AX
1608 if (ehci->amd_pll_fix == 1)
1609 usb_amd_quirk_pll_disable();
05570297
AH
1610 }
1611
1da177e4
LT
1612 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
1613
1614 /* fill iTDs uframe by uframe */
1615 for (packet = 0, itd = NULL; packet < urb->number_of_packets; ) {
1616 if (itd == NULL) {
1617 /* ASSERT: we have all necessary itds */
1618 // BUG_ON (list_empty (&iso_sched->td_list));
1619
1620 /* ASSERT: no itds for this endpoint in this uframe */
1621
1622 itd = list_entry (iso_sched->td_list.next,
1623 struct ehci_itd, itd_list);
1624 list_move_tail (&itd->itd_list, &stream->td_list);
8c5bf7be 1625 itd->stream = stream;
508db8c9 1626 itd->urb = urb;
6dbd682b 1627 itd_init (ehci, stream, itd);
1da177e4
LT
1628 }
1629
1630 uframe = next_uframe & 0x07;
1631 frame = next_uframe >> 3;
1632
6dbd682b 1633 itd_patch(ehci, itd, iso_sched, packet, uframe);
1da177e4
LT
1634
1635 next_uframe += stream->interval;
bccbefaa 1636 next_uframe &= mod - 1;
1da177e4
LT
1637 packet++;
1638
1639 /* link completed itds into the schedule */
1640 if (((next_uframe >> 3) != frame)
1641 || packet == urb->number_of_packets) {
bccbefaa 1642 itd_link(ehci, frame & (ehci->periodic_size - 1), itd);
1da177e4
LT
1643 itd = NULL;
1644 }
1645 }
1646 stream->next_uframe = next_uframe;
1647
1648 /* don't need that schedule data any more */
1649 iso_sched_free (stream, iso_sched);
1650 urb->hcpriv = NULL;
1651
1652 timer_action (ehci, TIMER_IO_WATCHDOG);
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
2055 timer_action (ehci, TIMER_IO_WATCHDOG);
569b394f 2056 ++ehci->isoc_count;
b015cb79 2057 enable_periodic(ehci);
1da177e4
LT
2058}
2059
2060/*-------------------------------------------------------------------------*/
2061
2062#define SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
53bd6a60 2063 | SITD_STS_XACT | SITD_STS_MMF)
1da177e4 2064
30bf54e6
DB
2065/* Process and recycle a completed SITD. Return true iff its urb completed,
2066 * and hence its completion callback probably added things to the hardware
2067 * schedule.
2068 *
2069 * Note that we carefully avoid recycling this descriptor until after any
2070 * completion callback runs, so that it won't be reused quickly. That is,
2071 * assuming (a) no more than two urbs per frame on this endpoint, and also
2072 * (b) only this endpoint's completions submit URBs. It seems some silicon
2073 * corrupts things if you reuse completed descriptors very quickly...
2074 */
1da177e4
LT
2075static unsigned
2076sitd_complete (
2077 struct ehci_hcd *ehci,
7d12e780 2078 struct ehci_sitd *sitd
1da177e4
LT
2079) {
2080 struct urb *urb = sitd->urb;
2081 struct usb_iso_packet_descriptor *desc;
2082 u32 t;
2083 int urb_index = -1;
2084 struct ehci_iso_stream *stream = sitd->stream;
2085 struct usb_device *dev;
30bf54e6 2086 unsigned retval = false;
1da177e4
LT
2087
2088 urb_index = sitd->index;
2089 desc = &urb->iso_frame_desc [urb_index];
6dbd682b 2090 t = hc32_to_cpup(ehci, &sitd->hw_results);
1da177e4
LT
2091
2092 /* report transfer status */
2093 if (t & SITD_ERRS) {
2094 urb->error_count++;
2095 if (t & SITD_STS_DBE)
2096 desc->status = usb_pipein (urb->pipe)
2097 ? -ENOSR /* hc couldn't read */
2098 : -ECOMM; /* hc couldn't write */
2099 else if (t & SITD_STS_BABBLE)
2100 desc->status = -EOVERFLOW;
2101 else /* XACT, MMF, etc */
2102 desc->status = -EPROTO;
2103 } else {
2104 desc->status = 0;
ec6d67e3
AS
2105 desc->actual_length = desc->length - SITD_LENGTH(t);
2106 urb->actual_length += desc->actual_length;
1da177e4 2107 }
1da177e4
LT
2108
2109 /* handle completion now? */
2110 if ((urb_index + 1) != urb->number_of_packets)
30bf54e6 2111 goto done;
1da177e4
LT
2112
2113 /* ASSERT: it's really the last sitd for this urb
2114 list_for_each_entry (sitd, &stream->td_list, sitd_list)
2115 BUG_ON (sitd->urb == urb);
2116 */
2117
aa16ca30 2118 /* give urb back to the driver; completion often (re)submits */
6a8e87b2 2119 dev = urb->dev;
14c04c0f 2120 ehci_urb_done(ehci, urb, 0);
30bf54e6 2121 retval = true;
1da177e4 2122 urb = NULL;
569b394f
AS
2123
2124 --ehci->isoc_count;
b015cb79 2125 disable_periodic(ehci);
1da177e4 2126
569b394f 2127 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
05570297 2128 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
ad93562b
AX
2129 if (ehci->amd_pll_fix == 1)
2130 usb_amd_quirk_pll_enable();
05570297
AH
2131 }
2132
508db8c9 2133 if (list_is_singular(&stream->td_list)) {
1da177e4
LT
2134 ehci_to_hcd(ehci)->self.bandwidth_allocated
2135 -= stream->bandwidth;
2136 ehci_vdbg (ehci,
2137 "deschedule devp %s ep%d%s-iso\n",
2138 dev->devpath, stream->bEndpointAddress & 0x0f,
2139 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out");
2140 }
0e5f231b 2141
30bf54e6 2142done:
30bf54e6 2143 sitd->urb = NULL;
55934eb3
AS
2144
2145 /* Add to the end of the free list for later reuse */
2146 list_move_tail(&sitd->sitd_list, &stream->free_list);
2147
2148 /* Recycle the siTDs when the pipeline is empty (ep no longer in use) */
2149 if (list_empty(&stream->td_list)) {
2150 list_splice_tail_init(&stream->free_list,
2151 &ehci->cached_sitd_list);
2152 start_free_itds(ehci);
0e5f231b 2153 }
55934eb3 2154
30bf54e6 2155 return retval;
1da177e4
LT
2156}
2157
2158
5db539e4 2159static int sitd_submit (struct ehci_hcd *ehci, struct urb *urb,
55016f10 2160 gfp_t mem_flags)
1da177e4
LT
2161{
2162 int status = -EINVAL;
2163 unsigned long flags;
2164 struct ehci_iso_stream *stream;
2165
2166 /* Get iso_stream head */
2167 stream = iso_stream_find (ehci, urb);
2168 if (stream == NULL) {
2169 ehci_dbg (ehci, "can't get iso stream\n");
2170 return -ENOMEM;
2171 }
2172 if (urb->interval != stream->interval) {
2173 ehci_dbg (ehci, "can't change iso interval %d --> %d\n",
2174 stream->interval, urb->interval);
2175 goto done;
2176 }
2177
2178#ifdef EHCI_URB_TRACE
2179 ehci_dbg (ehci,
2180 "submit %p dev%s ep%d%s-iso len %d\n",
2181 urb, urb->dev->devpath,
2182 usb_pipeendpoint (urb->pipe),
2183 usb_pipein (urb->pipe) ? "in" : "out",
2184 urb->transfer_buffer_length);
2185#endif
2186
2187 /* allocate SITDs */
2188 status = sitd_urb_transaction (stream, ehci, urb, mem_flags);
2189 if (status < 0) {
2190 ehci_dbg (ehci, "can't init sitds\n");
2191 goto done;
2192 }
2193
2194 /* schedule ... need to lock */
2195 spin_lock_irqsave (&ehci->lock, flags);
541c7d43 2196 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
8de98402 2197 status = -ESHUTDOWN;
e9df41c5
AS
2198 goto done_not_linked;
2199 }
2200 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
2201 if (unlikely(status))
2202 goto done_not_linked;
2203 status = iso_stream_schedule(ehci, urb, stream);
53bd6a60 2204 if (status == 0)
1da177e4 2205 sitd_link_urb (ehci, urb, ehci->periodic_size << 3, stream);
e9df41c5
AS
2206 else
2207 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
8c5bf7be 2208 done_not_linked:
1da177e4 2209 spin_unlock_irqrestore (&ehci->lock, flags);
8c5bf7be 2210 done:
1da177e4
LT
2211 return status;
2212}
2213
1da177e4
LT
2214/*-------------------------------------------------------------------------*/
2215
569b394f 2216static void scan_isoc(struct ehci_hcd *ehci)
1da177e4 2217{
b40e43fc 2218 unsigned now_uframe, frame, clock, clock_frame, mod;
1da177e4
LT
2219 unsigned modified;
2220
2221 mod = ehci->periodic_size << 3;
2222
2223 /*
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.
2227 */
2228 now_uframe = ehci->next_uframe;
c0c53dbc 2229 if (ehci->rh_state >= EHCI_RH_RUNNING) {
68aa95d5 2230 clock = ehci_read_frame_index(ehci);
bccbefaa 2231 clock_frame = (clock >> 3) & (ehci->periodic_size - 1);
9aa09d2f 2232 } else {
1da177e4 2233 clock = now_uframe + mod - 1;
9aa09d2f
KW
2234 clock_frame = -1;
2235 }
55934eb3 2236 ehci->clock_frame = clock_frame;
bccbefaa 2237 clock &= mod - 1;
b40e43fc 2238 clock_frame = clock >> 3;
1da177e4
LT
2239
2240 for (;;) {
2241 union ehci_shadow q, *q_p;
6dbd682b 2242 __hc32 type, *hw_p;
79592b72 2243 unsigned incomplete = false;
1da177e4 2244
1da177e4 2245 frame = now_uframe >> 3;
1da177e4
LT
2246
2247restart:
2248 /* scan each element in frame's queue for completions */
2249 q_p = &ehci->pshadow [frame];
2250 hw_p = &ehci->periodic [frame];
2251 q.ptr = q_p->ptr;
6dbd682b 2252 type = Q_NEXT_TYPE(ehci, *hw_p);
1da177e4
LT
2253 modified = 0;
2254
2255 while (q.ptr != NULL) {
2256 unsigned uf;
1da177e4
LT
2257 int live;
2258
c0c53dbc 2259 live = (ehci->rh_state >= EHCI_RH_RUNNING);
6dbd682b 2260 switch (hc32_to_cpu(ehci, type)) {
1da177e4 2261 case Q_TYPE_ITD:
79592b72
DB
2262 /* If this ITD is still active, leave it for
2263 * later processing ... check the next entry.
b40e43fc
AS
2264 * No need to check for activity unless the
2265 * frame is current.
79592b72 2266 */
b40e43fc
AS
2267 if (frame == clock_frame && live) {
2268 rmb();
2269 for (uf = 0; uf < 8; uf++) {
2270 if (q.itd->hw_transaction[uf] &
2271 ITD_ACTIVE(ehci))
2272 break;
2273 }
2274 if (uf < 8) {
2275 incomplete = true;
2276 q_p = &q.itd->itd_next;
2277 hw_p = &q.itd->hw_next;
2278 type = Q_NEXT_TYPE(ehci,
6dbd682b 2279 q.itd->hw_next);
b40e43fc
AS
2280 q = *q_p;
2281 break;
2282 }
1da177e4 2283 }
1da177e4 2284
79592b72
DB
2285 /* Take finished ITDs out of the schedule
2286 * and process them: recycle, maybe report
2287 * URB completion. HC won't cache the
1da177e4
LT
2288 * pointer for much longer, if at all.
2289 */
2290 *q_p = q.itd->itd_next;
3d091a6f
AX
2291 if (!ehci->use_dummy_qh ||
2292 q.itd->hw_next != EHCI_LIST_END(ehci))
2293 *hw_p = q.itd->hw_next;
2294 else
2295 *hw_p = ehci->dummy->qh_dma;
6dbd682b 2296 type = Q_NEXT_TYPE(ehci, q.itd->hw_next);
1da177e4 2297 wmb();
7d12e780 2298 modified = itd_complete (ehci, q.itd);
1da177e4
LT
2299 q = *q_p;
2300 break;
2301 case Q_TYPE_SITD:
79592b72
DB
2302 /* If this SITD is still active, leave it for
2303 * later processing ... check the next entry.
b40e43fc
AS
2304 * No need to check for activity unless the
2305 * frame is current.
79592b72 2306 */
22e18694 2307 if (((frame == clock_frame) ||
bccbefaa 2308 (((frame + 1) & (ehci->periodic_size - 1))
22e18694
DE
2309 == clock_frame))
2310 && live
2311 && (q.sitd->hw_results &
2312 SITD_ACTIVE(ehci))) {
2313
79592b72 2314 incomplete = true;
1da177e4
LT
2315 q_p = &q.sitd->sitd_next;
2316 hw_p = &q.sitd->hw_next;
6dbd682b
SR
2317 type = Q_NEXT_TYPE(ehci,
2318 q.sitd->hw_next);
1da177e4
LT
2319 q = *q_p;
2320 break;
2321 }
79592b72
DB
2322
2323 /* Take finished SITDs out of the schedule
2324 * and process them: recycle, maybe report
2325 * URB completion.
2326 */
1da177e4 2327 *q_p = q.sitd->sitd_next;
3d091a6f
AX
2328 if (!ehci->use_dummy_qh ||
2329 q.sitd->hw_next != EHCI_LIST_END(ehci))
2330 *hw_p = q.sitd->hw_next;
2331 else
2332 *hw_p = ehci->dummy->qh_dma;
6dbd682b 2333 type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
1da177e4 2334 wmb();
7d12e780 2335 modified = sitd_complete (ehci, q.sitd);
1da177e4
LT
2336 q = *q_p;
2337 break;
2338 default:
2d0fe1bb 2339 ehci_dbg(ehci, "corrupt type %d frame %d shadow %p\n",
1da177e4
LT
2340 type, frame, q.ptr);
2341 // BUG ();
569b394f
AS
2342 /* FALL THROUGH */
2343 case Q_TYPE_QH:
2344 case Q_TYPE_FSTN:
2345 /* End of the iTDs and siTDs */
1da177e4 2346 q.ptr = NULL;
569b394f 2347 break;
1da177e4
LT
2348 }
2349
2350 /* assume completion callbacks modify the queue */
aa16ca30 2351 if (unlikely (modified)) {
569b394f 2352 if (likely(ehci->isoc_count > 0))
aa16ca30 2353 goto restart;
01c17142 2354 /* short-circuit this scan */
aa16ca30
DB
2355 now_uframe = clock;
2356 break;
2357 }
1da177e4
LT
2358 }
2359
79592b72
DB
2360 /* If we can tell we caught up to the hardware, stop now.
2361 * We can't advance our scan without collecting the ISO
2362 * transfers that are still pending in this frame.
2363 */
c0c53dbc 2364 if (incomplete && ehci->rh_state >= EHCI_RH_RUNNING) {
79592b72
DB
2365 ehci->next_uframe = now_uframe;
2366 break;
2367 }
1da177e4
LT
2368
2369 // FIXME: this assumes we won't get lapped when
2370 // latencies climb; that should be rare, but...
2371 // detect it, and just go all the way around.
2372 // FLR might help detect this case, so long as latencies
2373 // don't exceed periodic_size msec (default 1.024 sec).
2374
2375 // FIXME: likewise assumes HC doesn't halt mid-scan
2376
2377 if (now_uframe == clock) {
2378 unsigned now;
2379
c0c53dbc 2380 if (ehci->rh_state < EHCI_RH_RUNNING
569b394f 2381 || ehci->isoc_count == 0)
1da177e4
LT
2382 break;
2383 ehci->next_uframe = now_uframe;
68aa95d5 2384 now = ehci_read_frame_index(ehci) & (mod - 1);
1da177e4
LT
2385 if (now_uframe == now)
2386 break;
2387
2388 /* rescan the rest of this frame, then ... */
2389 clock = now;
b40e43fc 2390 clock_frame = clock >> 3;
569b394f 2391 ehci->clock_frame = clock_frame;
1da177e4
LT
2392 } else {
2393 now_uframe++;
bccbefaa 2394 now_uframe &= mod - 1;
1da177e4 2395 }
53bd6a60 2396 }
1da177e4 2397}
This page took 0.969181 seconds and 5 git commands to generate.