qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] usb patch queue: iovecs, hid split, misc fixes
@ 2011-08-04 15:10 Gerd Hoffmann
  2011-08-04 15:10 ` [Qemu-devel] [PATCH 01/16] re-activate usb-host for bsd Gerd Hoffmann
                   ` (16 more replies)
  0 siblings, 17 replies; 25+ messages in thread
From: Gerd Hoffmann @ 2011-08-04 15:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Major changes in the USB patch queue:

 * The USBPacket payload is represented as iovec instead of a linear
   buffer.  This allows to kill some copying and buffering.
 * The HID code is splitted into hw/hid.[ch], keeping only the usb
   interfaacing in hw/usb-hid.c.  This allows easy reuse in other
   contexts such as bluetooth.

please pull,
  Gerd

The following changes since commit a6f4e09d90cef88be07cd597c2f2a9f0b3ed0763:

  lm32: softusb: claim to support full speed (2011-08-04 01:14:22 +0200)

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

Gerd Hoffmann (16):
      re-activate usb-host for bsd
      Add iov_hexdump()
      Add iov_clear()
      move QEMUSGList typedef
      usb: use iovecs in USBPacket
      usb-serial: iovec support
      usb-host: iovec support
      usb-storage: iovec support
      uhci: remove buffer
      ehci: iovec support, remove buffer
      usb-hid: create & use HIDState
      usb-hid: add event callback
      usb-hid: add hid_has_events()
      usb-hid: split hid code to hw/hid.[ch]
      hid: move idle+protocol from usb-hid to hid too.
      bluetooth: kill dummy usb device, use hid code directly.

 Makefile.objs          |    2 +
 dma.h                  |    4 +-
 hw/bt-hid.c            |   62 ++----
 hw/hid.c               |  403 +++++++++++++++++++++++++++++++++++++
 hw/hid.h               |   58 ++++++
 hw/milkymist-softusb.c |    8 +-
 hw/usb-bt.c            |   31 +--
 hw/usb-ccid.c          |   46 +++--
 hw/usb-ehci.c          |  160 ++++++---------
 hw/usb-hid.c           |  519 +++++++----------------------------------------
 hw/usb-hub.c           |    8 +-
 hw/usb-libhw.c         |   63 ++++++
 hw/usb-msd.c           |  109 +++++------
 hw/usb-musb.c          |   22 +-
 hw/usb-net.c           |   65 ++----
 hw/usb-ohci.c          |   23 +-
 hw/usb-serial.c        |   26 ++-
 hw/usb-uhci.c          |   51 ++---
 hw/usb-wacom.c         |    6 +-
 hw/usb.c               |   86 +++++++--
 hw/usb.h               |   13 +-
 iov.c                  |   54 +++++
 iov.h                  |    4 +
 qemu-common.h          |    1 +
 usb-bsd.c              |   14 +-
 usb-linux.c            |   48 +++--
 usb-redir.c            |   59 +++---
 27 files changed, 1087 insertions(+), 858 deletions(-)
 create mode 100644 hw/hid.c
 create mode 100644 hw/hid.h
 create mode 100644 hw/usb-libhw.c

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

end of thread, other threads:[~2011-08-11  5:45 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 15:10 [Qemu-devel] [PULL] usb patch queue: iovecs, hid split, misc fixes Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 01/16] re-activate usb-host for bsd Gerd Hoffmann
2011-08-04 18:50   ` Blue Swirl
2011-08-04 18:53     ` Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 02/16] Add iov_hexdump() Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 03/16] Add iov_clear() Gerd Hoffmann
2011-08-05 11:30   ` Kevin Wolf
2011-08-05 14:19     ` Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 04/16] move QEMUSGList typedef Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 05/16] usb: use iovecs in USBPacket Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 06/16] usb-serial: iovec support Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 07/16] usb-host: " Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 08/16] usb-storage: " Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 09/16] uhci: remove buffer Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 10/16] ehci: iovec support, " Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 11/16] usb-hid: create & use HIDState Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 12/16] usb-hid: add event callback Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 13/16] usb-hid: add hid_has_events() Gerd Hoffmann
2011-08-08  8:32   ` TeLeMan
2011-08-10 15:17     ` Gerd Hoffmann
2011-08-11  5:45       ` TeLeMan
2011-08-04 15:10 ` [Qemu-devel] [PATCH 14/16] usb-hid: split hid code to hw/hid.[ch] Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 15/16] hid: move idle+protocol from usb-hid to hid too Gerd Hoffmann
2011-08-04 15:10 ` [Qemu-devel] [PATCH 16/16] bluetooth: kill dummy usb device, use hid code directly Gerd Hoffmann
2011-08-04 22:42 ` [Qemu-devel] [PULL] usb patch queue: iovecs, hid split, misc fixes 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).