From patchwork Tue Apr 16 10:13:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 236902 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7EF582C010A for ; Tue, 16 Apr 2013 20:13:50 +1000 (EST) Received: from localhost ([::1]:44256 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US2tY-00062a-HT for incoming@patchwork.ozlabs.org; Tue, 16 Apr 2013 06:13:48 -0400 Received: from eggs.gnu.org ([208.118.235.92]:58235) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US2t0-000613-7L for qemu-devel@nongnu.org; Tue, 16 Apr 2013 06:13:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1US2sy-0003cN-MX for qemu-devel@nongnu.org; Tue, 16 Apr 2013 06:13:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:9037) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US2sy-0003c1-Ey for qemu-devel@nongnu.org; Tue, 16 Apr 2013 06:13:12 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3GADBL9025803 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 16 Apr 2013 06:13:12 -0400 Received: from rincewind.home.kraxel.org (ovpn-116-37.ams2.redhat.com [10.36.116.37]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r3GADBVb024833; Tue, 16 Apr 2013 06:13:11 -0400 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 67F7440E82; Tue, 16 Apr 2013 12:13:10 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Tue, 16 Apr 2013 12:13:03 +0200 Message-Id: <1366107190-30853-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PULL 0/7] usb patch queue X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Hi, Here comes the usb patch queue. Big new feature is the libusb-based usb-host driver. There also is a usb-serial fix and a small collection of xhci bugfixes. please pull, Gerd The following changes since commit 24a6e7f4d91e9ed5f8117ecb083431a23f8609a0: virtio-balloon: fix dynamic properties. (2013-04-15 17:06:58 -0500) are available in the git repository at: git://git.kraxel.org/qemu usb.80 for you to fetch changes up to 2b2325ff6491224a42e1fec99b1c39fbc521c95c: use libusb for usb-host (2013-04-16 12:04:09 +0200) ---------------------------------------------------------------- Gerd Hoffmann (6): xhci: remove leftover debug printf xhci: add xhci_cap_write xhci: fix portsc writes xhci: use slotid as device address xhci: fix address device use libusb for usb-host Hans de Goede (1): usb-serial: Remove double call to qemu_chr_add_handlers( NULL ) configure | 36 ++ hw/usb/dev-serial.c | 9 - hw/usb/hcd-xhci.c | 79 +-- hw/usb/host-libusb.c | 1449 ++++++++++++++++++++++++++++++++++++++++++++++++++ hw/usb/host-linux.c | 14 +- trace-events | 5 + 6 files changed, 1551 insertions(+), 41 deletions(-) create mode 100644 hw/usb/host-libusb.c