9ae3a8
From e29585889b3c33b370bf09c58cb4a0f4b3fae482 Mon Sep 17 00:00:00 2001
9ae3a8
From: Marcel Apfelbaum <marcel.a@redhat.com>
9ae3a8
Date: Wed, 18 Dec 2013 20:05:26 +0100
9ae3a8
Subject: [PATCH 10/16] ehci: implement port wakeup
9ae3a8
9ae3a8
RH-Author: Marcel Apfelbaum <marcel.a@redhat.com>
9ae3a8
Message-id: <1387397126-27754-1-git-send-email-marcel.a@redhat.com>
9ae3a8
Patchwork-id: 56377
9ae3a8
O-Subject: [RHEL-7 qemu-kvm PATCH v2] ehci: implement port wakeup
9ae3a8
Bugzilla: 1039513
9ae3a8
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
9ae3a8
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
9ae3a8
From: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
9ae3a8
Update portsc register and raise irq in case a suspended
9ae3a8
port is woken up, so remote wakeup works on our ehci ports.
9ae3a8
9ae3a8
bugzilla: #1039513 ASSIGNED   - Gerd Hoffmann - backport remote wakeup for ehci
9ae3a8
brew: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=6755209
9ae3a8
9ae3a8
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
9ae3a8
(cherry picked from commit e489df40caa96d895d9672d77f536f23c9e42f94)
9ae3a8
9ae3a8
Conflicts:
9ae3a8
	trace-events
9ae3a8
---
9ae3a8
 v1->v2:
9ae3a8
 Rebased the patch. Minor conflicts.
9ae3a8
9ae3a8
 hw/usb/hcd-ehci.c | 18 ++++++++++++++++--
9ae3a8
 trace-events      |  3 +++
9ae3a8
 2 files changed, 19 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 hw/usb/hcd-ehci.c |   18 ++++++++++++++++--
9ae3a8
 trace-events      |    3 +++
9ae3a8
 2 files changed, 19 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c
9ae3a8
index 0d3799d..02d2ab7 100644
9ae3a8
--- a/hw/usb/hcd-ehci.c
9ae3a8
+++ b/hw/usb/hcd-ehci.c
9ae3a8
@@ -826,9 +826,9 @@ static void ehci_child_detach(USBPort *port, USBDevice *child)
9ae3a8
 static void ehci_wakeup(USBPort *port)
9ae3a8
 {
9ae3a8
     EHCIState *s = port->opaque;
9ae3a8
-    uint32_t portsc = s->portsc[port->index];
9ae3a8
+    uint32_t *portsc = &s->portsc[port->index];
9ae3a8
 
9ae3a8
-    if (portsc & PORTSC_POWNER) {
9ae3a8
+    if (*portsc & PORTSC_POWNER) {
9ae3a8
         USBPort *companion = s->companion_ports[port->index];
9ae3a8
         if (companion->ops->wakeup) {
9ae3a8
             companion->ops->wakeup(companion);
9ae3a8
@@ -836,6 +836,12 @@ static void ehci_wakeup(USBPort *port)
9ae3a8
         return;
9ae3a8
     }
9ae3a8
 
9ae3a8
+    if (*portsc & PORTSC_SUSPEND) {
9ae3a8
+        trace_usb_ehci_port_wakeup(port->index);
9ae3a8
+        *portsc |= PORTSC_FPRES;
9ae3a8
+        ehci_raise_irq(s, USBSTS_PCD);
9ae3a8
+    }
9ae3a8
+
9ae3a8
     qemu_bh_schedule(s->async_bh);
9ae3a8
 }
9ae3a8
 
9ae3a8
@@ -1067,6 +1073,14 @@ static void ehci_port_write(void *ptr, hwaddr addr,
9ae3a8
         }
9ae3a8
     }
9ae3a8
 
9ae3a8
+    if ((val & PORTSC_SUSPEND) && !(*portsc & PORTSC_SUSPEND)) {
9ae3a8
+        trace_usb_ehci_port_suspend(port);
9ae3a8
+    }
9ae3a8
+    if (!(val & PORTSC_FPRES) && (*portsc & PORTSC_FPRES)) {
9ae3a8
+        trace_usb_ehci_port_resume(port);
9ae3a8
+        val &= ~PORTSC_SUSPEND;
9ae3a8
+    }
9ae3a8
+
9ae3a8
     *portsc &= ~PORTSC_RO_MASK;
9ae3a8
     *portsc |= val;
9ae3a8
     trace_usb_ehci_portsc_change(addr + PORTSC_BEGIN, addr >> 2, *portsc, old);
9ae3a8
diff --git a/trace-events b/trace-events
9ae3a8
index e9ee94f..dbbd25d 100644
9ae3a8
--- a/trace-events
9ae3a8
+++ b/trace-events
9ae3a8
@@ -303,6 +303,9 @@ usb_ehci_sitd(uint32_t addr, uint32_t nxt, uint32_t active) "ITD @ %08x: next %0
9ae3a8
 usb_ehci_port_attach(uint32_t port, const char *owner, const char *device) "attach port #%d, owner %s, device %s"
9ae3a8
 usb_ehci_port_detach(uint32_t port, const char *owner) "detach port #%d, owner %s"
9ae3a8
 usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d"
9ae3a8
+usb_ehci_port_suspend(uint32_t port) "port #%d"
9ae3a8
+usb_ehci_port_wakeup(uint32_t port) "port #%d"
9ae3a8
+usb_ehci_port_resume(uint32_t port) "port #%d"
9ae3a8
 usb_ehci_queue_action(void *q, const char *action) "q %p: %s"
9ae3a8
 usb_ehci_packet_action(void *q, void *p, const char *action) "q %p p %p: %s"
9ae3a8
 usb_ehci_irq(uint32_t level, uint32_t frindex, uint32_t sts, uint32_t mask) "level %d, frindex 0x%04x, sts 0x%x, mask 0x%x"
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8