mbox series

[PULL,0/7] Usb 20200514 patches

Message ID 20200514122334.25089-1-kraxel@redhat.com
Headers show
Series Usb 20200514 patches | expand

Message

Gerd Hoffmann May 14, 2020, 12:23 p.m. UTC
The following changes since commit d5c75ec500d96f1d93447f990cd5a4ef5ba27fae:

  Merge remote-tracking branch 'remotes/stefanberger/tags/pull-tpm-2020-05-08-1' into staging (2020-05-12 17:00:10 +0100)

are available in the Git repository at:

  git://git.kraxel.org/qemu tags/usb-20200514-pull-request

for you to fetch changes up to 8b2b45c506f4d71b831473d8de93b3cedaea4844:

  raspi2 acceptance test: add test for dwc-hsotg (dwc2) USB host (2020-05-13 11:06:37 +0200)

----------------------------------------------------------------
usb: add dwc2 emulation for raspi machines.

----------------------------------------------------------------

Paul Zimmerman (7):
  raspi: add BCM2835 SOC MPHI emulation
  dwc-hsotg (dwc2) USB host controller register definitions
  dwc-hsotg (dwc2) USB host controller state definitions
  dwc-hsotg (dwc2) USB host controller emulation
  usb: add short-packet handling to usb-storage driver
  wire in the dwc-hsotg (dwc2) USB host controller emulation
  raspi2 acceptance test: add test for dwc-hsotg (dwc2) USB host

 tests/acceptance/boot_linux_console.py |    9 +-
 hw/usb/hcd-dwc2.h                      |  173 +++
 include/hw/arm/bcm2835_peripherals.h   |    5 +-
 include/hw/misc/bcm2835_mphi.h         |   44 +
 include/hw/usb/dwc2-regs.h             |  895 ++++++++++++++++
 hw/arm/bcm2835_peripherals.c           |   38 +-
 hw/misc/bcm2835_mphi.c                 |  184 ++++
 hw/usb/dev-storage.c                   |   15 +-
 hw/usb/hcd-dwc2.c                      | 1372 ++++++++++++++++++++++++
 hw/misc/Makefile.objs                  |    1 +
 hw/usb/Kconfig                         |    5 +
 hw/usb/Makefile.objs                   |    1 +
 hw/usb/trace-events                    |   47 +
 13 files changed, 2784 insertions(+), 5 deletions(-)
 create mode 100644 hw/usb/hcd-dwc2.h
 create mode 100644 include/hw/misc/bcm2835_mphi.h
 create mode 100644 include/hw/usb/dwc2-regs.h
 create mode 100644 hw/misc/bcm2835_mphi.c
 create mode 100644 hw/usb/hcd-dwc2.c