qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/9] usb patch queue
@ 2017-05-29 13:09 Gerd Hoffmann
  2017-05-29 13:09 ` [Qemu-devel] [PULL 1/9] ehci: fix overflow in frame timer code Gerd Hoffmann
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Gerd Hoffmann @ 2017-05-29 13:09 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the usb patch queue.  As usual some bugfixes, legacy options
and hmp commands are deprecated, xhci is splitted so nec-xhci can have
its own config option.

please pull,
  Gerd

The following changes since commit 9964e96dc9999cf7f7c936ee854a795415d19b60:

  Merge remote-tracking branch 'jasowang/tags/net-pull-request' into staging (2017-05-23 15:01:31 +0100)

are available in the git repository at:

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

for you to fetch changes up to 3bfecee2cb71f21cd39d6183f18b446c01917573:

  ehci: fix frame timer invocation. (2017-05-29 14:19:16 +0200)

----------------------------------------------------------------
usb: depricate legacy options and hmp commands
usb: fixes for ehci and hub, split xhci variants

----------------------------------------------------------------
Gerd Hoffmann (5):
      ehci: fix overflow in frame timer code
      xhci: split into multiple files
      xhci: add CONFIG_USB_XHCI_NEC option
      usb: don't wakeup during coldplug
      ehci: fix frame timer invocation.

Ladi Prosek (1):
      usb-hub: set PORT_STAT_C_SUSPEND on host-initiated wake-up

Thomas Huth (3):
      usb: Deprecate the legacy -usbdevice option
      usb: Deprecate HMP commands usb_add and usb_del
      usb: Simplify the parameter parsing of the legacy usb serial device

 hw/usb/hcd-xhci.h       | 226 +++++++++++++++++++++++++++++++++++++++++++++
 hw/usb/core.c           |   8 ++
 hw/usb/dev-hub.c        |  15 ++-
 hw/usb/dev-serial.c     |  21 +----
 hw/usb/hcd-ehci.c       |  15 ++-
 hw/usb/hcd-xhci-nec.c   |  63 +++++++++++++
 hw/usb/hcd-xhci.c       | 238 +-----------------------------------------------
 vl.c                    |   8 ++
 default-configs/pci.mak |   1 +
 hmp-commands.hx         |   6 +-
 hw/usb/Makefile.objs    |   1 +
 qemu-options.hx         |   9 +-
 12 files changed, 348 insertions(+), 263 deletions(-)
 create mode 100644 hw/usb/hcd-xhci.h
 create mode 100644 hw/usb/hcd-xhci-nec.c

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/9] usb patch queue
@ 2013-06-24  6:44 Gerd Hoffmann
  0 siblings, 0 replies; 14+ messages in thread
From: Gerd Hoffmann @ 2013-06-24  6:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the usb patch queue, bringing QOM improvements for
ehci-sysbus, tegra2 ehci support and the usual share of little bug
fixes.

please pull,
  Gerd

The following changes since commit 576156ffed72ab4feb0b752979db86ff8759a2a1:

  Merge remote-tracking branch 'bonzini/iommu-for-anthony' into staging (2013-06-20 16:53:39 -0500)

are available in the git repository at:


  git://git.kraxel.org/qemu usb.84

for you to fetch changes up to 93c8e4dc386a243d7d417567d81dc1f1698478a4:

  usb: fix serial number for hid devices (2013-06-24 08:41:08 +0200)

----------------------------------------------------------------
Andreas Färber (3):
      usb/hcd-ehci-sysbus: Convert to QOM realize
      usb/hcd-ehci: Split off instance_init from realize
      usb/hcd-ehci: Add Tegra2 SysBus EHCI device

Gerd Hoffmann (3):
      usb-host-libusb: set USB_DEV_FLAG_IS_HOST
      usb: add serial bus property
      usb: fix serial number for hid devices

Hans de Goede (1):
      usb/host-libusb: Fix building with libusb git master code

Kuo-Jung Su (2):
      usb/hcd-ehci: Replace PORTSC macros with variables
      usb/hcd-ehci: Add Faraday FUSBH200 support

 hw/i386/pc_piix.c        |   12 +++++
 hw/usb/bus.c             |    1 +
 hw/usb/desc.c            |    6 +++
 hw/usb/dev-hid.c         |    3 ++
 hw/usb/dev-storage.c     |   13 ++---
 hw/usb/hcd-ehci-pci.c    |   23 ++++++---
 hw/usb/hcd-ehci-sysbus.c |  121 +++++++++++++++++++++++++++++++++++++++++++---
 hw/usb/hcd-ehci.c        |   50 +++++++++++--------
 hw/usb/hcd-ehci.h        |   28 ++++++++---
 hw/usb/host-libusb.c     |    5 ++
 include/hw/usb.h         |    1 +
 11 files changed, 212 insertions(+), 51 deletions(-)

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/9] usb patch queue
@ 2012-07-09 10:20 Gerd Hoffmann
  2012-07-09 16:48 ` Anthony Liguori
  0 siblings, 1 reply; 14+ messages in thread
From: Gerd Hoffmann @ 2012-07-09 10:20 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the most recent usb patch queue, featuring a collection of
little bug fixes all over the place.  See individual patches for
details.

please pull,
  Gerd

The following changes since commit 84988cf910a6881f2180fdcec516b60f8f0dc8c4:

  bitops.h: Add functions to extract and deposit bitfields (2012-07-07 09:07:01 +0000)

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

Gerd Hoffmann (6):
      ehci: fix ehci_qh_do_overlay
      ehci: fix td writeback
      ehci: don't flush cache on doorbell rings.
      usb: split endpoint init and reset
      usb: fix interface initialization
      usb-host: add trace events for iso xfers

Hans de Goede (3):
      usb-ehci: Fix an assert whenever isoc transfers are used
      ehci: Kick async schedule on wakeup in the non companion case
      usb-redir: Correctly handle the usb_redir_babble usbredir status

 hw/usb.h            |    3 ++
 hw/usb/core.c       |   17 ++++++++--
 hw/usb/hcd-ehci.c   |   84 +++++++++++++++++++++++++++++++++-----------------
 hw/usb/host-linux.c |   15 +++++----
 hw/usb/redirect.c   |    2 +
 trace-events        |    6 ++-
 6 files changed, 86 insertions(+), 41 deletions(-)

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

end of thread, other threads:[~2017-05-30  9:43 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-29 13:09 [Qemu-devel] [PULL 0/9] usb patch queue Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 1/9] ehci: fix overflow in frame timer code Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 2/9] usb: Deprecate the legacy -usbdevice option Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 3/9] usb: Deprecate HMP commands usb_add and usb_del Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 4/9] usb: Simplify the parameter parsing of the legacy usb serial device Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 5/9] xhci: split into multiple files Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 6/9] xhci: add CONFIG_USB_XHCI_NEC option Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 7/9] usb-hub: set PORT_STAT_C_SUSPEND on host-initiated wake-up Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 8/9] usb: don't wakeup during coldplug Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 9/9] ehci: fix frame timer invocation Gerd Hoffmann
2017-05-30  9:43 ` [Qemu-devel] [PULL 0/9] usb patch queue Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2013-06-24  6:44 Gerd Hoffmann
2012-07-09 10:20 Gerd Hoffmann
2012-07-09 16: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).