1 // SPDX-License-Identifier: GPL-2.0
3 * Wireless Host Controller (WHC) periodic schedule management.
5 * Copyright (C) 2007 Cambridge Silicon Radio Ltd.
7 #include <linux/kernel.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/uwb/umc.h>
11 #include <linux/usb.h>
13 #include "../../wusbcore/wusbhc.h"
17 static void update_pzl_pointers(struct whc
*whc
, int period
, u64 addr
)
21 whc_qset_set_link_ptr(&whc
->pz_list
[0], addr
);
22 whc_qset_set_link_ptr(&whc
->pz_list
[2], addr
);
23 whc_qset_set_link_ptr(&whc
->pz_list
[4], addr
);
24 whc_qset_set_link_ptr(&whc
->pz_list
[6], addr
);
25 whc_qset_set_link_ptr(&whc
->pz_list
[8], addr
);
26 whc_qset_set_link_ptr(&whc
->pz_list
[10], addr
);
27 whc_qset_set_link_ptr(&whc
->pz_list
[12], addr
);
28 whc_qset_set_link_ptr(&whc
->pz_list
[14], addr
);
31 whc_qset_set_link_ptr(&whc
->pz_list
[1], addr
);
32 whc_qset_set_link_ptr(&whc
->pz_list
[5], addr
);
33 whc_qset_set_link_ptr(&whc
->pz_list
[9], addr
);
34 whc_qset_set_link_ptr(&whc
->pz_list
[13], addr
);
37 whc_qset_set_link_ptr(&whc
->pz_list
[3], addr
);
38 whc_qset_set_link_ptr(&whc
->pz_list
[11], addr
);
41 whc_qset_set_link_ptr(&whc
->pz_list
[7], addr
);
44 whc_qset_set_link_ptr(&whc
->pz_list
[15], addr
);
50 * Return the 'period' to use for this qset. The minimum interval for
51 * the endpoint is used so whatever urbs are submitted the device is
52 * polled often enough.
54 static int qset_get_period(struct whc
*whc
, struct whc_qset
*qset
)
56 uint8_t bInterval
= qset
->ep
->desc
.bInterval
;
65 static void qset_insert_in_sw_list(struct whc
*whc
, struct whc_qset
*qset
)
69 period
= qset_get_period(whc
, qset
);
71 qset_clear(whc
, qset
);
72 list_move(&qset
->list_node
, &whc
->periodic_list
[period
]);
73 qset
->in_sw_list
= true;
76 static void pzl_qset_remove(struct whc
*whc
, struct whc_qset
*qset
)
78 list_move(&qset
->list_node
, &whc
->periodic_removed_list
);
79 qset
->in_hw_list
= false;
80 qset
->in_sw_list
= false;
84 * pzl_process_qset - process any recently inactivated or halted qTDs
87 * After inactive qTDs are removed, new qTDs can be added if the
88 * urb queue still contains URBs.
90 * Returns the schedule updates required.
92 static enum whc_update
pzl_process_qset(struct whc
*whc
, struct whc_qset
*qset
)
94 enum whc_update update
= 0;
102 td
= &qset
->qtd
[qset
->td_start
];
103 status
= le32_to_cpu(td
->status
);
106 * Nothing to do with a still active qTD.
108 if (status
& QTD_STS_ACTIVE
)
111 if (status
& QTD_STS_HALTED
) {
113 process_halted_qtd(whc
, qset
, td
);
114 /* A halted qTD always triggers an update
115 because the qset was either removed or
117 update
|= WHC_UPDATE_UPDATED
;
121 /* Mmm, a completed qTD. */
122 process_inactive_qtd(whc
, qset
, td
);
126 update
|= qset_add_qtds(whc
, qset
);
130 * If there are no qTDs in this qset, remove it from the PZL.
132 if (qset
->remove
&& qset
->ntds
== 0) {
133 pzl_qset_remove(whc
, qset
);
134 update
|= WHC_UPDATE_REMOVED
;
141 * pzl_start - start the periodic schedule
142 * @whc: the WHCI host controller
144 * The PZL must be valid (e.g., all entries in the list should have
147 void pzl_start(struct whc
*whc
)
149 le_writeq(whc
->pz_list_dma
, whc
->base
+ WUSBPERIODICLISTBASE
);
151 whc_write_wusbcmd(whc
, WUSBCMD_PERIODIC_EN
, WUSBCMD_PERIODIC_EN
);
152 whci_wait_for(&whc
->umc
->dev
, whc
->base
+ WUSBSTS
,
153 WUSBSTS_PERIODIC_SCHED
, WUSBSTS_PERIODIC_SCHED
,
158 * pzl_stop - stop the periodic schedule
159 * @whc: the WHCI host controller
161 void pzl_stop(struct whc
*whc
)
163 whc_write_wusbcmd(whc
, WUSBCMD_PERIODIC_EN
, 0);
164 whci_wait_for(&whc
->umc
->dev
, whc
->base
+ WUSBSTS
,
165 WUSBSTS_PERIODIC_SCHED
, 0,
170 * pzl_update - request a PZL update and wait for the hardware to be synced
172 * @wusbcmd: WUSBCMD value to start the update.
174 * If the WUSB HC is inactive (i.e., the PZL is stopped) then the
175 * update must be skipped as the hardware may not respond to update
178 void pzl_update(struct whc
*whc
, uint32_t wusbcmd
)
180 struct wusbhc
*wusbhc
= &whc
->wusbhc
;
183 mutex_lock(&wusbhc
->mutex
);
184 if (wusbhc
->active
) {
185 whc_write_wusbcmd(whc
, wusbcmd
, wusbcmd
);
186 t
= wait_event_timeout(
187 whc
->periodic_list_wq
,
188 (le_readl(whc
->base
+ WUSBCMD
) & WUSBCMD_PERIODIC_UPDATED
) == 0,
189 msecs_to_jiffies(1000));
191 whc_hw_error(whc
, "PZL update timeout");
193 mutex_unlock(&wusbhc
->mutex
);
196 static void update_pzl_hw_view(struct whc
*whc
)
198 struct whc_qset
*qset
, *t
;
202 for (period
= 0; period
< 5; period
++) {
203 list_for_each_entry_safe(qset
, t
, &whc
->periodic_list
[period
], list_node
) {
204 whc_qset_set_link_ptr(&qset
->qh
.link
, tmp_qh
);
205 tmp_qh
= qset
->qset_dma
;
206 qset
->in_hw_list
= true;
208 update_pzl_pointers(whc
, period
, tmp_qh
);
213 * scan_periodic_work - scan the PZL for qsets to process.
215 * Process each qset in the PZL in turn and then signal the WHC that
216 * the PZL has been updated.
218 * Then start, stop or update the periodic schedule as required.
220 void scan_periodic_work(struct work_struct
*work
)
222 struct whc
*whc
= container_of(work
, struct whc
, periodic_work
);
223 struct whc_qset
*qset
, *t
;
224 enum whc_update update
= 0;
227 spin_lock_irq(&whc
->lock
);
229 for (period
= 4; period
>= 0; period
--) {
230 list_for_each_entry_safe(qset
, t
, &whc
->periodic_list
[period
], list_node
) {
231 if (!qset
->in_hw_list
)
232 update
|= WHC_UPDATE_ADDED
;
233 update
|= pzl_process_qset(whc
, qset
);
237 if (update
& (WHC_UPDATE_ADDED
| WHC_UPDATE_REMOVED
))
238 update_pzl_hw_view(whc
);
240 spin_unlock_irq(&whc
->lock
);
243 uint32_t wusbcmd
= WUSBCMD_PERIODIC_UPDATED
| WUSBCMD_PERIODIC_SYNCED_DB
;
244 if (update
& WHC_UPDATE_REMOVED
)
245 wusbcmd
|= WUSBCMD_PERIODIC_QSET_RM
;
246 pzl_update(whc
, wusbcmd
);
250 * Now that the PZL is updated, complete the removal of any
253 * If the qset was to be reset, do so and reinsert it into the
254 * PZL if it has pending transfers.
256 spin_lock_irq(&whc
->lock
);
258 list_for_each_entry_safe(qset
, t
, &whc
->periodic_removed_list
, list_node
) {
259 qset_remove_complete(whc
, qset
);
261 qset_reset(whc
, qset
);
262 if (!list_empty(&qset
->stds
)) {
263 qset_insert_in_sw_list(whc
, qset
);
264 queue_work(whc
->workqueue
, &whc
->periodic_work
);
269 spin_unlock_irq(&whc
->lock
);
273 * pzl_urb_enqueue - queue an URB onto the periodic list (PZL)
274 * @whc: the WHCI host controller
275 * @urb: the URB to enqueue
276 * @mem_flags: flags for any memory allocations
278 * The qset for the endpoint is obtained and the urb queued on to it.
280 * Work is scheduled to update the hardware's view of the PZL.
282 int pzl_urb_enqueue(struct whc
*whc
, struct urb
*urb
, gfp_t mem_flags
)
284 struct whc_qset
*qset
;
288 spin_lock_irqsave(&whc
->lock
, flags
);
290 err
= usb_hcd_link_urb_to_ep(&whc
->wusbhc
.usb_hcd
, urb
);
292 spin_unlock_irqrestore(&whc
->lock
, flags
);
296 qset
= get_qset(whc
, urb
, GFP_ATOMIC
);
300 err
= qset_add_urb(whc
, qset
, urb
, GFP_ATOMIC
);
302 if (!qset
->in_sw_list
&& !qset
->remove
)
303 qset_insert_in_sw_list(whc
, qset
);
305 usb_hcd_unlink_urb_from_ep(&whc
->wusbhc
.usb_hcd
, urb
);
307 spin_unlock_irqrestore(&whc
->lock
, flags
);
310 queue_work(whc
->workqueue
, &whc
->periodic_work
);
316 * pzl_urb_dequeue - remove an URB (qset) from the periodic list
317 * @whc: the WHCI host controller
318 * @urb: the URB to dequeue
319 * @status: the current status of the URB
321 * URBs that do yet have qTDs can simply be removed from the software
322 * queue, otherwise the qset must be removed so the qTDs can be safely
325 int pzl_urb_dequeue(struct whc
*whc
, struct urb
*urb
, int status
)
327 struct whc_urb
*wurb
= urb
->hcpriv
;
328 struct whc_qset
*qset
= wurb
->qset
;
329 struct whc_std
*std
, *t
;
330 bool has_qtd
= false;
334 spin_lock_irqsave(&whc
->lock
, flags
);
336 ret
= usb_hcd_check_unlink_urb(&whc
->wusbhc
.usb_hcd
, urb
, status
);
340 list_for_each_entry_safe(std
, t
, &qset
->stds
, list_node
) {
341 if (std
->urb
== urb
) {
344 qset_free_std(whc
, std
);
346 std
->qtd
= NULL
; /* so this std is re-added when the qset is */
350 pzl_qset_remove(whc
, qset
);
351 update_pzl_hw_view(whc
);
352 wurb
->status
= status
;
353 wurb
->is_async
= false;
354 queue_work(whc
->workqueue
, &wurb
->dequeue_work
);
356 qset_remove_urb(whc
, qset
, urb
, status
);
358 spin_unlock_irqrestore(&whc
->lock
, flags
);
364 * pzl_qset_delete - delete a qset from the PZL
366 void pzl_qset_delete(struct whc
*whc
, struct whc_qset
*qset
)
369 queue_work(whc
->workqueue
, &whc
->periodic_work
);
370 qset_delete(whc
, qset
);
374 * pzl_init - initialize the periodic zone list
375 * @whc: the WHCI host controller
377 int pzl_init(struct whc
*whc
)
381 whc
->pz_list
= dma_alloc_coherent(&whc
->umc
->dev
, sizeof(u64
) * 16,
382 &whc
->pz_list_dma
, GFP_KERNEL
);
383 if (whc
->pz_list
== NULL
)
386 /* Set T bit on all elements in PZL. */
387 for (i
= 0; i
< 16; i
++)
388 whc
->pz_list
[i
] = cpu_to_le64(QH_LINK_NTDS(8) | QH_LINK_T
);
390 le_writeq(whc
->pz_list_dma
, whc
->base
+ WUSBPERIODICLISTBASE
);
396 * pzl_clean_up - free PZL resources
397 * @whc: the WHCI host controller
399 * The PZL is stopped and empty.
401 void pzl_clean_up(struct whc
*whc
)
404 dma_free_coherent(&whc
->umc
->dev
, sizeof(u64
) * 16, whc
->pz_list
,