qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/31] usb patch queue
@ 2012-11-01 15:54 Gerd Hoffmann
  2012-11-01 15:54 ` [Qemu-devel] [PATCH 01/31] xhci: add {get, set}_field macros & enum for pls Gerd Hoffmann
                   ` (30 more replies)
  0 siblings, 31 replies; 32+ messages in thread
From: Gerd Hoffmann @ 2012-11-01 15:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the usb patch queue.  As the expected discussions on the QOM
bits (dynamic type generation for uhci+ehci) didn't happen I'll simply
include them here.  So this is largely the patch set posted earlier this
week, excluding the experimental MTP bits, adding the xilinx_zynq patch
from Peter and the input pipelining patches from Hans.

please pull,
  Gerd

The following changes since commit 286d52ebfc0d0d53c2a878e454292fea14bad41b:

  target-mips: don't flush extra TLB on permissions upgrade (2012-10-31 22:20:49 +0100)

are available in the git repository at:
  git://git.kraxel.org/qemu usb.69

Gerd Hoffmann (16):
      xhci: add {get,set}_field macros & enum for pls
      xhci: s/xhci_update_port/xhci_port_update/
      xhci: add xhci_port_have_device
      xhci: add xhci_port_notify
      xhci: add xhci_port_reset
      xhci: set pls in xhci_port_update & xhci_port_reset
      xhci: add port trace points
      xhci: allow address slot being called multiple times
      usb/ehci: split into multiple source files
      usb/ehci: add sysbus variant
      uhci: dynamic type generation
      uhci: stick irq routing info into UHCIInfo too.
      uhci: add ich9 00:1a.* variants
      usb/ehci-pci: dynamic type generation
      usb/ehci-pci: add ich9 00:1a.* variant
      usb/ehci-pci: add helper to create ich9 usb controllers

Hans de Goede (9):
      uhci: Add a uhci_handle_td_error() helper function
      uhci: Don't crash on device disconnect
      usb: Add packet combining functions
      combined-packet: Add a workaround for Linux usbfs + live migration
      usb-redir: Add support for 32 bits bulk packet length
      usb-redir: Add support for input pipelining
      usb-redir: Add an usbredir_setup_usb_eps() helper function
      usb-redir: Use reject rather the disconnect on bad ep info
      usb-redir: Allow redirecting super speed devices to high speed controllers

Jan Kiszka (1):
      usb-redir: Allow to attach USB 2.0 devices to 1.1 host controller

Peter Crosthwaite (5):
      usb/ehci: parameterise the register region offsets
      usb/ehci: Abstract away PCI DMA API
      usb/ehci: seperate out PCIisms
      usb/ehci: Guard definition of EHCI_DEBUG
      xilinx_zynq: add USB controllers

 configure                |    2 +-
 hw/usb.h                 |   15 ++
 hw/usb/Makefile.objs     |    4 +-
 hw/usb/combined-packet.c |  182 ++++++++++++++++++
 hw/usb/core.c            |    1 +
 hw/usb/hcd-ehci-pci.c    |  200 ++++++++++++++++++++
 hw/usb/hcd-ehci-sysbus.c |   77 ++++++++
 hw/usb/hcd-ehci.c        |  465 ++++------------------------------------------
 hw/usb/hcd-ehci.h        |  320 +++++++++++++++++++++++++++++++
 hw/usb/hcd-uhci.c        |  344 ++++++++++++++++------------------
 hw/usb/hcd-xhci.c        |  134 ++++++++++---
 hw/usb/redirect.c        |  167 +++++++++++++----
 hw/xilinx_zynq.c         |    3 +
 trace-events             |    2 +
 14 files changed, 1235 insertions(+), 681 deletions(-)
 create mode 100644 hw/usb/combined-packet.c
 create mode 100644 hw/usb/hcd-ehci-pci.c
 create mode 100644 hw/usb/hcd-ehci-sysbus.c
 create mode 100644 hw/usb/hcd-ehci.h

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

end of thread, other threads:[~2012-11-01 15:55 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-01 15:54 [Qemu-devel] [PULL 00/31] usb patch queue Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 01/31] xhci: add {get, set}_field macros & enum for pls Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 02/31] xhci: s/xhci_update_port/xhci_port_update/ Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 03/31] xhci: add xhci_port_have_device Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 04/31] xhci: add xhci_port_notify Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 05/31] xhci: add xhci_port_reset Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 06/31] xhci: set pls in xhci_port_update & xhci_port_reset Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 07/31] xhci: add port trace points Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 08/31] xhci: allow address slot being called multiple times Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 09/31] usb/ehci: parameterise the register region offsets Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 10/31] usb/ehci: Abstract away PCI DMA API Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 11/31] usb/ehci: seperate out PCIisms Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 12/31] usb/ehci: Guard definition of EHCI_DEBUG Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 13/31] usb/ehci: split into multiple source files Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 14/31] usb/ehci: add sysbus variant Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 15/31] xilinx_zynq: add USB controllers Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 16/31] uhci: dynamic type generation Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 17/31] uhci: stick irq routing info into UHCIInfo too Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 18/31] uhci: add ich9 00:1a.* variants Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 19/31] usb/ehci-pci: dynamic type generation Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 20/31] usb/ehci-pci: add ich9 00:1a.* variant Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 21/31] usb/ehci-pci: add helper to create ich9 usb controllers Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 22/31] uhci: Add a uhci_handle_td_error() helper function Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 23/31] uhci: Don't crash on device disconnect Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 24/31] usb: Add packet combining functions Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 25/31] combined-packet: Add a workaround for Linux usbfs + live migration Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 26/31] usb-redir: Add support for 32 bits bulk packet length Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 27/31] usb-redir: Add support for input pipelining Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 28/31] usb-redir: Add an usbredir_setup_usb_eps() helper function Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 29/31] usb-redir: Use reject rather the disconnect on bad ep info Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 30/31] usb-redir: Allow to attach USB 2.0 devices to 1.1 host controller Gerd Hoffmann
2012-11-01 15:54 ` [Qemu-devel] [PATCH 31/31] usb-redir: Allow redirecting super speed devices to high speed controllers Gerd Hoffmann

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