blob: 263b542985c0ef023fb1f68dbf11e531a454d3b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2001-2004 by David Brownell
3 * Copyright (c) 2003 Michal Sojka, for high-speed iso transfers
David Brownell53bd6a62006-08-30 14:50:06 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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
Alan Stern68aa95d2011-10-12 10:39:14 -040039#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*-------------------------------------------------------------------------*/
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 *
Stefan Roese6dbd6822007-05-01 09:29:37 -070068periodic_next_shadow(struct ehci_hcd *ehci, union ehci_shadow *periodic,
69 __hc32 tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Stefan Roese6dbd6822007-05-01 09:29:37 -070071 switch (hc32_to_cpu(ehci, tag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 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
Alek Du3807e262009-07-14 07:23:29 +080084static __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
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* caller must hold ehci->lock */
99static void periodic_unlink (struct ehci_hcd *ehci, unsigned frame, void *ptr)
100{
Stefan Roese6dbd6822007-05-01 09:29:37 -0700101 union ehci_shadow *prev_p = &ehci->pshadow[frame];
102 __hc32 *hw_p = &ehci->periodic[frame];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 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) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700107 prev_p = periodic_next_shadow(ehci, prev_p,
108 Q_NEXT_TYPE(ehci, *hw_p));
Alek Du3807e262009-07-14 07:23:29 +0800109 hw_p = shadow_next_periodic(ehci, &here,
110 Q_NEXT_TYPE(ehci, *hw_p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 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 */
Stefan Roese6dbd6822007-05-01 09:29:37 -0700120 *prev_p = *periodic_next_shadow(ehci, &here,
121 Q_NEXT_TYPE(ehci, *hw_p));
Andiry Xu3d091a62010-11-08 17:58:35 +0800122
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
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{
Stefan Roese6dbd6822007-05-01 09:29:37 -0700136 __hc32 *hw_p = &ehci->periodic [frame];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 union ehci_shadow *q = &ehci->pshadow [frame];
138 unsigned usecs = 0;
Alek Du3807e262009-07-14 07:23:29 +0800139 struct ehci_qh_hw *hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 while (q->ptr) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700142 switch (hc32_to_cpu(ehci, Q_NEXT_TYPE(ehci, *hw_p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 case Q_TYPE_QH:
Alek Du3807e262009-07-14 07:23:29 +0800144 hw = q->qh->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /* is it in the S-mask? */
Alek Du3807e262009-07-14 07:23:29 +0800146 if (hw->hw_info2 & cpu_to_hc32(ehci, 1 << uframe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 usecs += q->qh->usecs;
148 /* ... or C-mask? */
Alek Du3807e262009-07-14 07:23:29 +0800149 if (hw->hw_info2 & cpu_to_hc32(ehci,
Stefan Roese6dbd6822007-05-01 09:29:37 -0700150 1 << (8 + uframe)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 usecs += q->qh->c_usecs;
Alek Du3807e262009-07-14 07:23:29 +0800152 hw_p = &hw->hw_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 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 */
Stefan Roese6dbd6822007-05-01 09:29:37 -0700160 if (q->fstn->hw_prev != EHCI_LIST_END(ehci)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 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:
Karsten Wiese3b6fcfd2007-12-30 21:55:05 -0800167 if (q->itd->hw_transaction[uframe])
168 usecs += q->itd->stream->usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 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) */
Stefan Roese6dbd6822007-05-01 09:29:37 -0700174 if (q->sitd->hw_uframe & cpu_to_hc32(ehci,
175 1 << uframe)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (q->sitd->hw_fullspeed_ep &
Stefan Roese6dbd6822007-05-01 09:29:37 -0700177 cpu_to_hc32(ehci, 1<<31))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 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 &
Stefan Roese6dbd6822007-05-01 09:29:37 -0700185 cpu_to_hc32(ehci, 1 << (8 + uframe))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /* 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
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +0400196 if (usecs > ehci->uframe_periodic_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 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
Dan Streetmanba47f662006-05-24 09:39:16 -0700217#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 */
Stefan Roese6dbd6822007-05-01 09:29:37 -0700227static inline unsigned char tt_start_uframe(struct ehci_hcd *ehci, __hc32 mask)
Dan Streetmanba47f662006-05-24 09:39:16 -0700228{
Stefan Roese6dbd6822007-05-01 09:29:37 -0700229 unsigned char smask = QH_SMASK & hc32_to_cpu(ehci, mask);
Dan Streetmanba47f662006-05-24 09:39:16 -0700230 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 *
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800260 * For example two separate 100 usec transfers can start in the same uframe,
Dan Streetmanba47f662006-05-24 09:39:16 -0700261 * 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{
Stefan Roese6dbd6822007-05-01 09:29:37 -0700271 __hc32 *hw_p = &ehci->periodic [frame];
Dan Streetmanba47f662006-05-24 09:39:16 -0700272 union ehci_shadow *q = &ehci->pshadow [frame];
273 unsigned char uf;
274
275 memset(tt_usecs, 0, 16);
276
277 while (q->ptr) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700278 switch (hc32_to_cpu(ehci, Q_NEXT_TYPE(ehci, *hw_p))) {
Dan Streetmanba47f662006-05-24 09:39:16 -0700279 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)) {
Alek Du3807e262009-07-14 07:23:29 +0800285 uf = tt_start_uframe(ehci, q->qh->hw->hw_info2);
Dan Streetmanba47f662006-05-24 09:39:16 -0700286 tt_usecs[uf] += q->qh->tt_usecs;
287 }
Alek Du3807e262009-07-14 07:23:29 +0800288 hw_p = &q->qh->hw->hw_next;
Dan Streetmanba47f662006-05-24 09:39:16 -0700289 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:
Stefan Roese6dbd6822007-05-01 09:29:37 -0700301 ehci_dbg(ehci, "ignoring periodic frame %d FSTN\n",
302 frame);
Dan Streetmanba47f662006-05-24 09:39:16 -0700303 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) {
Dan Streetmanc065c602009-04-21 13:37:12 -0400371 int ufs = (usecs / 125);
Dan Streetmanba47f662006-05-24 09:39:16 -0700372 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/* 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;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700422 __hc32 type;
Alek Du3807e262009-07-14 07:23:29 +0800423 struct ehci_qh_hw *hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 here = ehci->pshadow [frame];
Stefan Roese6dbd6822007-05-01 09:29:37 -0700426 type = Q_NEXT_TYPE(ehci, ehci->periodic [frame]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 while (here.ptr) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700428 switch (hc32_to_cpu(ehci, type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 case Q_TYPE_ITD:
Stefan Roese6dbd6822007-05-01 09:29:37 -0700430 type = Q_NEXT_TYPE(ehci, here.itd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 here = here.itd->itd_next;
432 continue;
433 case Q_TYPE_QH:
Alek Du3807e262009-07-14 07:23:29 +0800434 hw = here.qh->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (same_tt (dev, here.qh->dev)) {
436 u32 mask;
437
Stefan Roese6dbd6822007-05-01 09:29:37 -0700438 mask = hc32_to_cpu(ehci,
Alek Du3807e262009-07-14 07:23:29 +0800439 hw->hw_info2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* "knows" no gap is needed */
441 mask |= mask >> 8;
442 if (mask & uf_mask)
443 break;
444 }
Alek Du3807e262009-07-14 07:23:29 +0800445 type = Q_NEXT_TYPE(ehci, hw->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 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
Stefan Roese6dbd6822007-05-01 09:29:37 -0700452 mask = hc32_to_cpu(ehci, here.sitd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 ->hw_uframe);
454 /* FIXME assumes no gap for IN! */
455 mask |= mask >> 8;
456 if (mask & uf_mask)
457 break;
458 }
Stefan Roese6dbd6822007-05-01 09:29:37 -0700459 type = Q_NEXT_TYPE(ehci, here.sitd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 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
Dan Streetmanba47f662006-05-24 09:39:16 -0700478#endif /* CONFIG_USB_EHCI_TT_NEWSCHED */
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/*-------------------------------------------------------------------------*/
481
Alan Sternb015cb72012-07-11 11:22:10 -0400482static void enable_periodic(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400484 if (ehci->periodic_count++)
Alan Sternb015cb72012-07-11 11:22:10 -0400485 return;
David Brownell01c17142008-08-26 23:35:04 -0700486
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400487 /* Stop waiting to turn off the periodic schedule */
488 ehci->enabled_hrtimer_events &= ~BIT(EHCI_HRTIMER_DISABLE_PERIODIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400490 /* Don't start the schedule until PSS is 0 */
491 ehci_poll_PSS(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Alan Sternb015cb72012-07-11 11:22:10 -0400494static void disable_periodic(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400496 if (--ehci->periodic_count)
Alan Sternb015cb72012-07-11 11:22:10 -0400497 return;
David Brownell01c17142008-08-26 23:35:04 -0700498
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400499 ehci->next_uframe = -1; /* the periodic schedule is empty */
Oliver Neukumee4ecb82009-11-27 15:17:59 +0100500
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400501 /* Don't turn off the schedule until PSS is 1 */
502 ehci_poll_PSS(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
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 */
Alan Sternb015cb72012-07-11 11:22:10 -0400513static void qh_link_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
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",
Alek Du3807e262009-07-14 07:23:29 +0800520 period, hc32_to_cpup(ehci, &qh->hw->hw_info2)
521 & (QH_CMASK | QH_SMASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 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) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700529 union ehci_shadow *prev = &ehci->pshadow[i];
530 __hc32 *hw_p = &ehci->periodic[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 union ehci_shadow here = *prev;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700532 __hc32 type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /* skip the iso nodes at list head */
535 while (here.ptr) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700536 type = Q_NEXT_TYPE(ehci, *hw_p);
537 if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700539 prev = periodic_next_shadow(ehci, prev, type);
Alek Du3807e262009-07-14 07:23:29 +0800540 hw_p = shadow_next_periodic(ehci, &here, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 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;
Alek Du3807e262009-07-14 07:23:29 +0800551 hw_p = &here.qh->hw->hw_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 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)
Alek Du3807e262009-07-14 07:23:29 +0800558 qh->hw->hw_next = *hw_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 wmb ();
560 prev->qh = qh;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700561 *hw_p = QH_NEXT (ehci, qh->qh_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563 }
564 qh->qh_state = QH_STATE_LINKED;
Alan Sternef4638f2009-07-31 10:41:40 -0400565 qh->xacterrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
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
Alan Stern569b3942012-07-11 11:23:00 -0400572 list_add(&qh->intr_node, &ehci->intr_qh_list);
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* maybe enable periodic schedule processing */
Alan Stern569b3942012-07-11 11:23:00 -0400575 ++ehci->intr_count;
Alan Sternb015cb72012-07-11 11:22:10 -0400576 enable_periodic(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Alan Sternb015cb72012-07-11 11:22:10 -0400579static void qh_unlink_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 unsigned i;
582 unsigned period;
583
Alan Sterndf202252012-07-11 11:22:26 -0400584 /*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
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",
David Brownell7dedacf2005-08-04 18:06:41 -0700613 qh->period,
Alek Du3807e262009-07-14 07:23:29 +0800614 hc32_to_cpup(ehci, &qh->hw->hw_info2) & (QH_CMASK | QH_SMASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 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;
Alan Stern569b3942012-07-11 11:23:00 -0400620
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Alan Sterndf202252012-07-11 11:22:26 -0400627static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Alan Sterna448c9d2009-08-19 12:22:44 -0400629 /* 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 qh_unlink_periodic (ehci, qh);
640
Alan Sterndf202252012-07-11 11:22:26 -0400641 /* Make sure the unlinks are visible before starting the timer */
642 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Alan Sterndf202252012-07-11 11:22:26 -0400644 /*
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.
648 */
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;
654 else
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;
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 qh->qh_state = QH_STATE_IDLE;
Alek Du3807e262009-07-14 07:23:29 +0800674 hw->hw_next = EHCI_LIST_END(ehci);
Alan Sterna448c9d2009-08-19 12:22:44 -0400675
676 qh_completions(ehci, qh);
677
678 /* reschedule QH iff another request is queued */
Alan Sterndf202252012-07-11 11:22:26 -0400679 if (!list_empty(&qh->qtd_list) && ehci->rh_state == EHCI_RH_RUNNING) {
Alan Sterna448c9d2009-08-19 12:22:44 -0400680 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 }
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400692
693 /* maybe turn off periodic schedule */
Alan Stern569b3942012-07-11 11:23:00 -0400694 --ehci->intr_count;
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400695 disable_periodic(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698/*-------------------------------------------------------------------------*/
699
700static int check_period (
David Brownell53bd6a62006-08-30 14:50:06 -0700701 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 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
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +0400715 /* convert "usecs we need" to "max already claimed" */
716 usecs = ehci->uframe_periodic_max - usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
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 (
David Brownell53bd6a62006-08-30 14:50:06 -0700744 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 unsigned frame,
746 unsigned uframe,
747 const struct ehci_qh *qh,
Stefan Roese6dbd6822007-05-01 09:29:37 -0700748 __hc32 *c_maskp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749)
750{
David Brownell53bd6a62006-08-30 14:50:06 -0700751 int retval = -ENOSPC;
Dan Streetmanba47f662006-05-24 09:39:16 -0700752 u8 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
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
Dan Streetmanba47f662006-05-24 09:39:16 -0700765#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
Stefan Roese6dbd6822007-05-01 09:29:37 -0700780 *c_maskp = cpu_to_hc32(ehci, mask << 8);
Dan Streetmanba47f662006-05-24 09:39:16 -0700781 }
782#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /* 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.
David Brownell53bd6a62006-08-30 14:50:06 -0700786 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * NOTE: both SPLIT and CSPLIT could be checked in just
788 * one smart pass...
789 */
790 mask = 0x03 << (uframe + qh->gap_uf);
Stefan Roese6dbd6822007-05-01 09:29:37 -0700791 *c_maskp = cpu_to_hc32(ehci, mask << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
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 }
Dan Streetmanba47f662006-05-24 09:39:16 -0700803#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804done:
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 */
Stefan Roese6dbd6822007-05-01 09:29:37 -0700811static int qh_schedule(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
David Brownell53bd6a62006-08-30 14:50:06 -0700813 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 unsigned uframe;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700815 __hc32 c_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 unsigned frame; /* 0..(qh->period - 1), or NO_FRAME */
Alek Du3807e262009-07-14 07:23:29 +0800817 struct ehci_qh_hw *hw = qh->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 qh_refresh(ehci, qh);
Alek Du3807e262009-07-14 07:23:29 +0800820 hw->hw_next = EHCI_LIST_END(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 frame = qh->start;
822
823 /* reuse the previous schedule slots, if we can */
824 if (frame < qh->period) {
Alek Du3807e262009-07-14 07:23:29 +0800825 uframe = ffs(hc32_to_cpup(ehci, &hw->hw_info2) & QH_SMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 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) {
Alan Stern68335e82009-05-22 17:02:33 -0400840 int i;
841
842 for (i = qh->period; status && i > 0; --i) {
843 frame = ++ehci->random_frame % qh->period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 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 }
Alan Stern68335e82009-05-22 17:02:33 -0400851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
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 */
Alek Du3807e262009-07-14 07:23:29 +0800863 hw->hw_info2 &= cpu_to_hc32(ehci, ~(QH_CMASK | QH_SMASK));
864 hw->hw_info2 |= qh->period
Stefan Roese6dbd6822007-05-01 09:29:37 -0700865 ? cpu_to_hc32(ehci, 1 << uframe)
866 : cpu_to_hc32(ehci, QH_SMASK);
Alek Du3807e262009-07-14 07:23:29 +0800867 hw->hw_info2 |= c_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 } else
869 ehci_dbg (ehci, "reused qh %p schedule\n", qh);
870
871 /* stuff into the periodic schedule */
Alan Sternb015cb72012-07-11 11:22:10 -0400872 qh_link_periodic(ehci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873done:
874 return status;
875}
876
877static int intr_submit (
878 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 struct urb *urb,
880 struct list_head *qtd_list,
Al Viro55016f12005-10-21 03:21:58 -0400881 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882) {
883 unsigned epnum;
884 unsigned long flags;
885 struct ehci_qh *qh;
Alan Sterne9df41c2007-08-08 11:48:02 -0400886 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct list_head empty;
888
889 /* get endpoint and transfer/schedule data */
Alan Sterne9df41c2007-08-08 11:48:02 -0400890 epnum = urb->ep->desc.bEndpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 spin_lock_irqsave (&ehci->lock, flags);
893
Alan Stern541c7d42010-06-22 16:39:10 -0400894 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100895 status = -ESHUTDOWN;
Alan Sterne9df41c2007-08-08 11:48:02 -0400896 goto done_not_linked;
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100897 }
Alan Sterne9df41c2007-08-08 11:48:02 -0400898 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
899 if (unlikely(status))
900 goto done_not_linked;
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /* get qh and force any scheduling errors */
903 INIT_LIST_HEAD (&empty);
Alan Sterne9df41c2007-08-08 11:48:02 -0400904 qh = qh_append_tds(ehci, urb, &empty, epnum, &urb->ep->hcpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 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 */
Alan Sterne9df41c2007-08-08 11:48:02 -0400915 qh = qh_append_tds(ehci, urb, qtd_list, epnum, &urb->ep->hcpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 BUG_ON (qh == NULL);
917
918 /* ... update usbfs periodic stats */
919 ehci_to_hcd(ehci)->self.bandwidth_int_reqs++;
920
921done:
Alan Sterne9df41c2007-08-08 11:48:02 -0400922 if (unlikely(status))
923 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
924done_not_linked:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 spin_unlock_irqrestore (&ehci->lock, flags);
926 if (status)
927 qtd_list_free (ehci, urb, qtd_list);
928
929 return status;
930}
931
Alan Stern569b3942012-07-11 11:23:00 -0400932static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961/*-------------------------------------------------------------------------*/
962
963/* ehci_iso_stream ops work with both ITD and SITD */
964
965static struct ehci_iso_stream *
Al Viro55016f12005-10-21 03:21:58 -0400966iso_stream_alloc (gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 struct ehci_iso_stream *stream;
969
Pekka Enberg7b842b62005-09-06 15:18:34 -0700970 stream = kzalloc(sizeof *stream, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (likely (stream != NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 INIT_LIST_HEAD(&stream->td_list);
973 INIT_LIST_HEAD(&stream->free_list);
974 stream->next_uframe = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001018 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
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;
Alan Stern372dd6e2008-11-12 17:02:57 -05001027 bandwidth /= interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 } else {
1030 u32 addr;
david-b@pacbell.netd0384202005-08-13 18:44:58 -07001031 int think_time;
Clemens Ladisch469d0222006-01-20 13:49:10 -08001032 int hs_transfers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
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);
david-b@pacbell.netd0384202005-08-13 18:44:58 -07001042 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));
Clemens Ladisch469d0222006-01-20 13:49:10 -08001045 hs_transfers = max (1u, (maxp + 187) / 188);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 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
Clemens Ladisch469d0222006-01-20 13:49:10 -08001054 /* 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 } else
Clemens Ladisch469d0222006-01-20 13:49:10 -08001058 stream->raw_mask = smask_out [hs_transfers - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 bandwidth = stream->usecs + stream->c_usecs;
Alan Stern372dd6e2008-11-12 17:02:57 -05001060 bandwidth /= interval << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 /* stream->splits gets created from raw_mask later */
Stefan Roese6dbd6822007-05-01 09:29:37 -07001063 stream->address = cpu_to_hc32(ehci, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074static 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)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 ep->hcpriv = stream;
1095 stream->ep = ep;
1096 iso_stream_init(ehci, stream, urb->dev, urb->pipe,
1097 urb->interval);
1098 }
1099
Clemens Ladisch1082f572010-03-01 17:18:56 +01001100 /* if dev->ep [epnum] is a QH, hw is set */
1101 } else if (unlikely (stream->hw != NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 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 *
Al Viro55016f12005-10-21 03:21:58 -04001117iso_sched_alloc (unsigned packets, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 struct ehci_iso_sched *iso_sched;
1120 int size = sizeof *iso_sched;
1121
1122 size += packets * sizeof (struct ehci_iso_packet);
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001123 iso_sched = kzalloc(size, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (likely (iso_sched != NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 INIT_LIST_HEAD (&iso_sched->td_list);
1126 }
1127 return iso_sched;
1128}
1129
1130static inline void
Stefan Roese6dbd6822007-05-01 09:29:37 -07001131itd_sched_init(
1132 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 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;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001162 uframe->transaction = cpu_to_hc32(ehci, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
David Brownell77078572005-05-28 10:46:18 -07001164 /* might need to cross a buffer page within a uframe */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 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,
Al Viro55016f12005-10-21 03:21:58 -04001190 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191)
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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001204 itd_sched_init(ehci, sched, stream, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
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
Alan Stern55934eb2012-07-11 11:22:35 -04001215 /*
1216 * Use iTDs from the free list, but not iTDs that may
1217 * still be in use by the hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
Alan Stern55934eb2012-07-11 11:22:35 -04001219 if (likely(!list_empty(&stream->free_list))) {
1220 itd = list_first_entry(&stream->free_list,
Stefan Roese6dbd6822007-05-01 09:29:37 -07001221 struct ehci_itd, itd_list);
Alan Stern55934eb2012-07-11 11:22:35 -04001222 if (itd->frame == ehci->clock_frame)
1223 goto alloc_itd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 list_del (&itd->itd_list);
1225 itd_dma = itd->itd_dma;
Karsten Wiese3d01f0f2008-02-19 12:31:49 -08001226 } else {
Alan Stern55934eb2012-07-11 11:22:35 -04001227 alloc_itd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 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);
Karsten Wiese3d01f0f2008-02-19 12:31:49 -08001232 if (!itd) {
1233 iso_sched_free(stream, sched);
1234 spin_unlock_irqrestore(&ehci->lock, flags);
1235 return -ENOMEM;
1236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 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 {
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001264 /* can't commit more than uframe_periodic_max usec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (periodic_usecs (ehci, uframe >> 3, uframe & 0x7)
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001266 > (ehci->uframe_periodic_max - usecs))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 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
Alan Stern65b8e5c2012-05-14 13:47:20 -04001294 /* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 /* this multi-pass logic is simple, but performance may
1316 * suffer when the schedule data isn't cached.
1317 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 do {
1319 u32 max_used;
1320
1321 frame = uframe >> 3;
1322 uf = uframe & 7;
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 /* check starts (OUT uses more than one) */
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001325 max_used = ehci->uframe_periodic_max - stream->usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 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) {
Clemens Ladisch0c734622006-01-22 10:32:49 -08001333 uf = uframe & 7;
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001334 max_used = ehci->uframe_periodic_max - stream->c_usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001350 stream->splits = cpu_to_hc32(ehci, stream->raw_mask << (uframe & 7));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 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
Sarah Sharpd7e055f2009-10-27 10:54:49 -07001365#define SCHEDULE_SLOP 80 /* microframes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367static int
1368iso_stream_schedule (
1369 struct ehci_hcd *ehci,
1370 struct urb *urb,
1371 struct ehci_iso_stream *stream
1372)
1373{
Alan Sternffda0802010-07-14 11:03:46 -04001374 u32 now, next, start, period, span;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 int status;
1376 unsigned mod = ehci->periodic_size << 3;
1377 struct ehci_iso_sched *sched = urb->hcpriv;
1378
Alan Sternffda0802010-07-14 11:03:46 -04001379 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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 ehci_dbg (ehci, "iso request %p too long\n", urb);
1388 status = -EFBIG;
1389 goto fail;
1390 }
1391
Alan Stern68aa95d2011-10-12 10:39:14 -04001392 now = ehci_read_frame_index(ehci) & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Alan Sternb40e43f2008-05-20 16:59:10 -04001394 /* 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
1399 if (likely (!list_empty (&stream->td_list))) {
Alan Stern1fb2e052010-07-14 11:03:53 -04001400 u32 excess;
Sarah Sharpdccd5742009-10-27 10:55:05 -07001401
1402 /* For high speed devices, allow scheduling within the
Alan Sternae68a832010-07-14 11:03:23 -04001403 * isochronous scheduling threshold. For full speed devices
1404 * and Intel PCI-based controllers, don't (work around for
1405 * Intel ICH9 bug).
Sarah Sharpdccd5742009-10-27 10:55:05 -07001406 */
Alan Sternae68a832010-07-14 11:03:23 -04001407 if (!stream->highspeed && ehci->fs_i_thresh)
Sarah Sharpdccd5742009-10-27 10:55:05 -07001408 next = now + ehci->i_thresh;
1409 else
1410 next = now;
Alan Sternb40e43f2008-05-20 16:59:10 -04001411
Alan Stern1fb2e052010-07-14 11:03:53 -04001412 /* 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);
Alan Sternb40e43f2008-05-20 16:59:10 -04001426 status = -EFBIG;
1427 goto fail;
1428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
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 */
Alan Stern1fb2e052010-07-14 11:03:53 -04001437 else {
Matthieu CASTETe3420902011-11-28 11:30:22 +01001438 int done = 0;
Alan Stern1fb2e052010-07-14 11:03:53 -04001439 start = SCHEDULE_SLOP + (now & ~0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Alan Stern1fb2e052010-07-14 11:03:53 -04001441 /* NOTE: assumes URB_ISO_ASAP, to limit complexity/bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Thomas Poussevin811c9262011-10-27 18:46:48 +02001443 /* 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--;
Alan Stern1fb2e052010-07-14 11:03:53 -04001452 /* check schedule: enough space? */
1453 if (stream->highspeed) {
1454 if (itd_slot_ok(ehci, mod, start,
1455 stream->usecs, period))
Matthieu CASTETe3420902011-11-28 11:30:22 +01001456 done = 1;
Alan Stern1fb2e052010-07-14 11:03:53 -04001457 } else {
1458 if ((start % 8) >= 6)
1459 continue;
1460 if (sitd_slot_ok(ehci, mod, stream,
1461 start, sched, period))
Matthieu CASTETe3420902011-11-28 11:30:22 +01001462 done = 1;
Alan Stern1fb2e052010-07-14 11:03:53 -04001463 }
Matthieu CASTETe3420902011-11-28 11:30:22 +01001464 } while (start > next && !done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Alan Stern1fb2e052010-07-14 11:03:53 -04001466 /* no room in the schedule */
Matthieu CASTETe3420902011-11-28 11:30:22 +01001467 if (!done) {
Alan Stern1fb2e052010-07-14 11:03:53 -04001468 ehci_dbg(ehci, "iso resched full %p (now %d max %d)\n",
1469 urb, now, now + mod);
1470 status = -ENOSPC;
1471 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473 }
1474
Alan Stern1fb2e052010-07-14 11:03:53 -04001475 /* 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Alan Stern1fb2e052010-07-14 11:03:53 -04001485 stream->next_uframe = start & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 /* 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;
Alan Stern569b3942012-07-11 11:23:00 -04001491
1492 /* Make sure scan_isoc() sees these */
1493 if (ehci->isoc_count == 0)
1494 ehci->next_uframe = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return 0;
Alan Stern1fb2e052010-07-14 11:03:53 -04001496
1497 fail:
1498 iso_sched_free(stream, sched);
1499 urb->hcpriv = NULL;
1500 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
1503/*-------------------------------------------------------------------------*/
1504
1505static inline void
Stefan Roese6dbd6822007-05-01 09:29:37 -07001506itd_init(struct ehci_hcd *ehci, struct ehci_iso_stream *stream,
1507 struct ehci_itd *itd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 int i;
1510
David Brownell77078572005-05-28 10:46:18 -07001511 /* it's been recently zeroed */
Stefan Roese6dbd6822007-05-01 09:29:37 -07001512 itd->hw_next = EHCI_LIST_END(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001524itd_patch(
1525 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 struct ehci_itd *itd,
1527 struct ehci_iso_sched *iso_sched,
1528 unsigned index,
David Brownell77078572005-05-28 10:46:18 -07001529 u16 uframe
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530)
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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001540 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 /* iso_frame_desc[].offset must be strictly increasing */
David Brownell77078572005-05-28 10:46:18 -07001546 if (unlikely (uf->cross)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 u64 bufp = uf->bufp + 4096;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 itd->pg = ++pg;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001550 itd->hw_bufp[pg] |= cpu_to_hc32(ehci, bufp & ~(u32)0);
1551 itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(bufp >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553}
1554
1555static inline void
1556itd_link (struct ehci_hcd *ehci, unsigned frame, struct ehci_itd *itd)
1557{
Clemens Ladisch92bc3642010-03-01 09:12:50 +01001558 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 itd->frame = frame;
1577 wmb ();
Clemens Ladisch92bc3642010-03-01 09:12:50 +01001578 *hw_p = cpu_to_hc32(ehci, itd->itd_dma | Q_TYPE_ITD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
1581/* fit urb's itds into the selected schedule slot; activate as needed */
Alan Sternb015cb72012-07-11 11:22:10 -04001582static void itd_link_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 struct ehci_hcd *ehci,
1584 struct urb *urb,
1585 unsigned mod,
1586 struct ehci_iso_stream *stream
1587)
1588{
David Brownell77078572005-05-28 10:46:18 -07001589 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 unsigned next_uframe, uframe, frame;
1591 struct ehci_iso_sched *iso_sched = urb->hcpriv;
1592 struct ehci_itd *itd;
1593
Alan Sternbccbefa2010-07-14 11:03:36 -04001594 next_uframe = stream->next_uframe & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
Alex He05570292010-12-07 10:10:08 +08001606
1607 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
Andiry Xuad935622011-03-01 14:57:05 +08001608 if (ehci->amd_pll_fix == 1)
1609 usb_amd_quirk_pll_disable();
Alex He05570292010-12-07 10:10:08 +08001610 }
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 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);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04001625 itd->stream = stream;
Karsten Wiese508db8c2009-02-26 01:47:48 +01001626 itd->urb = urb;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001627 itd_init (ehci, stream, itd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629
1630 uframe = next_uframe & 0x07;
1631 frame = next_uframe >> 3;
1632
Stefan Roese6dbd6822007-05-01 09:29:37 -07001633 itd_patch(ehci, itd, iso_sched, packet, uframe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 next_uframe += stream->interval;
Alan Sternbccbefa2010-07-14 11:03:36 -04001636 next_uframe &= mod - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 packet++;
1638
1639 /* link completed itds into the schedule */
1640 if (((next_uframe >> 3) != frame)
1641 || packet == urb->number_of_packets) {
Alan Sternbccbefa2010-07-14 11:03:36 -04001642 itd_link(ehci, frame & (ehci->periodic_size - 1), itd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 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);
Alan Stern569b3942012-07-11 11:23:00 -04001653 ++ehci->isoc_count;
Alan Sternb015cb72012-07-11 11:22:10 -04001654 enable_periodic(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
1657#define ISO_ERRS (EHCI_ISOC_BUF_ERR | EHCI_ISOC_BABBLE | EHCI_ISOC_XACTERR)
1658
David Brownell30bf54e2007-12-16 22:37:40 -08001659/* 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669static unsigned
1670itd_complete (
1671 struct ehci_hcd *ehci,
David Howells7d12e782006-10-05 14:55:46 +01001672 struct ehci_itd *itd
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673) {
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;
David Brownell30bf54e2007-12-16 22:37:40 -08001681 unsigned retval = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001690 t = hc32_to_cpup(ehci, &itd->hw_transaction [uframe]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 itd->hw_transaction [uframe] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
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 */
Alan Sternec6d67e2009-06-29 14:34:59 -04001706 if (!(t & EHCI_ISOC_BABBLE)) {
1707 desc->actual_length = EHCI_ITD_LENGTH(t);
1708 urb->actual_length += desc->actual_length;
1709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 } else if (likely ((t & EHCI_ISOC_ACTIVE) == 0)) {
1711 desc->status = 0;
Alan Sternec6d67e2009-06-29 14:34:59 -04001712 desc->actual_length = EHCI_ITD_LENGTH(t);
1713 urb->actual_length += desc->actual_length;
Alan Sternb40e43f2008-05-20 16:59:10 -04001714 } else {
1715 /* URB was too late */
1716 desc->status = -EXDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718 }
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 /* handle completion now? */
1721 if (likely ((urb_index + 1) != urb->number_of_packets))
David Brownell30bf54e2007-12-16 22:37:40 -08001722 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
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
David Brownellaa16ca32007-12-30 23:45:19 -08001729 /* give urb back to the driver; completion often (re)submits */
Alan Stern6a8e87b2006-01-19 10:46:27 -05001730 dev = urb->dev;
Alan Stern14c04c02007-08-24 15:40:19 -04001731 ehci_urb_done(ehci, urb, 0);
David Brownell30bf54e2007-12-16 22:37:40 -08001732 retval = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 urb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Alan Stern569b3942012-07-11 11:23:00 -04001735 --ehci->isoc_count;
1736 disable_periodic(ehci);
1737
1738 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
Alex He05570292010-12-07 10:10:08 +08001739 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
Andiry Xuad935622011-03-01 14:57:05 +08001740 if (ehci->amd_pll_fix == 1)
1741 usb_amd_quirk_pll_enable();
Alex He05570292010-12-07 10:10:08 +08001742 }
1743
Karsten Wiese508db8c2009-02-26 01:47:48 +01001744 if (unlikely(list_is_singular(&stream->td_list))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 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 }
Karsten Wiese9aa09d22009-02-08 16:07:58 -08001752
David Brownell30bf54e2007-12-16 22:37:40 -08001753done:
David Brownell30bf54e2007-12-16 22:37:40 -08001754 itd->urb = NULL;
Alan Stern55934eb2012-07-11 11:22:35 -04001755
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);
Karsten Wiese9aa09d22009-02-08 16:07:58 -08001764 }
Alan Stern55934eb2012-07-11 11:22:35 -04001765
David Brownell30bf54e2007-12-16 22:37:40 -08001766 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
1769/*-------------------------------------------------------------------------*/
1770
Olav Kongas5db539e2005-06-23 20:25:36 +03001771static int itd_submit (struct ehci_hcd *ehci, struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -04001772 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
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",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001793 __func__, urb->dev->devpath, urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 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);
Alan Stern541c7d42010-06-22 16:39:10 -04001810 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001811 status = -ESHUTDOWN;
Alan Sterne9df41c2007-08-08 11:48:02 -04001812 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);
David Brownell53bd6a62006-08-30 14:50:06 -07001818 if (likely (status == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 itd_link_urb (ehci, urb, ehci->periodic_size << 3, stream);
Alan Sterne9df41c2007-08-08 11:48:02 -04001820 else
1821 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04001822 done_not_linked:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 spin_unlock_irqrestore (&ehci->lock, flags);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04001824 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return status;
1826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828/*-------------------------------------------------------------------------*/
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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001836sitd_sched_init(
1837 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 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;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001866 packet->transaction = cpu_to_hc32(ehci, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
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
David Brownell53bd6a62006-08-30 14:50:06 -07001874 /* OUT uses multiple start-splits */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 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,
Al Viro55016f12005-10-21 03:21:58 -04001889 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890)
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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001902 sitd_sched_init(ehci, iso_sched, stream, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
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
Alan Stern55934eb2012-07-11 11:22:35 -04001913 /*
1914 * Use siTDs from the free list, but not siTDs that may
1915 * still be in use by the hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 */
Alan Stern55934eb2012-07-11 11:22:35 -04001917 if (likely(!list_empty(&stream->free_list))) {
1918 sitd = list_first_entry(&stream->free_list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 struct ehci_sitd, sitd_list);
Alan Stern55934eb2012-07-11 11:22:35 -04001920 if (sitd->frame == ehci->clock_frame)
1921 goto alloc_sitd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 list_del (&sitd->sitd_list);
1923 sitd_dma = sitd->sitd_dma;
Karsten Wiese3d01f0f2008-02-19 12:31:49 -08001924 } else {
Alan Stern55934eb2012-07-11 11:22:35 -04001925 alloc_sitd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 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);
Karsten Wiese3d01f0f2008-02-19 12:31:49 -08001930 if (!sitd) {
1931 iso_sched_free(stream, iso_sched);
1932 spin_unlock_irqrestore(&ehci->lock, flags);
1933 return -ENOMEM;
1934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001953sitd_patch(
1954 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 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
Stefan Roese6dbd6822007-05-01 09:29:37 -07001964 sitd->hw_next = EHCI_LIST_END(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 sitd->hw_fullspeed_ep = stream->address;
1966 sitd->hw_uframe = stream->splits;
1967 sitd->hw_results = uf->transaction;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001968 sitd->hw_backpointer = EHCI_LIST_END(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 bufp = uf->bufp;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001971 sitd->hw_buf[0] = cpu_to_hc32(ehci, bufp);
1972 sitd->hw_buf_hi[0] = cpu_to_hc32(ehci, bufp >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Stefan Roese6dbd6822007-05-01 09:29:37 -07001974 sitd->hw_buf[1] = cpu_to_hc32(ehci, uf->buf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if (uf->cross)
1976 bufp += 4096;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001977 sitd->hw_buf_hi[1] = cpu_to_hc32(ehci, bufp >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 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 ();
Stefan Roese6dbd6822007-05-01 09:29:37 -07001990 ehci->periodic[frame] = cpu_to_hc32(ehci, sitd->sitd_dma | Q_TYPE_SITD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
1993/* fit urb's sitds into the selected schedule slot; activate as needed */
Alan Sternb015cb72012-07-11 11:22:10 -04001994static void sitd_link_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 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",
Alan Sternbccbefa2010-07-14 11:03:36 -04002016 (next_uframe >> 3) & (ehci->periodic_size - 1),
Stefan Roese6dbd6822007-05-01 09:29:37 -07002017 stream->interval, hc32_to_cpu(ehci, stream->splits));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
Alex He05570292010-12-07 10:10:08 +08002019
2020 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
Andiry Xuad935622011-03-01 14:57:05 +08002021 if (ehci->amd_pll_fix == 1)
2022 usb_amd_quirk_pll_disable();
Alex He05570292010-12-07 10:10:08 +08002023 }
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 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);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04002040 sitd->stream = stream;
Karsten Wiese508db8c2009-02-26 01:47:48 +01002041 sitd->urb = urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Stefan Roese6dbd6822007-05-01 09:29:37 -07002043 sitd_patch(ehci, stream, sitd, sched, packet);
Alan Sternbccbefa2010-07-14 11:03:36 -04002044 sitd_link(ehci, (next_uframe >> 3) & (ehci->periodic_size - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 sitd);
2046
2047 next_uframe += stream->interval << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
Alan Sternbccbefa2010-07-14 11:03:36 -04002049 stream->next_uframe = next_uframe & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
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);
Alan Stern569b3942012-07-11 11:23:00 -04002056 ++ehci->isoc_count;
Alan Sternb015cb72012-07-11 11:22:10 -04002057 enable_periodic(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
2060/*-------------------------------------------------------------------------*/
2061
2062#define SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
David Brownell53bd6a62006-08-30 14:50:06 -07002063 | SITD_STS_XACT | SITD_STS_MMF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
David Brownell30bf54e2007-12-16 22:37:40 -08002065/* 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075static unsigned
2076sitd_complete (
2077 struct ehci_hcd *ehci,
David Howells7d12e782006-10-05 14:55:46 +01002078 struct ehci_sitd *sitd
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079) {
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;
David Brownell30bf54e2007-12-16 22:37:40 -08002086 unsigned retval = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088 urb_index = sitd->index;
2089 desc = &urb->iso_frame_desc [urb_index];
Stefan Roese6dbd6822007-05-01 09:29:37 -07002090 t = hc32_to_cpup(ehci, &sitd->hw_results);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
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;
Alan Sternec6d67e2009-06-29 14:34:59 -04002105 desc->actual_length = desc->length - SITD_LENGTH(t);
2106 urb->actual_length += desc->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 /* handle completion now? */
2110 if ((urb_index + 1) != urb->number_of_packets)
David Brownell30bf54e2007-12-16 22:37:40 -08002111 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
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
David Brownellaa16ca32007-12-30 23:45:19 -08002118 /* give urb back to the driver; completion often (re)submits */
Alan Stern6a8e87b2006-01-19 10:46:27 -05002119 dev = urb->dev;
Alan Stern14c04c02007-08-24 15:40:19 -04002120 ehci_urb_done(ehci, urb, 0);
David Brownell30bf54e2007-12-16 22:37:40 -08002121 retval = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 urb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Alan Stern569b3942012-07-11 11:23:00 -04002124 --ehci->isoc_count;
2125 disable_periodic(ehci);
2126
2127 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
Alex He05570292010-12-07 10:10:08 +08002128 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
Andiry Xuad935622011-03-01 14:57:05 +08002129 if (ehci->amd_pll_fix == 1)
2130 usb_amd_quirk_pll_enable();
Alex He05570292010-12-07 10:10:08 +08002131 }
2132
Karsten Wiese508db8c2009-02-26 01:47:48 +01002133 if (list_is_singular(&stream->td_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 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 }
Alan Stern0e5f2312010-04-08 16:56:37 -04002141
David Brownell30bf54e2007-12-16 22:37:40 -08002142done:
David Brownell30bf54e2007-12-16 22:37:40 -08002143 sitd->urb = NULL;
Alan Stern55934eb2012-07-11 11:22:35 -04002144
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);
Alan Stern0e5f2312010-04-08 16:56:37 -04002153 }
Alan Stern55934eb2012-07-11 11:22:35 -04002154
David Brownell30bf54e2007-12-16 22:37:40 -08002155 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
2158
Olav Kongas5db539e2005-06-23 20:25:36 +03002159static int sitd_submit (struct ehci_hcd *ehci, struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -04002160 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
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);
Alan Stern541c7d42010-06-22 16:39:10 -04002196 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11002197 status = -ESHUTDOWN;
Alan Sterne9df41c2007-08-08 11:48:02 -04002198 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);
David Brownell53bd6a62006-08-30 14:50:06 -07002204 if (status == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 sitd_link_urb (ehci, urb, ehci->periodic_size << 3, stream);
Alan Sterne9df41c2007-08-08 11:48:02 -04002206 else
2207 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04002208 done_not_linked:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 spin_unlock_irqrestore (&ehci->lock, flags);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04002210 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 return status;
2212}
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214/*-------------------------------------------------------------------------*/
2215
Alan Stern569b3942012-07-11 11:23:00 -04002216static void scan_isoc(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
Alan Sternb40e43f2008-05-20 16:59:10 -04002218 unsigned now_uframe, frame, clock, clock_frame, mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 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;
Alan Sternc0c53db2012-07-11 11:21:48 -04002229 if (ehci->rh_state >= EHCI_RH_RUNNING) {
Alan Stern68aa95d2011-10-12 10:39:14 -04002230 clock = ehci_read_frame_index(ehci);
Alan Sternbccbefa2010-07-14 11:03:36 -04002231 clock_frame = (clock >> 3) & (ehci->periodic_size - 1);
Karsten Wiese9aa09d22009-02-08 16:07:58 -08002232 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 clock = now_uframe + mod - 1;
Karsten Wiese9aa09d22009-02-08 16:07:58 -08002234 clock_frame = -1;
2235 }
Alan Stern55934eb2012-07-11 11:22:35 -04002236 ehci->clock_frame = clock_frame;
Alan Sternbccbefa2010-07-14 11:03:36 -04002237 clock &= mod - 1;
Alan Sternb40e43f2008-05-20 16:59:10 -04002238 clock_frame = clock >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 for (;;) {
2241 union ehci_shadow q, *q_p;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002242 __hc32 type, *hw_p;
David Brownell79592b722008-01-07 00:47:42 -08002243 unsigned incomplete = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 frame = now_uframe >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
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;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002252 type = Q_NEXT_TYPE(ehci, *hw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 modified = 0;
2254
2255 while (q.ptr != NULL) {
2256 unsigned uf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 int live;
2258
Alan Sternc0c53db2012-07-11 11:21:48 -04002259 live = (ehci->rh_state >= EHCI_RH_RUNNING);
Stefan Roese6dbd6822007-05-01 09:29:37 -07002260 switch (hc32_to_cpu(ehci, type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 case Q_TYPE_ITD:
David Brownell79592b722008-01-07 00:47:42 -08002262 /* If this ITD is still active, leave it for
2263 * later processing ... check the next entry.
Alan Sternb40e43f2008-05-20 16:59:10 -04002264 * No need to check for activity unless the
2265 * frame is current.
David Brownell79592b722008-01-07 00:47:42 -08002266 */
Alan Sternb40e43f2008-05-20 16:59:10 -04002267 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,
Stefan Roese6dbd6822007-05-01 09:29:37 -07002279 q.itd->hw_next);
Alan Sternb40e43f2008-05-20 16:59:10 -04002280 q = *q_p;
2281 break;
2282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
David Brownell79592b722008-01-07 00:47:42 -08002285 /* Take finished ITDs out of the schedule
2286 * and process them: recycle, maybe report
2287 * URB completion. HC won't cache the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 * pointer for much longer, if at all.
2289 */
2290 *q_p = q.itd->itd_next;
Andiry Xu3d091a62010-11-08 17:58:35 +08002291 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;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002296 type = Q_NEXT_TYPE(ehci, q.itd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 wmb();
David Howells7d12e782006-10-05 14:55:46 +01002298 modified = itd_complete (ehci, q.itd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 q = *q_p;
2300 break;
2301 case Q_TYPE_SITD:
David Brownell79592b722008-01-07 00:47:42 -08002302 /* If this SITD is still active, leave it for
2303 * later processing ... check the next entry.
Alan Sternb40e43f2008-05-20 16:59:10 -04002304 * No need to check for activity unless the
2305 * frame is current.
David Brownell79592b722008-01-07 00:47:42 -08002306 */
Dmitri Epshtein22e18692009-12-14 17:17:34 +02002307 if (((frame == clock_frame) ||
Alan Sternbccbefa2010-07-14 11:03:36 -04002308 (((frame + 1) & (ehci->periodic_size - 1))
Dmitri Epshtein22e18692009-12-14 17:17:34 +02002309 == clock_frame))
2310 && live
2311 && (q.sitd->hw_results &
2312 SITD_ACTIVE(ehci))) {
2313
David Brownell79592b722008-01-07 00:47:42 -08002314 incomplete = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 q_p = &q.sitd->sitd_next;
2316 hw_p = &q.sitd->hw_next;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002317 type = Q_NEXT_TYPE(ehci,
2318 q.sitd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 q = *q_p;
2320 break;
2321 }
David Brownell79592b722008-01-07 00:47:42 -08002322
2323 /* Take finished SITDs out of the schedule
2324 * and process them: recycle, maybe report
2325 * URB completion.
2326 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 *q_p = q.sitd->sitd_next;
Andiry Xu3d091a62010-11-08 17:58:35 +08002328 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;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002333 type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 wmb();
David Howells7d12e782006-10-05 14:55:46 +01002335 modified = sitd_complete (ehci, q.sitd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 q = *q_p;
2337 break;
2338 default:
Greg Kroah-Hartman2d0fe1b2012-05-01 21:33:36 -07002339 ehci_dbg(ehci, "corrupt type %d frame %d shadow %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 type, frame, q.ptr);
2341 // BUG ();
Alan Stern569b3942012-07-11 11:23:00 -04002342 /* FALL THROUGH */
2343 case Q_TYPE_QH:
2344 case Q_TYPE_FSTN:
2345 /* End of the iTDs and siTDs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 q.ptr = NULL;
Alan Stern569b3942012-07-11 11:23:00 -04002347 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 }
2349
2350 /* assume completion callbacks modify the queue */
David Brownellaa16ca32007-12-30 23:45:19 -08002351 if (unlikely (modified)) {
Alan Stern569b3942012-07-11 11:23:00 -04002352 if (likely(ehci->isoc_count > 0))
David Brownellaa16ca32007-12-30 23:45:19 -08002353 goto restart;
David Brownell01c17142008-08-26 23:35:04 -07002354 /* short-circuit this scan */
David Brownellaa16ca32007-12-30 23:45:19 -08002355 now_uframe = clock;
2356 break;
2357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359
David Brownell79592b722008-01-07 00:47:42 -08002360 /* 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 */
Alan Sternc0c53db2012-07-11 11:21:48 -04002364 if (incomplete && ehci->rh_state >= EHCI_RH_RUNNING) {
David Brownell79592b722008-01-07 00:47:42 -08002365 ehci->next_uframe = now_uframe;
2366 break;
2367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
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
Alan Sternc0c53db2012-07-11 11:21:48 -04002380 if (ehci->rh_state < EHCI_RH_RUNNING
Alan Stern569b3942012-07-11 11:23:00 -04002381 || ehci->isoc_count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 break;
2383 ehci->next_uframe = now_uframe;
Alan Stern68aa95d2011-10-12 10:39:14 -04002384 now = ehci_read_frame_index(ehci) & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if (now_uframe == now)
2386 break;
2387
2388 /* rescan the rest of this frame, then ... */
2389 clock = now;
Alan Sternb40e43f2008-05-20 16:59:10 -04002390 clock_frame = clock >> 3;
Alan Stern569b3942012-07-11 11:23:00 -04002391 ehci->clock_frame = clock_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 } else {
2393 now_uframe++;
Alan Sternbccbefa2010-07-14 11:03:36 -04002394 now_uframe &= mod - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 }
David Brownell53bd6a62006-08-30 14:50:06 -07002396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397}