mvadkert / rpms / qemu

Forked from rpms/qemu 6 years ago
Clone
1b1995d
From 2a6bbdddc2aca6af038c42054c3d3a7b09e5ac3a Mon Sep 17 00:00:00 2001
1b1995d
From: Hans de Goede <hdegoede@redhat.com>
1b1995d
Date: Fri, 2 Mar 2012 00:26:23 +0100
1b1995d
Subject: [PATCH 138/140] usb: add USB_RET_IOERROR
1b1995d
1b1995d
We already have USB_RET_NAK, but that means that a device does not want
1b1995d
to send/receive right now. But with host / network redirection we can
1b1995d
actually have a transaction fail due to some io error, rather then ie
1b1995d
the device just not having any data atm.
1b1995d
1b1995d
This patch adds a new error code named USB_RET_IOERROR for this, and uses
1b1995d
it were appropriate.
1b1995d
1b1995d
Notes:
1b1995d
-Currently all usb-controllers handle this the same as NODEV, but that
1b1995d
 may change in the future, OHCI could indicate a CRC error instead for example.
1b1995d
-This patch does not touch hw/usb-musb.c, that is because the code in there
1b1995d
 handles STALL and NAK specially and has a if status < 0 generic catch all
1b1995d
 for all other errors
1b1995d
1b1995d
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
1b1995d
---
1b1995d
 hw/usb-ehci.c |    2 ++
1b1995d
 hw/usb-ohci.c |    2 ++
1b1995d
 hw/usb-uhci.c |    1 +
1b1995d
 hw/usb.h      |   11 ++++++-----
1b1995d
 usb-linux.c   |    4 ++--
1b1995d
 usb-redir.c   |    9 ++++++---
1b1995d
 6 files changed, 19 insertions(+), 10 deletions(-)
1b1995d
1b1995d
diff --git a/hw/usb-ehci.c b/hw/usb-ehci.c
1b1995d
index 72c3f2a..ba1b9da 100644
1b1995d
--- a/hw/usb-ehci.c
1b1995d
+++ b/hw/usb-ehci.c
1b1995d
@@ -1275,6 +1275,7 @@ static void ehci_execute_complete(EHCIQueue *q)
1b1995d
 
1b1995d
     if (q->usb_status < 0) {
1b1995d
         switch(q->usb_status) {
1b1995d
+        case USB_RET_IOERROR:
1b1995d
         case USB_RET_NODEV:
1b1995d
             q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR);
1b1995d
             set_field(&q->qh.token, 0, QTD_TOKEN_CERR);
1b1995d
@@ -1471,6 +1472,7 @@ static int ehci_process_itd(EHCIState *ehci,
1b1995d
                 default:
1b1995d
                     fprintf(stderr, "Unexpected iso usb result: %d\n", ret);
1b1995d
                     /* Fall through */
1b1995d
+                case USB_RET_IOERROR:
1b1995d
                 case USB_RET_NODEV:
1b1995d
                     /* 3.3.2: XACTERR is only allowed on IN transactions */
1b1995d
                     if (dir) {
1b1995d
diff --git a/hw/usb-ohci.c b/hw/usb-ohci.c
1b1995d
index c2981c5..d805497 100644
1b1995d
--- a/hw/usb-ohci.c
1b1995d
+++ b/hw/usb-ohci.c
1b1995d
@@ -828,6 +828,7 @@ static int ohci_service_iso_td(OHCIState *ohci, struct ohci_ed *ed,
1b1995d
                         OHCI_CC_DATAUNDERRUN);
1b1995d
         } else {
1b1995d
             switch (ret) {
1b1995d
+            case USB_RET_IOERROR:
1b1995d
             case USB_RET_NODEV:
1b1995d
                 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
1b1995d
                             OHCI_CC_DEVICENOTRESPONDING);
1b1995d
@@ -1051,6 +1052,7 @@ static int ohci_service_td(OHCIState *ohci, struct ohci_ed *ed)
1b1995d
             OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DATAUNDERRUN);
1b1995d
         } else {
1b1995d
             switch (ret) {
1b1995d
+            case USB_RET_IOERROR:
1b1995d
             case USB_RET_NODEV:
1b1995d
                 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DEVICENOTRESPONDING);
1b1995d
             case USB_RET_NAK:
1b1995d
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c
1b1995d
index f9e3ea5..a994943 100644
1b1995d
--- a/hw/usb-uhci.c
1b1995d
+++ b/hw/usb-uhci.c
1b1995d
@@ -751,6 +751,7 @@ out:
1b1995d
             break;
1b1995d
 	return 1;
1b1995d
 
1b1995d
+    case USB_RET_IOERROR:
1b1995d
     case USB_RET_NODEV:
1b1995d
     default:
1b1995d
 	break;
1b1995d
diff --git a/hw/usb.h b/hw/usb.h
1b1995d
index c6e1870..4010e12 100644
1b1995d
--- a/hw/usb.h
1b1995d
+++ b/hw/usb.h
1b1995d
@@ -41,11 +41,12 @@
1b1995d
 #define USB_MSG_DETACH   0x101
1b1995d
 #define USB_MSG_RESET    0x102
1b1995d
 
1b1995d
-#define USB_RET_NODEV  (-1)
1b1995d
-#define USB_RET_NAK    (-2)
1b1995d
-#define USB_RET_STALL  (-3)
1b1995d
-#define USB_RET_BABBLE (-4)
1b1995d
-#define USB_RET_ASYNC  (-5)
1b1995d
+#define USB_RET_NODEV   (-1)
1b1995d
+#define USB_RET_NAK     (-2)
1b1995d
+#define USB_RET_STALL   (-3)
1b1995d
+#define USB_RET_BABBLE  (-4)
1b1995d
+#define USB_RET_IOERROR (-5)
1b1995d
+#define USB_RET_ASYNC   (-6)
1b1995d
 
1b1995d
 #define USB_SPEED_LOW   0
1b1995d
 #define USB_SPEED_FULL  1
1b1995d
diff --git a/usb-linux.c b/usb-linux.c
1b1995d
index b2d70f9..9f13d1e 100644
1b1995d
--- a/usb-linux.c
1b1995d
+++ b/usb-linux.c
1b1995d
@@ -395,7 +395,7 @@ static void async_complete(void *opaque)
1b1995d
                 break;
1b1995d
 
1b1995d
             default:
1b1995d
-                p->result = USB_RET_NAK;
1b1995d
+                p->result = USB_RET_IOERROR;
1b1995d
                 break;
1b1995d
             }
1b1995d
 
1b1995d
@@ -725,7 +725,7 @@ static int urb_status_to_usb_ret(int status)
1b1995d
     case -EOVERFLOW:
1b1995d
         return USB_RET_BABBLE;
1b1995d
     default:
1b1995d
-        return USB_RET_NAK;
1b1995d
+        return USB_RET_IOERROR;
1b1995d
     }
1b1995d
 }
1b1995d
 
1b1995d
diff --git a/usb-redir.c b/usb-redir.c
1b1995d
index 61860ef..f64443e 100644
1b1995d
--- a/usb-redir.c
1b1995d
+++ b/usb-redir.c
1b1995d
@@ -441,7 +441,7 @@ static int usbredir_handle_iso_data(USBRedirDevice *dev, USBPacket *p,
1b1995d
             /* Check iso_error for stream errors, otherwise its an underrun */
1b1995d
             status = dev->endpoint[EP2I(ep)].iso_error;
1b1995d
             dev->endpoint[EP2I(ep)].iso_error = 0;
1b1995d
-            return status ? USB_RET_NAK : 0;
1b1995d
+            return status ? USB_RET_IOERROR : 0;
1b1995d
         }
1b1995d
         DPRINTF2("iso-token-in ep %02X status %d len %d queue-size: %d\n", ep,
1b1995d
                  isop->status, isop->len, dev->endpoint[EP2I(ep)].bufpq_size);
1b1995d
@@ -449,7 +449,7 @@ static int usbredir_handle_iso_data(USBRedirDevice *dev, USBPacket *p,
1b1995d
         status = isop->status;
1b1995d
         if (status != usb_redir_success) {
1b1995d
             bufp_free(dev, isop, ep);
1b1995d
-            return USB_RET_NAK;
1b1995d
+            return USB_RET_IOERROR;
1b1995d
         }
1b1995d
 
1b1995d
         len = isop->len;
1b1995d
@@ -1045,11 +1045,14 @@ static int usbredir_handle_status(USBRedirDevice *dev,
1b1995d
         return USB_RET_STALL;
1b1995d
     case usb_redir_cancelled:
1b1995d
         WARNING("returning cancelled packet to HC?\n");
1b1995d
+        return USB_RET_NAK;
1b1995d
     case usb_redir_inval:
1b1995d
+        WARNING("got invalid param error from usb-host?\n");
1b1995d
+        return USB_RET_NAK;
1b1995d
     case usb_redir_ioerror:
1b1995d
     case usb_redir_timeout:
1b1995d
     default:
1b1995d
-        return USB_RET_NAK;
1b1995d
+        return USB_RET_IOERROR;
1b1995d
     }
1b1995d
 }
1b1995d
 
1b1995d
-- 
1b1995d
1.7.9.3
1b1995d