cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
9ae3a8
From 356cd0ad58931df9374324eeceff760a6310db27 Mon Sep 17 00:00:00 2001
9ae3a8
From: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Date: Fri, 11 Jul 2014 14:20:50 +0200
9ae3a8
Subject: [PATCH 16/43] usb-hcd-xhci: Report completion of active transfer with
9ae3a8
 CC_STOPPED on ep stop
9ae3a8
9ae3a8
Message-id: <1405088470-24115-18-git-send-email-kraxel@redhat.com>
9ae3a8
Patchwork-id: 59832
9ae3a8
O-Subject: [RHEL-7.1 qemu-kvm PATCH 17/37] usb-hcd-xhci: Report completion of active transfer with CC_STOPPED on ep stop
9ae3a8
Bugzilla: 980747
9ae3a8
RH-Acked-by: Dr. David Alan Gilbert (git) <dgilbert@redhat.com>
9ae3a8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
9ae3a8
9ae3a8
From: Hans de Goede <hdegoede@redhat.com>
9ae3a8
9ae3a8
As we should per the XHCI spec "4.6.9 Stop Endpoint".
9ae3a8
9ae3a8
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
9ae3a8
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
(cherry picked from commit 582d6f4aba0ff24604a82b48aee2db17b100d4b4)
9ae3a8
---
9ae3a8
 hw/usb/hcd-xhci.c | 26 ++++++++++++++++++--------
9ae3a8
 1 file changed, 18 insertions(+), 8 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 hw/usb/hcd-xhci.c | 26 ++++++++++++++++++--------
9ae3a8
 1 file changed, 18 insertions(+), 8 deletions(-)
9ae3a8
9ae3a8
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
9ae3a8
index 3b4cd01..fc3b330 100644
9ae3a8
--- a/hw/usb/hcd-xhci.c
9ae3a8
+++ b/hw/usb/hcd-xhci.c
9ae3a8
@@ -507,6 +507,7 @@ static void xhci_kick_ep(XHCIState *xhci, unsigned int slotid,
9ae3a8
                          unsigned int epid, unsigned int streamid);
9ae3a8
 static TRBCCode xhci_disable_ep(XHCIState *xhci, unsigned int slotid,
9ae3a8
                                 unsigned int epid);
9ae3a8
+static void xhci_xfer_report(XHCITransfer *xfer);
9ae3a8
 static void xhci_event(XHCIState *xhci, XHCIEvent *event, int v);
9ae3a8
 static void xhci_write_event(XHCIState *xhci, XHCIEvent *event, int v);
9ae3a8
 static USBEndpoint *xhci_epid_to_usbep(XHCIState *xhci,
9ae3a8
@@ -1304,10 +1305,15 @@ static TRBCCode xhci_enable_ep(XHCIState *xhci, unsigned int slotid,
9ae3a8
     return CC_SUCCESS;
9ae3a8
 }
9ae3a8
 
9ae3a8
-static int xhci_ep_nuke_one_xfer(XHCITransfer *t)
9ae3a8
+static int xhci_ep_nuke_one_xfer(XHCITransfer *t, TRBCCode report)
9ae3a8
 {
9ae3a8
     int killed = 0;
9ae3a8
 
9ae3a8
+    if (report && (t->running_async || t->running_retry)) {
9ae3a8
+        t->status = report;
9ae3a8
+        xhci_xfer_report(t);
9ae3a8
+    }
9ae3a8
+
9ae3a8
     if (t->running_async) {
9ae3a8
         usb_cancel_packet(&t->packet);
9ae3a8
         t->running_async = 0;
9ae3a8
@@ -1320,6 +1326,7 @@ static int xhci_ep_nuke_one_xfer(XHCITransfer *t)
9ae3a8
             qemu_del_timer(epctx->kick_timer);
9ae3a8
         }
9ae3a8
         t->running_retry = 0;
9ae3a8
+        killed = 1;
9ae3a8
     }
9ae3a8
     if (t->trbs) {
9ae3a8
         g_free(t->trbs);
9ae3a8
@@ -1332,7 +1339,7 @@ static int xhci_ep_nuke_one_xfer(XHCITransfer *t)
9ae3a8
 }
9ae3a8
 
9ae3a8
 static int xhci_ep_nuke_xfers(XHCIState *xhci, unsigned int slotid,
9ae3a8
-                               unsigned int epid)
9ae3a8
+                               unsigned int epid, TRBCCode report)
9ae3a8
 {
9ae3a8
     XHCISlot *slot;
9ae3a8
     XHCIEPContext *epctx;
9ae3a8
@@ -1353,7 +1360,10 @@ static int xhci_ep_nuke_xfers(XHCIState *xhci, unsigned int slotid,
9ae3a8
 
9ae3a8
     xferi = epctx->next_xfer;
9ae3a8
     for (i = 0; i < TD_QUEUE; i++) {
9ae3a8
-        killed += xhci_ep_nuke_one_xfer(&epctx->transfers[xferi]);
9ae3a8
+        killed += xhci_ep_nuke_one_xfer(&epctx->transfers[xferi], report);
9ae3a8
+        if (killed) {
9ae3a8
+            report = 0; /* Only report once */
9ae3a8
+        }
9ae3a8
         epctx->transfers[xferi].packet.ep = NULL;
9ae3a8
         xferi = (xferi + 1) % TD_QUEUE;
9ae3a8
     }
9ae3a8
@@ -1383,7 +1393,7 @@ static TRBCCode xhci_disable_ep(XHCIState *xhci, unsigned int slotid,
9ae3a8
         return CC_SUCCESS;
9ae3a8
     }
9ae3a8
 
9ae3a8
-    xhci_ep_nuke_xfers(xhci, slotid, epid);
9ae3a8
+    xhci_ep_nuke_xfers(xhci, slotid, epid, 0);
9ae3a8
 
9ae3a8
     epctx = slot->eps[epid-1];
9ae3a8
 
9ae3a8
@@ -1425,7 +1435,7 @@ static TRBCCode xhci_stop_ep(XHCIState *xhci, unsigned int slotid,
9ae3a8
         return CC_EP_NOT_ENABLED_ERROR;
9ae3a8
     }
9ae3a8
 
9ae3a8
-    if (xhci_ep_nuke_xfers(xhci, slotid, epid) > 0) {
9ae3a8
+    if (xhci_ep_nuke_xfers(xhci, slotid, epid, CC_STOPPED) > 0) {
9ae3a8
         fprintf(stderr, "xhci: FIXME: endpoint stopped w/ xfers running, "
9ae3a8
                 "data might be lost\n");
9ae3a8
     }
9ae3a8
@@ -1470,7 +1480,7 @@ static TRBCCode xhci_reset_ep(XHCIState *xhci, unsigned int slotid,
9ae3a8
         return CC_CONTEXT_STATE_ERROR;
9ae3a8
     }
9ae3a8
 
9ae3a8
-    if (xhci_ep_nuke_xfers(xhci, slotid, epid) > 0) {
9ae3a8
+    if (xhci_ep_nuke_xfers(xhci, slotid, epid, 0) > 0) {
9ae3a8
         fprintf(stderr, "xhci: FIXME: endpoint reset w/ xfers running, "
9ae3a8
                 "data might be lost\n");
9ae3a8
     }
9ae3a8
@@ -2463,7 +2473,7 @@ static void xhci_detach_slot(XHCIState *xhci, USBPort *uport)
9ae3a8
 
9ae3a8
     for (ep = 0; ep < 31; ep++) {
9ae3a8
         if (xhci->slots[slot].eps[ep]) {
9ae3a8
-            xhci_ep_nuke_xfers(xhci, slot+1, ep+1);
9ae3a8
+            xhci_ep_nuke_xfers(xhci, slot + 1, ep + 1, 0);
9ae3a8
         }
9ae3a8
     }
9ae3a8
     xhci->slots[slot].uport = NULL;
9ae3a8
@@ -3286,7 +3296,7 @@ static void xhci_complete(USBPort *port, USBPacket *packet)
9ae3a8
     XHCITransfer *xfer = container_of(packet, XHCITransfer, packet);
9ae3a8
 
9ae3a8
     if (packet->status == USB_RET_REMOVE_FROM_QUEUE) {
9ae3a8
-        xhci_ep_nuke_one_xfer(xfer);
9ae3a8
+        xhci_ep_nuke_one_xfer(xfer, 0);
9ae3a8
         return;
9ae3a8
     }
9ae3a8
     xhci_complete_packet(xfer);
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8