summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/controller/xhci.c
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2013-12-19 07:13:59 +0000
committerhselasky <hselasky@FreeBSD.org>2013-12-19 07:13:59 +0000
commitbb0a5fd29c17e4f80c932a88a0a36ec91bb0a1a9 (patch)
treea99cb3a88d3ab55200c6a0d15bd4fa1cde68f170 /sys/dev/usb/controller/xhci.c
parentfec40af99015be45b1e94def23b2fd2bdff11691 (diff)
downloadFreeBSD-src-bb0a5fd29c17e4f80c932a88a0a36ec91bb0a1a9.zip
FreeBSD-src-bb0a5fd29c17e4f80c932a88a0a36ec91bb0a1a9.tar.gz
MFC r259023 and r259095:
Improve the XHCI command timeout recovery handling code. Fix some typos while at it.
Diffstat (limited to 'sys/dev/usb/controller/xhci.c')
-rw-r--r--sys/dev/usb/controller/xhci.c97
1 files changed, 79 insertions, 18 deletions
diff --git a/sys/dev/usb/controller/xhci.c b/sys/dev/usb/controller/xhci.c
index 5892825..57afed8 100644
--- a/sys/dev/usb/controller/xhci.c
+++ b/sys/dev/usb/controller/xhci.c
@@ -278,6 +278,69 @@ xhci_ctx_get_le64(struct xhci_softc *sc, volatile uint64_t *ptr)
}
#endif
+static int
+xhci_reset_command_queue_locked(struct xhci_softc *sc)
+{
+ struct usb_page_search buf_res;
+ struct xhci_hw_root *phwr;
+ uint64_t addr;
+ uint32_t temp;
+
+ DPRINTF("\n");
+
+ temp = XREAD4(sc, oper, XHCI_CRCR_LO);
+ if (temp & XHCI_CRCR_LO_CRR) {
+ DPRINTF("Command ring running\n");
+ temp &= ~(XHCI_CRCR_LO_CS | XHCI_CRCR_LO_CA);
+
+ /*
+ * Try to abort the last command as per section
+ * 4.6.1.2 "Aborting a Command" of the XHCI
+ * specification:
+ */
+
+ /* stop and cancel */
+ XWRITE4(sc, oper, XHCI_CRCR_LO, temp | XHCI_CRCR_LO_CS);
+ XWRITE4(sc, oper, XHCI_CRCR_HI, 0);
+
+ XWRITE4(sc, oper, XHCI_CRCR_LO, temp | XHCI_CRCR_LO_CA);
+ XWRITE4(sc, oper, XHCI_CRCR_HI, 0);
+
+ /* wait 250ms */
+ usb_pause_mtx(&sc->sc_bus.bus_mtx, hz / 4);
+
+ /* check if command ring is still running */
+ temp = XREAD4(sc, oper, XHCI_CRCR_LO);
+ if (temp & XHCI_CRCR_LO_CRR) {
+ DPRINTF("Comand ring still running\n");
+ return (USB_ERR_IOERROR);
+ }
+ }
+
+ /* reset command ring */
+ sc->sc_command_ccs = 1;
+ sc->sc_command_idx = 0;
+
+ usbd_get_page(&sc->sc_hw.root_pc, 0, &buf_res);
+
+ /* setup command ring control base address */
+ addr = buf_res.physaddr;
+ phwr = buf_res.buffer;
+ addr += (uintptr_t)&((struct xhci_hw_root *)0)->hwr_commands[0];
+
+ DPRINTF("CRCR=0x%016llx\n", (unsigned long long)addr);
+
+ memset(phwr->hwr_commands, 0, sizeof(phwr->hwr_commands));
+ phwr->hwr_commands[XHCI_MAX_COMMANDS - 1].qwTrb0 = htole64(addr);
+
+ usb_pc_cpu_flush(&sc->sc_hw.root_pc);
+
+ XWRITE4(sc, oper, XHCI_CRCR_LO, ((uint32_t)addr) | XHCI_CRCR_LO_RCS);
+ XWRITE4(sc, oper, XHCI_CRCR_HI, (uint32_t)(addr >> 32));
+
+ return (0);
+}
+
usb_error_t
xhci_start_controller(struct xhci_softc *sc)
{
@@ -1059,6 +1122,7 @@ xhci_do_command(struct xhci_softc *sc, struct xhci_trb *trb,
uint32_t temp;
uint8_t i;
uint8_t j;
+ uint8_t timeout = 0;
int err;
XHCI_CMD_ASSERT_LOCKED(sc);
@@ -1072,7 +1136,7 @@ xhci_do_command(struct xhci_softc *sc, struct xhci_trb *trb,
/* Queue command */
USB_BUS_LOCK(&sc->sc_bus);
-
+retry:
i = sc->sc_command_idx;
j = sc->sc_command_ccs;
@@ -1143,25 +1207,22 @@ xhci_do_command(struct xhci_softc *sc, struct xhci_trb *trb,
err = 0;
}
if (err != 0) {
- DPRINTFN(0, "Command timeout!\n");
-
+ DPRINTF("Command timeout!\n");
/*
- * Try to abort the last command as per section
- * 4.6.1.2 "Aborting a Command" of the XHCI
- * specification:
+ * After some weeks of continuous operation, it has
+ * been observed that the ASMedia Technology, ASM1042
+ * SuperSpeed USB Host Controller can suddenly stop
+ * accepting commands via the command queue. Try to
+ * first reset the command queue. If that fails do a
+ * host controller reset.
*/
- temp = XREAD4(sc, oper, XHCI_CRCR_LO);
- XWRITE4(sc, oper, XHCI_CRCR_LO, temp | XHCI_CRCR_LO_CA);
-
- /* wait for abort event, if any */
- err = cv_timedwait(&sc->sc_cmd_cv, &sc->sc_bus.bus_mtx, hz / 16);
-
- if (err != 0 && xhci_interrupt_poll(sc) != 0) {
- DPRINTF("Command was completed when polling\n");
- err = 0;
- }
- if (err != 0) {
- DPRINTF("Command abort timeout!\n");
+ if (timeout == 0 &&
+ xhci_reset_command_queue_locked(sc) == 0) {
+ timeout = 1;
+ goto retry;
+ } else {
+ DPRINTF("Controller reset!\n");
+ usb_bus_reset_async_locked(&sc->sc_bus);
}
err = USB_ERR_TIMEOUT;
trb->dwTrb2 = 0;
OpenPOWER on IntegriCloud