From patchwork Thu Jul 12 13:08:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 170654 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 703402C02B7 for ; Thu, 12 Jul 2012 23:10:05 +1000 (EST) Received: from localhost ([::1]:47060 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpJ9f-0000hg-15 for incoming@patchwork.ozlabs.org; Thu, 12 Jul 2012 09:10:03 -0400 Received: from eggs.gnu.org ([208.118.235.92]:41158) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpJ8T-0005vW-Hk for qemu-devel@nongnu.org; Thu, 12 Jul 2012 09:08:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SpJ8M-0007iH-Dl for qemu-devel@nongnu.org; Thu, 12 Jul 2012 09:08:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41223) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpJ8M-0007hf-4u for qemu-devel@nongnu.org; Thu, 12 Jul 2012 09:08:42 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q6CD8evd018965 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 12 Jul 2012 09:08:41 -0400 Received: from rincewind.home.kraxel.org (ovpn-116-66.ams2.redhat.com [10.36.116.66]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q6CD8d9u025034; Thu, 12 Jul 2012 09:08:40 -0400 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 465E442DEC; Thu, 12 Jul 2012 15:08:39 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Thu, 12 Jul 2012 15:08:33 +0200 Message-Id: <1342098519-23261-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PULL 0/6] 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, Brings UAS (usb attached scsi) support, fixes and improvements for the ehci interrupt handling and a little uhci loadvm compatibility bugfix. please pull, Gerd The following changes since commit 92336855975805d88c7979f53bc05c2d47abab04: megasas: disable due to build breakage (2012-07-09 18:16:16 -0500) are available in the git repository at: git://git.kraxel.org/qemu usb.57 Gerd Hoffmann (5): usb: add usb attached scsi emulation uhci: initialize expire_time when loading v1 vmstate ehci: raise irq in the frame timer ehci: implement Interrupt Threshold Control support ehci: improve expire time calculation Paolo Bonzini (1): scsi: add free_request callback docs/usb-storage.txt | 38 +++ hw/scsi-bus.c | 5 + hw/scsi.h | 1 + hw/usb/Makefile.objs | 1 + hw/usb/dev-uas.c | 779 ++++++++++++++++++++++++++++++++++++++++++++++++++ hw/usb/hcd-ehci.c | 91 ++++--- hw/usb/hcd-uhci.c | 12 + trace-events | 16 +- 8 files changed, 909 insertions(+), 34 deletions(-) create mode 100644 docs/usb-storage.txt create mode 100644 hw/usb/dev-uas.c