On Tue, Nov 06, 2007 at 02:33:53AM -0800, akpm@linux-foundation.org wrote:
[mmotm.git] / drivers / usb / host / whci / qset.c
blob88e51ea8620bb7a350ffccadd1e955aef62966db
1 /*
2 * Wireless Host Controller (WHC) qset management.
4 * Copyright (C) 2007 Cambridge Silicon Radio Ltd.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/kernel.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/uwb/umc.h>
21 #include <linux/usb.h>
23 #include "../../wusbcore/wusbhc.h"
25 #include "whcd.h"
27 struct whc_qset *qset_alloc(struct whc *whc, gfp_t mem_flags)
29 struct whc_qset *qset;
30 dma_addr_t dma;
32 qset = dma_pool_alloc(whc->qset_pool, mem_flags, &dma);
33 if (qset == NULL)
34 return NULL;
35 memset(qset, 0, sizeof(struct whc_qset));
37 qset->qset_dma = dma;
38 qset->whc = whc;
40 INIT_LIST_HEAD(&qset->list_node);
41 INIT_LIST_HEAD(&qset->stds);
43 return qset;
46 /**
47 * qset_fill_qh - fill the static endpoint state in a qset's QHead
48 * @qset: the qset whose QH needs initializing with static endpoint
49 * state
50 * @urb: an urb for a transfer to this endpoint
52 static void qset_fill_qh(struct whc_qset *qset, struct urb *urb)
54 struct usb_device *usb_dev = urb->dev;
55 struct usb_wireless_ep_comp_descriptor *epcd;
56 bool is_out;
58 is_out = usb_pipeout(urb->pipe);
60 qset->max_packet = le16_to_cpu(urb->ep->desc.wMaxPacketSize);
62 epcd = (struct usb_wireless_ep_comp_descriptor *)qset->ep->extra;
63 if (epcd) {
64 qset->max_seq = epcd->bMaxSequence;
65 qset->max_burst = epcd->bMaxBurst;
66 } else {
67 qset->max_seq = 2;
68 qset->max_burst = 1;
71 qset->qh.info1 = cpu_to_le32(
72 QH_INFO1_EP(usb_pipeendpoint(urb->pipe))
73 | (is_out ? QH_INFO1_DIR_OUT : QH_INFO1_DIR_IN)
74 | usb_pipe_to_qh_type(urb->pipe)
75 | QH_INFO1_DEV_INFO_IDX(wusb_port_no_to_idx(usb_dev->portnum))
76 | QH_INFO1_MAX_PKT_LEN(qset->max_packet)
78 qset->qh.info2 = cpu_to_le32(
79 QH_INFO2_BURST(qset->max_burst)
80 | QH_INFO2_DBP(0)
81 | QH_INFO2_MAX_COUNT(3)
82 | QH_INFO2_MAX_RETRY(3)
83 | QH_INFO2_MAX_SEQ(qset->max_seq - 1)
85 /* FIXME: where can we obtain these Tx parameters from? Why
86 * doesn't the chip know what Tx power to use? It knows the Rx
87 * strength and can presumably guess the Tx power required
88 * from that? */
89 qset->qh.info3 = cpu_to_le32(
90 QH_INFO3_TX_RATE_53_3
91 | QH_INFO3_TX_PWR(0) /* 0 == max power */
94 qset->qh.cur_window = cpu_to_le32((1 << qset->max_burst) - 1);
97 /**
98 * qset_clear - clear fields in a qset so it may be reinserted into a
99 * schedule.
101 * The sequence number and current window are not cleared (see
102 * qset_reset()).
104 void qset_clear(struct whc *whc, struct whc_qset *qset)
106 qset->td_start = qset->td_end = qset->ntds = 0;
108 qset->qh.link = cpu_to_le32(QH_LINK_NTDS(8) | QH_LINK_T);
109 qset->qh.status = qset->qh.status & QH_STATUS_SEQ_MASK;
110 qset->qh.err_count = 0;
111 qset->qh.scratch[0] = 0;
112 qset->qh.scratch[1] = 0;
113 qset->qh.scratch[2] = 0;
115 memset(&qset->qh.overlay, 0, sizeof(qset->qh.overlay));
117 init_completion(&qset->remove_complete);
121 * qset_reset - reset endpoint state in a qset.
123 * Clears the sequence number and current window. This qset must not
124 * be in the ASL or PZL.
126 void qset_reset(struct whc *whc, struct whc_qset *qset)
128 qset->reset = 0;
130 qset->qh.status &= ~QH_STATUS_SEQ_MASK;
131 qset->qh.cur_window = cpu_to_le32((1 << qset->max_burst) - 1);
135 * get_qset - get the qset for an async endpoint
137 * A new qset is created if one does not already exist.
139 struct whc_qset *get_qset(struct whc *whc, struct urb *urb,
140 gfp_t mem_flags)
142 struct whc_qset *qset;
144 qset = urb->ep->hcpriv;
145 if (qset == NULL) {
146 qset = qset_alloc(whc, mem_flags);
147 if (qset == NULL)
148 return NULL;
150 qset->ep = urb->ep;
151 urb->ep->hcpriv = qset;
152 qset_fill_qh(qset, urb);
154 return qset;
157 void qset_remove_complete(struct whc *whc, struct whc_qset *qset)
159 qset->remove = 0;
160 list_del_init(&qset->list_node);
161 complete(&qset->remove_complete);
165 * qset_add_qtds - add qTDs for an URB to a qset
167 * Returns true if the list (ASL/PZL) must be updated because (for a
168 * WHCI 0.95 controller) an activated qTD was pointed to be iCur.
170 enum whc_update qset_add_qtds(struct whc *whc, struct whc_qset *qset)
172 struct whc_std *std;
173 enum whc_update update = 0;
175 list_for_each_entry(std, &qset->stds, list_node) {
176 struct whc_qtd *qtd;
177 uint32_t status;
179 if (qset->ntds >= WHCI_QSET_TD_MAX
180 || (qset->pause_after_urb && std->urb != qset->pause_after_urb))
181 break;
183 if (std->qtd)
184 continue; /* already has a qTD */
186 qtd = std->qtd = &qset->qtd[qset->td_end];
188 /* Fill in setup bytes for control transfers. */
189 if (usb_pipecontrol(std->urb->pipe))
190 memcpy(qtd->setup, std->urb->setup_packet, 8);
192 status = QTD_STS_ACTIVE | QTD_STS_LEN(std->len);
194 if (whc_std_last(std) && usb_pipeout(std->urb->pipe))
195 status |= QTD_STS_LAST_PKT;
198 * For an IN transfer the iAlt field should be set so
199 * the h/w will automatically advance to the next
200 * transfer. However, if there are 8 or more TDs
201 * remaining in this transfer then iAlt cannot be set
202 * as it could point to somewhere in this transfer.
204 if (std->ntds_remaining < WHCI_QSET_TD_MAX) {
205 int ialt;
206 ialt = (qset->td_end + std->ntds_remaining) % WHCI_QSET_TD_MAX;
207 status |= QTD_STS_IALT(ialt);
208 } else if (usb_pipein(std->urb->pipe))
209 qset->pause_after_urb = std->urb;
211 if (std->num_pointers)
212 qtd->options = cpu_to_le32(QTD_OPT_IOC);
213 else
214 qtd->options = cpu_to_le32(QTD_OPT_IOC | QTD_OPT_SMALL);
215 qtd->page_list_ptr = cpu_to_le64(std->dma_addr);
217 qtd->status = cpu_to_le32(status);
219 if (QH_STATUS_TO_ICUR(qset->qh.status) == qset->td_end)
220 update = WHC_UPDATE_UPDATED;
222 if (++qset->td_end >= WHCI_QSET_TD_MAX)
223 qset->td_end = 0;
224 qset->ntds++;
227 return update;
231 * qset_remove_qtd - remove the first qTD from a qset.
233 * The qTD might be still active (if it's part of a IN URB that
234 * resulted in a short read) so ensure it's deactivated.
236 static void qset_remove_qtd(struct whc *whc, struct whc_qset *qset)
238 qset->qtd[qset->td_start].status = 0;
240 if (++qset->td_start >= WHCI_QSET_TD_MAX)
241 qset->td_start = 0;
242 qset->ntds--;
245 static void qset_copy_bounce_to_sg(struct whc *whc, struct whc_std *std)
247 struct scatterlist *sg;
248 void *bounce;
249 size_t remaining, offset;
251 bounce = std->bounce_buf;
252 remaining = std->len;
254 sg = std->bounce_sg;
255 offset = std->bounce_offset;
257 while (remaining) {
258 size_t len;
260 len = min(sg->length - offset, remaining);
261 memcpy(sg_virt(sg) + offset, bounce, len);
263 bounce += len;
264 remaining -= len;
266 offset += len;
267 if (offset >= sg->length) {
268 sg = sg_next(sg);
269 offset = 0;
276 * qset_free_std - remove an sTD and free it.
277 * @whc: the WHCI host controller
278 * @std: the sTD to remove and free.
280 void qset_free_std(struct whc *whc, struct whc_std *std)
282 list_del(&std->list_node);
283 if (std->bounce_buf) {
284 bool is_out = usb_pipeout(std->urb->pipe);
285 dma_addr_t dma_addr;
287 if (std->num_pointers)
288 dma_addr = le64_to_cpu(std->pl_virt[0].buf_ptr);
289 else
290 dma_addr = std->dma_addr;
292 dma_unmap_single(whc->wusbhc.dev, dma_addr,
293 std->len, is_out ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
294 if (!is_out)
295 qset_copy_bounce_to_sg(whc, std);
296 kfree(std->bounce_buf);
298 if (std->pl_virt) {
299 if (std->dma_addr)
300 dma_unmap_single(whc->wusbhc.dev, std->dma_addr,
301 std->num_pointers * sizeof(struct whc_page_list_entry),
302 DMA_TO_DEVICE);
303 kfree(std->pl_virt);
304 std->pl_virt = NULL;
306 kfree(std);
310 * qset_remove_qtds - remove an URB's qTDs (and sTDs).
312 static void qset_remove_qtds(struct whc *whc, struct whc_qset *qset,
313 struct urb *urb)
315 struct whc_std *std, *t;
317 list_for_each_entry_safe(std, t, &qset->stds, list_node) {
318 if (std->urb != urb)
319 break;
320 if (std->qtd != NULL)
321 qset_remove_qtd(whc, qset);
322 qset_free_std(whc, std);
327 * qset_free_stds - free any remaining sTDs for an URB.
329 static void qset_free_stds(struct whc_qset *qset, struct urb *urb)
331 struct whc_std *std, *t;
333 list_for_each_entry_safe(std, t, &qset->stds, list_node) {
334 if (std->urb == urb)
335 qset_free_std(qset->whc, std);
339 static int qset_fill_page_list(struct whc *whc, struct whc_std *std, gfp_t mem_flags)
341 dma_addr_t dma_addr = std->dma_addr;
342 dma_addr_t sp, ep;
343 size_t pl_len;
344 int p;
346 /* Short buffers don't need a page list. */
347 if (std->len <= WHCI_PAGE_SIZE) {
348 std->num_pointers = 0;
349 return 0;
352 sp = dma_addr & ~(WHCI_PAGE_SIZE-1);
353 ep = dma_addr + std->len;
354 std->num_pointers = DIV_ROUND_UP(ep - sp, WHCI_PAGE_SIZE);
356 pl_len = std->num_pointers * sizeof(struct whc_page_list_entry);
357 std->pl_virt = kmalloc(pl_len, mem_flags);
358 if (std->pl_virt == NULL)
359 return -ENOMEM;
360 std->dma_addr = dma_map_single(whc->wusbhc.dev, std->pl_virt, pl_len, DMA_TO_DEVICE);
362 for (p = 0; p < std->num_pointers; p++) {
363 std->pl_virt[p].buf_ptr = cpu_to_le64(dma_addr);
364 dma_addr = (dma_addr + WHCI_PAGE_SIZE) & ~(WHCI_PAGE_SIZE-1);
367 return 0;
371 * urb_dequeue_work - executes asl/pzl update and gives back the urb to the system.
373 static void urb_dequeue_work(struct work_struct *work)
375 struct whc_urb *wurb = container_of(work, struct whc_urb, dequeue_work);
376 struct whc_qset *qset = wurb->qset;
377 struct whc *whc = qset->whc;
378 unsigned long flags;
380 if (wurb->is_async == true)
381 asl_update(whc, WUSBCMD_ASYNC_UPDATED
382 | WUSBCMD_ASYNC_SYNCED_DB
383 | WUSBCMD_ASYNC_QSET_RM);
384 else
385 pzl_update(whc, WUSBCMD_PERIODIC_UPDATED
386 | WUSBCMD_PERIODIC_SYNCED_DB
387 | WUSBCMD_PERIODIC_QSET_RM);
389 spin_lock_irqsave(&whc->lock, flags);
390 qset_remove_urb(whc, qset, wurb->urb, wurb->status);
391 spin_unlock_irqrestore(&whc->lock, flags);
394 static struct whc_std *qset_new_std(struct whc *whc, struct whc_qset *qset,
395 struct urb *urb, gfp_t mem_flags)
397 struct whc_std *std;
399 std = kzalloc(sizeof(struct whc_std), mem_flags);
400 if (std == NULL)
401 return NULL;
403 std->urb = urb;
404 std->qtd = NULL;
406 INIT_LIST_HEAD(&std->list_node);
407 list_add_tail(&std->list_node, &qset->stds);
409 return std;
412 static int qset_add_urb_sg(struct whc *whc, struct whc_qset *qset, struct urb *urb,
413 gfp_t mem_flags)
415 size_t remaining;
416 struct scatterlist *sg;
417 int i;
418 int ntds = 0;
419 struct whc_std *std = NULL;
420 struct whc_page_list_entry *entry;
421 dma_addr_t prev_end = 0;
422 size_t pl_len;
423 int p = 0;
425 dev_dbg(&whc->umc->dev, "adding urb w/ sg of length %d\n", urb->transfer_buffer_length);
427 remaining = urb->transfer_buffer_length;
429 for_each_sg(urb->sg->sg, sg, urb->num_sgs, i) {
430 dma_addr_t dma_addr;
431 size_t dma_remaining;
432 dma_addr_t sp, ep;
433 int num_pointers;
435 if (remaining == 0) {
436 break;
439 dma_addr = sg_dma_address(sg);
440 dma_remaining = min(sg_dma_len(sg), remaining);
442 dev_dbg(&whc->umc->dev, "adding sg[%d] %08x %d\n", i, (unsigned)dma_addr,
443 dma_remaining);
445 while (dma_remaining) {
446 size_t dma_len;
449 * We can use the previous std (if it exists) provided that:
450 * - the previous one ended on a page boundary.
451 * - the current one begins on a page boundary.
452 * - the previous one isn't full.
454 * If a new std is needed but the previous one
455 * did not end on a wMaxPacketSize boundary
456 * then this sg list cannot be mapped onto
457 * multiple qTDs. Return an error and let the
458 * caller sort it out.
460 if (!std
461 || (prev_end & (WHCI_PAGE_SIZE-1))
462 || (dma_addr & (WHCI_PAGE_SIZE-1))
463 || std->len + WHCI_PAGE_SIZE > QTD_MAX_XFER_SIZE) {
464 if (prev_end % qset->max_packet != 0)
465 return -EINVAL;
466 dev_dbg(&whc->umc->dev, "need new std\n");
467 std = qset_new_std(whc, qset, urb, mem_flags);
468 if (std == NULL) {
469 return -ENOMEM;
471 ntds++;
472 p = 0;
475 dma_len = dma_remaining;
478 * If the remainder in this element doesn't
479 * fit in a single qTD, end the qTD on a
480 * wMaxPacketSize boundary.
482 if (std->len + dma_len > QTD_MAX_XFER_SIZE) {
483 dma_len = QTD_MAX_XFER_SIZE - std->len;
484 ep = ((dma_addr + dma_len) / qset->max_packet) * qset->max_packet;
485 dma_len = ep - dma_addr;
488 dev_dbg(&whc->umc->dev, "adding %d\n", dma_len);
490 std->len += dma_len;
491 std->ntds_remaining = -1; /* filled in later */
493 sp = dma_addr & ~(WHCI_PAGE_SIZE-1);
494 ep = dma_addr + dma_len;
495 num_pointers = DIV_ROUND_UP(ep - sp, WHCI_PAGE_SIZE);
496 std->num_pointers += num_pointers;
498 dev_dbg(&whc->umc->dev, "need %d more (%d total) page pointers\n",
499 num_pointers, std->num_pointers);
501 pl_len = std->num_pointers * sizeof(struct whc_page_list_entry);
503 std->pl_virt = krealloc(std->pl_virt, pl_len, mem_flags);
504 if (std->pl_virt == NULL) {
505 return -ENOMEM;
508 for (;p < std->num_pointers; p++, entry++) {
509 dev_dbg(&whc->umc->dev, "e[%d] %08x\n", p, dma_addr);
510 std->pl_virt[p].buf_ptr = cpu_to_le64(dma_addr);
511 dma_addr = (dma_addr + WHCI_PAGE_SIZE) & ~(WHCI_PAGE_SIZE-1);
514 prev_end = dma_addr = ep;
515 dma_remaining -= dma_len;
516 remaining -= dma_len;
520 dev_dbg(&whc->umc->dev, "used %d tds\n", ntds);
522 /* Now the number of stds is know, go back and fill in
523 std->ntds_remaining. */
524 list_for_each_entry(std, &qset->stds, list_node) {
525 if (std->ntds_remaining == -1) {
526 pl_len = std->num_pointers * sizeof(struct whc_page_list_entry);
527 std->ntds_remaining = ntds--;
528 std->dma_addr = dma_map_single(whc->wusbhc.dev, std->pl_virt,
529 pl_len, DMA_TO_DEVICE);
532 return 0;
536 * qset_add_urb_sg_linearize - add an urb with sg list, copying the data
538 * If the URB contains an sg list whose elements cannot be directly
539 * mapped to qTDs then the data must be transferred via bounce
540 * buffers.
542 static int qset_add_urb_sg_linearize(struct whc *whc, struct whc_qset *qset,
543 struct urb *urb, gfp_t mem_flags)
545 bool is_out = usb_pipeout(urb->pipe);
546 size_t max_std_len;
547 size_t remaining;
548 int ntds = 0;
549 struct whc_std *std = NULL;
550 void *bounce = NULL;
551 struct scatterlist *sg;
552 int i;
554 /* limit maximum bounce buffer to 16 * 3.5 KiB ~= 28 k */
555 max_std_len = qset->max_burst * qset->max_packet;
557 remaining = urb->transfer_buffer_length;
559 for_each_sg(urb->sg->sg, sg, urb->sg->nents, i) {
560 size_t len;
561 size_t sg_remaining;
562 void *orig;
564 if (remaining == 0) {
565 break;
568 sg_remaining = min(remaining, sg->length);
569 orig = sg_virt(sg);
571 dev_dbg(&whc->umc->dev, "adding sg[%d] %d\n", i, sg_remaining);
573 while (sg_remaining) {
574 if (!std || std->len == max_std_len) {
575 dev_dbg(&whc->umc->dev, "need new std\n");
576 std = qset_new_std(whc, qset, urb, mem_flags);
577 if (std == NULL)
578 return -ENOMEM;
579 std->bounce_buf = kmalloc(max_std_len, mem_flags);
580 if (std->bounce_buf == NULL)
581 return -ENOMEM;
582 std->bounce_sg = sg;
583 std->bounce_offset = orig - sg_virt(sg);
584 bounce = std->bounce_buf;
585 ntds++;
588 len = min(sg_remaining, max_std_len - std->len);
590 dev_dbg(&whc->umc->dev, "added %d from sg[%d] @ offset %d\n",
591 len, i, orig - sg_virt(sg));
593 if (is_out)
594 memcpy(bounce, orig, len);
596 std->len += len;
597 std->ntds_remaining = -1; /* filled in later */
599 bounce += len;
600 orig += len;
601 sg_remaining -= len;
602 remaining -= len;
607 * For each of the new sTDs, map the bounce buffers, create
608 * page lists (if necessary), and fill in std->ntds_remaining.
610 list_for_each_entry(std, &qset->stds, list_node) {
611 if (std->ntds_remaining != -1)
612 continue;
614 std->dma_addr = dma_map_single(&whc->umc->dev, std->bounce_buf, std->len,
615 is_out ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
617 if (qset_fill_page_list(whc, std, mem_flags) < 0)
618 return -ENOMEM;
620 std->ntds_remaining = ntds--;
623 return 0;
627 * qset_add_urb - add an urb to the qset's queue.
629 * The URB is chopped into sTDs, one for each qTD that will required.
630 * At least one qTD (and sTD) is required even if the transfer has no
631 * data (e.g., for some control transfers).
633 int qset_add_urb(struct whc *whc, struct whc_qset *qset, struct urb *urb,
634 gfp_t mem_flags)
636 struct whc_urb *wurb;
637 int remaining = urb->transfer_buffer_length;
638 u64 transfer_dma = urb->transfer_dma;
639 int ntds_remaining;
640 int ret;
642 wurb = kzalloc(sizeof(struct whc_urb), mem_flags);
643 if (wurb == NULL)
644 goto err_no_mem;
645 urb->hcpriv = wurb;
646 wurb->qset = qset;
647 wurb->urb = urb;
648 INIT_WORK(&wurb->dequeue_work, urb_dequeue_work);
650 if (urb->sg) {
651 ret = qset_add_urb_sg(whc, qset, urb, mem_flags);
652 if (ret == -EINVAL) {
653 dev_dbg(&whc->umc->dev, "linearizing %d octet urb\n",
654 urb->transfer_buffer_length);
655 qset_free_stds(qset, urb);
656 ret = qset_add_urb_sg_linearize(whc, qset, urb, mem_flags);
658 if (ret < 0)
659 goto err_no_mem;
660 return 0;
663 ntds_remaining = DIV_ROUND_UP(remaining, QTD_MAX_XFER_SIZE);
664 if (ntds_remaining == 0)
665 ntds_remaining = 1;
667 while (ntds_remaining) {
668 struct whc_std *std;
669 size_t std_len;
671 std_len = remaining;
672 if (std_len > QTD_MAX_XFER_SIZE)
673 std_len = QTD_MAX_XFER_SIZE;
675 std = qset_new_std(whc, qset, urb, mem_flags);
676 if (std == NULL)
677 goto err_no_mem;
679 std->dma_addr = transfer_dma;
680 std->len = std_len;
681 std->ntds_remaining = ntds_remaining;
683 if (qset_fill_page_list(whc, std, mem_flags) < 0)
684 goto err_no_mem;
686 ntds_remaining--;
687 remaining -= std_len;
688 transfer_dma += std_len;
691 return 0;
693 err_no_mem:
694 qset_free_stds(qset, urb);
695 return -ENOMEM;
699 * qset_remove_urb - remove an URB from the urb queue.
701 * The URB is returned to the USB subsystem.
703 void qset_remove_urb(struct whc *whc, struct whc_qset *qset,
704 struct urb *urb, int status)
706 struct wusbhc *wusbhc = &whc->wusbhc;
707 struct whc_urb *wurb = urb->hcpriv;
709 usb_hcd_unlink_urb_from_ep(&wusbhc->usb_hcd, urb);
710 /* Drop the lock as urb->complete() may enqueue another urb. */
711 spin_unlock(&whc->lock);
712 wusbhc_giveback_urb(wusbhc, urb, status);
713 spin_lock(&whc->lock);
715 kfree(wurb);
719 * get_urb_status_from_qtd - get the completed urb status from qTD status
720 * @urb: completed urb
721 * @status: qTD status
723 static int get_urb_status_from_qtd(struct urb *urb, u32 status)
725 if (status & QTD_STS_HALTED) {
726 if (status & QTD_STS_DBE)
727 return usb_pipein(urb->pipe) ? -ENOSR : -ECOMM;
728 else if (status & QTD_STS_BABBLE)
729 return -EOVERFLOW;
730 else if (status & QTD_STS_RCE)
731 return -ETIME;
732 return -EPIPE;
734 if (usb_pipein(urb->pipe)
735 && (urb->transfer_flags & URB_SHORT_NOT_OK)
736 && urb->actual_length < urb->transfer_buffer_length)
737 return -EREMOTEIO;
738 return 0;
742 * process_inactive_qtd - process an inactive (but not halted) qTD.
744 * Update the urb with the transfer bytes from the qTD, if the urb is
745 * completely transfered or (in the case of an IN only) the LPF is
746 * set, then the transfer is complete and the urb should be returned
747 * to the system.
749 void process_inactive_qtd(struct whc *whc, struct whc_qset *qset,
750 struct whc_qtd *qtd)
752 struct whc_std *std = list_first_entry(&qset->stds, struct whc_std, list_node);
753 struct urb *urb = std->urb;
754 uint32_t status;
755 bool complete;
757 status = le32_to_cpu(qtd->status);
759 urb->actual_length += std->len - QTD_STS_TO_LEN(status);
761 if (usb_pipein(urb->pipe) && (status & QTD_STS_LAST_PKT))
762 complete = true;
763 else
764 complete = whc_std_last(std);
766 qset_remove_qtd(whc, qset);
767 qset_free_std(whc, std);
770 * Transfers for this URB are complete? Then return it to the
771 * USB subsystem.
773 if (complete) {
774 qset_remove_qtds(whc, qset, urb);
775 qset_remove_urb(whc, qset, urb, get_urb_status_from_qtd(urb, status));
778 * If iAlt isn't valid then the hardware didn't
779 * advance iCur. Adjust the start and end pointers to
780 * match iCur.
782 if (!(status & QTD_STS_IALT_VALID))
783 qset->td_start = qset->td_end
784 = QH_STATUS_TO_ICUR(le16_to_cpu(qset->qh.status));
785 qset->pause_after_urb = NULL;
790 * process_halted_qtd - process a qset with a halted qtd
792 * Remove all the qTDs for the failed URB and return the failed URB to
793 * the USB subsystem. Then remove all other qTDs so the qset can be
794 * removed.
796 * FIXME: this is the point where rate adaptation can be done. If a
797 * transfer failed because it exceeded the maximum number of retries
798 * then it could be reactivated with a slower rate without having to
799 * remove the qset.
801 void process_halted_qtd(struct whc *whc, struct whc_qset *qset,
802 struct whc_qtd *qtd)
804 struct whc_std *std = list_first_entry(&qset->stds, struct whc_std, list_node);
805 struct urb *urb = std->urb;
806 int urb_status;
808 urb_status = get_urb_status_from_qtd(urb, le32_to_cpu(qtd->status));
810 qset_remove_qtds(whc, qset, urb);
811 qset_remove_urb(whc, qset, urb, urb_status);
813 list_for_each_entry(std, &qset->stds, list_node) {
814 if (qset->ntds == 0)
815 break;
816 qset_remove_qtd(whc, qset);
817 std->qtd = NULL;
820 qset->remove = 1;
823 void qset_free(struct whc *whc, struct whc_qset *qset)
825 dma_pool_free(whc->qset_pool, qset, qset->qset_dma);
829 * qset_delete - wait for a qset to be unused, then free it.
831 void qset_delete(struct whc *whc, struct whc_qset *qset)
833 wait_for_completion(&qset->remove_complete);
834 qset_free(whc, qset);