qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PULL] usb patch queue: iovecs, hid split, misc fixes
Date: Thu,  4 Aug 2011 17:10:10 +0200	[thread overview]
Message-ID: <1312470626-25872-1-git-send-email-kraxel@redhat.com> (raw)

  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

             reply	other threads:[~2011-08-04 15:10 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-04 15:10 Gerd Hoffmann [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1312470626-25872-1-git-send-email-kraxel@redhat.com \
    --to=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).