From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 13/17] ehci: implement port wakeup
Date: Fri, 29 Nov 2013 09:06:17 +0100 [thread overview]
Message-ID: <1385712381-30918-14-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1385712381-30918-1-git-send-email-kraxel@redhat.com>
Update portsc register and raise irq in case a suspended
port is woken up, so remote wakeup works on our ehci ports.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/usb/hcd-ehci.c | 18 ++++++++++++++++--
trace-events | 3 +++
2 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c
index 22bdbf4..8765f8f 100644
--- a/hw/usb/hcd-ehci.c
+++ b/hw/usb/hcd-ehci.c
@@ -826,9 +826,9 @@ static void ehci_child_detach(USBPort *port, USBDevice *child)
static void ehci_wakeup(USBPort *port)
{
EHCIState *s = port->opaque;
- uint32_t portsc = s->portsc[port->index];
+ uint32_t *portsc = &s->portsc[port->index];
- if (portsc & PORTSC_POWNER) {
+ if (*portsc & PORTSC_POWNER) {
USBPort *companion = s->companion_ports[port->index];
if (companion->ops->wakeup) {
companion->ops->wakeup(companion);
@@ -836,6 +836,12 @@ static void ehci_wakeup(USBPort *port)
return;
}
+ if (*portsc & PORTSC_SUSPEND) {
+ trace_usb_ehci_port_wakeup(port->index);
+ *portsc |= PORTSC_FPRES;
+ ehci_raise_irq(s, USBSTS_PCD);
+ }
+
qemu_bh_schedule(s->async_bh);
}
@@ -1067,6 +1073,14 @@ static void ehci_port_write(void *ptr, hwaddr addr,
}
}
+ if ((val & PORTSC_SUSPEND) && !(*portsc & PORTSC_SUSPEND)) {
+ trace_usb_ehci_port_suspend(port);
+ }
+ if (!(val & PORTSC_FPRES) && (*portsc & PORTSC_FPRES)) {
+ trace_usb_ehci_port_resume(port);
+ val &= ~PORTSC_SUSPEND;
+ }
+
*portsc &= ~PORTSC_RO_MASK;
*portsc |= val;
trace_usb_ehci_portsc_change(addr + s->portscbase, addr >> 2, *portsc, old);
diff --git a/trace-events b/trace-events
index 8695e9e..7322ed8 100644
--- a/trace-events
+++ b/trace-events
@@ -309,6 +309,9 @@ usb_ehci_sitd(uint32_t addr, uint32_t nxt, uint32_t active) "ITD @ %08x: next %0
usb_ehci_port_attach(uint32_t port, const char *owner, const char *device) "attach port #%d, owner %s, device %s"
usb_ehci_port_detach(uint32_t port, const char *owner) "detach port #%d, owner %s"
usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d"
+usb_ehci_port_suspend(uint32_t port) "port #%d"
+usb_ehci_port_wakeup(uint32_t port) "port #%d"
+usb_ehci_port_resume(uint32_t port) "port #%d"
usb_ehci_queue_action(void *q, const char *action) "q %p: %s"
usb_ehci_packet_action(void *q, void *p, const char *action) "q %p p %p: %s"
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"
--
1.8.3.1
next prev parent reply other threads:[~2013-11-29 8:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-29 8:06 [Qemu-devel] [PULL 00/17] usb patch queue Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 01/17] xhci: Add a few missing checks for disconnected devices Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 02/17] xhci: add support for suspend/resume Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 03/17] scsi: Add 2 new sense codes needed by uas Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 04/17] uas: Only use report iu-s for task_mgmt status reporting Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 05/17] uas: Fix / cleanup usb_uas_task error handling Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 06/17] uas: Streams are numbered 1-y, rather then 0-x Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 07/17] uas: Bounds check tags when using streams Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 08/17] uas: Fix response iu struct definition Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 09/17] uas: s/ui/iu/ Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 10/17] usb: Add max_streams attribute to endpoint info Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 11/17] usb: Add usb_device_alloc/free_streams Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 12/17] xhci: Call usb_device_alloc/free_streams Gerd Hoffmann
2013-11-29 8:06 ` Gerd Hoffmann [this message]
2013-11-29 8:06 ` [Qemu-devel] [PATCH 14/17] Revert "usb-tablet: Don't claim wakeup capability for USB-2 version" Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 15/17] trace-events: Clean up after removal of old usb-host code Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 16/17] usb: add vendor request defines Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 17/17] usb: move usb_{hi, lo} helpers to header file Gerd Hoffmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1385712381-30918-14-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).