From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45217) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TSeFW-0000dO-Ba for qemu-devel@nongnu.org; Sun, 28 Oct 2012 21:34:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TSeFV-0003JM-AS for qemu-devel@nongnu.org; Sun, 28 Oct 2012 21:34:42 -0400 Received: from mail-da0-f45.google.com ([209.85.210.45]:39130) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TSeFV-0003JH-4A for qemu-devel@nongnu.org; Sun, 28 Oct 2012 21:34:41 -0400 Received: by mail-da0-f45.google.com with SMTP id n15so2040325dad.4 for ; Sun, 28 Oct 2012 18:34:40 -0700 (PDT) Sender: Peter Crosthwaite From: Peter Crosthwaite Date: Mon, 29 Oct 2012 11:34:31 +1000 Message-Id: Subject: [Qemu-devel] [PATCH v3 0/8] Sysbus EHCI + Zynq USB. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: vineshp@xilinx.com, peter.maydell@linaro.org, Peter Crosthwaite , john.williams@xilinx.com, kraxel@redhat.com, edgar.iglesias@gmail.com, afaerber@suse.de Added Sysbus variant of EHCI and attached it to Xilinx Zynq. The EHCI stuff is going to useful for Tegra too. See http://lists.gnu.org/archive/html/qemu-devel/2012-06/msg04100.html thread for the inital RFC discussion on this development. Regession tested using i386 Debian (dd of=/dev/sdx ...) to get some test coverage outside of Zynq. More testing welcome. Few other bits and pieces of cleanup in there too, around the EHCI_DEBUG printfery. The series will rebase without conflict on the current pending usb patch queue (usb.68). Changed since V2: No more usages of unions, seperated out PCI and Sysbus structs and codepaths completely. Removed init_ram hack for unimplemented EHCI regions. Removed debug message cleanup patch (conflicts with pending USB [PULL] (usb.68)) Changed since V1: Overhauled properties - moved them to class properties rather than object properties. Various Review based fixes (Please see individual patch change logs) Peter Crosthwaite (7): usb/ehci: Use class_data to init PCI variations usb/ehci: parameterise the register region offsets usb/ehci: Abstract away PCI DMA API usb/ehci: seperate out PCIisms usb/ehci: Add Sysbus variant and Xilinx Zynq USB xilinx_zynq: add USB controllers usb/ehci: Guard definition of EHCI_DEBUG Peter Maydell (1): dma: Define dma_context_memory and use in sysbus-ohci dma.h | 5 + exec.c | 5 + hw/usb/hcd-ehci.c | 339 +++++++++++++++++++++++++++++++++++------------------ hw/usb/hcd-ohci.c | 2 +- hw/xilinx_zynq.c | 3 + 5 files changed, 238 insertions(+), 116 deletions(-)