qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] usb patch queue: audio, xhci, usbredir
@ 2012-01-13 10:18 Gerd Hoffmann
  2012-01-13 10:18 ` [Qemu-devel] [PATCH 01/17] usb-host: rip out legacy procfs support Gerd Hoffmann
                   ` (17 more replies)
  0 siblings, 18 replies; 21+ messages in thread
From: Gerd Hoffmann @ 2012-01-13 10:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the usb patch queue.  It features the patches posted a week
ago for review with some minor tweaks according to the review comments:
The comment in usb-audio was fixed and xhci got a codestyle cleanup.  No
actual code changes.  I've also included the usb-redir patches posted by
Hans earlier this week.

please pull,
  Gerd

The following changes since commit 515aa3c57986b3e26558d72ecaeb7545ecd30510:

  check-qstring: remove check.h include (2012-01-12 11:33:22 -0600)

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

Gerd Hoffmann (10):
      usb-host: rip out legacy procfs support
      usb: track configuration and interface count in USBDevice.
      usb: track altsetting in USBDevice
      usb-desc: audio endpoint support
      usb: add USBEndpoint
      usb: add ifnum to USBEndpoint
      usb-desc: USBEndpoint support
      usb/debug: add usb_ep_dump
      usb: add max_packet_size to USBEndpoint
      usb: link packets to endpoints not devices

H. Peter Anvin (1):
      usb: add audio device model

Hans de Goede (5):
      usb-redir: Clear iso / irq error when stopping the stream
      usb-redir: Dynamically adjust iso buffering size based on ep interval
      usb-redir: Pre-fill our isoc input buffer before sending pkts to the host
      usb-redir: Try to keep our buffer size near the target size
      usb-redir: Improve some debugging messages

Hector Martin (1):
      xhci: Initial xHCI implementation

 Makefile.objs           |    3 +-
 default-configs/pci.mak |    1 +
 hw/pci_ids.h            |    3 +
 hw/usb-audio.c          |  704 ++++++++++++
 hw/usb-bt.c             |   22 -
 hw/usb-bus.c            |    1 +
 hw/usb-ccid.c           |    8 -
 hw/usb-desc.c           |  143 +++-
 hw/usb-desc.h           |    5 +
 hw/usb-ehci.c           |    3 +-
 hw/usb-hid.c            |    7 -
 hw/usb-hub.c            |    7 -
 hw/usb-msd.c            |   10 -
 hw/usb-musb.c           |    3 +-
 hw/usb-net.c            |   14 -
 hw/usb-ohci.c           |    4 +-
 hw/usb-serial.c         |    7 -
 hw/usb-uhci.c           |    3 +-
 hw/usb-wacom.c          |    7 -
 hw/usb-xhci.c           | 2748 +++++++++++++++++++++++++++++++++++++++++++++++
 hw/usb.c                |  125 +++-
 hw/usb.h                |   44 +-
 trace-events            |    1 +
 usb-linux.c             |  452 ++------
 usb-redir.c             |  118 ++-
 25 files changed, 3972 insertions(+), 471 deletions(-)
 create mode 100644 hw/usb-audio.c
 create mode 100644 hw/usb-xhci.c

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

end of thread, other threads:[~2012-01-19 18:48 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-13 10:18 [Qemu-devel] [PULL 00/17] usb patch queue: audio, xhci, usbredir Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 01/17] usb-host: rip out legacy procfs support Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 02/17] usb: track configuration and interface count in USBDevice Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 03/17] usb: track altsetting " Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 04/17] usb-desc: audio endpoint support Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 05/17] usb: add audio device model Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 06/17] xhci: Initial xHCI implementation Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 07/17] usb: add USBEndpoint Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 08/17] usb: add ifnum to USBEndpoint Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 09/17] usb-desc: USBEndpoint support Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 10/17] usb/debug: add usb_ep_dump Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 11/17] usb: add max_packet_size to USBEndpoint Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 12/17] usb: link packets to endpoints not devices Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 13/17] usb-redir: Clear iso / irq error when stopping the stream Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 14/17] usb-redir: Dynamically adjust iso buffering size based on ep interval Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 15/17] usb-redir: Pre-fill our isoc input buffer before sending pkts to the host Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 16/17] usb-redir: Try to keep our buffer size near the target size Gerd Hoffmann
2012-01-13 10:18 ` [Qemu-devel] [PATCH 17/17] usb-redir: Improve some debugging messages Gerd Hoffmann
2012-01-13 15:19 ` [Qemu-devel] [PULL 00/17] usb patch queue: audio, xhci, usbredir Anthony Liguori
2012-01-17  9:06   ` Gerd Hoffmann
2012-01-19 18:48     ` Anthony Liguori

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