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