Hi,

This patch series is the start for an overhaul of the usb descriptor
handling for emulated usb devices.  Instead of storing the device
desriptors in blobs (aka char arrays) they are stored in structs,
which makes it alot easier to work with them.  This in turn allows
to move common device management to common code, the last two patches
show the direction I'm heading to, more simliar patches will follow.

cheers,
  Gerd

Gerd Hoffmann (12):
  usb: data structs and helpers for usb descriptors.
  usb hid: use new descriptor infrastructure.
  usb serial: use new descriptor infrastructure.
  usb storage: use new descriptor infrastructure.
  usb wacom: use new descriptor infrastructure.
  usb bluetooth: use new descriptor infrastructure.
  usb hub: use new descriptor infrastructure.
  usb descriptors: add settable strings.
  usb storage: serial number support
  usb network: use new descriptor infrastructure.
  usb: move USB_REQ_SET_ADDRESS handling to common code
  usb: move USB_REQ_{GET,SET}_CONFIGURATION handling to common code

 Makefile.objs   |    2 +-
 hw/usb-bt.c     |  501 +++++++++++++++++++++++--------------------------------
 hw/usb-bus.c    |    1 +
 hw/usb-desc.c   |  303 +++++++++++++++++++++++++++++++++
 hw/usb-desc.h   |   89 ++++++++++
 hw/usb-hid.c    |  459 +++++++++++++++++++++++----------------------------
 hw/usb-hub.c    |  152 +++++++++--------
 hw/usb-msd.c    |  183 ++++++++-------------
 hw/usb-net.c    |  500 ++++++++++++++++++++++++------------------------------
 hw/usb-serial.c |  209 +++++++++--------------
 hw/usb-wacom.c  |  188 ++++++++-------------
 hw/usb.h        |   20 +++
 12 files changed, 1351 insertions(+), 1256 deletions(-)
 create mode 100644 hw/usb-desc.c
 create mode 100644 hw/usb-desc.h


Reply via email to