From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40209) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrTRO-0003kL-Fz for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WrTRE-0002J5-LY for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53837) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrTRE-0002IO-Cz for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:12 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s52EgBiT002209 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Mon, 2 Jun 2014 10:42:11 -0400 From: Gerd Hoffmann Date: Mon, 2 Jun 2014 16:41:56 +0200 Message-Id: <1401720127-32546-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 00/10] usb patch queu List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Featuring new test cases for uhci+ehci. Also misc fixes, mostly related to xhci emulation and usb3 support. please pull, Gerd The following changes since commit 9bb931802e6ab5ab6947e3cb9cea934fc0724274: Revert "bsd-user: replace fprintf(stderr, ...) with error_report()" (2014-06-02 13:26:59 +0100) are available in the git repository at: git://git.kraxel.org/qemu tags/pull-usb-8 for you to fetch changes up to 7bafd8889ea3599285a8fcb1262d50e52d941c0e: xhci: order superspeed ports first (2014-06-02 16:38:09 +0200) ---------------------------------------------------------------- qtest: improve ehci/uhci test usb: misc fixes, mostly for usb3/xhci ---------------------------------------------------------------- Gerd Hoffmann (10): qtest: fix qpci_config_writel usb: move uhci register defines to header file usb: add uhci port status reserved bit usb: move ehci register defines to header file usb: improve ehci/uhci test usb-host: allow attaching usb3 devices to ehci usb-host: add HAVE_STREAMS define usb: add usb_pick_speed xhci: make port reset trace point more verbose xhci: order superspeed ports first hw/usb/core.c | 21 +++++++ hw/usb/desc.c | 12 ---- hw/usb/hcd-ehci.c | 79 +---------------------- hw/usb/hcd-uhci.c | 36 +---------- hw/usb/hcd-xhci.c | 47 +++++++++++--- hw/usb/host-libusb.c | 76 ++++++++++++++++++---- include/hw/i386/pc.h | 4 ++ include/hw/usb.h | 1 + include/hw/usb/ehci-regs.h | 82 ++++++++++++++++++++++++ include/hw/usb/uhci-regs.h | 40 ++++++++++++ tests/Makefile | 4 +- tests/libqos/pci.c | 2 +- tests/usb-hcd-ehci-test.c | 153 +++++++++++++++++++++++++++++++++++++++++++-- trace-events | 2 +- 14 files changed, 405 insertions(+), 154 deletions(-) create mode 100644 include/hw/usb/ehci-regs.h create mode 100644 include/hw/usb/uhci-regs.h