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 */
93 qset
->qh
.cur_window
= cpu_to_le32((1 << qset
->max_burst
) - 1);
97 * qset_clear - clear fields in a qset so it may be reinserted into a
100 * The sequence number and current window are not cleared (see
103 void qset_clear(struct whc
*whc
, struct whc_qset
*qset
)
105 qset
->td_start
= qset
->td_end
= qset
->ntds
= 0;
107 qset
->qh
.link
= cpu_to_le32(QH_LINK_NTDS(8) | QH_LINK_T
);
108 qset
->qh
.status
= qset
->qh
.status
& QH_STATUS_SEQ_MASK
;
109 qset
->qh
.err_count
= 0;
110 qset
->qh
.scratch
[0] = 0;
111 qset
->qh
.scratch
[1] = 0;
112 qset
->qh
.scratch
[2] = 0;
114 memset(&qset
->qh
.overlay
, 0, sizeof(qset
->qh
.overlay
));
116 init_completion(&qset
->remove_complete
);
120 * qset_reset - reset endpoint state in a qset.
122 * Clears the sequence number and current window. This qset must not
123 * be in the ASL or PZL.
125 void qset_reset(struct whc
*whc
, struct whc_qset
*qset
)
129 qset
->qh
.status
&= ~QH_STATUS_SEQ_MASK
;
130 qset
->qh
.cur_window
= cpu_to_le32((1 << qset
->max_burst
) - 1);
134 * get_qset - get the qset for an async endpoint
136 * A new qset is created if one does not already exist.
138 struct whc_qset
*get_qset(struct whc
*whc
, struct urb
*urb
,
141 struct whc_qset
*qset
;
143 qset
= urb
->ep
->hcpriv
;
145 qset
= qset_alloc(whc
, mem_flags
);
150 urb
->ep
->hcpriv
= qset
;
151 qset_fill_qh(qset
, urb
);
156 void qset_remove_complete(struct whc
*whc
, struct whc_qset
*qset
)
159 list_del_init(&qset
->list_node
);
160 complete(&qset
->remove_complete
);
164 * qset_add_qtds - add qTDs for an URB to a qset
166 * Returns true if the list (ASL/PZL) must be updated because (for a
167 * WHCI 0.95 controller) an activated qTD was pointed to be iCur.
169 enum whc_update
qset_add_qtds(struct whc
*whc
, struct whc_qset
*qset
)
172 enum whc_update update
= 0;
174 list_for_each_entry(std
, &qset
->stds
, list_node
) {
178 if (qset
->ntds
>= WHCI_QSET_TD_MAX
179 || (qset
->pause_after_urb
&& std
->urb
!= qset
->pause_after_urb
))
183 continue; /* already has a qTD */
185 qtd
= std
->qtd
= &qset
->qtd
[qset
->td_end
];
187 /* Fill in setup bytes for control transfers. */
188 if (usb_pipecontrol(std
->urb
->pipe
))
189 memcpy(qtd
->setup
, std
->urb
->setup_packet
, 8);
191 status
= QTD_STS_ACTIVE
| QTD_STS_LEN(std
->len
);
193 if (whc_std_last(std
) && usb_pipeout(std
->urb
->pipe
))
194 status
|= QTD_STS_LAST_PKT
;
197 * For an IN transfer the iAlt field should be set so
198 * the h/w will automatically advance to the next
199 * transfer. However, if there are 8 or more TDs
200 * remaining in this transfer then iAlt cannot be set
201 * as it could point to somewhere in this transfer.
203 if (std
->ntds_remaining
< WHCI_QSET_TD_MAX
) {
205 ialt
= (qset
->td_end
+ std
->ntds_remaining
) % WHCI_QSET_TD_MAX
;
206 status
|= QTD_STS_IALT(ialt
);
207 } else if (usb_pipein(std
->urb
->pipe
))
208 qset
->pause_after_urb
= std
->urb
;
210 if (std
->num_pointers
)
211 qtd
->options
= cpu_to_le32(QTD_OPT_IOC
);
213 qtd
->options
= cpu_to_le32(QTD_OPT_IOC
| QTD_OPT_SMALL
);
214 qtd
->page_list_ptr
= cpu_to_le64(std
->dma_addr
);
216 qtd
->status
= cpu_to_le32(status
);
218 if (QH_STATUS_TO_ICUR(qset
->qh
.status
) == qset
->td_end
)
219 update
= WHC_UPDATE_UPDATED
;
221 if (++qset
->td_end
>= WHCI_QSET_TD_MAX
)
230 * qset_remove_qtd - remove the first qTD from a qset.
232 * The qTD might be still active (if it's part of a IN URB that
233 * resulted in a short read) so ensure it's deactivated.
235 static void qset_remove_qtd(struct whc
*whc
, struct whc_qset
*qset
)
237 qset
->qtd
[qset
->td_start
].status
= 0;
239 if (++qset
->td_start
>= WHCI_QSET_TD_MAX
)
245 * qset_free_std - remove an sTD and free it.
246 * @whc: the WHCI host controller
247 * @std: the sTD to remove and free.
249 void qset_free_std(struct whc
*whc
, struct whc_std
*std
)
251 list_del(&std
->list_node
);
252 if (std
->num_pointers
) {
253 dma_unmap_single(whc
->wusbhc
.dev
, std
->dma_addr
,
254 std
->num_pointers
* sizeof(struct whc_page_list_entry
),
263 * qset_remove_qtds - remove an URB's qTDs (and sTDs).
265 static void qset_remove_qtds(struct whc
*whc
, struct whc_qset
*qset
,
268 struct whc_std
*std
, *t
;
270 list_for_each_entry_safe(std
, t
, &qset
->stds
, list_node
) {
273 if (std
->qtd
!= NULL
)
274 qset_remove_qtd(whc
, qset
);
275 qset_free_std(whc
, std
);
280 * qset_free_stds - free any remaining sTDs for an URB.
282 static void qset_free_stds(struct whc_qset
*qset
, struct urb
*urb
)
284 struct whc_std
*std
, *t
;
286 list_for_each_entry_safe(std
, t
, &qset
->stds
, list_node
) {
288 qset_free_std(qset
->whc
, std
);
292 static int qset_fill_page_list(struct whc
*whc
, struct whc_std
*std
, gfp_t mem_flags
)
294 dma_addr_t dma_addr
= std
->dma_addr
;
296 size_t std_len
= std
->len
;
300 sp
= ALIGN(dma_addr
, WHCI_PAGE_SIZE
);
301 ep
= dma_addr
+ std_len
;
302 std
->num_pointers
= DIV_ROUND_UP(ep
- sp
, WHCI_PAGE_SIZE
);
304 pl_len
= std
->num_pointers
* sizeof(struct whc_page_list_entry
);
305 std
->pl_virt
= kmalloc(pl_len
, mem_flags
);
306 if (std
->pl_virt
== NULL
)
308 std
->dma_addr
= dma_map_single(whc
->wusbhc
.dev
, std
->pl_virt
, pl_len
, DMA_TO_DEVICE
);
310 for (p
= 0; p
< std
->num_pointers
; p
++) {
311 std
->pl_virt
[p
].buf_ptr
= cpu_to_le64(dma_addr
);
312 dma_addr
= ALIGN(dma_addr
+ WHCI_PAGE_SIZE
, WHCI_PAGE_SIZE
);
319 * urb_dequeue_work - executes asl/pzl update and gives back the urb to the system.
321 static void urb_dequeue_work(struct work_struct
*work
)
323 struct whc_urb
*wurb
= container_of(work
, struct whc_urb
, dequeue_work
);
324 struct whc_qset
*qset
= wurb
->qset
;
325 struct whc
*whc
= qset
->whc
;
328 if (wurb
->is_async
== true)
329 asl_update(whc
, WUSBCMD_ASYNC_UPDATED
330 | WUSBCMD_ASYNC_SYNCED_DB
331 | WUSBCMD_ASYNC_QSET_RM
);
333 pzl_update(whc
, WUSBCMD_PERIODIC_UPDATED
334 | WUSBCMD_PERIODIC_SYNCED_DB
335 | WUSBCMD_PERIODIC_QSET_RM
);
337 spin_lock_irqsave(&whc
->lock
, flags
);
338 qset_remove_urb(whc
, qset
, wurb
->urb
, wurb
->status
);
339 spin_unlock_irqrestore(&whc
->lock
, flags
);
343 * qset_add_urb - add an urb to the qset's queue.
345 * The URB is chopped into sTDs, one for each qTD that will required.
346 * At least one qTD (and sTD) is required even if the transfer has no
347 * data (e.g., for some control transfers).
349 int qset_add_urb(struct whc
*whc
, struct whc_qset
*qset
, struct urb
*urb
,
352 struct whc_urb
*wurb
;
353 int remaining
= urb
->transfer_buffer_length
;
354 u64 transfer_dma
= urb
->transfer_dma
;
357 ntds_remaining
= DIV_ROUND_UP(remaining
, QTD_MAX_XFER_SIZE
);
358 if (ntds_remaining
== 0)
361 wurb
= kzalloc(sizeof(struct whc_urb
), mem_flags
);
367 INIT_WORK(&wurb
->dequeue_work
, urb_dequeue_work
);
369 while (ntds_remaining
) {
373 std
= kmalloc(sizeof(struct whc_std
), mem_flags
);
378 if (std_len
> QTD_MAX_XFER_SIZE
)
379 std_len
= QTD_MAX_XFER_SIZE
;
382 std
->dma_addr
= transfer_dma
;
384 std
->ntds_remaining
= ntds_remaining
;
387 INIT_LIST_HEAD(&std
->list_node
);
388 list_add_tail(&std
->list_node
, &qset
->stds
);
390 if (std_len
> WHCI_PAGE_SIZE
) {
391 if (qset_fill_page_list(whc
, std
, mem_flags
) < 0)
394 std
->num_pointers
= 0;
397 remaining
-= std_len
;
398 transfer_dma
+= std_len
;
404 qset_free_stds(qset
, urb
);
409 * qset_remove_urb - remove an URB from the urb queue.
411 * The URB is returned to the USB subsystem.
413 void qset_remove_urb(struct whc
*whc
, struct whc_qset
*qset
,
414 struct urb
*urb
, int status
)
416 struct wusbhc
*wusbhc
= &whc
->wusbhc
;
417 struct whc_urb
*wurb
= urb
->hcpriv
;
419 usb_hcd_unlink_urb_from_ep(&wusbhc
->usb_hcd
, urb
);
420 /* Drop the lock as urb->complete() may enqueue another urb. */
421 spin_unlock(&whc
->lock
);
422 wusbhc_giveback_urb(wusbhc
, urb
, status
);
423 spin_lock(&whc
->lock
);
429 * get_urb_status_from_qtd - get the completed urb status from qTD status
430 * @urb: completed urb
431 * @status: qTD status
433 static int get_urb_status_from_qtd(struct urb
*urb
, u32 status
)
435 if (status
& QTD_STS_HALTED
) {
436 if (status
& QTD_STS_DBE
)
437 return usb_pipein(urb
->pipe
) ? -ENOSR
: -ECOMM
;
438 else if (status
& QTD_STS_BABBLE
)
440 else if (status
& QTD_STS_RCE
)
444 if (usb_pipein(urb
->pipe
)
445 && (urb
->transfer_flags
& URB_SHORT_NOT_OK
)
446 && urb
->actual_length
< urb
->transfer_buffer_length
)
452 * process_inactive_qtd - process an inactive (but not halted) qTD.
454 * Update the urb with the transfer bytes from the qTD, if the urb is
455 * completely transfered or (in the case of an IN only) the LPF is
456 * set, then the transfer is complete and the urb should be returned
459 void process_inactive_qtd(struct whc
*whc
, struct whc_qset
*qset
,
462 struct whc_std
*std
= list_first_entry(&qset
->stds
, struct whc_std
, list_node
);
463 struct urb
*urb
= std
->urb
;
467 status
= le32_to_cpu(qtd
->status
);
469 urb
->actual_length
+= std
->len
- QTD_STS_TO_LEN(status
);
471 if (usb_pipein(urb
->pipe
) && (status
& QTD_STS_LAST_PKT
))
474 complete
= whc_std_last(std
);
476 qset_remove_qtd(whc
, qset
);
477 qset_free_std(whc
, std
);
480 * Transfers for this URB are complete? Then return it to the
484 qset_remove_qtds(whc
, qset
, urb
);
485 qset_remove_urb(whc
, qset
, urb
, get_urb_status_from_qtd(urb
, status
));
488 * If iAlt isn't valid then the hardware didn't
489 * advance iCur. Adjust the start and end pointers to
492 if (!(status
& QTD_STS_IALT_VALID
))
493 qset
->td_start
= qset
->td_end
494 = QH_STATUS_TO_ICUR(le16_to_cpu(qset
->qh
.status
));
495 qset
->pause_after_urb
= NULL
;
500 * process_halted_qtd - process a qset with a halted qtd
502 * Remove all the qTDs for the failed URB and return the failed URB to
503 * the USB subsystem. Then remove all other qTDs so the qset can be
506 * FIXME: this is the point where rate adaptation can be done. If a
507 * transfer failed because it exceeded the maximum number of retries
508 * then it could be reactivated with a slower rate without having to
511 void process_halted_qtd(struct whc
*whc
, struct whc_qset
*qset
,
514 struct whc_std
*std
= list_first_entry(&qset
->stds
, struct whc_std
, list_node
);
515 struct urb
*urb
= std
->urb
;
518 urb_status
= get_urb_status_from_qtd(urb
, le32_to_cpu(qtd
->status
));
520 qset_remove_qtds(whc
, qset
, urb
);
521 qset_remove_urb(whc
, qset
, urb
, urb_status
);
523 list_for_each_entry(std
, &qset
->stds
, list_node
) {
526 qset_remove_qtd(whc
, qset
);
533 void qset_free(struct whc
*whc
, struct whc_qset
*qset
)
535 dma_pool_free(whc
->qset_pool
, qset
, qset
->qset_dma
);
539 * qset_delete - wait for a qset to be unused, then free it.
541 void qset_delete(struct whc
*whc
, struct whc_qset
*qset
)
543 wait_for_completion(&qset
->remove_complete
);
544 qset_free(whc
, qset
);