]> git.proxmox.com Git - qemu.git/commit - hw/usb/hcd-uhci.c
usb: Halt ep queue en cancel pending packets on a packet error
authorHans de Goede <hdegoede@redhat.com>
Fri, 17 Aug 2012 13:24:49 +0000 (15:24 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Fri, 31 Aug 2012 09:55:17 +0000 (11:55 +0200)
commit0132b4b6595423c92f54d7e0b172b5d73aaa8375
treefe8b47682db22a2829fccd10f9b408689beaeb39
parentda9fbe76a0639c529f9678aabcc052dfe4cd9cc4
usb: Halt ep queue en cancel pending packets on a packet error

For controllers which queue up more then 1 packet at a time, we must halt the
ep queue, and inside the controller code cancel all pending packets on an
error.

There are multiple reasons for this:
1) Guests expect the controllers to halt ep queues on error, so that they
get the opportunity to cancel transfers which the scheduled after the failing
one, before processing continues

2) Not cancelling queued up packets after a failed transfer also messes up
the controller state machine, in the case of EHCI causing the following
assert to trigger: "assert(p->qtdaddr == q->qtdaddr)" at hcd-ehci.c:2075

3) For bulk endpoints with pipelining enabled (redirection to a real USB
device), we must cancel all the transfers after this a failed one so that:
a) If they've completed already, they are not processed further causing more
   stalls to be reported, originating from the same failed transfer
b) If still in flight, they are cancelled before the guest does
   a clear stall, otherwise the guest and device can loose sync!

Note this patch only touches the ehci and uhci controller changes, since AFAIK
no other controllers actually queue up multiple transfer. If I'm wrong on this
other controllers need to be updated too!

Also note that this patch was heavily tested with the ehci code, where I had
a reproducer for a device causing a transfer to fail. The uhci code is not
tested with actually failing transfers and could do with a thorough review!

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/usb.h
hw/usb/core.c
hw/usb/hcd-ehci.c
hw/usb/hcd-uhci.c