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"
27 struct whc_qset *qset_alloc(struct whc *whc, gfp_t mem_flags)
29 struct whc_qset *qset;
32 qset = dma_pool_alloc(whc->qset_pool, mem_flags, &dma);
35 memset(qset, 0, sizeof(struct whc_qset));
40 INIT_LIST_HEAD(&qset->list_node);
41 INIT_LIST_HEAD(&qset->stds);
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
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;
58 is_out = usb_pipeout(urb->pipe);
60 epcd = (struct usb_wireless_ep_comp_descriptor *)qset->ep->extra;
63 qset->max_seq = epcd->bMaxSequence;
64 qset->max_burst = epcd->bMaxBurst;
70 qset->qh.info1 = cpu_to_le32(
71 QH_INFO1_EP(usb_pipeendpoint(urb->pipe))
72 | (is_out ? QH_INFO1_DIR_OUT : QH_INFO1_DIR_IN)
73 | usb_pipe_to_qh_type(urb->pipe)
74 | QH_INFO1_DEV_INFO_IDX(wusb_port_no_to_idx(usb_dev->portnum))
75 | QH_INFO1_MAX_PKT_LEN(usb_maxpacket(urb->dev, urb->pipe, is_out))
77 qset->qh.info2 = cpu_to_le32(
78 QH_INFO2_BURST(qset->max_burst)
80 | QH_INFO2_MAX_COUNT(3)
81 | QH_INFO2_MAX_RETRY(3)
82 | QH_INFO2_MAX_SEQ(qset->max_seq - 1)
84 /* FIXME: where can we obtain these Tx parameters from? Why
85 * doesn't the chip know what Tx power to use? It knows the Rx
86 * strength and can presumably guess the Tx power required
88 qset->qh.info3 = cpu_to_le32(
90 | QH_INFO3_TX_PWR(0) /* 0 == max power */
95 * qset_clear - clear fields in a qset so it may be reinserted into a
98 void qset_clear(struct whc *whc, struct whc_qset *qset)
100 qset->td_start = qset->td_end = qset->ntds = 0;
103 qset->qh.link = cpu_to_le32(QH_LINK_NTDS(8) | QH_LINK_T);
104 qset->qh.status = cpu_to_le16(QH_STATUS_ICUR(qset->td_start));
105 qset->qh.err_count = 0;
106 qset->qh.cur_window = cpu_to_le32((1 << qset->max_burst) - 1);
107 qset->qh.scratch[0] = 0;
108 qset->qh.scratch[1] = 0;
109 qset->qh.scratch[2] = 0;
111 memset(&qset->qh.overlay, 0, sizeof(qset->qh.overlay));
113 init_completion(&qset->remove_complete);
117 * get_qset - get the qset for an async endpoint
119 * A new qset is created if one does not already exist.
121 struct whc_qset *get_qset(struct whc *whc, struct urb *urb,
124 struct whc_qset *qset;
126 qset = urb->ep->hcpriv;
128 qset = qset_alloc(whc, mem_flags);
133 urb->ep->hcpriv = qset;
134 qset_fill_qh(qset, urb);
139 void qset_remove_complete(struct whc *whc, struct whc_qset *qset)
141 list_del_init(&qset->list_node);
142 complete(&qset->remove_complete);
146 * qset_add_qtds - add qTDs for an URB to a qset
148 * Returns true if the list (ASL/PZL) must be updated because (for a
149 * WHCI 0.95 controller) an activated qTD was pointed to be iCur.
151 enum whc_update qset_add_qtds(struct whc *whc, struct whc_qset *qset)
154 enum whc_update update = 0;
156 list_for_each_entry(std, &qset->stds, list_node) {
160 if (qset->ntds >= WHCI_QSET_TD_MAX
161 || (qset->pause_after_urb && std->urb != qset->pause_after_urb))
165 continue; /* already has a qTD */
167 qtd = std->qtd = &qset->qtd[qset->td_end];
169 /* Fill in setup bytes for control transfers. */
170 if (usb_pipecontrol(std->urb->pipe))
171 memcpy(qtd->setup, std->urb->setup_packet, 8);
173 status = QTD_STS_ACTIVE | QTD_STS_LEN(std->len);
175 if (whc_std_last(std) && usb_pipeout(std->urb->pipe))
176 status |= QTD_STS_LAST_PKT;
179 * For an IN transfer the iAlt field should be set so
180 * the h/w will automatically advance to the next
181 * transfer. However, if there are 8 or more TDs
182 * remaining in this transfer then iAlt cannot be set
183 * as it could point to somewhere in this transfer.
185 if (std->ntds_remaining < WHCI_QSET_TD_MAX) {
187 ialt = (qset->td_end + std->ntds_remaining) % WHCI_QSET_TD_MAX;
188 status |= QTD_STS_IALT(ialt);
189 } else if (usb_pipein(std->urb->pipe))
190 qset->pause_after_urb = std->urb;
192 if (std->num_pointers)
193 qtd->options = cpu_to_le32(QTD_OPT_IOC);
195 qtd->options = cpu_to_le32(QTD_OPT_IOC | QTD_OPT_SMALL);
196 qtd->page_list_ptr = cpu_to_le64(std->dma_addr);
198 qtd->status = cpu_to_le32(status);
200 if (QH_STATUS_TO_ICUR(qset->qh.status) == qset->td_end)
201 update = WHC_UPDATE_UPDATED;
203 if (++qset->td_end >= WHCI_QSET_TD_MAX)
212 * qset_remove_qtd - remove the first qTD from a qset.
214 * The qTD might be still active (if it's part of a IN URB that
215 * resulted in a short read) so ensure it's deactivated.
217 static void qset_remove_qtd(struct whc *whc, struct whc_qset *qset)
219 qset->qtd[qset->td_start].status = 0;
221 if (++qset->td_start >= WHCI_QSET_TD_MAX)
227 * qset_free_std - remove an sTD and free it.
228 * @whc: the WHCI host controller
229 * @std: the sTD to remove and free.
231 void qset_free_std(struct whc *whc, struct whc_std *std)
233 list_del(&std->list_node);
234 if (std->num_pointers) {
235 dma_unmap_single(whc->wusbhc.dev, std->dma_addr,
236 std->num_pointers * sizeof(struct whc_page_list_entry),
245 * qset_remove_qtds - remove an URB's qTDs (and sTDs).
247 static void qset_remove_qtds(struct whc *whc, struct whc_qset *qset,
250 struct whc_std *std, *t;
252 list_for_each_entry_safe(std, t, &qset->stds, list_node) {
255 if (std->qtd != NULL)
256 qset_remove_qtd(whc, qset);
257 qset_free_std(whc, std);
262 * qset_free_stds - free any remaining sTDs for an URB.
264 static void qset_free_stds(struct whc_qset *qset, struct urb *urb)
266 struct whc_std *std, *t;
268 list_for_each_entry_safe(std, t, &qset->stds, list_node) {
270 qset_free_std(qset->whc, std);
274 static int qset_fill_page_list(struct whc *whc, struct whc_std *std, gfp_t mem_flags)
276 dma_addr_t dma_addr = std->dma_addr;
278 size_t std_len = std->len;
282 sp = ALIGN(dma_addr, WHCI_PAGE_SIZE);
283 ep = dma_addr + std_len;
284 std->num_pointers = DIV_ROUND_UP(ep - sp, WHCI_PAGE_SIZE);
286 pl_len = std->num_pointers * sizeof(struct whc_page_list_entry);
287 std->pl_virt = kmalloc(pl_len, mem_flags);
288 if (std->pl_virt == NULL)
290 std->dma_addr = dma_map_single(whc->wusbhc.dev, std->pl_virt, pl_len, DMA_TO_DEVICE);
292 for (p = 0; p < std->num_pointers; p++) {
293 std->pl_virt[p].buf_ptr = cpu_to_le64(dma_addr);
294 dma_addr = ALIGN(dma_addr + WHCI_PAGE_SIZE, WHCI_PAGE_SIZE);
301 * urb_dequeue_work - executes asl/pzl update and gives back the urb to the system.
303 static void urb_dequeue_work(struct work_struct *work)
305 struct whc_urb *wurb = container_of(work, struct whc_urb, dequeue_work);
306 struct whc_qset *qset = wurb->qset;
307 struct whc *whc = qset->whc;
310 if (wurb->is_async == true)
311 asl_update(whc, WUSBCMD_ASYNC_UPDATED
312 | WUSBCMD_ASYNC_SYNCED_DB
313 | WUSBCMD_ASYNC_QSET_RM);
315 pzl_update(whc, WUSBCMD_PERIODIC_UPDATED
316 | WUSBCMD_PERIODIC_SYNCED_DB
317 | WUSBCMD_PERIODIC_QSET_RM);
319 spin_lock_irqsave(&whc->lock, flags);
320 qset_remove_urb(whc, qset, wurb->urb, wurb->status);
321 spin_unlock_irqrestore(&whc->lock, flags);
325 * qset_add_urb - add an urb to the qset's queue.
327 * The URB is chopped into sTDs, one for each qTD that will required.
328 * At least one qTD (and sTD) is required even if the transfer has no
329 * data (e.g., for some control transfers).
331 int qset_add_urb(struct whc *whc, struct whc_qset *qset, struct urb *urb,
334 struct whc_urb *wurb;
335 int remaining = urb->transfer_buffer_length;
336 u64 transfer_dma = urb->transfer_dma;
339 ntds_remaining = DIV_ROUND_UP(remaining, QTD_MAX_XFER_SIZE);
340 if (ntds_remaining == 0)
343 wurb = kzalloc(sizeof(struct whc_urb), mem_flags);
349 INIT_WORK(&wurb->dequeue_work, urb_dequeue_work);
351 while (ntds_remaining) {
355 std = kmalloc(sizeof(struct whc_std), mem_flags);
360 if (std_len > QTD_MAX_XFER_SIZE)
361 std_len = QTD_MAX_XFER_SIZE;
364 std->dma_addr = transfer_dma;
366 std->ntds_remaining = ntds_remaining;
369 INIT_LIST_HEAD(&std->list_node);
370 list_add_tail(&std->list_node, &qset->stds);
372 if (std_len > WHCI_PAGE_SIZE) {
373 if (qset_fill_page_list(whc, std, mem_flags) < 0)
376 std->num_pointers = 0;
379 remaining -= std_len;
380 transfer_dma += std_len;
386 qset_free_stds(qset, urb);
391 * qset_remove_urb - remove an URB from the urb queue.
393 * The URB is returned to the USB subsystem.
395 void qset_remove_urb(struct whc *whc, struct whc_qset *qset,
396 struct urb *urb, int status)
398 struct wusbhc *wusbhc = &whc->wusbhc;
399 struct whc_urb *wurb = urb->hcpriv;
401 usb_hcd_unlink_urb_from_ep(&wusbhc->usb_hcd, urb);
402 /* Drop the lock as urb->complete() may enqueue another urb. */
403 spin_unlock(&whc->lock);
404 wusbhc_giveback_urb(wusbhc, urb, status);
405 spin_lock(&whc->lock);
411 * get_urb_status_from_qtd - get the completed urb status from qTD status
412 * @urb: completed urb
413 * @status: qTD status
415 static int get_urb_status_from_qtd(struct urb *urb, u32 status)
417 if (status & QTD_STS_HALTED) {
418 if (status & QTD_STS_DBE)
419 return usb_pipein(urb->pipe) ? -ENOSR : -ECOMM;
420 else if (status & QTD_STS_BABBLE)
422 else if (status & QTD_STS_RCE)
426 if (usb_pipein(urb->pipe)
427 && (urb->transfer_flags & URB_SHORT_NOT_OK)
428 && urb->actual_length < urb->transfer_buffer_length)
434 * process_inactive_qtd - process an inactive (but not halted) qTD.
436 * Update the urb with the transfer bytes from the qTD, if the urb is
437 * completely transfered or (in the case of an IN only) the LPF is
438 * set, then the transfer is complete and the urb should be returned
441 void process_inactive_qtd(struct whc *whc, struct whc_qset *qset,
444 struct whc_std *std = list_first_entry(&qset->stds, struct whc_std, list_node);
445 struct urb *urb = std->urb;
449 status = le32_to_cpu(qtd->status);
451 urb->actual_length += std->len - QTD_STS_TO_LEN(status);
453 if (usb_pipein(urb->pipe) && (status & QTD_STS_LAST_PKT))
456 complete = whc_std_last(std);
458 qset_remove_qtd(whc, qset);
459 qset_free_std(whc, std);
462 * Transfers for this URB are complete? Then return it to the
466 qset_remove_qtds(whc, qset, urb);
467 qset_remove_urb(whc, qset, urb, get_urb_status_from_qtd(urb, status));
470 * If iAlt isn't valid then the hardware didn't
471 * advance iCur. Adjust the start and end pointers to
474 if (!(status & QTD_STS_IALT_VALID))
475 qset->td_start = qset->td_end
476 = QH_STATUS_TO_ICUR(le16_to_cpu(qset->qh.status));
477 qset->pause_after_urb = NULL;
482 * process_halted_qtd - process a qset with a halted qtd
484 * Remove all the qTDs for the failed URB and return the failed URB to
485 * the USB subsystem. Then remove all other qTDs so the qset can be
488 * FIXME: this is the point where rate adaptation can be done. If a
489 * transfer failed because it exceeded the maximum number of retries
490 * then it could be reactivated with a slower rate without having to
493 void process_halted_qtd(struct whc *whc, struct whc_qset *qset,
496 struct whc_std *std = list_first_entry(&qset->stds, struct whc_std, list_node);
497 struct urb *urb = std->urb;
500 urb_status = get_urb_status_from_qtd(urb, le32_to_cpu(qtd->status));
502 qset_remove_qtds(whc, qset, urb);
503 qset_remove_urb(whc, qset, urb, urb_status);
505 list_for_each_entry(std, &qset->stds, list_node) {
508 qset_remove_qtd(whc, qset);
515 void qset_free(struct whc *whc, struct whc_qset *qset)
517 dma_pool_free(whc->qset_pool, qset, qset->qset_dma);
521 * qset_delete - wait for a qset to be unused, then free it.
523 void qset_delete(struct whc *whc, struct whc_qset *qset)
525 wait_for_completion(&qset->remove_complete);
526 qset_free(whc, qset);