blob: 26ce8fef0e5b86c46082ecab7ce198b831c9498d [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);
Alan Stern18aafe62012-07-11 11:23:04 -0400492 turn_on_io_watchdog(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Alan Sternb015cb72012-07-11 11:22:10 -0400495static void disable_periodic(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400497 if (--ehci->periodic_count)
Alan Sternb015cb72012-07-11 11:22:10 -0400498 return;
David Brownell01c17142008-08-26 23:35:04 -0700499
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400500 ehci->next_uframe = -1; /* the periodic schedule is empty */
Oliver Neukumee4ecb82009-11-27 15:17:59 +0100501
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400502 /* Don't turn off the schedule until PSS is 1 */
503 ehci_poll_PSS(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
506/*-------------------------------------------------------------------------*/
507
508/* periodic schedule slots have iso tds (normal or split) first, then a
509 * sparse tree for active interrupt transfers.
510 *
511 * this just links in a qh; caller guarantees uframe masks are set right.
512 * no FSTN support (yet; ehci 0.96+)
513 */
Alan Sternb015cb72012-07-11 11:22:10 -0400514static void qh_link_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 unsigned i;
517 unsigned period = qh->period;
518
519 dev_dbg (&qh->dev->dev,
520 "link qh%d-%04x/%p start %d [%d/%d us]\n",
Alek Du3807e262009-07-14 07:23:29 +0800521 period, hc32_to_cpup(ehci, &qh->hw->hw_info2)
522 & (QH_CMASK | QH_SMASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 qh, qh->start, qh->usecs, qh->c_usecs);
524
525 /* high bandwidth, or otherwise every microframe */
526 if (period == 0)
527 period = 1;
528
529 for (i = qh->start; i < ehci->periodic_size; i += period) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700530 union ehci_shadow *prev = &ehci->pshadow[i];
531 __hc32 *hw_p = &ehci->periodic[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 union ehci_shadow here = *prev;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700533 __hc32 type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* skip the iso nodes at list head */
536 while (here.ptr) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700537 type = Q_NEXT_TYPE(ehci, *hw_p);
538 if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 break;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700540 prev = periodic_next_shadow(ehci, prev, type);
Alek Du3807e262009-07-14 07:23:29 +0800541 hw_p = shadow_next_periodic(ehci, &here, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 here = *prev;
543 }
544
545 /* sorting each branch by period (slow-->fast)
546 * enables sharing interior tree nodes
547 */
548 while (here.ptr && qh != here.qh) {
549 if (qh->period > here.qh->period)
550 break;
551 prev = &here.qh->qh_next;
Alek Du3807e262009-07-14 07:23:29 +0800552 hw_p = &here.qh->hw->hw_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 here = *prev;
554 }
555 /* link in this qh, unless some earlier pass did that */
556 if (qh != here.qh) {
557 qh->qh_next = here;
558 if (here.qh)
Alek Du3807e262009-07-14 07:23:29 +0800559 qh->hw->hw_next = *hw_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 wmb ();
561 prev->qh = qh;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700562 *hw_p = QH_NEXT (ehci, qh->qh_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 }
565 qh->qh_state = QH_STATE_LINKED;
Alan Sternef4638f2009-07-31 10:41:40 -0400566 qh->xacterrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* update per-qh bandwidth for usbfs */
569 ehci_to_hcd(ehci)->self.bandwidth_allocated += qh->period
570 ? ((qh->usecs + qh->c_usecs) / qh->period)
571 : (qh->usecs * 8);
572
Alan Stern569b3942012-07-11 11:23:00 -0400573 list_add(&qh->intr_node, &ehci->intr_qh_list);
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* maybe enable periodic schedule processing */
Alan Stern569b3942012-07-11 11:23:00 -0400576 ++ehci->intr_count;
Alan Sternb015cb72012-07-11 11:22:10 -0400577 enable_periodic(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Alan Sternb015cb72012-07-11 11:22:10 -0400580static void qh_unlink_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 unsigned i;
583 unsigned period;
584
Alan Sterndf202252012-07-11 11:22:26 -0400585 /*
586 * If qh is for a low/full-speed device, simply unlinking it
587 * could interfere with an ongoing split transaction. To unlink
588 * it safely would require setting the QH_INACTIVATE bit and
589 * waiting at least one frame, as described in EHCI 4.12.2.5.
590 *
591 * We won't bother with any of this. Instead, we assume that the
592 * only reason for unlinking an interrupt QH while the current URB
593 * is still active is to dequeue all the URBs (flush the whole
594 * endpoint queue).
595 *
596 * If rebalancing the periodic schedule is ever implemented, this
597 * approach will no longer be valid.
598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /* high bandwidth, or otherwise part of every microframe */
601 if ((period = qh->period) == 0)
602 period = 1;
603
604 for (i = qh->start; i < ehci->periodic_size; i += period)
605 periodic_unlink (ehci, i, qh);
606
607 /* update per-qh bandwidth for usbfs */
608 ehci_to_hcd(ehci)->self.bandwidth_allocated -= qh->period
609 ? ((qh->usecs + qh->c_usecs) / qh->period)
610 : (qh->usecs * 8);
611
612 dev_dbg (&qh->dev->dev,
613 "unlink qh%d-%04x/%p start %d [%d/%d us]\n",
David Brownell7dedacf2005-08-04 18:06:41 -0700614 qh->period,
Alek Du3807e262009-07-14 07:23:29 +0800615 hc32_to_cpup(ehci, &qh->hw->hw_info2) & (QH_CMASK | QH_SMASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 qh, qh->start, qh->usecs, qh->c_usecs);
617
618 /* qh->qh_next still "live" to HC */
619 qh->qh_state = QH_STATE_UNLINK;
620 qh->qh_next.ptr = NULL;
Alan Stern569b3942012-07-11 11:23:00 -0400621
622 if (ehci->qh_scan_next == qh)
623 ehci->qh_scan_next = list_entry(qh->intr_node.next,
624 struct ehci_qh, intr_node);
625 list_del(&qh->intr_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Alan Sterndf202252012-07-11 11:22:26 -0400628static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Alan Sterna448c9d2009-08-19 12:22:44 -0400630 /* If the QH isn't linked then there's nothing we can do
631 * unless we were called during a giveback, in which case
632 * qh_completions() has to deal with it.
633 */
634 if (qh->qh_state != QH_STATE_LINKED) {
635 if (qh->qh_state == QH_STATE_COMPLETING)
636 qh->needs_rescan = 1;
637 return;
638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 qh_unlink_periodic (ehci, qh);
641
Alan Sterndf202252012-07-11 11:22:26 -0400642 /* Make sure the unlinks are visible before starting the timer */
643 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Alan Sterndf202252012-07-11 11:22:26 -0400645 /*
646 * The EHCI spec doesn't say how long it takes the controller to
647 * stop accessing an unlinked interrupt QH. The timer delay is
648 * 9 uframes; presumably that will be long enough.
649 */
650 qh->unlink_cycle = ehci->intr_unlink_cycle;
651
652 /* New entries go at the end of the intr_unlink list */
653 if (ehci->intr_unlink)
654 ehci->intr_unlink_last->unlink_next = qh;
655 else
656 ehci->intr_unlink = qh;
657 ehci->intr_unlink_last = qh;
658
659 if (ehci->intr_unlinking)
660 ; /* Avoid recursive calls */
661 else if (ehci->rh_state < EHCI_RH_RUNNING)
662 ehci_handle_intr_unlinks(ehci);
663 else if (ehci->intr_unlink == qh) {
664 ehci_enable_event(ehci, EHCI_HRTIMER_UNLINK_INTR, true);
665 ++ehci->intr_unlink_cycle;
666 }
667}
668
669static void end_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
670{
671 struct ehci_qh_hw *hw = qh->hw;
672 int rc;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 qh->qh_state = QH_STATE_IDLE;
Alek Du3807e262009-07-14 07:23:29 +0800675 hw->hw_next = EHCI_LIST_END(ehci);
Alan Sterna448c9d2009-08-19 12:22:44 -0400676
677 qh_completions(ehci, qh);
678
679 /* reschedule QH iff another request is queued */
Alan Sterndf202252012-07-11 11:22:26 -0400680 if (!list_empty(&qh->qtd_list) && ehci->rh_state == EHCI_RH_RUNNING) {
Alan Sterna448c9d2009-08-19 12:22:44 -0400681 rc = qh_schedule(ehci, qh);
682
683 /* An error here likely indicates handshake failure
684 * or no space left in the schedule. Neither fault
685 * should happen often ...
686 *
687 * FIXME kill the now-dysfunctional queued urbs
688 */
689 if (rc != 0)
690 ehci_err(ehci, "can't reschedule qh %p, err %d\n",
691 qh, rc);
692 }
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400693
694 /* maybe turn off periodic schedule */
Alan Stern569b3942012-07-11 11:23:00 -0400695 --ehci->intr_count;
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400696 disable_periodic(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699/*-------------------------------------------------------------------------*/
700
701static int check_period (
David Brownell53bd6a62006-08-30 14:50:06 -0700702 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 unsigned frame,
704 unsigned uframe,
705 unsigned period,
706 unsigned usecs
707) {
708 int claimed;
709
710 /* complete split running into next frame?
711 * given FSTN support, we could sometimes check...
712 */
713 if (uframe >= 8)
714 return 0;
715
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +0400716 /* convert "usecs we need" to "max already claimed" */
717 usecs = ehci->uframe_periodic_max - usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 /* we "know" 2 and 4 uframe intervals were rejected; so
720 * for period 0, check _every_ microframe in the schedule.
721 */
722 if (unlikely (period == 0)) {
723 do {
724 for (uframe = 0; uframe < 7; uframe++) {
725 claimed = periodic_usecs (ehci, frame, uframe);
726 if (claimed > usecs)
727 return 0;
728 }
729 } while ((frame += 1) < ehci->periodic_size);
730
731 /* just check the specified uframe, at that period */
732 } else {
733 do {
734 claimed = periodic_usecs (ehci, frame, uframe);
735 if (claimed > usecs)
736 return 0;
737 } while ((frame += period) < ehci->periodic_size);
738 }
739
740 // success!
741 return 1;
742}
743
744static int check_intr_schedule (
David Brownell53bd6a62006-08-30 14:50:06 -0700745 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 unsigned frame,
747 unsigned uframe,
748 const struct ehci_qh *qh,
Stefan Roese6dbd6822007-05-01 09:29:37 -0700749 __hc32 *c_maskp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750)
751{
David Brownell53bd6a62006-08-30 14:50:06 -0700752 int retval = -ENOSPC;
Dan Streetmanba47f662006-05-24 09:39:16 -0700753 u8 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 if (qh->c_usecs && uframe >= 6) /* FSTN territory? */
756 goto done;
757
758 if (!check_period (ehci, frame, uframe, qh->period, qh->usecs))
759 goto done;
760 if (!qh->c_usecs) {
761 retval = 0;
762 *c_maskp = 0;
763 goto done;
764 }
765
Dan Streetmanba47f662006-05-24 09:39:16 -0700766#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
767 if (tt_available (ehci, qh->period, qh->dev, frame, uframe,
768 qh->tt_usecs)) {
769 unsigned i;
770
771 /* TODO : this may need FSTN for SSPLIT in uframe 5. */
772 for (i=uframe+1; i<8 && i<uframe+4; i++)
773 if (!check_period (ehci, frame, i,
774 qh->period, qh->c_usecs))
775 goto done;
776 else
777 mask |= 1 << i;
778
779 retval = 0;
780
Stefan Roese6dbd6822007-05-01 09:29:37 -0700781 *c_maskp = cpu_to_hc32(ehci, mask << 8);
Dan Streetmanba47f662006-05-24 09:39:16 -0700782 }
783#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /* Make sure this tt's buffer is also available for CSPLITs.
785 * We pessimize a bit; probably the typical full speed case
786 * doesn't need the second CSPLIT.
David Brownell53bd6a62006-08-30 14:50:06 -0700787 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * NOTE: both SPLIT and CSPLIT could be checked in just
789 * one smart pass...
790 */
791 mask = 0x03 << (uframe + qh->gap_uf);
Stefan Roese6dbd6822007-05-01 09:29:37 -0700792 *c_maskp = cpu_to_hc32(ehci, mask << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 mask |= 1 << uframe;
795 if (tt_no_collision (ehci, qh->period, qh->dev, frame, mask)) {
796 if (!check_period (ehci, frame, uframe + qh->gap_uf + 1,
797 qh->period, qh->c_usecs))
798 goto done;
799 if (!check_period (ehci, frame, uframe + qh->gap_uf,
800 qh->period, qh->c_usecs))
801 goto done;
802 retval = 0;
803 }
Dan Streetmanba47f662006-05-24 09:39:16 -0700804#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805done:
806 return retval;
807}
808
809/* "first fit" scheduling policy used the first time through,
810 * or when the previous schedule slot can't be re-used.
811 */
Stefan Roese6dbd6822007-05-01 09:29:37 -0700812static int qh_schedule(struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
David Brownell53bd6a62006-08-30 14:50:06 -0700814 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 unsigned uframe;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700816 __hc32 c_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 unsigned frame; /* 0..(qh->period - 1), or NO_FRAME */
Alek Du3807e262009-07-14 07:23:29 +0800818 struct ehci_qh_hw *hw = qh->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 qh_refresh(ehci, qh);
Alek Du3807e262009-07-14 07:23:29 +0800821 hw->hw_next = EHCI_LIST_END(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 frame = qh->start;
823
824 /* reuse the previous schedule slots, if we can */
825 if (frame < qh->period) {
Alek Du3807e262009-07-14 07:23:29 +0800826 uframe = ffs(hc32_to_cpup(ehci, &hw->hw_info2) & QH_SMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 status = check_intr_schedule (ehci, frame, --uframe,
828 qh, &c_mask);
829 } else {
830 uframe = 0;
831 c_mask = 0;
832 status = -ENOSPC;
833 }
834
835 /* else scan the schedule to find a group of slots such that all
836 * uframes have enough periodic bandwidth available.
837 */
838 if (status) {
839 /* "normal" case, uframing flexible except with splits */
840 if (qh->period) {
Alan Stern68335e82009-05-22 17:02:33 -0400841 int i;
842
843 for (i = qh->period; status && i > 0; --i) {
844 frame = ++ehci->random_frame % qh->period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 for (uframe = 0; uframe < 8; uframe++) {
846 status = check_intr_schedule (ehci,
847 frame, uframe, qh,
848 &c_mask);
849 if (status == 0)
850 break;
851 }
Alan Stern68335e82009-05-22 17:02:33 -0400852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /* qh->period == 0 means every uframe */
855 } else {
856 frame = 0;
857 status = check_intr_schedule (ehci, 0, 0, qh, &c_mask);
858 }
859 if (status)
860 goto done;
861 qh->start = frame;
862
863 /* reset S-frame and (maybe) C-frame masks */
Alek Du3807e262009-07-14 07:23:29 +0800864 hw->hw_info2 &= cpu_to_hc32(ehci, ~(QH_CMASK | QH_SMASK));
865 hw->hw_info2 |= qh->period
Stefan Roese6dbd6822007-05-01 09:29:37 -0700866 ? cpu_to_hc32(ehci, 1 << uframe)
867 : cpu_to_hc32(ehci, QH_SMASK);
Alek Du3807e262009-07-14 07:23:29 +0800868 hw->hw_info2 |= c_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 } else
870 ehci_dbg (ehci, "reused qh %p schedule\n", qh);
871
872 /* stuff into the periodic schedule */
Alan Sternb015cb72012-07-11 11:22:10 -0400873 qh_link_periodic(ehci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874done:
875 return status;
876}
877
878static int intr_submit (
879 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct urb *urb,
881 struct list_head *qtd_list,
Al Viro55016f12005-10-21 03:21:58 -0400882 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883) {
884 unsigned epnum;
885 unsigned long flags;
886 struct ehci_qh *qh;
Alan Sterne9df41c2007-08-08 11:48:02 -0400887 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct list_head empty;
889
890 /* get endpoint and transfer/schedule data */
Alan Sterne9df41c2007-08-08 11:48:02 -0400891 epnum = urb->ep->desc.bEndpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 spin_lock_irqsave (&ehci->lock, flags);
894
Alan Stern541c7d42010-06-22 16:39:10 -0400895 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100896 status = -ESHUTDOWN;
Alan Sterne9df41c2007-08-08 11:48:02 -0400897 goto done_not_linked;
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100898 }
Alan Sterne9df41c2007-08-08 11:48:02 -0400899 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
900 if (unlikely(status))
901 goto done_not_linked;
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +1100902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /* get qh and force any scheduling errors */
904 INIT_LIST_HEAD (&empty);
Alan Sterne9df41c2007-08-08 11:48:02 -0400905 qh = qh_append_tds(ehci, urb, &empty, epnum, &urb->ep->hcpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (qh == NULL) {
907 status = -ENOMEM;
908 goto done;
909 }
910 if (qh->qh_state == QH_STATE_IDLE) {
911 if ((status = qh_schedule (ehci, qh)) != 0)
912 goto done;
913 }
914
915 /* then queue the urb's tds to the qh */
Alan Sterne9df41c2007-08-08 11:48:02 -0400916 qh = qh_append_tds(ehci, urb, qtd_list, epnum, &urb->ep->hcpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 BUG_ON (qh == NULL);
918
919 /* ... update usbfs periodic stats */
920 ehci_to_hcd(ehci)->self.bandwidth_int_reqs++;
921
922done:
Alan Sterne9df41c2007-08-08 11:48:02 -0400923 if (unlikely(status))
924 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
925done_not_linked:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 spin_unlock_irqrestore (&ehci->lock, flags);
927 if (status)
928 qtd_list_free (ehci, urb, qtd_list);
929
930 return status;
931}
932
Alan Stern569b3942012-07-11 11:23:00 -0400933static void scan_intr(struct ehci_hcd *ehci)
934{
935 struct ehci_qh *qh;
936
937 list_for_each_entry_safe(qh, ehci->qh_scan_next, &ehci->intr_qh_list,
938 intr_node) {
939 rescan:
940 /* clean any finished work for this qh */
941 if (!list_empty(&qh->qtd_list)) {
942 int temp;
943
944 /*
945 * Unlinks could happen here; completion reporting
946 * drops the lock. That's why ehci->qh_scan_next
947 * always holds the next qh to scan; if the next qh
948 * gets unlinked then ehci->qh_scan_next is adjusted
949 * in qh_unlink_periodic().
950 */
951 temp = qh_completions(ehci, qh);
952 if (unlikely(qh->needs_rescan ||
953 (list_empty(&qh->qtd_list) &&
954 qh->qh_state == QH_STATE_LINKED)))
955 start_unlink_intr(ehci, qh);
956 else if (temp != 0)
957 goto rescan;
958 }
959 }
960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/*-------------------------------------------------------------------------*/
963
964/* ehci_iso_stream ops work with both ITD and SITD */
965
966static struct ehci_iso_stream *
Al Viro55016f12005-10-21 03:21:58 -0400967iso_stream_alloc (gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct ehci_iso_stream *stream;
970
Pekka Enberg7b842b62005-09-06 15:18:34 -0700971 stream = kzalloc(sizeof *stream, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (likely (stream != NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 INIT_LIST_HEAD(&stream->td_list);
974 INIT_LIST_HEAD(&stream->free_list);
975 stream->next_uframe = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977 return stream;
978}
979
980static void
981iso_stream_init (
982 struct ehci_hcd *ehci,
983 struct ehci_iso_stream *stream,
984 struct usb_device *dev,
985 int pipe,
986 unsigned interval
987)
988{
989 static const u8 smask_out [] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f };
990
991 u32 buf1;
992 unsigned epnum, maxp;
993 int is_input;
994 long bandwidth;
995
996 /*
997 * this might be a "high bandwidth" highspeed endpoint,
998 * as encoded in the ep descriptor's wMaxPacket field
999 */
1000 epnum = usb_pipeendpoint (pipe);
1001 is_input = usb_pipein (pipe) ? USB_DIR_IN : 0;
1002 maxp = usb_maxpacket(dev, pipe, !is_input);
1003 if (is_input) {
1004 buf1 = (1 << 11);
1005 } else {
1006 buf1 = 0;
1007 }
1008
1009 /* knows about ITD vs SITD */
1010 if (dev->speed == USB_SPEED_HIGH) {
1011 unsigned multi = hb_mult(maxp);
1012
1013 stream->highspeed = 1;
1014
1015 maxp = max_packet(maxp);
1016 buf1 |= maxp;
1017 maxp *= multi;
1018
Stefan Roese6dbd6822007-05-01 09:29:37 -07001019 stream->buf0 = cpu_to_hc32(ehci, (epnum << 8) | dev->devnum);
1020 stream->buf1 = cpu_to_hc32(ehci, buf1);
1021 stream->buf2 = cpu_to_hc32(ehci, multi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /* usbfs wants to report the average usecs per frame tied up
1024 * when transfers on this endpoint are scheduled ...
1025 */
1026 stream->usecs = HS_USECS_ISO (maxp);
1027 bandwidth = stream->usecs * 8;
Alan Stern372dd6e2008-11-12 17:02:57 -05001028 bandwidth /= interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 } else {
1031 u32 addr;
david-b@pacbell.netd0384202005-08-13 18:44:58 -07001032 int think_time;
Clemens Ladisch469d0222006-01-20 13:49:10 -08001033 int hs_transfers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 addr = dev->ttport << 24;
1036 if (!ehci_is_TDI(ehci)
1037 || (dev->tt->hub !=
1038 ehci_to_hcd(ehci)->self.root_hub))
1039 addr |= dev->tt->hub->devnum << 16;
1040 addr |= epnum << 8;
1041 addr |= dev->devnum;
1042 stream->usecs = HS_USECS_ISO (maxp);
david-b@pacbell.netd0384202005-08-13 18:44:58 -07001043 think_time = dev->tt ? dev->tt->think_time : 0;
1044 stream->tt_usecs = NS_TO_US (think_time + usb_calc_bus_time (
1045 dev->speed, is_input, 1, maxp));
Clemens Ladisch469d0222006-01-20 13:49:10 -08001046 hs_transfers = max (1u, (maxp + 187) / 188);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (is_input) {
1048 u32 tmp;
1049
1050 addr |= 1 << 31;
1051 stream->c_usecs = stream->usecs;
1052 stream->usecs = HS_USECS_ISO (1);
1053 stream->raw_mask = 1;
1054
Clemens Ladisch469d0222006-01-20 13:49:10 -08001055 /* c-mask as specified in USB 2.0 11.18.4 3.c */
1056 tmp = (1 << (hs_transfers + 2)) - 1;
1057 stream->raw_mask |= tmp << (8 + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 } else
Clemens Ladisch469d0222006-01-20 13:49:10 -08001059 stream->raw_mask = smask_out [hs_transfers - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 bandwidth = stream->usecs + stream->c_usecs;
Alan Stern372dd6e2008-11-12 17:02:57 -05001061 bandwidth /= interval << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 /* stream->splits gets created from raw_mask later */
Stefan Roese6dbd6822007-05-01 09:29:37 -07001064 stream->address = cpu_to_hc32(ehci, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066 stream->bandwidth = bandwidth;
1067
1068 stream->udev = dev;
1069
1070 stream->bEndpointAddress = is_input | epnum;
1071 stream->interval = interval;
1072 stream->maxp = maxp;
1073}
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075static struct ehci_iso_stream *
1076iso_stream_find (struct ehci_hcd *ehci, struct urb *urb)
1077{
1078 unsigned epnum;
1079 struct ehci_iso_stream *stream;
1080 struct usb_host_endpoint *ep;
1081 unsigned long flags;
1082
1083 epnum = usb_pipeendpoint (urb->pipe);
1084 if (usb_pipein(urb->pipe))
1085 ep = urb->dev->ep_in[epnum];
1086 else
1087 ep = urb->dev->ep_out[epnum];
1088
1089 spin_lock_irqsave (&ehci->lock, flags);
1090 stream = ep->hcpriv;
1091
1092 if (unlikely (stream == NULL)) {
1093 stream = iso_stream_alloc(GFP_ATOMIC);
1094 if (likely (stream != NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 ep->hcpriv = stream;
1096 stream->ep = ep;
1097 iso_stream_init(ehci, stream, urb->dev, urb->pipe,
1098 urb->interval);
1099 }
1100
Clemens Ladisch1082f572010-03-01 17:18:56 +01001101 /* if dev->ep [epnum] is a QH, hw is set */
1102 } else if (unlikely (stream->hw != NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 ehci_dbg (ehci, "dev %s ep%d%s, not iso??\n",
1104 urb->dev->devpath, epnum,
1105 usb_pipein(urb->pipe) ? "in" : "out");
1106 stream = NULL;
1107 }
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 spin_unlock_irqrestore (&ehci->lock, flags);
1110 return stream;
1111}
1112
1113/*-------------------------------------------------------------------------*/
1114
1115/* ehci_iso_sched ops can be ITD-only or SITD-only */
1116
1117static struct ehci_iso_sched *
Al Viro55016f12005-10-21 03:21:58 -04001118iso_sched_alloc (unsigned packets, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
1120 struct ehci_iso_sched *iso_sched;
1121 int size = sizeof *iso_sched;
1122
1123 size += packets * sizeof (struct ehci_iso_packet);
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001124 iso_sched = kzalloc(size, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (likely (iso_sched != NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 INIT_LIST_HEAD (&iso_sched->td_list);
1127 }
1128 return iso_sched;
1129}
1130
1131static inline void
Stefan Roese6dbd6822007-05-01 09:29:37 -07001132itd_sched_init(
1133 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 struct ehci_iso_sched *iso_sched,
1135 struct ehci_iso_stream *stream,
1136 struct urb *urb
1137)
1138{
1139 unsigned i;
1140 dma_addr_t dma = urb->transfer_dma;
1141
1142 /* how many uframes are needed for these transfers */
1143 iso_sched->span = urb->number_of_packets * stream->interval;
1144
1145 /* figure out per-uframe itd fields that we'll need later
1146 * when we fit new itds into the schedule.
1147 */
1148 for (i = 0; i < urb->number_of_packets; i++) {
1149 struct ehci_iso_packet *uframe = &iso_sched->packet [i];
1150 unsigned length;
1151 dma_addr_t buf;
1152 u32 trans;
1153
1154 length = urb->iso_frame_desc [i].length;
1155 buf = dma + urb->iso_frame_desc [i].offset;
1156
1157 trans = EHCI_ISOC_ACTIVE;
1158 trans |= buf & 0x0fff;
1159 if (unlikely (((i + 1) == urb->number_of_packets))
1160 && !(urb->transfer_flags & URB_NO_INTERRUPT))
1161 trans |= EHCI_ITD_IOC;
1162 trans |= length << 16;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001163 uframe->transaction = cpu_to_hc32(ehci, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
David Brownell77078572005-05-28 10:46:18 -07001165 /* might need to cross a buffer page within a uframe */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 uframe->bufp = (buf & ~(u64)0x0fff);
1167 buf += length;
1168 if (unlikely ((uframe->bufp != (buf & ~(u64)0x0fff))))
1169 uframe->cross = 1;
1170 }
1171}
1172
1173static void
1174iso_sched_free (
1175 struct ehci_iso_stream *stream,
1176 struct ehci_iso_sched *iso_sched
1177)
1178{
1179 if (!iso_sched)
1180 return;
1181 // caller must hold ehci->lock!
1182 list_splice (&iso_sched->td_list, &stream->free_list);
1183 kfree (iso_sched);
1184}
1185
1186static int
1187itd_urb_transaction (
1188 struct ehci_iso_stream *stream,
1189 struct ehci_hcd *ehci,
1190 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -04001191 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192)
1193{
1194 struct ehci_itd *itd;
1195 dma_addr_t itd_dma;
1196 int i;
1197 unsigned num_itds;
1198 struct ehci_iso_sched *sched;
1199 unsigned long flags;
1200
1201 sched = iso_sched_alloc (urb->number_of_packets, mem_flags);
1202 if (unlikely (sched == NULL))
1203 return -ENOMEM;
1204
Stefan Roese6dbd6822007-05-01 09:29:37 -07001205 itd_sched_init(ehci, sched, stream, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 if (urb->interval < 8)
1208 num_itds = 1 + (sched->span + 7) / 8;
1209 else
1210 num_itds = urb->number_of_packets;
1211
1212 /* allocate/init ITDs */
1213 spin_lock_irqsave (&ehci->lock, flags);
1214 for (i = 0; i < num_itds; i++) {
1215
Alan Stern55934eb2012-07-11 11:22:35 -04001216 /*
1217 * Use iTDs from the free list, but not iTDs that may
1218 * still be in use by the hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 */
Alan Stern55934eb2012-07-11 11:22:35 -04001220 if (likely(!list_empty(&stream->free_list))) {
1221 itd = list_first_entry(&stream->free_list,
Stefan Roese6dbd6822007-05-01 09:29:37 -07001222 struct ehci_itd, itd_list);
Alan Stern55934eb2012-07-11 11:22:35 -04001223 if (itd->frame == ehci->clock_frame)
1224 goto alloc_itd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 list_del (&itd->itd_list);
1226 itd_dma = itd->itd_dma;
Karsten Wiese3d01f0f2008-02-19 12:31:49 -08001227 } else {
Alan Stern55934eb2012-07-11 11:22:35 -04001228 alloc_itd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 spin_unlock_irqrestore (&ehci->lock, flags);
1230 itd = dma_pool_alloc (ehci->itd_pool, mem_flags,
1231 &itd_dma);
1232 spin_lock_irqsave (&ehci->lock, flags);
Karsten Wiese3d01f0f2008-02-19 12:31:49 -08001233 if (!itd) {
1234 iso_sched_free(stream, sched);
1235 spin_unlock_irqrestore(&ehci->lock, flags);
1236 return -ENOMEM;
1237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 memset (itd, 0, sizeof *itd);
1241 itd->itd_dma = itd_dma;
1242 list_add (&itd->itd_list, &sched->td_list);
1243 }
1244 spin_unlock_irqrestore (&ehci->lock, flags);
1245
1246 /* temporarily store schedule info in hcpriv */
1247 urb->hcpriv = sched;
1248 urb->error_count = 0;
1249 return 0;
1250}
1251
1252/*-------------------------------------------------------------------------*/
1253
1254static inline int
1255itd_slot_ok (
1256 struct ehci_hcd *ehci,
1257 u32 mod,
1258 u32 uframe,
1259 u8 usecs,
1260 u32 period
1261)
1262{
1263 uframe %= period;
1264 do {
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001265 /* can't commit more than uframe_periodic_max usec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (periodic_usecs (ehci, uframe >> 3, uframe & 0x7)
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001267 > (ehci->uframe_periodic_max - usecs))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return 0;
1269
1270 /* we know urb->interval is 2^N uframes */
1271 uframe += period;
1272 } while (uframe < mod);
1273 return 1;
1274}
1275
1276static inline int
1277sitd_slot_ok (
1278 struct ehci_hcd *ehci,
1279 u32 mod,
1280 struct ehci_iso_stream *stream,
1281 u32 uframe,
1282 struct ehci_iso_sched *sched,
1283 u32 period_uframes
1284)
1285{
1286 u32 mask, tmp;
1287 u32 frame, uf;
1288
1289 mask = stream->raw_mask << (uframe & 7);
1290
1291 /* for IN, don't wrap CSPLIT into the next frame */
1292 if (mask & ~0xffff)
1293 return 0;
1294
Alan Stern65b8e5c2012-05-14 13:47:20 -04001295 /* check bandwidth */
1296 uframe %= period_uframes;
1297 frame = uframe >> 3;
1298
1299#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
1300 /* The tt's fullspeed bus bandwidth must be available.
1301 * tt_available scheduling guarantees 10+% for control/bulk.
1302 */
1303 uf = uframe & 7;
1304 if (!tt_available(ehci, period_uframes >> 3,
1305 stream->udev, frame, uf, stream->tt_usecs))
1306 return 0;
1307#else
1308 /* tt must be idle for start(s), any gap, and csplit.
1309 * assume scheduling slop leaves 10+% for control/bulk.
1310 */
1311 if (!tt_no_collision(ehci, period_uframes >> 3,
1312 stream->udev, frame, mask))
1313 return 0;
1314#endif
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 /* this multi-pass logic is simple, but performance may
1317 * suffer when the schedule data isn't cached.
1318 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 do {
1320 u32 max_used;
1321
1322 frame = uframe >> 3;
1323 uf = uframe & 7;
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /* check starts (OUT uses more than one) */
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001326 max_used = ehci->uframe_periodic_max - stream->usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 for (tmp = stream->raw_mask & 0xff; tmp; tmp >>= 1, uf++) {
1328 if (periodic_usecs (ehci, frame, uf) > max_used)
1329 return 0;
1330 }
1331
1332 /* for IN, check CSPLIT */
1333 if (stream->c_usecs) {
Clemens Ladisch0c734622006-01-22 10:32:49 -08001334 uf = uframe & 7;
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +04001335 max_used = ehci->uframe_periodic_max - stream->c_usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 do {
1337 tmp = 1 << uf;
1338 tmp <<= 8;
1339 if ((stream->raw_mask & tmp) == 0)
1340 continue;
1341 if (periodic_usecs (ehci, frame, uf)
1342 > max_used)
1343 return 0;
1344 } while (++uf < 8);
1345 }
1346
1347 /* we know urb->interval is 2^N uframes */
1348 uframe += period_uframes;
1349 } while (uframe < mod);
1350
Stefan Roese6dbd6822007-05-01 09:29:37 -07001351 stream->splits = cpu_to_hc32(ehci, stream->raw_mask << (uframe & 7));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return 1;
1353}
1354
1355/*
1356 * This scheduler plans almost as far into the future as it has actual
1357 * periodic schedule slots. (Affected by TUNE_FLS, which defaults to
1358 * "as small as possible" to be cache-friendlier.) That limits the size
1359 * transfers you can stream reliably; avoid more than 64 msec per urb.
1360 * Also avoid queue depths of less than ehci's worst irq latency (affected
1361 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
1362 * and other factors); or more than about 230 msec total (for portability,
1363 * given EHCI_TUNE_FLS and the slop). Or, write a smarter scheduler!
1364 */
1365
Sarah Sharpd7e055f2009-10-27 10:54:49 -07001366#define SCHEDULE_SLOP 80 /* microframes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368static int
1369iso_stream_schedule (
1370 struct ehci_hcd *ehci,
1371 struct urb *urb,
1372 struct ehci_iso_stream *stream
1373)
1374{
Alan Sternffda0802010-07-14 11:03:46 -04001375 u32 now, next, start, period, span;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 int status;
1377 unsigned mod = ehci->periodic_size << 3;
1378 struct ehci_iso_sched *sched = urb->hcpriv;
1379
Alan Sternffda0802010-07-14 11:03:46 -04001380 period = urb->interval;
1381 span = sched->span;
1382 if (!stream->highspeed) {
1383 period <<= 3;
1384 span <<= 3;
1385 }
1386
1387 if (span > mod - SCHEDULE_SLOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 ehci_dbg (ehci, "iso request %p too long\n", urb);
1389 status = -EFBIG;
1390 goto fail;
1391 }
1392
Alan Stern68aa95d2011-10-12 10:39:14 -04001393 now = ehci_read_frame_index(ehci) & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Alan Sternb40e43f2008-05-20 16:59:10 -04001395 /* Typical case: reuse current schedule, stream is still active.
1396 * Hopefully there are no gaps from the host falling behind
1397 * (irq delays etc), but if there are we'll take the next
1398 * slot in the schedule, implicitly assuming URB_ISO_ASAP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
1400 if (likely (!list_empty (&stream->td_list))) {
Alan Stern1fb2e052010-07-14 11:03:53 -04001401 u32 excess;
Sarah Sharpdccd5742009-10-27 10:55:05 -07001402
1403 /* For high speed devices, allow scheduling within the
Alan Sternae68a832010-07-14 11:03:23 -04001404 * isochronous scheduling threshold. For full speed devices
1405 * and Intel PCI-based controllers, don't (work around for
1406 * Intel ICH9 bug).
Sarah Sharpdccd5742009-10-27 10:55:05 -07001407 */
Alan Sternae68a832010-07-14 11:03:23 -04001408 if (!stream->highspeed && ehci->fs_i_thresh)
Sarah Sharpdccd5742009-10-27 10:55:05 -07001409 next = now + ehci->i_thresh;
1410 else
1411 next = now;
Alan Sternb40e43f2008-05-20 16:59:10 -04001412
Alan Stern1fb2e052010-07-14 11:03:53 -04001413 /* Fell behind (by up to twice the slop amount)?
1414 * We decide based on the time of the last currently-scheduled
1415 * slot, not the time of the next available slot.
1416 */
1417 excess = (stream->next_uframe - period - next) & (mod - 1);
1418 if (excess >= mod - 2 * SCHEDULE_SLOP)
1419 start = next + excess - mod + period *
1420 DIV_ROUND_UP(mod - excess, period);
1421 else
1422 start = next + excess + period;
1423 if (start - now >= mod) {
1424 ehci_dbg(ehci, "request %p would overflow (%d+%d >= %d)\n",
1425 urb, start - now - period, period,
1426 mod);
Alan Sternb40e43f2008-05-20 16:59:10 -04001427 status = -EFBIG;
1428 goto fail;
1429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431
1432 /* need to schedule; when's the next (u)frame we could start?
1433 * this is bigger than ehci->i_thresh allows; scheduling itself
1434 * isn't free, the slop should handle reasonably slow cpus. it
1435 * can also help high bandwidth if the dma and irq loads don't
1436 * jump until after the queue is primed.
1437 */
Alan Stern1fb2e052010-07-14 11:03:53 -04001438 else {
Matthieu CASTETe3420902011-11-28 11:30:22 +01001439 int done = 0;
Alan Stern1fb2e052010-07-14 11:03:53 -04001440 start = SCHEDULE_SLOP + (now & ~0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Alan Stern1fb2e052010-07-14 11:03:53 -04001442 /* NOTE: assumes URB_ISO_ASAP, to limit complexity/bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Thomas Poussevin811c9262011-10-27 18:46:48 +02001444 /* find a uframe slot with enough bandwidth.
1445 * Early uframes are more precious because full-speed
1446 * iso IN transfers can't use late uframes,
1447 * and therefore they should be allocated last.
1448 */
1449 next = start;
1450 start += period;
1451 do {
1452 start--;
Alan Stern1fb2e052010-07-14 11:03:53 -04001453 /* check schedule: enough space? */
1454 if (stream->highspeed) {
1455 if (itd_slot_ok(ehci, mod, start,
1456 stream->usecs, period))
Matthieu CASTETe3420902011-11-28 11:30:22 +01001457 done = 1;
Alan Stern1fb2e052010-07-14 11:03:53 -04001458 } else {
1459 if ((start % 8) >= 6)
1460 continue;
1461 if (sitd_slot_ok(ehci, mod, stream,
1462 start, sched, period))
Matthieu CASTETe3420902011-11-28 11:30:22 +01001463 done = 1;
Alan Stern1fb2e052010-07-14 11:03:53 -04001464 }
Matthieu CASTETe3420902011-11-28 11:30:22 +01001465 } while (start > next && !done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Alan Stern1fb2e052010-07-14 11:03:53 -04001467 /* no room in the schedule */
Matthieu CASTETe3420902011-11-28 11:30:22 +01001468 if (!done) {
Alan Stern1fb2e052010-07-14 11:03:53 -04001469 ehci_dbg(ehci, "iso resched full %p (now %d max %d)\n",
1470 urb, now, now + mod);
1471 status = -ENOSPC;
1472 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474 }
1475
Alan Stern1fb2e052010-07-14 11:03:53 -04001476 /* Tried to schedule too far into the future? */
1477 if (unlikely(start - now + span - period
1478 >= mod - 2 * SCHEDULE_SLOP)) {
1479 ehci_dbg(ehci, "request %p would overflow (%d+%d >= %d)\n",
1480 urb, start - now, span - period,
1481 mod - 2 * SCHEDULE_SLOP);
1482 status = -EFBIG;
1483 goto fail;
1484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Alan Stern1fb2e052010-07-14 11:03:53 -04001486 stream->next_uframe = start & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 /* report high speed start in uframes; full speed, in frames */
1489 urb->start_frame = stream->next_uframe;
1490 if (!stream->highspeed)
1491 urb->start_frame >>= 3;
Alan Stern569b3942012-07-11 11:23:00 -04001492
1493 /* Make sure scan_isoc() sees these */
1494 if (ehci->isoc_count == 0)
1495 ehci->next_uframe = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 return 0;
Alan Stern1fb2e052010-07-14 11:03:53 -04001497
1498 fail:
1499 iso_sched_free(stream, sched);
1500 urb->hcpriv = NULL;
1501 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504/*-------------------------------------------------------------------------*/
1505
1506static inline void
Stefan Roese6dbd6822007-05-01 09:29:37 -07001507itd_init(struct ehci_hcd *ehci, struct ehci_iso_stream *stream,
1508 struct ehci_itd *itd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
1510 int i;
1511
David Brownell77078572005-05-28 10:46:18 -07001512 /* it's been recently zeroed */
Stefan Roese6dbd6822007-05-01 09:29:37 -07001513 itd->hw_next = EHCI_LIST_END(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 itd->hw_bufp [0] = stream->buf0;
1515 itd->hw_bufp [1] = stream->buf1;
1516 itd->hw_bufp [2] = stream->buf2;
1517
1518 for (i = 0; i < 8; i++)
1519 itd->index[i] = -1;
1520
1521 /* All other fields are filled when scheduling */
1522}
1523
1524static inline void
Stefan Roese6dbd6822007-05-01 09:29:37 -07001525itd_patch(
1526 struct ehci_hcd *ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 struct ehci_itd *itd,
1528 struct ehci_iso_sched *iso_sched,
1529 unsigned index,
David Brownell77078572005-05-28 10:46:18 -07001530 u16 uframe
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531)
1532{
1533 struct ehci_iso_packet *uf = &iso_sched->packet [index];
1534 unsigned pg = itd->pg;
1535
1536 // BUG_ON (pg == 6 && uf->cross);
1537
1538 uframe &= 0x07;
1539 itd->index [uframe] = index;
1540
Stefan Roese6dbd6822007-05-01 09:29:37 -07001541 itd->hw_transaction[uframe] = uf->transaction;
1542 itd->hw_transaction[uframe] |= cpu_to_hc32(ehci, pg << 12);
1543 itd->hw_bufp[pg] |= cpu_to_hc32(ehci, uf->bufp & ~(u32)0);
1544 itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(uf->bufp >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* iso_frame_desc[].offset must be strictly increasing */
David Brownell77078572005-05-28 10:46:18 -07001547 if (unlikely (uf->cross)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 u64 bufp = uf->bufp + 4096;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 itd->pg = ++pg;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001551 itd->hw_bufp[pg] |= cpu_to_hc32(ehci, bufp & ~(u32)0);
1552 itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(bufp >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554}
1555
1556static inline void
1557itd_link (struct ehci_hcd *ehci, unsigned frame, struct ehci_itd *itd)
1558{
Clemens Ladisch92bc3642010-03-01 09:12:50 +01001559 union ehci_shadow *prev = &ehci->pshadow[frame];
1560 __hc32 *hw_p = &ehci->periodic[frame];
1561 union ehci_shadow here = *prev;
1562 __hc32 type = 0;
1563
1564 /* skip any iso nodes which might belong to previous microframes */
1565 while (here.ptr) {
1566 type = Q_NEXT_TYPE(ehci, *hw_p);
1567 if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
1568 break;
1569 prev = periodic_next_shadow(ehci, prev, type);
1570 hw_p = shadow_next_periodic(ehci, &here, type);
1571 here = *prev;
1572 }
1573
1574 itd->itd_next = here;
1575 itd->hw_next = *hw_p;
1576 prev->itd = itd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 itd->frame = frame;
1578 wmb ();
Clemens Ladisch92bc3642010-03-01 09:12:50 +01001579 *hw_p = cpu_to_hc32(ehci, itd->itd_dma | Q_TYPE_ITD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
1582/* fit urb's itds into the selected schedule slot; activate as needed */
Alan Sternb015cb72012-07-11 11:22:10 -04001583static void itd_link_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 struct ehci_hcd *ehci,
1585 struct urb *urb,
1586 unsigned mod,
1587 struct ehci_iso_stream *stream
1588)
1589{
David Brownell77078572005-05-28 10:46:18 -07001590 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 unsigned next_uframe, uframe, frame;
1592 struct ehci_iso_sched *iso_sched = urb->hcpriv;
1593 struct ehci_itd *itd;
1594
Alan Sternbccbefa2010-07-14 11:03:36 -04001595 next_uframe = stream->next_uframe & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 if (unlikely (list_empty(&stream->td_list))) {
1598 ehci_to_hcd(ehci)->self.bandwidth_allocated
1599 += stream->bandwidth;
1600 ehci_vdbg (ehci,
1601 "schedule devp %s ep%d%s-iso period %d start %d.%d\n",
1602 urb->dev->devpath, stream->bEndpointAddress & 0x0f,
1603 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
1604 urb->interval,
1605 next_uframe >> 3, next_uframe & 0x7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
Alex He05570292010-12-07 10:10:08 +08001607
1608 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
Andiry Xuad935622011-03-01 14:57:05 +08001609 if (ehci->amd_pll_fix == 1)
1610 usb_amd_quirk_pll_disable();
Alex He05570292010-12-07 10:10:08 +08001611 }
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
1614
1615 /* fill iTDs uframe by uframe */
1616 for (packet = 0, itd = NULL; packet < urb->number_of_packets; ) {
1617 if (itd == NULL) {
1618 /* ASSERT: we have all necessary itds */
1619 // BUG_ON (list_empty (&iso_sched->td_list));
1620
1621 /* ASSERT: no itds for this endpoint in this uframe */
1622
1623 itd = list_entry (iso_sched->td_list.next,
1624 struct ehci_itd, itd_list);
1625 list_move_tail (&itd->itd_list, &stream->td_list);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04001626 itd->stream = stream;
Karsten Wiese508db8c2009-02-26 01:47:48 +01001627 itd->urb = urb;
Stefan Roese6dbd6822007-05-01 09:29:37 -07001628 itd_init (ehci, stream, itd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 }
1630
1631 uframe = next_uframe & 0x07;
1632 frame = next_uframe >> 3;
1633
Stefan Roese6dbd6822007-05-01 09:29:37 -07001634 itd_patch(ehci, itd, iso_sched, packet, uframe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 next_uframe += stream->interval;
Alan Sternbccbefa2010-07-14 11:03:36 -04001637 next_uframe &= mod - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 packet++;
1639
1640 /* link completed itds into the schedule */
1641 if (((next_uframe >> 3) != frame)
1642 || packet == urb->number_of_packets) {
Alan Sternbccbefa2010-07-14 11:03:36 -04001643 itd_link(ehci, frame & (ehci->periodic_size - 1), itd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 itd = NULL;
1645 }
1646 }
1647 stream->next_uframe = next_uframe;
1648
1649 /* don't need that schedule data any more */
1650 iso_sched_free (stream, iso_sched);
1651 urb->hcpriv = NULL;
1652
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
Alan Stern569b3942012-07-11 11:23:00 -04002055 ++ehci->isoc_count;
Alan Sternb015cb72012-07-11 11:22:10 -04002056 enable_periodic(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
2059/*-------------------------------------------------------------------------*/
2060
2061#define SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
David Brownell53bd6a62006-08-30 14:50:06 -07002062 | SITD_STS_XACT | SITD_STS_MMF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
David Brownell30bf54e2007-12-16 22:37:40 -08002064/* Process and recycle a completed SITD. Return true iff its urb completed,
2065 * and hence its completion callback probably added things to the hardware
2066 * schedule.
2067 *
2068 * Note that we carefully avoid recycling this descriptor until after any
2069 * completion callback runs, so that it won't be reused quickly. That is,
2070 * assuming (a) no more than two urbs per frame on this endpoint, and also
2071 * (b) only this endpoint's completions submit URBs. It seems some silicon
2072 * corrupts things if you reuse completed descriptors very quickly...
2073 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074static unsigned
2075sitd_complete (
2076 struct ehci_hcd *ehci,
David Howells7d12e782006-10-05 14:55:46 +01002077 struct ehci_sitd *sitd
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078) {
2079 struct urb *urb = sitd->urb;
2080 struct usb_iso_packet_descriptor *desc;
2081 u32 t;
2082 int urb_index = -1;
2083 struct ehci_iso_stream *stream = sitd->stream;
2084 struct usb_device *dev;
David Brownell30bf54e2007-12-16 22:37:40 -08002085 unsigned retval = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 urb_index = sitd->index;
2088 desc = &urb->iso_frame_desc [urb_index];
Stefan Roese6dbd6822007-05-01 09:29:37 -07002089 t = hc32_to_cpup(ehci, &sitd->hw_results);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 /* report transfer status */
2092 if (t & SITD_ERRS) {
2093 urb->error_count++;
2094 if (t & SITD_STS_DBE)
2095 desc->status = usb_pipein (urb->pipe)
2096 ? -ENOSR /* hc couldn't read */
2097 : -ECOMM; /* hc couldn't write */
2098 else if (t & SITD_STS_BABBLE)
2099 desc->status = -EOVERFLOW;
2100 else /* XACT, MMF, etc */
2101 desc->status = -EPROTO;
2102 } else {
2103 desc->status = 0;
Alan Sternec6d67e2009-06-29 14:34:59 -04002104 desc->actual_length = desc->length - SITD_LENGTH(t);
2105 urb->actual_length += desc->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 /* handle completion now? */
2109 if ((urb_index + 1) != urb->number_of_packets)
David Brownell30bf54e2007-12-16 22:37:40 -08002110 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 /* ASSERT: it's really the last sitd for this urb
2113 list_for_each_entry (sitd, &stream->td_list, sitd_list)
2114 BUG_ON (sitd->urb == urb);
2115 */
2116
David Brownellaa16ca32007-12-30 23:45:19 -08002117 /* give urb back to the driver; completion often (re)submits */
Alan Stern6a8e87b2006-01-19 10:46:27 -05002118 dev = urb->dev;
Alan Stern14c04c02007-08-24 15:40:19 -04002119 ehci_urb_done(ehci, urb, 0);
David Brownell30bf54e2007-12-16 22:37:40 -08002120 retval = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 urb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Alan Stern569b3942012-07-11 11:23:00 -04002123 --ehci->isoc_count;
2124 disable_periodic(ehci);
2125
2126 ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
Alex He05570292010-12-07 10:10:08 +08002127 if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
Andiry Xuad935622011-03-01 14:57:05 +08002128 if (ehci->amd_pll_fix == 1)
2129 usb_amd_quirk_pll_enable();
Alex He05570292010-12-07 10:10:08 +08002130 }
2131
Karsten Wiese508db8c2009-02-26 01:47:48 +01002132 if (list_is_singular(&stream->td_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 ehci_to_hcd(ehci)->self.bandwidth_allocated
2134 -= stream->bandwidth;
2135 ehci_vdbg (ehci,
2136 "deschedule devp %s ep%d%s-iso\n",
2137 dev->devpath, stream->bEndpointAddress & 0x0f,
2138 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out");
2139 }
Alan Stern0e5f2312010-04-08 16:56:37 -04002140
David Brownell30bf54e2007-12-16 22:37:40 -08002141done:
David Brownell30bf54e2007-12-16 22:37:40 -08002142 sitd->urb = NULL;
Alan Stern55934eb2012-07-11 11:22:35 -04002143
2144 /* Add to the end of the free list for later reuse */
2145 list_move_tail(&sitd->sitd_list, &stream->free_list);
2146
2147 /* Recycle the siTDs when the pipeline is empty (ep no longer in use) */
2148 if (list_empty(&stream->td_list)) {
2149 list_splice_tail_init(&stream->free_list,
2150 &ehci->cached_sitd_list);
2151 start_free_itds(ehci);
Alan Stern0e5f2312010-04-08 16:56:37 -04002152 }
Alan Stern55934eb2012-07-11 11:22:35 -04002153
David Brownell30bf54e2007-12-16 22:37:40 -08002154 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
2157
Olav Kongas5db539e2005-06-23 20:25:36 +03002158static int sitd_submit (struct ehci_hcd *ehci, struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -04002159 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
2161 int status = -EINVAL;
2162 unsigned long flags;
2163 struct ehci_iso_stream *stream;
2164
2165 /* Get iso_stream head */
2166 stream = iso_stream_find (ehci, urb);
2167 if (stream == NULL) {
2168 ehci_dbg (ehci, "can't get iso stream\n");
2169 return -ENOMEM;
2170 }
2171 if (urb->interval != stream->interval) {
2172 ehci_dbg (ehci, "can't change iso interval %d --> %d\n",
2173 stream->interval, urb->interval);
2174 goto done;
2175 }
2176
2177#ifdef EHCI_URB_TRACE
2178 ehci_dbg (ehci,
2179 "submit %p dev%s ep%d%s-iso len %d\n",
2180 urb, urb->dev->devpath,
2181 usb_pipeendpoint (urb->pipe),
2182 usb_pipein (urb->pipe) ? "in" : "out",
2183 urb->transfer_buffer_length);
2184#endif
2185
2186 /* allocate SITDs */
2187 status = sitd_urb_transaction (stream, ehci, urb, mem_flags);
2188 if (status < 0) {
2189 ehci_dbg (ehci, "can't init sitds\n");
2190 goto done;
2191 }
2192
2193 /* schedule ... need to lock */
2194 spin_lock_irqsave (&ehci->lock, flags);
Alan Stern541c7d42010-06-22 16:39:10 -04002195 if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11002196 status = -ESHUTDOWN;
Alan Sterne9df41c2007-08-08 11:48:02 -04002197 goto done_not_linked;
2198 }
2199 status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
2200 if (unlikely(status))
2201 goto done_not_linked;
2202 status = iso_stream_schedule(ehci, urb, stream);
David Brownell53bd6a62006-08-30 14:50:06 -07002203 if (status == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 sitd_link_urb (ehci, urb, ehci->periodic_size << 3, stream);
Alan Sterne9df41c2007-08-08 11:48:02 -04002205 else
2206 usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04002207 done_not_linked:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 spin_unlock_irqrestore (&ehci->lock, flags);
Alan Stern8c5bf7b2012-07-11 11:22:39 -04002209 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 return status;
2211}
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213/*-------------------------------------------------------------------------*/
2214
Alan Stern569b3942012-07-11 11:23:00 -04002215static void scan_isoc(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
Alan Sternb40e43f2008-05-20 16:59:10 -04002217 unsigned now_uframe, frame, clock, clock_frame, mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 unsigned modified;
2219
2220 mod = ehci->periodic_size << 3;
2221
2222 /*
2223 * When running, scan from last scan point up to "now"
2224 * else clean up by scanning everything that's left.
2225 * Touches as few pages as possible: cache-friendly.
2226 */
2227 now_uframe = ehci->next_uframe;
Alan Sternc0c53db2012-07-11 11:21:48 -04002228 if (ehci->rh_state >= EHCI_RH_RUNNING) {
Alan Stern68aa95d2011-10-12 10:39:14 -04002229 clock = ehci_read_frame_index(ehci);
Alan Sternbccbefa2010-07-14 11:03:36 -04002230 clock_frame = (clock >> 3) & (ehci->periodic_size - 1);
Karsten Wiese9aa09d22009-02-08 16:07:58 -08002231 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 clock = now_uframe + mod - 1;
Karsten Wiese9aa09d22009-02-08 16:07:58 -08002233 clock_frame = -1;
2234 }
Alan Stern55934eb2012-07-11 11:22:35 -04002235 ehci->clock_frame = clock_frame;
Alan Sternbccbefa2010-07-14 11:03:36 -04002236 clock &= mod - 1;
Alan Sternb40e43f2008-05-20 16:59:10 -04002237 clock_frame = clock >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239 for (;;) {
2240 union ehci_shadow q, *q_p;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002241 __hc32 type, *hw_p;
David Brownell79592b722008-01-07 00:47:42 -08002242 unsigned incomplete = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 frame = now_uframe >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246restart:
2247 /* scan each element in frame's queue for completions */
2248 q_p = &ehci->pshadow [frame];
2249 hw_p = &ehci->periodic [frame];
2250 q.ptr = q_p->ptr;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002251 type = Q_NEXT_TYPE(ehci, *hw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 modified = 0;
2253
2254 while (q.ptr != NULL) {
2255 unsigned uf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 int live;
2257
Alan Sternc0c53db2012-07-11 11:21:48 -04002258 live = (ehci->rh_state >= EHCI_RH_RUNNING);
Stefan Roese6dbd6822007-05-01 09:29:37 -07002259 switch (hc32_to_cpu(ehci, type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 case Q_TYPE_ITD:
David Brownell79592b722008-01-07 00:47:42 -08002261 /* If this ITD is still active, leave it for
2262 * later processing ... check the next entry.
Alan Sternb40e43f2008-05-20 16:59:10 -04002263 * No need to check for activity unless the
2264 * frame is current.
David Brownell79592b722008-01-07 00:47:42 -08002265 */
Alan Sternb40e43f2008-05-20 16:59:10 -04002266 if (frame == clock_frame && live) {
2267 rmb();
2268 for (uf = 0; uf < 8; uf++) {
2269 if (q.itd->hw_transaction[uf] &
2270 ITD_ACTIVE(ehci))
2271 break;
2272 }
2273 if (uf < 8) {
2274 incomplete = true;
2275 q_p = &q.itd->itd_next;
2276 hw_p = &q.itd->hw_next;
2277 type = Q_NEXT_TYPE(ehci,
Stefan Roese6dbd6822007-05-01 09:29:37 -07002278 q.itd->hw_next);
Alan Sternb40e43f2008-05-20 16:59:10 -04002279 q = *q_p;
2280 break;
2281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
David Brownell79592b722008-01-07 00:47:42 -08002284 /* Take finished ITDs out of the schedule
2285 * and process them: recycle, maybe report
2286 * URB completion. HC won't cache the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 * pointer for much longer, if at all.
2288 */
2289 *q_p = q.itd->itd_next;
Andiry Xu3d091a62010-11-08 17:58:35 +08002290 if (!ehci->use_dummy_qh ||
2291 q.itd->hw_next != EHCI_LIST_END(ehci))
2292 *hw_p = q.itd->hw_next;
2293 else
2294 *hw_p = ehci->dummy->qh_dma;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002295 type = Q_NEXT_TYPE(ehci, q.itd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 wmb();
David Howells7d12e782006-10-05 14:55:46 +01002297 modified = itd_complete (ehci, q.itd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 q = *q_p;
2299 break;
2300 case Q_TYPE_SITD:
David Brownell79592b722008-01-07 00:47:42 -08002301 /* If this SITD is still active, leave it for
2302 * later processing ... check the next entry.
Alan Sternb40e43f2008-05-20 16:59:10 -04002303 * No need to check for activity unless the
2304 * frame is current.
David Brownell79592b722008-01-07 00:47:42 -08002305 */
Dmitri Epshtein22e18692009-12-14 17:17:34 +02002306 if (((frame == clock_frame) ||
Alan Sternbccbefa2010-07-14 11:03:36 -04002307 (((frame + 1) & (ehci->periodic_size - 1))
Dmitri Epshtein22e18692009-12-14 17:17:34 +02002308 == clock_frame))
2309 && live
2310 && (q.sitd->hw_results &
2311 SITD_ACTIVE(ehci))) {
2312
David Brownell79592b722008-01-07 00:47:42 -08002313 incomplete = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 q_p = &q.sitd->sitd_next;
2315 hw_p = &q.sitd->hw_next;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002316 type = Q_NEXT_TYPE(ehci,
2317 q.sitd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 q = *q_p;
2319 break;
2320 }
David Brownell79592b722008-01-07 00:47:42 -08002321
2322 /* Take finished SITDs out of the schedule
2323 * and process them: recycle, maybe report
2324 * URB completion.
2325 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *q_p = q.sitd->sitd_next;
Andiry Xu3d091a62010-11-08 17:58:35 +08002327 if (!ehci->use_dummy_qh ||
2328 q.sitd->hw_next != EHCI_LIST_END(ehci))
2329 *hw_p = q.sitd->hw_next;
2330 else
2331 *hw_p = ehci->dummy->qh_dma;
Stefan Roese6dbd6822007-05-01 09:29:37 -07002332 type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 wmb();
David Howells7d12e782006-10-05 14:55:46 +01002334 modified = sitd_complete (ehci, q.sitd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 q = *q_p;
2336 break;
2337 default:
Greg Kroah-Hartman2d0fe1b2012-05-01 21:33:36 -07002338 ehci_dbg(ehci, "corrupt type %d frame %d shadow %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 type, frame, q.ptr);
2340 // BUG ();
Alan Stern569b3942012-07-11 11:23:00 -04002341 /* FALL THROUGH */
2342 case Q_TYPE_QH:
2343 case Q_TYPE_FSTN:
2344 /* End of the iTDs and siTDs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 q.ptr = NULL;
Alan Stern569b3942012-07-11 11:23:00 -04002346 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
2348
2349 /* assume completion callbacks modify the queue */
David Brownellaa16ca32007-12-30 23:45:19 -08002350 if (unlikely (modified)) {
Alan Stern569b3942012-07-11 11:23:00 -04002351 if (likely(ehci->isoc_count > 0))
David Brownellaa16ca32007-12-30 23:45:19 -08002352 goto restart;
David Brownell01c17142008-08-26 23:35:04 -07002353 /* short-circuit this scan */
David Brownellaa16ca32007-12-30 23:45:19 -08002354 now_uframe = clock;
2355 break;
2356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
2358
David Brownell79592b722008-01-07 00:47:42 -08002359 /* If we can tell we caught up to the hardware, stop now.
2360 * We can't advance our scan without collecting the ISO
2361 * transfers that are still pending in this frame.
2362 */
Alan Sternc0c53db2012-07-11 11:21:48 -04002363 if (incomplete && ehci->rh_state >= EHCI_RH_RUNNING) {
David Brownell79592b722008-01-07 00:47:42 -08002364 ehci->next_uframe = now_uframe;
2365 break;
2366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 // FIXME: this assumes we won't get lapped when
2369 // latencies climb; that should be rare, but...
2370 // detect it, and just go all the way around.
2371 // FLR might help detect this case, so long as latencies
2372 // don't exceed periodic_size msec (default 1.024 sec).
2373
2374 // FIXME: likewise assumes HC doesn't halt mid-scan
2375
2376 if (now_uframe == clock) {
2377 unsigned now;
2378
Alan Sternc0c53db2012-07-11 11:21:48 -04002379 if (ehci->rh_state < EHCI_RH_RUNNING
Alan Stern569b3942012-07-11 11:23:00 -04002380 || ehci->isoc_count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 break;
2382 ehci->next_uframe = now_uframe;
Alan Stern68aa95d2011-10-12 10:39:14 -04002383 now = ehci_read_frame_index(ehci) & (mod - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 if (now_uframe == now)
2385 break;
2386
2387 /* rescan the rest of this frame, then ... */
2388 clock = now;
Alan Sternb40e43f2008-05-20 16:59:10 -04002389 clock_frame = clock >> 3;
Alan Stern569b3942012-07-11 11:23:00 -04002390 ehci->clock_frame = clock_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 } else {
2392 now_uframe++;
Alan Sternbccbefa2010-07-14 11:03:36 -04002393 now_uframe &= mod - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 }
David Brownell53bd6a62006-08-30 14:50:06 -07002395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396}