qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] usb patch queue
@ 2014-08-29 12:03 Gerd Hoffmann
  2014-08-29 12:03 ` [Qemu-devel] [PULL 01/17] usb: Fix bootindex for portnr > 9 Gerd Hoffmann
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: Gerd Hoffmann @ 2014-08-29 12:03 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the usb patch queue.   It features cleanup functions for the
host adapters, in preparation to make them hot-pluggable.  Hotplug itself
isn't there yet, some details still need to be sorted as we can't
hotplug companion controller setups (expect RfC patches soon), but the
majority of the bits needed to make hotplug fly is there.

There are also some simple host adapter tests (just start qemu with an
device instance, not much actual testing yet), and the usual collection
of bugfixes.

please pull,
  Gerd

The following changes since commit c47c61be8dcd91689c8fc77776db924d684c3b39:

  Merge remote-tracking branch 'remotes/awilliam/tags/vfio-pci-for-qemu-20140825.0' into staging (2014-08-26 10:42:06 +0100)

are available in the git repository at:


  git://git.kraxel.org/qemu tags/pull-usb-20140829-1

for you to fetch changes up to 25e89ec5d2c7f8d953cb1ca558afa74974ff8930:

  tests: add xHCI qtest (2014-08-29 12:53:47 +0200)

----------------------------------------------------------------
usb: bugfix collection.
usb: add cleanup functions for host adapters,
     in preparation for hotplug support.
usb: add simple qtests for uhci,ohci,xhci.

----------------------------------------------------------------
Gerd Hoffmann (2):
      xhci: use (1u << i)
      Revert "xhci: Fix number of streams allocated when using streams"

Gonglei (13):
      xhci: fix debug print compiling error
      usb: add usb_bus_release function
      usb-ohci: Fix memory leak for ohci timer
      usb-ohci: add exit function
      usb-uhci: clean up uhci resource when pci-uhci exit
      usb-ehci: add vmstate properity for EHCIState
      usb-ehci: add ehci unrealize funciton
      usb-ehci: add ehci-pci device exit function
      usb-xhci: add exit function
      usb: add usb host adapters exit trace
      tests: add OHCI qtest
      tests: add UHCI qtest
      tests: add xHCI qtest

Jack Un (1):
      Fix OHCI ISO TD state never being written back.

Markus Armbruster (1):
      usb: Fix bootindex for portnr > 9

 MAINTAINERS               |  2 +-
 hw/usb/bus.c              | 11 +++++++++--
 hw/usb/hcd-ehci-pci.c     | 14 +++++++++++++
 hw/usb/hcd-ehci.c         | 29 ++++++++++++++++++++++++++-
 hw/usb/hcd-ehci.h         |  2 ++
 hw/usb/hcd-ohci.c         | 27 ++++++++++++++++++++++---
 hw/usb/hcd-uhci.c         | 24 +++++++++++++++++++++++
 hw/usb/hcd-xhci.c         | 50 +++++++++++++++++++++++++++++++++++++++++------
 include/hw/usb.h          |  1 +
 tests/Makefile            | 10 +++++++++-
 tests/usb-hcd-ohci-test.c | 35 +++++++++++++++++++++++++++++++++
 tests/usb-hcd-uhci-test.c | 35 +++++++++++++++++++++++++++++++++
 tests/usb-hcd-xhci-test.c | 35 +++++++++++++++++++++++++++++++++
 trace-events              |  3 +++
 14 files changed, 264 insertions(+), 14 deletions(-)
 create mode 100644 tests/usb-hcd-ohci-test.c
 create mode 100644 tests/usb-hcd-uhci-test.c
 create mode 100644 tests/usb-hcd-xhci-test.c

^ permalink raw reply	[flat|nested] 20+ messages in thread
* [Qemu-devel] [PULL 00/17] usb patch queue
@ 2013-11-29  8:06 Gerd Hoffmann
  0 siblings, 0 replies; 20+ messages in thread
From: Gerd Hoffmann @ 2013-11-29  8:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

A bunch of usb improvements have been piled up during the freeze.
So lets flush the queue and get the goodies in.  Also try something
new while being at it: signed pull request.

please pull,
  Gerd

The following changes since commit 7457fe9541b5162f285454947448d553a5d5a531:

  Update version for v1.7.0-rc2 release (2013-11-25 20:37:12 -0800)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/pull-usb-1

for you to fetch changes up to 0b1fa34e1dd2764ee7ae2be849e1c5ba5e8724ca:

  usb: move usb_{hi,lo} helpers to header file. (2013-11-28 15:39:27 +0100)

----------------------------------------------------------------
Improvements for usb3 bulk stream (usb core, xhci).
Bugfixes for uas emulation.
Add remote wakeup support for ehci.
Add suspend support for xhci.
Misc minor tweaks and fixes.

----------------------------------------------------------------
Gerd Hoffmann (5):
      xhci: add support for suspend/resume
      ehci: implement port wakeup
      Revert "usb-tablet: Don't claim wakeup capability for USB-2 version"
      usb: add vendor request defines
      usb: move usb_{hi,lo} helpers to header file.

Hans de Goede (11):
      xhci: Add a few missing checks for disconnected devices
      scsi: Add 2 new sense codes needed by uas
      uas: Only use report iu-s for task_mgmt status reporting
      uas: Fix / cleanup usb_uas_task error handling
      uas: Streams are numbered 1-y, rather then 0-x
      uas: Bounds check tags when using streams
      uas: Fix response iu struct definition
      uas: s/ui/iu/
      usb: Add max_streams attribute to endpoint info
      usb: Add usb_device_alloc/free_streams
      xhci: Call usb_device_alloc/free_streams

Markus Armbruster (1):
      trace-events: Clean up after removal of old usb-host code

 hw/scsi/scsi-bus.c     |  10 ++++
 hw/usb/bus.c           |  18 ++++++
 hw/usb/core.c          |  22 +++++++
 hw/usb/desc.c          |  12 +---
 hw/usb/desc.h          |  11 ++++
 hw/usb/dev-hid.c       |   2 +-
 hw/usb/dev-uas.c       | 156 ++++++++++++++++++++++++++-----------------------
 hw/usb/hcd-ehci.c      |  18 +++++-
 hw/usb/hcd-xhci.c      | 138 ++++++++++++++++++++++++++++++++++++++++++-
 include/hw/scsi/scsi.h |   4 ++
 include/hw/usb.h       |  32 ++++++++--
 trace-events           |  16 +----
 12 files changed, 335 insertions(+), 104 deletions(-)

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

end of thread, other threads:[~2014-08-29 13:13 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-29 12:03 [Qemu-devel] [PULL 00/17] usb patch queue Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 01/17] usb: Fix bootindex for portnr > 9 Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 02/17] xhci: fix debug print compiling error Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 03/17] Fix OHCI ISO TD state never being written back Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 04/17] xhci: use (1u << i) Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 05/17] Revert "xhci: Fix number of streams allocated when using streams" Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 06/17] usb: add usb_bus_release function Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 07/17] usb-ohci: Fix memory leak for ohci timer Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 08/17] usb-ohci: add exit function Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 09/17] usb-uhci: clean up uhci resource when pci-uhci exit Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 10/17] usb-ehci: add vmstate properity for EHCIState Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 11/17] usb-ehci: add ehci unrealize funciton Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 12/17] usb-ehci: add ehci-pci device exit function Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 13/17] usb-xhci: add " Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 14/17] usb: add usb host adapters exit trace Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 15/17] tests: add OHCI qtest Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 16/17] tests: add UHCI qtest Gerd Hoffmann
2014-08-29 12:03 ` [Qemu-devel] [PULL 17/17] tests: add xHCI qtest Gerd Hoffmann
2014-08-29 13:12 ` [Qemu-devel] [PULL 00/17] usb patch queue Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2013-11-29  8:06 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).