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