blob: 12af6fb05a302ed1b2925fed4ca7025b348fa147 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Host Controller Interface driver for USB.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
5 *
6 * (C) Copyright 1999 Linus Torvalds
7 * (C) Copyright 1999-2002 Johannes Erdfelt, johannes@erdfelt.com
8 * (C) Copyright 1999 Randy Dunlap
9 * (C) Copyright 1999 Georg Acher, acher@in.tum.de
10 * (C) Copyright 1999 Deti Fliegl, deti@fliegl.de
11 * (C) Copyright 1999 Thomas Sailer, sailer@ife.ee.ethz.ch
12 * (C) Copyright 1999 Roman Weissgaerber, weissg@vienna.at
13 * (C) Copyright 2000 Yggdrasil Computing, Inc. (port of new PCI interface
14 * support from usb-ohci.c by Adam Richter, adam@yggdrasil.com).
15 * (C) Copyright 1999 Gregory P. Smith (from usb-ohci.c)
Alan Sterndccf4a42005-12-17 17:58:46 -050016 * (C) Copyright 2004-2005 Alan Stern, stern@rowland.harvard.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/*
21 * Technically, updating td->status here is a race, but it's not really a
22 * problem. The worst that can happen is that we set the IOC bit again
23 * generating a spurious interrupt. We could fix this by creating another
24 * QH and leaving the IOC bit always set, but then we would have to play
25 * games with the FSBR code to make sure we get the correct order in all
26 * the cases. I don't think it's worth the effort
27 */
Alan Sterndccf4a42005-12-17 17:58:46 -050028static void uhci_set_next_interrupt(struct uhci_hcd *uhci)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Alan Stern6c1b4452005-04-21 16:04:58 -040030 if (uhci->is_stopped)
Alan Stern1f09df82005-09-05 13:59:51 -040031 mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 uhci->term_td->status |= cpu_to_le32(TD_CTRL_IOC);
33}
34
35static inline void uhci_clear_next_interrupt(struct uhci_hcd *uhci)
36{
37 uhci->term_td->status &= ~cpu_to_le32(TD_CTRL_IOC);
38}
39
Alan Stern25321782005-04-25 11:14:31 -040040static struct uhci_td *uhci_alloc_td(struct uhci_hcd *uhci)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 dma_addr_t dma_handle;
43 struct uhci_td *td;
44
45 td = dma_pool_alloc(uhci->td_pool, GFP_ATOMIC, &dma_handle);
46 if (!td)
47 return NULL;
48
49 td->dma_handle = dma_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 td->frame = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 INIT_LIST_HEAD(&td->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 INIT_LIST_HEAD(&td->fl_list);
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return td;
56}
57
Alan Sterndccf4a42005-12-17 17:58:46 -050058static void uhci_free_td(struct uhci_hcd *uhci, struct uhci_td *td)
59{
60 if (!list_empty(&td->list))
61 dev_warn(uhci_dev(uhci), "td %p still in list!\n", td);
Alan Sterndccf4a42005-12-17 17:58:46 -050062 if (!list_empty(&td->fl_list))
63 dev_warn(uhci_dev(uhci), "td %p still in fl_list!\n", td);
64
65 dma_pool_free(uhci->td_pool, td, td->dma_handle);
66}
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static inline void uhci_fill_td(struct uhci_td *td, u32 status,
69 u32 token, u32 buffer)
70{
71 td->status = cpu_to_le32(status);
72 td->token = cpu_to_le32(token);
73 td->buffer = cpu_to_le32(buffer);
74}
75
Alan Stern04538a22006-05-12 11:29:04 -040076static void uhci_add_td_to_urbp(struct uhci_td *td, struct urb_priv *urbp)
77{
78 list_add_tail(&td->list, &urbp->td_list);
79}
80
81static void uhci_remove_td_from_urbp(struct uhci_td *td)
82{
83 list_del_init(&td->list);
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
Alan Stern687f5f32005-11-30 17:16:19 -050087 * We insert Isochronous URBs directly into the frame list at the beginning
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Alan Sterndccf4a42005-12-17 17:58:46 -050089static inline void uhci_insert_td_in_frame_list(struct uhci_hcd *uhci,
90 struct uhci_td *td, unsigned framenum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 framenum &= (UHCI_NUMFRAMES - 1);
93
94 td->frame = framenum;
95
96 /* Is there a TD already mapped there? */
Alan Sterna1d59ce2005-09-16 14:22:51 -040097 if (uhci->frame_cpu[framenum]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct uhci_td *ftd, *ltd;
99
Alan Sterna1d59ce2005-09-16 14:22:51 -0400100 ftd = uhci->frame_cpu[framenum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 ltd = list_entry(ftd->fl_list.prev, struct uhci_td, fl_list);
102
103 list_add_tail(&td->fl_list, &ftd->fl_list);
104
105 td->link = ltd->link;
106 wmb();
107 ltd->link = cpu_to_le32(td->dma_handle);
108 } else {
Alan Sterna1d59ce2005-09-16 14:22:51 -0400109 td->link = uhci->frame[framenum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 wmb();
Alan Sterna1d59ce2005-09-16 14:22:51 -0400111 uhci->frame[framenum] = cpu_to_le32(td->dma_handle);
112 uhci->frame_cpu[framenum] = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114}
115
Alan Sterndccf4a42005-12-17 17:58:46 -0500116static inline void uhci_remove_td_from_frame_list(struct uhci_hcd *uhci,
Alan Sternb81d3432005-10-13 17:00:24 -0400117 struct uhci_td *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 /* If it's not inserted, don't remove it */
Alan Sternb81d3432005-10-13 17:00:24 -0400120 if (td->frame == -1) {
121 WARN_ON(!list_empty(&td->fl_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return;
Alan Sternb81d3432005-10-13 17:00:24 -0400123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Alan Sternb81d3432005-10-13 17:00:24 -0400125 if (uhci->frame_cpu[td->frame] == td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (list_empty(&td->fl_list)) {
Alan Sterna1d59ce2005-09-16 14:22:51 -0400127 uhci->frame[td->frame] = td->link;
128 uhci->frame_cpu[td->frame] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 } else {
130 struct uhci_td *ntd;
131
132 ntd = list_entry(td->fl_list.next, struct uhci_td, fl_list);
Alan Sterna1d59ce2005-09-16 14:22:51 -0400133 uhci->frame[td->frame] = cpu_to_le32(ntd->dma_handle);
134 uhci->frame_cpu[td->frame] = ntd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136 } else {
137 struct uhci_td *ptd;
138
139 ptd = list_entry(td->fl_list.prev, struct uhci_td, fl_list);
140 ptd->link = td->link;
141 }
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 list_del_init(&td->fl_list);
144 td->frame = -1;
145}
146
Alan Sterndccf4a42005-12-17 17:58:46 -0500147/*
148 * Remove all the TDs for an Isochronous URB from the frame list
149 */
150static void uhci_unlink_isochronous_tds(struct uhci_hcd *uhci, struct urb *urb)
Alan Sternb81d3432005-10-13 17:00:24 -0400151{
152 struct urb_priv *urbp = (struct urb_priv *) urb->hcpriv;
153 struct uhci_td *td;
154
155 list_for_each_entry(td, &urbp->td_list, list)
Alan Sterndccf4a42005-12-17 17:58:46 -0500156 uhci_remove_td_from_frame_list(uhci, td);
Alan Sternb81d3432005-10-13 17:00:24 -0400157 wmb();
158}
159
Alan Sterndccf4a42005-12-17 17:58:46 -0500160static struct uhci_qh *uhci_alloc_qh(struct uhci_hcd *uhci,
161 struct usb_device *udev, struct usb_host_endpoint *hep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 dma_addr_t dma_handle;
164 struct uhci_qh *qh;
165
166 qh = dma_pool_alloc(uhci->qh_pool, GFP_ATOMIC, &dma_handle);
167 if (!qh)
168 return NULL;
169
Alan Stern59e29ed2006-05-12 11:19:19 -0400170 memset(qh, 0, sizeof(*qh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 qh->dma_handle = dma_handle;
172
173 qh->element = UHCI_PTR_TERM;
174 qh->link = UHCI_PTR_TERM;
175
Alan Sterndccf4a42005-12-17 17:58:46 -0500176 INIT_LIST_HEAD(&qh->queue);
177 INIT_LIST_HEAD(&qh->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Alan Sterndccf4a42005-12-17 17:58:46 -0500179 if (udev) { /* Normal QH */
Alan Sternaf0bb592005-12-17 18:00:12 -0500180 qh->dummy_td = uhci_alloc_td(uhci);
181 if (!qh->dummy_td) {
182 dma_pool_free(uhci->qh_pool, qh, dma_handle);
183 return NULL;
184 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500185 qh->state = QH_STATE_IDLE;
186 qh->hep = hep;
187 qh->udev = udev;
188 hep->hcpriv = qh;
Alan Stern4de7d2c2006-05-05 16:26:58 -0400189 qh->type = hep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Alan Sterndccf4a42005-12-17 17:58:46 -0500191 } else { /* Skeleton QH */
192 qh->state = QH_STATE_ACTIVE;
Alan Stern4de7d2c2006-05-05 16:26:58 -0400193 qh->type = -1;
Alan Sterndccf4a42005-12-17 17:58:46 -0500194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return qh;
196}
197
198static void uhci_free_qh(struct uhci_hcd *uhci, struct uhci_qh *qh)
199{
Alan Sterndccf4a42005-12-17 17:58:46 -0500200 WARN_ON(qh->state != QH_STATE_IDLE && qh->udev);
201 if (!list_empty(&qh->queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 dev_warn(uhci_dev(uhci), "qh %p list not empty!\n", qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Alan Sterndccf4a42005-12-17 17:58:46 -0500204 list_del(&qh->node);
205 if (qh->udev) {
206 qh->hep->hcpriv = NULL;
Alan Sternaf0bb592005-12-17 18:00:12 -0500207 uhci_free_td(uhci, qh->dummy_td);
Alan Sterndccf4a42005-12-17 17:58:46 -0500208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 dma_pool_free(uhci->qh_pool, qh, qh->dma_handle);
210}
211
212/*
Alan Sterna0b458b2006-05-12 11:23:19 -0400213 * When a queue is stopped and a dequeued URB is given back, adjust
214 * the previous TD link (if the URB isn't first on the queue) or
215 * save its toggle value (if it is first and is currently executing).
Alan Stern0ed8fee2005-12-17 18:02:38 -0500216 */
Alan Sterna0b458b2006-05-12 11:23:19 -0400217static void uhci_cleanup_queue(struct uhci_qh *qh,
218 struct urb *urb)
Alan Stern0ed8fee2005-12-17 18:02:38 -0500219{
Alan Sterna0b458b2006-05-12 11:23:19 -0400220 struct urb_priv *urbp = urb->hcpriv;
Alan Stern0ed8fee2005-12-17 18:02:38 -0500221 struct uhci_td *td;
222
Alan Sterna0b458b2006-05-12 11:23:19 -0400223 /* Isochronous pipes don't use toggles and their TD link pointers
224 * get adjusted during uhci_urb_dequeue(). */
225 if (qh->type == USB_ENDPOINT_XFER_ISOC)
226 return;
227
228 /* If the URB isn't first on its queue, adjust the link pointer
229 * of the last TD in the previous URB. The toggle doesn't need
230 * to be saved since this URB can't be executing yet. */
231 if (qh->queue.next != &urbp->node) {
232 struct urb_priv *purbp;
233 struct uhci_td *ptd;
234
235 purbp = list_entry(urbp->node.prev, struct urb_priv, node);
236 WARN_ON(list_empty(&purbp->td_list));
237 ptd = list_entry(purbp->td_list.prev, struct uhci_td,
238 list);
239 td = list_entry(urbp->td_list.prev, struct uhci_td,
240 list);
241 ptd->link = td->link;
242 return;
243 }
244
Alan Stern0ed8fee2005-12-17 18:02:38 -0500245 /* If the QH element pointer is UHCI_PTR_TERM then then currently
246 * executing URB has already been unlinked, so this one isn't it. */
Alan Sterna0b458b2006-05-12 11:23:19 -0400247 if (qh_element(qh) == UHCI_PTR_TERM)
Alan Stern0ed8fee2005-12-17 18:02:38 -0500248 return;
249 qh->element = UHCI_PTR_TERM;
250
Alan Sterna0b458b2006-05-12 11:23:19 -0400251 /* Control pipes have to worry about toggles */
252 if (qh->type == USB_ENDPOINT_XFER_CONTROL)
Alan Stern0ed8fee2005-12-17 18:02:38 -0500253 return;
254
Alan Sterna0b458b2006-05-12 11:23:19 -0400255 /* Save the next toggle value */
Alan Stern59e29ed2006-05-12 11:19:19 -0400256 WARN_ON(list_empty(&urbp->td_list));
257 td = list_entry(urbp->td_list.next, struct uhci_td, list);
258 qh->needs_fixup = 1;
259 qh->initial_toggle = uhci_toggle(td_token(td));
Alan Stern0ed8fee2005-12-17 18:02:38 -0500260}
261
262/*
263 * Fix up the data toggles for URBs in a queue, when one of them
264 * terminates early (short transfer, error, or dequeued).
265 */
266static void uhci_fixup_toggles(struct uhci_qh *qh, int skip_first)
267{
268 struct urb_priv *urbp = NULL;
269 struct uhci_td *td;
270 unsigned int toggle = qh->initial_toggle;
271 unsigned int pipe;
272
273 /* Fixups for a short transfer start with the second URB in the
274 * queue (the short URB is the first). */
275 if (skip_first)
276 urbp = list_entry(qh->queue.next, struct urb_priv, node);
277
278 /* When starting with the first URB, if the QH element pointer is
279 * still valid then we know the URB's toggles are okay. */
280 else if (qh_element(qh) != UHCI_PTR_TERM)
281 toggle = 2;
282
283 /* Fix up the toggle for the URBs in the queue. Normally this
284 * loop won't run more than once: When an error or short transfer
285 * occurs, the queue usually gets emptied. */
Alan Stern1393adb2006-01-31 10:02:55 -0500286 urbp = list_prepare_entry(urbp, &qh->queue, node);
Alan Stern0ed8fee2005-12-17 18:02:38 -0500287 list_for_each_entry_continue(urbp, &qh->queue, node) {
288
289 /* If the first TD has the right toggle value, we don't
290 * need to change any toggles in this URB */
291 td = list_entry(urbp->td_list.next, struct uhci_td, list);
292 if (toggle > 1 || uhci_toggle(td_token(td)) == toggle) {
293 td = list_entry(urbp->td_list.next, struct uhci_td,
294 list);
295 toggle = uhci_toggle(td_token(td)) ^ 1;
296
297 /* Otherwise all the toggles in the URB have to be switched */
298 } else {
299 list_for_each_entry(td, &urbp->td_list, list) {
300 td->token ^= __constant_cpu_to_le32(
301 TD_TOKEN_TOGGLE);
302 toggle ^= 1;
303 }
304 }
305 }
306
307 wmb();
308 pipe = list_entry(qh->queue.next, struct urb_priv, node)->urb->pipe;
309 usb_settoggle(qh->udev, usb_pipeendpoint(pipe),
310 usb_pipeout(pipe), toggle);
311 qh->needs_fixup = 0;
312}
313
314/*
Alan Sterndccf4a42005-12-17 17:58:46 -0500315 * Put a QH on the schedule in both hardware and software
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500317static void uhci_activate_qh(struct uhci_hcd *uhci, struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Alan Sterndccf4a42005-12-17 17:58:46 -0500319 struct uhci_qh *pqh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Alan Sterndccf4a42005-12-17 17:58:46 -0500321 WARN_ON(list_empty(&qh->queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Alan Sterndccf4a42005-12-17 17:58:46 -0500323 /* Set the element pointer if it isn't set already.
324 * This isn't needed for Isochronous queues, but it doesn't hurt. */
325 if (qh_element(qh) == UHCI_PTR_TERM) {
326 struct urb_priv *urbp = list_entry(qh->queue.next,
327 struct urb_priv, node);
328 struct uhci_td *td = list_entry(urbp->td_list.next,
329 struct uhci_td, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Alan Sterndccf4a42005-12-17 17:58:46 -0500331 qh->element = cpu_to_le32(td->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
Alan Sterndccf4a42005-12-17 17:58:46 -0500334 if (qh->state == QH_STATE_ACTIVE)
335 return;
336 qh->state = QH_STATE_ACTIVE;
337
338 /* Move the QH from its old list to the end of the appropriate
339 * skeleton's list */
Alan Stern0ed8fee2005-12-17 18:02:38 -0500340 if (qh == uhci->next_qh)
341 uhci->next_qh = list_entry(qh->node.next, struct uhci_qh,
342 node);
Alan Sterndccf4a42005-12-17 17:58:46 -0500343 list_move_tail(&qh->node, &qh->skel->node);
344
345 /* Link it into the schedule */
346 pqh = list_entry(qh->node.prev, struct uhci_qh, node);
347 qh->link = pqh->link;
348 wmb();
349 pqh->link = UHCI_PTR_QH | cpu_to_le32(qh->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352/*
Alan Sterndccf4a42005-12-17 17:58:46 -0500353 * Take a QH off the hardware schedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500355static void uhci_unlink_qh(struct uhci_hcd *uhci, struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct uhci_qh *pqh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Alan Sterndccf4a42005-12-17 17:58:46 -0500359 if (qh->state == QH_STATE_UNLINKING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return;
Alan Sterndccf4a42005-12-17 17:58:46 -0500361 WARN_ON(qh->state != QH_STATE_ACTIVE || !qh->udev);
362 qh->state = QH_STATE_UNLINKING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Alan Sterndccf4a42005-12-17 17:58:46 -0500364 /* Unlink the QH from the schedule and record when we did it */
365 pqh = list_entry(qh->node.prev, struct uhci_qh, node);
366 pqh->link = qh->link;
367 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 uhci_get_current_frame_number(uhci);
Alan Sterndccf4a42005-12-17 17:58:46 -0500370 qh->unlink_frame = uhci->frame_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alan Sterndccf4a42005-12-17 17:58:46 -0500372 /* Force an interrupt so we know when the QH is fully unlinked */
373 if (list_empty(&uhci->skel_unlink_qh->node))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 uhci_set_next_interrupt(uhci);
375
Alan Sterndccf4a42005-12-17 17:58:46 -0500376 /* Move the QH from its old list to the end of the unlinking list */
Alan Stern0ed8fee2005-12-17 18:02:38 -0500377 if (qh == uhci->next_qh)
378 uhci->next_qh = list_entry(qh->node.next, struct uhci_qh,
379 node);
Alan Sterndccf4a42005-12-17 17:58:46 -0500380 list_move_tail(&qh->node, &uhci->skel_unlink_qh->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Alan Sterndccf4a42005-12-17 17:58:46 -0500383/*
384 * When we and the controller are through with a QH, it becomes IDLE.
385 * This happens when a QH has been off the schedule (on the unlinking
386 * list) for more than one frame, or when an error occurs while adding
387 * the first URB onto a new QH.
388 */
389static void uhci_make_qh_idle(struct uhci_hcd *uhci, struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Alan Sterndccf4a42005-12-17 17:58:46 -0500391 WARN_ON(qh->state == QH_STATE_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Alan Stern0ed8fee2005-12-17 18:02:38 -0500393 if (qh == uhci->next_qh)
394 uhci->next_qh = list_entry(qh->node.next, struct uhci_qh,
395 node);
Alan Sterndccf4a42005-12-17 17:58:46 -0500396 list_move(&qh->node, &uhci->idle_qh_list);
397 qh->state = QH_STATE_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Alan Stern59e29ed2006-05-12 11:19:19 -0400399 /* Now that the QH is idle, its post_td isn't being used */
400 if (qh->post_td) {
401 uhci_free_td(uhci, qh->post_td);
402 qh->post_td = NULL;
403 }
404
Alan Sterndccf4a42005-12-17 17:58:46 -0500405 /* If anyone is waiting for a QH to become idle, wake them up */
406 if (uhci->num_waiting)
407 wake_up_all(&uhci->waitqh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Alan Sterndccf4a42005-12-17 17:58:46 -0500410static inline struct urb_priv *uhci_alloc_urb_priv(struct uhci_hcd *uhci,
411 struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 struct urb_priv *urbp;
414
415 urbp = kmem_cache_alloc(uhci_up_cachep, SLAB_ATOMIC);
416 if (!urbp)
417 return NULL;
418
419 memset((void *)urbp, 0, sizeof(*urbp));
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 urbp->urb = urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 urb->hcpriv = urbp;
Alan Sterndccf4a42005-12-17 17:58:46 -0500423
424 INIT_LIST_HEAD(&urbp->node);
425 INIT_LIST_HEAD(&urbp->td_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 return urbp;
428}
429
Alan Sterndccf4a42005-12-17 17:58:46 -0500430static void uhci_free_urb_priv(struct uhci_hcd *uhci,
431 struct urb_priv *urbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct uhci_td *td, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Alan Sterndccf4a42005-12-17 17:58:46 -0500435 if (!list_empty(&urbp->node))
436 dev_warn(uhci_dev(uhci), "urb %p still on QH's list!\n",
437 urbp->urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 list_for_each_entry_safe(td, tmp, &urbp->td_list, list) {
Alan Stern04538a22006-05-12 11:29:04 -0400440 uhci_remove_td_from_urbp(td);
441 uhci_free_td(uhci, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
Alan Sterndccf4a42005-12-17 17:58:46 -0500444 urbp->urb->hcpriv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 kmem_cache_free(uhci_up_cachep, urbp);
446}
447
448static void uhci_inc_fsbr(struct uhci_hcd *uhci, struct urb *urb)
449{
450 struct urb_priv *urbp = (struct urb_priv *)urb->hcpriv;
451
452 if ((!(urb->transfer_flags & URB_NO_FSBR)) && !urbp->fsbr) {
453 urbp->fsbr = 1;
454 if (!uhci->fsbr++ && !uhci->fsbrtimeout)
455 uhci->skel_term_qh->link = cpu_to_le32(uhci->skel_fs_control_qh->dma_handle) | UHCI_PTR_QH;
456 }
457}
458
459static void uhci_dec_fsbr(struct uhci_hcd *uhci, struct urb *urb)
460{
461 struct urb_priv *urbp = (struct urb_priv *)urb->hcpriv;
462
463 if ((!(urb->transfer_flags & URB_NO_FSBR)) && urbp->fsbr) {
464 urbp->fsbr = 0;
465 if (!--uhci->fsbr)
466 uhci->fsbrtimeout = jiffies + FSBR_DELAY;
467 }
468}
469
470/*
471 * Map status to standard result codes
472 *
473 * <status> is (td_status(td) & 0xF60000), a.k.a.
474 * uhci_status_bits(td_status(td)).
475 * Note: <status> does not include the TD_CTRL_NAK bit.
476 * <dir_out> is True for output TDs and False for input TDs.
477 */
478static int uhci_map_status(int status, int dir_out)
479{
480 if (!status)
481 return 0;
482 if (status & TD_CTRL_BITSTUFF) /* Bitstuff error */
483 return -EPROTO;
484 if (status & TD_CTRL_CRCTIMEO) { /* CRC/Timeout */
485 if (dir_out)
486 return -EPROTO;
487 else
488 return -EILSEQ;
489 }
490 if (status & TD_CTRL_BABBLE) /* Babble */
491 return -EOVERFLOW;
492 if (status & TD_CTRL_DBUFERR) /* Buffer error */
493 return -ENOSR;
494 if (status & TD_CTRL_STALLED) /* Stalled */
495 return -EPIPE;
496 WARN_ON(status & TD_CTRL_ACTIVE); /* Active */
497 return 0;
498}
499
500/*
501 * Control transfers
502 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500503static int uhci_submit_control(struct uhci_hcd *uhci, struct urb *urb,
504 struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct uhci_td *td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 unsigned long destination, status;
Alan Sterndccf4a42005-12-17 17:58:46 -0500508 int maxsze = le16_to_cpu(qh->hep->desc.wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 int len = urb->transfer_buffer_length;
510 dma_addr_t data = urb->transfer_dma;
Alan Sterndccf4a42005-12-17 17:58:46 -0500511 __le32 *plink;
Alan Stern04538a22006-05-12 11:29:04 -0400512 struct urb_priv *urbp = urb->hcpriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 /* The "pipe" thing contains the destination in bits 8--18 */
515 destination = (urb->pipe & PIPE_DEVEP_MASK) | USB_PID_SETUP;
516
Alan Sternaf0bb592005-12-17 18:00:12 -0500517 /* 3 errors, dummy TD remains inactive */
518 status = uhci_maxerr(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (urb->dev->speed == USB_SPEED_LOW)
520 status |= TD_CTRL_LS;
521
522 /*
523 * Build the TD for the control request setup packet
524 */
Alan Sternaf0bb592005-12-17 18:00:12 -0500525 td = qh->dummy_td;
Alan Stern04538a22006-05-12 11:29:04 -0400526 uhci_add_td_to_urbp(td, urbp);
Alan Sternfa346562005-11-30 11:57:51 -0500527 uhci_fill_td(td, status, destination | uhci_explen(8),
Alan Sterndccf4a42005-12-17 17:58:46 -0500528 urb->setup_dma);
529 plink = &td->link;
Alan Sternaf0bb592005-12-17 18:00:12 -0500530 status |= TD_CTRL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 /*
533 * If direction is "send", change the packet ID from SETUP (0x2D)
534 * to OUT (0xE1). Else change it from SETUP to IN (0x69) and
535 * set Short Packet Detect (SPD) for all data packets.
536 */
537 if (usb_pipeout(urb->pipe))
538 destination ^= (USB_PID_SETUP ^ USB_PID_OUT);
539 else {
540 destination ^= (USB_PID_SETUP ^ USB_PID_IN);
541 status |= TD_CTRL_SPD;
542 }
543
544 /*
Alan Stern687f5f32005-11-30 17:16:19 -0500545 * Build the DATA TDs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 */
547 while (len > 0) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500548 int pktsze = min(len, maxsze);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Alan Stern25321782005-04-25 11:14:31 -0400550 td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (!td)
Alan Sternaf0bb592005-12-17 18:00:12 -0500552 goto nomem;
Alan Sterndccf4a42005-12-17 17:58:46 -0500553 *plink = cpu_to_le32(td->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 /* Alternate Data0/1 (start with Data1) */
556 destination ^= TD_TOKEN_TOGGLE;
557
Alan Stern04538a22006-05-12 11:29:04 -0400558 uhci_add_td_to_urbp(td, urbp);
Alan Sternfa346562005-11-30 11:57:51 -0500559 uhci_fill_td(td, status, destination | uhci_explen(pktsze),
Alan Sterndccf4a42005-12-17 17:58:46 -0500560 data);
561 plink = &td->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 data += pktsze;
564 len -= pktsze;
565 }
566
567 /*
568 * Build the final TD for control status
569 */
Alan Stern25321782005-04-25 11:14:31 -0400570 td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (!td)
Alan Sternaf0bb592005-12-17 18:00:12 -0500572 goto nomem;
Alan Sterndccf4a42005-12-17 17:58:46 -0500573 *plink = cpu_to_le32(td->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /*
576 * It's IN if the pipe is an output pipe or we're not expecting
577 * data back.
578 */
579 destination &= ~TD_TOKEN_PID_MASK;
580 if (usb_pipeout(urb->pipe) || !urb->transfer_buffer_length)
581 destination |= USB_PID_IN;
582 else
583 destination |= USB_PID_OUT;
584
585 destination |= TD_TOKEN_TOGGLE; /* End in Data1 */
586
587 status &= ~TD_CTRL_SPD;
588
Alan Stern04538a22006-05-12 11:29:04 -0400589 uhci_add_td_to_urbp(td, urbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 uhci_fill_td(td, status | TD_CTRL_IOC,
Alan Sterndccf4a42005-12-17 17:58:46 -0500591 destination | uhci_explen(0), 0);
Alan Sternaf0bb592005-12-17 18:00:12 -0500592 plink = &td->link;
593
594 /*
595 * Build the new dummy TD and activate the old one
596 */
597 td = uhci_alloc_td(uhci);
598 if (!td)
599 goto nomem;
600 *plink = cpu_to_le32(td->dma_handle);
601
602 uhci_fill_td(td, 0, USB_PID_OUT | uhci_explen(0), 0);
603 wmb();
604 qh->dummy_td->status |= __constant_cpu_to_le32(TD_CTRL_ACTIVE);
605 qh->dummy_td = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /* Low-speed transfers get a different queue, and won't hog the bus.
608 * Also, some devices enumerate better without FSBR; the easiest way
609 * to do that is to put URBs on the low-speed queue while the device
Alan Stern630aa3c2006-01-23 17:17:21 -0500610 * isn't in the CONFIGURED state. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (urb->dev->speed == USB_SPEED_LOW ||
Alan Stern630aa3c2006-01-23 17:17:21 -0500612 urb->dev->state != USB_STATE_CONFIGURED)
Alan Sterndccf4a42005-12-17 17:58:46 -0500613 qh->skel = uhci->skel_ls_control_qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 else {
Alan Sterndccf4a42005-12-17 17:58:46 -0500615 qh->skel = uhci->skel_fs_control_qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 uhci_inc_fsbr(uhci, urb);
617 }
Alan Stern59e29ed2006-05-12 11:19:19 -0400618
619 urb->actual_length = -8; /* Account for the SETUP packet */
Alan Sterndccf4a42005-12-17 17:58:46 -0500620 return 0;
Alan Sternaf0bb592005-12-17 18:00:12 -0500621
622nomem:
623 /* Remove the dummy TD from the td_list so it doesn't get freed */
Alan Stern04538a22006-05-12 11:29:04 -0400624 uhci_remove_td_from_urbp(qh->dummy_td);
Alan Sternaf0bb592005-12-17 18:00:12 -0500625 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * Common submit for bulk and interrupt
630 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500631static int uhci_submit_common(struct uhci_hcd *uhci, struct urb *urb,
632 struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 struct uhci_td *td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 unsigned long destination, status;
Alan Sterndccf4a42005-12-17 17:58:46 -0500636 int maxsze = le16_to_cpu(qh->hep->desc.wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 int len = urb->transfer_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 dma_addr_t data = urb->transfer_dma;
Alan Sternaf0bb592005-12-17 18:00:12 -0500639 __le32 *plink;
Alan Stern04538a22006-05-12 11:29:04 -0400640 struct urb_priv *urbp = urb->hcpriv;
Alan Sternaf0bb592005-12-17 18:00:12 -0500641 unsigned int toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if (len < 0)
644 return -EINVAL;
645
646 /* The "pipe" thing contains the destination in bits 8--18 */
647 destination = (urb->pipe & PIPE_DEVEP_MASK) | usb_packetid(urb->pipe);
Alan Sternaf0bb592005-12-17 18:00:12 -0500648 toggle = usb_gettoggle(urb->dev, usb_pipeendpoint(urb->pipe),
649 usb_pipeout(urb->pipe));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Alan Sternaf0bb592005-12-17 18:00:12 -0500651 /* 3 errors, dummy TD remains inactive */
652 status = uhci_maxerr(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (urb->dev->speed == USB_SPEED_LOW)
654 status |= TD_CTRL_LS;
655 if (usb_pipein(urb->pipe))
656 status |= TD_CTRL_SPD;
657
658 /*
Alan Stern687f5f32005-11-30 17:16:19 -0500659 * Build the DATA TDs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 */
Alan Sternaf0bb592005-12-17 18:00:12 -0500661 plink = NULL;
662 td = qh->dummy_td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 do { /* Allow zero length packets */
664 int pktsze = maxsze;
665
Alan Sterndccf4a42005-12-17 17:58:46 -0500666 if (len <= pktsze) { /* The last packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 pktsze = len;
668 if (!(urb->transfer_flags & URB_SHORT_NOT_OK))
669 status &= ~TD_CTRL_SPD;
670 }
671
Alan Sternaf0bb592005-12-17 18:00:12 -0500672 if (plink) {
673 td = uhci_alloc_td(uhci);
674 if (!td)
675 goto nomem;
676 *plink = cpu_to_le32(td->dma_handle);
677 }
Alan Stern04538a22006-05-12 11:29:04 -0400678 uhci_add_td_to_urbp(td, urbp);
Alan Sterndccf4a42005-12-17 17:58:46 -0500679 uhci_fill_td(td, status,
Alan Sternaf0bb592005-12-17 18:00:12 -0500680 destination | uhci_explen(pktsze) |
681 (toggle << TD_TOKEN_TOGGLE_SHIFT),
682 data);
Alan Sterndccf4a42005-12-17 17:58:46 -0500683 plink = &td->link;
Alan Sternaf0bb592005-12-17 18:00:12 -0500684 status |= TD_CTRL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 data += pktsze;
687 len -= maxsze;
Alan Sternaf0bb592005-12-17 18:00:12 -0500688 toggle ^= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 } while (len > 0);
690
691 /*
692 * URB_ZERO_PACKET means adding a 0-length packet, if direction
693 * is OUT and the transfer_length was an exact multiple of maxsze,
694 * hence (len = transfer_length - N * maxsze) == 0
695 * however, if transfer_length == 0, the zero packet was already
696 * prepared above.
697 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500698 if ((urb->transfer_flags & URB_ZERO_PACKET) &&
699 usb_pipeout(urb->pipe) && len == 0 &&
700 urb->transfer_buffer_length > 0) {
Alan Stern25321782005-04-25 11:14:31 -0400701 td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (!td)
Alan Sternaf0bb592005-12-17 18:00:12 -0500703 goto nomem;
Alan Sterndccf4a42005-12-17 17:58:46 -0500704 *plink = cpu_to_le32(td->dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Alan Stern04538a22006-05-12 11:29:04 -0400706 uhci_add_td_to_urbp(td, urbp);
Alan Sternaf0bb592005-12-17 18:00:12 -0500707 uhci_fill_td(td, status,
708 destination | uhci_explen(0) |
709 (toggle << TD_TOKEN_TOGGLE_SHIFT),
710 data);
711 plink = &td->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Alan Sternaf0bb592005-12-17 18:00:12 -0500713 toggle ^= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
716 /* Set the interrupt-on-completion flag on the last packet.
717 * A more-or-less typical 4 KB URB (= size of one memory page)
718 * will require about 3 ms to transfer; that's a little on the
719 * fast side but not enough to justify delaying an interrupt
720 * more than 2 or 3 URBs, so we will ignore the URB_NO_INTERRUPT
721 * flag setting. */
Alan Sterndccf4a42005-12-17 17:58:46 -0500722 td->status |= __constant_cpu_to_le32(TD_CTRL_IOC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Alan Sternaf0bb592005-12-17 18:00:12 -0500724 /*
725 * Build the new dummy TD and activate the old one
726 */
727 td = uhci_alloc_td(uhci);
728 if (!td)
729 goto nomem;
730 *plink = cpu_to_le32(td->dma_handle);
731
732 uhci_fill_td(td, 0, USB_PID_OUT | uhci_explen(0), 0);
733 wmb();
734 qh->dummy_td->status |= __constant_cpu_to_le32(TD_CTRL_ACTIVE);
735 qh->dummy_td = td;
736
737 usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
738 usb_pipeout(urb->pipe), toggle);
Alan Sterndccf4a42005-12-17 17:58:46 -0500739 return 0;
Alan Sternaf0bb592005-12-17 18:00:12 -0500740
741nomem:
742 /* Remove the dummy TD from the td_list so it doesn't get freed */
Alan Stern04538a22006-05-12 11:29:04 -0400743 uhci_remove_td_from_urbp(qh->dummy_td);
Alan Sternaf0bb592005-12-17 18:00:12 -0500744 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
Alan Sterndccf4a42005-12-17 17:58:46 -0500747static inline int uhci_submit_bulk(struct uhci_hcd *uhci, struct urb *urb,
748 struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 int ret;
751
752 /* Can't have low-speed bulk transfers */
753 if (urb->dev->speed == USB_SPEED_LOW)
754 return -EINVAL;
755
Alan Sterndccf4a42005-12-17 17:58:46 -0500756 qh->skel = uhci->skel_bulk_qh;
757 ret = uhci_submit_common(uhci, urb, qh);
758 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 uhci_inc_fsbr(uhci, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return ret;
761}
762
Alan Sterndccf4a42005-12-17 17:58:46 -0500763static inline int uhci_submit_interrupt(struct uhci_hcd *uhci, struct urb *urb,
764 struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Alan Sterndccf4a42005-12-17 17:58:46 -0500766 /* USB 1.1 interrupt transfers only involve one packet per interval.
767 * Drivers can submit URBs of any length, but longer ones will need
768 * multiple intervals to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500770 qh->skel = uhci->skelqh[__interval_to_skel(urb->interval)];
771 return uhci_submit_common(uhci, urb, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774/*
Alan Sternb1869002006-05-12 11:14:25 -0400775 * Fix up the data structures following a short transfer
776 */
777static int uhci_fixup_short_transfer(struct uhci_hcd *uhci,
Alan Stern59e29ed2006-05-12 11:19:19 -0400778 struct uhci_qh *qh, struct urb_priv *urbp)
Alan Sternb1869002006-05-12 11:14:25 -0400779{
780 struct uhci_td *td;
Alan Stern59e29ed2006-05-12 11:19:19 -0400781 struct list_head *tmp;
782 int ret;
Alan Sternb1869002006-05-12 11:14:25 -0400783
784 td = list_entry(urbp->td_list.prev, struct uhci_td, list);
785 if (qh->type == USB_ENDPOINT_XFER_CONTROL) {
Alan Sternb1869002006-05-12 11:14:25 -0400786
787 /* When a control transfer is short, we have to restart
788 * the queue at the status stage transaction, which is
789 * the last TD. */
Alan Stern59e29ed2006-05-12 11:19:19 -0400790 WARN_ON(list_empty(&urbp->td_list));
Alan Sternb1869002006-05-12 11:14:25 -0400791 qh->element = cpu_to_le32(td->dma_handle);
Alan Stern59e29ed2006-05-12 11:19:19 -0400792 tmp = td->list.prev;
Alan Sternb1869002006-05-12 11:14:25 -0400793 ret = -EINPROGRESS;
794
Alan Stern59e29ed2006-05-12 11:19:19 -0400795 } else {
Alan Sternb1869002006-05-12 11:14:25 -0400796
797 /* When a bulk/interrupt transfer is short, we have to
798 * fix up the toggles of the following URBs on the queue
799 * before restarting the queue at the next URB. */
Alan Stern59e29ed2006-05-12 11:19:19 -0400800 qh->initial_toggle = uhci_toggle(td_token(qh->post_td)) ^ 1;
Alan Sternb1869002006-05-12 11:14:25 -0400801 uhci_fixup_toggles(qh, 1);
802
Alan Stern59e29ed2006-05-12 11:19:19 -0400803 if (list_empty(&urbp->td_list))
804 td = qh->post_td;
Alan Sternb1869002006-05-12 11:14:25 -0400805 qh->element = td->link;
Alan Stern59e29ed2006-05-12 11:19:19 -0400806 tmp = urbp->td_list.prev;
807 ret = 0;
Alan Sternb1869002006-05-12 11:14:25 -0400808 }
809
Alan Stern59e29ed2006-05-12 11:19:19 -0400810 /* Remove all the TDs we skipped over, from tmp back to the start */
811 while (tmp != &urbp->td_list) {
812 td = list_entry(tmp, struct uhci_td, list);
813 tmp = tmp->prev;
814
Alan Stern04538a22006-05-12 11:29:04 -0400815 uhci_remove_td_from_urbp(td);
816 uhci_free_td(uhci, td);
Alan Stern59e29ed2006-05-12 11:19:19 -0400817 }
Alan Sternb1869002006-05-12 11:14:25 -0400818 return ret;
819}
820
821/*
822 * Common result for control, bulk, and interrupt
823 */
824static int uhci_result_common(struct uhci_hcd *uhci, struct urb *urb)
825{
826 struct urb_priv *urbp = urb->hcpriv;
827 struct uhci_qh *qh = urbp->qh;
Alan Stern59e29ed2006-05-12 11:19:19 -0400828 struct uhci_td *td, *tmp;
Alan Sternb1869002006-05-12 11:14:25 -0400829 unsigned status;
830 int ret = 0;
831
Alan Stern59e29ed2006-05-12 11:19:19 -0400832 list_for_each_entry_safe(td, tmp, &urbp->td_list, list) {
Alan Sternb1869002006-05-12 11:14:25 -0400833 unsigned int ctrlstat;
834 int len;
835
Alan Sternb1869002006-05-12 11:14:25 -0400836 ctrlstat = td_status(td);
837 status = uhci_status_bits(ctrlstat);
838 if (status & TD_CTRL_ACTIVE)
839 return -EINPROGRESS;
840
841 len = uhci_actual_length(ctrlstat);
842 urb->actual_length += len;
843
844 if (status) {
845 ret = uhci_map_status(status,
846 uhci_packetout(td_token(td)));
847 if ((debug == 1 && ret != -EPIPE) || debug > 1) {
848 /* Some debugging code */
849 dev_dbg(uhci_dev(uhci),
850 "%s: failed with status %x\n",
851 __FUNCTION__, status);
852
853 if (debug > 1 && errbuf) {
854 /* Print the chain for debugging */
855 uhci_show_qh(urbp->qh, errbuf,
856 ERRBUF_LEN, 0);
857 lprintk(errbuf);
858 }
859 }
860
861 } else if (len < uhci_expected_length(td_token(td))) {
862
863 /* We received a short packet */
864 if (urb->transfer_flags & URB_SHORT_NOT_OK)
865 ret = -EREMOTEIO;
866 else if (ctrlstat & TD_CTRL_SPD)
867 ret = 1;
868 }
869
Alan Stern04538a22006-05-12 11:29:04 -0400870 uhci_remove_td_from_urbp(td);
Alan Stern59e29ed2006-05-12 11:19:19 -0400871 if (qh->post_td)
Alan Stern04538a22006-05-12 11:29:04 -0400872 uhci_free_td(uhci, qh->post_td);
Alan Stern59e29ed2006-05-12 11:19:19 -0400873 qh->post_td = td;
874
Alan Sternb1869002006-05-12 11:14:25 -0400875 if (ret != 0)
876 goto err;
877 }
878 return ret;
879
880err:
881 if (ret < 0) {
882 /* In case a control transfer gets an error
883 * during the setup stage */
884 urb->actual_length = max(urb->actual_length, 0);
885
886 /* Note that the queue has stopped and save
887 * the next toggle value */
888 qh->element = UHCI_PTR_TERM;
889 qh->is_stopped = 1;
890 qh->needs_fixup = (qh->type != USB_ENDPOINT_XFER_CONTROL);
891 qh->initial_toggle = uhci_toggle(td_token(td)) ^
892 (ret == -EREMOTEIO);
893
894 } else /* Short packet received */
Alan Stern59e29ed2006-05-12 11:19:19 -0400895 ret = uhci_fixup_short_transfer(uhci, qh, urbp);
Alan Sternb1869002006-05-12 11:14:25 -0400896 return ret;
897}
898
899/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * Isochronous transfers
901 */
Alan Sterndccf4a42005-12-17 17:58:46 -0500902static int uhci_submit_isochronous(struct uhci_hcd *uhci, struct urb *urb,
903 struct uhci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Alan Sterndccf4a42005-12-17 17:58:46 -0500905 struct uhci_td *td = NULL; /* Since urb->number_of_packets > 0 */
Alan Stern0ed8fee2005-12-17 18:02:38 -0500906 int i, frame;
Alan Sterndccf4a42005-12-17 17:58:46 -0500907 unsigned long destination, status;
Alan Sternb81d3432005-10-13 17:00:24 -0400908 struct urb_priv *urbp = (struct urb_priv *) urb->hcpriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Alan Stern0ed8fee2005-12-17 18:02:38 -0500910 if (urb->number_of_packets > 900) /* 900? Why? */
911 return -EFBIG;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 status = TD_CTRL_ACTIVE | TD_CTRL_IOS;
914 destination = (urb->pipe & PIPE_DEVEP_MASK) | usb_packetid(urb->pipe);
915
Alan Stern0ed8fee2005-12-17 18:02:38 -0500916 /* Figure out the starting frame number */
917 if (urb->transfer_flags & URB_ISO_ASAP) {
918 if (list_empty(&qh->queue)) {
919 uhci_get_current_frame_number(uhci);
920 urb->start_frame = (uhci->frame_number + 10);
921
922 } else { /* Go right after the last one */
923 struct urb *last_urb;
924
925 last_urb = list_entry(qh->queue.prev,
926 struct urb_priv, node)->urb;
927 urb->start_frame = (last_urb->start_frame +
928 last_urb->number_of_packets *
929 last_urb->interval);
930 }
931 } else {
932 /* FIXME: Sanity check */
933 }
934 urb->start_frame &= (UHCI_NUMFRAMES - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Alan Sternb81d3432005-10-13 17:00:24 -0400936 for (i = 0; i < urb->number_of_packets; i++) {
Alan Stern25321782005-04-25 11:14:31 -0400937 td = uhci_alloc_td(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (!td)
939 return -ENOMEM;
940
Alan Stern04538a22006-05-12 11:29:04 -0400941 uhci_add_td_to_urbp(td, urbp);
Alan Sterndccf4a42005-12-17 17:58:46 -0500942 uhci_fill_td(td, status, destination |
943 uhci_explen(urb->iso_frame_desc[i].length),
944 urb->transfer_dma +
945 urb->iso_frame_desc[i].offset);
Alan Sternb81d3432005-10-13 17:00:24 -0400946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Alan Sterndccf4a42005-12-17 17:58:46 -0500948 /* Set the interrupt-on-completion flag on the last packet. */
949 td->status |= __constant_cpu_to_le32(TD_CTRL_IOC);
950
951 qh->skel = uhci->skel_iso_qh;
952
953 /* Add the TDs to the frame list */
Alan Sternb81d3432005-10-13 17:00:24 -0400954 frame = urb->start_frame;
955 list_for_each_entry(td, &urbp->td_list, list) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500956 uhci_insert_td_in_frame_list(uhci, td, frame);
Alan Sternb81d3432005-10-13 17:00:24 -0400957 frame += urb->interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959
Alan Sterndccf4a42005-12-17 17:58:46 -0500960 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963static int uhci_result_isochronous(struct uhci_hcd *uhci, struct urb *urb)
964{
965 struct uhci_td *td;
966 struct urb_priv *urbp = (struct urb_priv *)urb->hcpriv;
967 int status;
968 int i, ret = 0;
969
Alan Sternb81d3432005-10-13 17:00:24 -0400970 urb->actual_length = urb->error_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 i = 0;
973 list_for_each_entry(td, &urbp->td_list, list) {
974 int actlength;
975 unsigned int ctrlstat = td_status(td);
976
977 if (ctrlstat & TD_CTRL_ACTIVE)
978 return -EINPROGRESS;
979
980 actlength = uhci_actual_length(ctrlstat);
981 urb->iso_frame_desc[i].actual_length = actlength;
982 urb->actual_length += actlength;
983
984 status = uhci_map_status(uhci_status_bits(ctrlstat),
985 usb_pipeout(urb->pipe));
986 urb->iso_frame_desc[i].status = status;
987 if (status) {
988 urb->error_count++;
989 ret = status;
990 }
991
992 i++;
993 }
994
995 return ret;
996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998static int uhci_urb_enqueue(struct usb_hcd *hcd,
Alan Sterndccf4a42005-12-17 17:58:46 -0500999 struct usb_host_endpoint *hep,
Al Viro55016f12005-10-21 03:21:58 -04001000 struct urb *urb, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
1002 int ret;
1003 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
1004 unsigned long flags;
Alan Sterndccf4a42005-12-17 17:58:46 -05001005 struct urb_priv *urbp;
1006 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 int bustime;
1008
1009 spin_lock_irqsave(&uhci->lock, flags);
1010
1011 ret = urb->status;
1012 if (ret != -EINPROGRESS) /* URB already unlinked! */
Alan Sterndccf4a42005-12-17 17:58:46 -05001013 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Alan Sterndccf4a42005-12-17 17:58:46 -05001015 ret = -ENOMEM;
1016 urbp = uhci_alloc_urb_priv(uhci, urb);
1017 if (!urbp)
1018 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Alan Sterndccf4a42005-12-17 17:58:46 -05001020 if (hep->hcpriv)
1021 qh = (struct uhci_qh *) hep->hcpriv;
1022 else {
1023 qh = uhci_alloc_qh(uhci, urb->dev, hep);
1024 if (!qh)
1025 goto err_no_qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
Alan Sterndccf4a42005-12-17 17:58:46 -05001027 urbp->qh = qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Alan Stern4de7d2c2006-05-05 16:26:58 -04001029 switch (qh->type) {
1030 case USB_ENDPOINT_XFER_CONTROL:
Alan Sterndccf4a42005-12-17 17:58:46 -05001031 ret = uhci_submit_control(uhci, urb, qh);
1032 break;
Alan Stern4de7d2c2006-05-05 16:26:58 -04001033 case USB_ENDPOINT_XFER_BULK:
Alan Sterndccf4a42005-12-17 17:58:46 -05001034 ret = uhci_submit_bulk(uhci, urb, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
Alan Stern4de7d2c2006-05-05 16:26:58 -04001036 case USB_ENDPOINT_XFER_INT:
Alan Sterndccf4a42005-12-17 17:58:46 -05001037 if (list_empty(&qh->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 bustime = usb_check_bandwidth(urb->dev, urb);
1039 if (bustime < 0)
1040 ret = bustime;
1041 else {
Alan Sterndccf4a42005-12-17 17:58:46 -05001042 ret = uhci_submit_interrupt(uhci, urb, qh);
1043 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 usb_claim_bandwidth(urb->dev, urb, bustime, 0);
1045 }
1046 } else { /* inherit from parent */
Alan Sterndccf4a42005-12-17 17:58:46 -05001047 struct urb_priv *eurbp;
1048
1049 eurbp = list_entry(qh->queue.prev, struct urb_priv,
1050 node);
1051 urb->bandwidth = eurbp->urb->bandwidth;
1052 ret = uhci_submit_interrupt(uhci, urb, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054 break;
Alan Stern4de7d2c2006-05-05 16:26:58 -04001055 case USB_ENDPOINT_XFER_ISOC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 bustime = usb_check_bandwidth(urb->dev, urb);
1057 if (bustime < 0) {
1058 ret = bustime;
1059 break;
1060 }
1061
Alan Sterndccf4a42005-12-17 17:58:46 -05001062 ret = uhci_submit_isochronous(uhci, urb, qh);
1063 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 usb_claim_bandwidth(urb->dev, urb, bustime, 1);
1065 break;
1066 }
Alan Sterndccf4a42005-12-17 17:58:46 -05001067 if (ret != 0)
1068 goto err_submit_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Alan Sterndccf4a42005-12-17 17:58:46 -05001070 /* Add this URB to the QH */
1071 urbp->qh = qh;
1072 list_add_tail(&urbp->node, &qh->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Alan Sterndccf4a42005-12-17 17:58:46 -05001074 /* If the new URB is the first and only one on this QH then either
1075 * the QH is new and idle or else it's unlinked and waiting to
Alan Stern27755622006-05-05 16:32:02 -04001076 * become idle, so we can activate it right away. But only if the
1077 * queue isn't stopped. */
1078 if (qh->queue.next == &urbp->node && !qh->is_stopped)
Alan Sterndccf4a42005-12-17 17:58:46 -05001079 uhci_activate_qh(uhci, qh);
Alan Sterndccf4a42005-12-17 17:58:46 -05001080 goto done;
1081
1082err_submit_failed:
1083 if (qh->state == QH_STATE_IDLE)
1084 uhci_make_qh_idle(uhci, qh); /* Reclaim unused QH */
1085
1086err_no_qh:
1087 uhci_free_urb_priv(uhci, urbp);
1088
1089done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 spin_unlock_irqrestore(&uhci->lock, flags);
1091 return ret;
1092}
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094static int uhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb)
1095{
1096 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
1097 unsigned long flags;
1098 struct urb_priv *urbp;
1099
1100 spin_lock_irqsave(&uhci->lock, flags);
1101 urbp = urb->hcpriv;
1102 if (!urbp) /* URB was never linked! */
1103 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Alan Sterndccf4a42005-12-17 17:58:46 -05001105 /* Remove Isochronous TDs from the frame list ASAP */
Alan Stern4de7d2c2006-05-05 16:26:58 -04001106 if (urbp->qh->type == USB_ENDPOINT_XFER_ISOC)
Alan Sterndccf4a42005-12-17 17:58:46 -05001107 uhci_unlink_isochronous_tds(uhci, urb);
1108 uhci_unlink_qh(uhci, urbp->qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110done:
1111 spin_unlock_irqrestore(&uhci->lock, flags);
1112 return 0;
1113}
1114
Alan Stern0ed8fee2005-12-17 18:02:38 -05001115/*
1116 * Finish unlinking an URB and give it back
1117 */
1118static void uhci_giveback_urb(struct uhci_hcd *uhci, struct uhci_qh *qh,
1119 struct urb *urb, struct pt_regs *regs)
1120__releases(uhci->lock)
1121__acquires(uhci->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Alan Stern0ed8fee2005-12-17 18:02:38 -05001123 struct urb_priv *urbp = (struct urb_priv *) urb->hcpriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Alan Stern0ed8fee2005-12-17 18:02:38 -05001125 /* Isochronous TDs get unlinked directly from the frame list */
Alan Stern4de7d2c2006-05-05 16:26:58 -04001126 if (qh->type == USB_ENDPOINT_XFER_ISOC)
Alan Stern0ed8fee2005-12-17 18:02:38 -05001127 uhci_unlink_isochronous_tds(uhci, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Alan Stern0ed8fee2005-12-17 18:02:38 -05001129 /* Take the URB off the QH's queue. If the queue is now empty,
1130 * this is a perfect time for a toggle fixup. */
1131 list_del_init(&urbp->node);
1132 if (list_empty(&qh->queue) && qh->needs_fixup) {
1133 usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
1134 usb_pipeout(urb->pipe), qh->initial_toggle);
1135 qh->needs_fixup = 0;
1136 }
1137
1138 uhci_dec_fsbr(uhci, urb); /* Safe since it checks */
1139 uhci_free_urb_priv(uhci, urbp);
1140
Alan Stern4de7d2c2006-05-05 16:26:58 -04001141 switch (qh->type) {
1142 case USB_ENDPOINT_XFER_ISOC:
Alan Stern0ed8fee2005-12-17 18:02:38 -05001143 /* Release bandwidth for Interrupt or Isoc. transfers */
1144 if (urb->bandwidth)
1145 usb_release_bandwidth(urb->dev, urb, 1);
1146 break;
Alan Stern4de7d2c2006-05-05 16:26:58 -04001147 case USB_ENDPOINT_XFER_INT:
Alan Stern0ed8fee2005-12-17 18:02:38 -05001148 /* Release bandwidth for Interrupt or Isoc. transfers */
1149 /* Make sure we don't release if we have a queued URB */
1150 if (list_empty(&qh->queue) && urb->bandwidth)
1151 usb_release_bandwidth(urb->dev, urb, 0);
1152 else
1153 /* bandwidth was passed on to queued URB, */
1154 /* so don't let usb_unlink_urb() release it */
1155 urb->bandwidth = 0;
1156 break;
1157 }
1158
1159 spin_unlock(&uhci->lock);
1160 usb_hcd_giveback_urb(uhci_to_hcd(uhci), urb, regs);
1161 spin_lock(&uhci->lock);
1162
1163 /* If the queue is now empty, we can unlink the QH and give up its
1164 * reserved bandwidth. */
1165 if (list_empty(&qh->queue)) {
1166 uhci_unlink_qh(uhci, qh);
1167
1168 /* Bandwidth stuff not yet implemented */
1169 }
1170}
1171
1172/*
1173 * Scan the URBs in a QH's queue
1174 */
1175#define QH_FINISHED_UNLINKING(qh) \
1176 (qh->state == QH_STATE_UNLINKING && \
1177 uhci->frame_number + uhci->is_stopped != qh->unlink_frame)
1178
1179static void uhci_scan_qh(struct uhci_hcd *uhci, struct uhci_qh *qh,
1180 struct pt_regs *regs)
1181{
1182 struct urb_priv *urbp;
1183 struct urb *urb;
1184 int status;
1185
1186 while (!list_empty(&qh->queue)) {
1187 urbp = list_entry(qh->queue.next, struct urb_priv, node);
1188 urb = urbp->urb;
1189
Alan Sternb1869002006-05-12 11:14:25 -04001190 if (qh->type == USB_ENDPOINT_XFER_ISOC)
Alan Stern0ed8fee2005-12-17 18:02:38 -05001191 status = uhci_result_isochronous(uhci, urb);
Alan Sternb1869002006-05-12 11:14:25 -04001192 else
Alan Stern0ed8fee2005-12-17 18:02:38 -05001193 status = uhci_result_common(uhci, urb);
Alan Stern0ed8fee2005-12-17 18:02:38 -05001194 if (status == -EINPROGRESS)
1195 break;
1196
1197 spin_lock(&urb->lock);
1198 if (urb->status == -EINPROGRESS) /* Not dequeued */
1199 urb->status = status;
1200 else
Alan Stern27755622006-05-05 16:32:02 -04001201 status = ECONNRESET; /* Not -ECONNRESET */
Alan Stern0ed8fee2005-12-17 18:02:38 -05001202 spin_unlock(&urb->lock);
1203
1204 /* Dequeued but completed URBs can't be given back unless
1205 * the QH is stopped or has finished unlinking. */
Alan Stern27755622006-05-05 16:32:02 -04001206 if (status == ECONNRESET) {
1207 if (QH_FINISHED_UNLINKING(qh))
1208 qh->is_stopped = 1;
1209 else if (!qh->is_stopped)
1210 return;
1211 }
Alan Stern0ed8fee2005-12-17 18:02:38 -05001212
1213 uhci_giveback_urb(uhci, qh, urb, regs);
Alan Stern27755622006-05-05 16:32:02 -04001214 if (status < 0)
Alan Stern0ed8fee2005-12-17 18:02:38 -05001215 break;
1216 }
1217
1218 /* If the QH is neither stopped nor finished unlinking (normal case),
1219 * our work here is done. */
Alan Stern27755622006-05-05 16:32:02 -04001220 if (QH_FINISHED_UNLINKING(qh))
1221 qh->is_stopped = 1;
1222 else if (!qh->is_stopped)
Alan Stern0ed8fee2005-12-17 18:02:38 -05001223 return;
1224
1225 /* Otherwise give back each of the dequeued URBs */
Alan Stern27755622006-05-05 16:32:02 -04001226restart:
Alan Stern0ed8fee2005-12-17 18:02:38 -05001227 list_for_each_entry(urbp, &qh->queue, node) {
1228 urb = urbp->urb;
1229 if (urb->status != -EINPROGRESS) {
Alan Sterna0b458b2006-05-12 11:23:19 -04001230 uhci_cleanup_queue(qh, urb);
Alan Stern0ed8fee2005-12-17 18:02:38 -05001231 uhci_giveback_urb(uhci, qh, urb, regs);
1232 goto restart;
1233 }
1234 }
1235 qh->is_stopped = 0;
1236
1237 /* There are no more dequeued URBs. If there are still URBs on the
1238 * queue, the QH can now be re-activated. */
1239 if (!list_empty(&qh->queue)) {
1240 if (qh->needs_fixup)
1241 uhci_fixup_toggles(qh, 0);
1242 uhci_activate_qh(uhci, qh);
1243 }
1244
1245 /* The queue is empty. The QH can become idle if it is fully
1246 * unlinked. */
1247 else if (QH_FINISHED_UNLINKING(qh))
1248 uhci_make_qh_idle(uhci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
Alan Stern0ed8fee2005-12-17 18:02:38 -05001251/*
1252 * Process events in the schedule, but only in one thread at a time
1253 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254static void uhci_scan_schedule(struct uhci_hcd *uhci, struct pt_regs *regs)
1255{
Alan Stern0ed8fee2005-12-17 18:02:38 -05001256 int i;
1257 struct uhci_qh *qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 /* Don't allow re-entrant calls */
1260 if (uhci->scan_in_progress) {
1261 uhci->need_rescan = 1;
1262 return;
1263 }
1264 uhci->scan_in_progress = 1;
1265 rescan:
1266 uhci->need_rescan = 0;
1267
Alan Stern6c1b4452005-04-21 16:04:58 -04001268 uhci_clear_next_interrupt(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 uhci_get_current_frame_number(uhci);
1270
Alan Stern0ed8fee2005-12-17 18:02:38 -05001271 /* Go through all the QH queues and process the URBs in each one */
1272 for (i = 0; i < UHCI_NUM_SKELQH - 1; ++i) {
1273 uhci->next_qh = list_entry(uhci->skelqh[i]->node.next,
1274 struct uhci_qh, node);
1275 while ((qh = uhci->next_qh) != uhci->skelqh[i]) {
1276 uhci->next_qh = list_entry(qh->node.next,
1277 struct uhci_qh, node);
1278 uhci_scan_qh(uhci, qh, regs);
1279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 if (uhci->need_rescan)
1283 goto rescan;
1284 uhci->scan_in_progress = 0;
1285
Alan Stern04538a22006-05-12 11:29:04 -04001286 if (list_empty(&uhci->skel_unlink_qh->node))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 uhci_clear_next_interrupt(uhci);
1288 else
1289 uhci_set_next_interrupt(uhci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
Alan Sternf5946f82005-04-09 17:26:00 -04001291
1292static void check_fsbr(struct uhci_hcd *uhci)
1293{
Alan Stern0ed8fee2005-12-17 18:02:38 -05001294 /* For now, don't scan URBs for FSBR timeouts.
1295 * Add it back in later... */
Alan Sternf5946f82005-04-09 17:26:00 -04001296
1297 /* Really disable FSBR */
1298 if (!uhci->fsbr && uhci->fsbrtimeout && time_after_eq(jiffies, uhci->fsbrtimeout)) {
1299 uhci->fsbrtimeout = 0;
1300 uhci->skel_term_qh->link = UHCI_PTR_TERM;
1301 }
1302}