qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] ehci: fix Interrupt Threshold Control implementation
@ 2012-08-15 12:00 Gerd Hoffmann
  2012-08-15 12:57 ` Hans de Goede
  0 siblings, 1 reply; 2+ messages in thread
From: Gerd Hoffmann @ 2012-08-15 12:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: hdegoede, Hans

First, not all interrupts are subject to Interrupt Threshold Control,
some of them must be delivered without delay.

Second, Interrupt Threshold Control state must be part of vmstate,
otherwise we might loose IRQs on migration.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 hw/usb/hcd-ehci.c |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c
index 2eeef29..b78bf44 100644
--- a/hw/usb/hcd-ehci.c
+++ b/hw/usb/hcd-ehci.c
@@ -576,7 +576,12 @@ static inline void ehci_update_irq(EHCIState *s)
 /* flag interrupt condition */
 static inline void ehci_raise_irq(EHCIState *s, int intr)
 {
-    s->usbsts_pending |= intr;
+    if (intr & (USBSTS_PCD | USBSTS_FLR | USBSTS_HSE)) {
+        s->usbsts |= intr;
+        ehci_update_irq(s);
+    } else {
+        s->usbsts_pending |= intr;
+    }
 }
 
 /*
@@ -2480,7 +2485,8 @@ static int usb_ehci_post_load(void *opaque, int version_id)
 
 static const VMStateDescription vmstate_ehci = {
     .name        = "ehci",
-    .version_id  = 1,
+    .version_id  = 2,
+    .minimum_version_id  = 1,
     .pre_save    = usb_ehci_pre_save,
     .post_load   = usb_ehci_post_load,
     .fields      = (VMStateField[]) {
@@ -2488,6 +2494,8 @@ static const VMStateDescription vmstate_ehci = {
         /* mmio registers */
         VMSTATE_UINT32(usbcmd, EHCIState),
         VMSTATE_UINT32(usbsts, EHCIState),
+        VMSTATE_UINT32_V(usbsts_pending, EHCIState, 2),
+        VMSTATE_UINT32_V(usbsts_frindex, EHCIState, 2),
         VMSTATE_UINT32(usbintr, EHCIState),
         VMSTATE_UINT32(frindex, EHCIState),
         VMSTATE_UINT32(ctrldssegment, EHCIState),
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH] ehci: fix Interrupt Threshold Control implementation
  2012-08-15 12:00 [Qemu-devel] [PATCH] ehci: fix Interrupt Threshold Control implementation Gerd Hoffmann
@ 2012-08-15 12:57 ` Hans de Goede
  0 siblings, 0 replies; 2+ messages in thread
From: Hans de Goede @ 2012-08-15 12:57 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

Hi,

On 08/15/2012 02:00 PM, Gerd Hoffmann wrote:
> First, not all interrupts are subject to Interrupt Threshold Control,
> some of them must be delivered without delay.
>
> Second, Interrupt Threshold Control state must be part of vmstate,
> otherwise we might loose IRQs on migration.

Looks good except for 2 things:

1) For some reason it does not fix my redirected usb mass storage device not
seen until lsusb issue, I will investigate this further
2) Does not apply cleanly to master, there is no vmstate_ehci.pre_seave
in master

Regards,

Hans



>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>   hw/usb/hcd-ehci.c |   12 ++++++++++--
>   1 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c
> index 2eeef29..b78bf44 100644
> --- a/hw/usb/hcd-ehci.c
> +++ b/hw/usb/hcd-ehci.c
> @@ -576,7 +576,12 @@ static inline void ehci_update_irq(EHCIState *s)
>   /* flag interrupt condition */
>   static inline void ehci_raise_irq(EHCIState *s, int intr)
>   {
> -    s->usbsts_pending |= intr;
> +    if (intr & (USBSTS_PCD | USBSTS_FLR | USBSTS_HSE)) {
> +        s->usbsts |= intr;
> +        ehci_update_irq(s);
> +    } else {
> +        s->usbsts_pending |= intr;
> +    }
>   }
>
>   /*
> @@ -2480,7 +2485,8 @@ static int usb_ehci_post_load(void *opaque, int version_id)
>
>   static const VMStateDescription vmstate_ehci = {
>       .name        = "ehci",
> -    .version_id  = 1,
> +    .version_id  = 2,
> +    .minimum_version_id  = 1,
>       .pre_save    = usb_ehci_pre_save,
>       .post_load   = usb_ehci_post_load,
>       .fields      = (VMStateField[]) {
> @@ -2488,6 +2494,8 @@ static const VMStateDescription vmstate_ehci = {
>           /* mmio registers */
>           VMSTATE_UINT32(usbcmd, EHCIState),
>           VMSTATE_UINT32(usbsts, EHCIState),
> +        VMSTATE_UINT32_V(usbsts_pending, EHCIState, 2),
> +        VMSTATE_UINT32_V(usbsts_frindex, EHCIState, 2),
>           VMSTATE_UINT32(usbintr, EHCIState),
>           VMSTATE_UINT32(frindex, EHCIState),
>           VMSTATE_UINT32(ctrldssegment, EHCIState),
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-08-15 12:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-15 12:00 [Qemu-devel] [PATCH] ehci: fix Interrupt Threshold Control implementation Gerd Hoffmann
2012-08-15 12:57 ` Hans de Goede

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).