From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=59756 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PjEn4-0004x0-Uy for qemu-devel@nongnu.org; Sat, 29 Jan 2011 12:40:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PjEn3-0004bu-Nq for qemu-devel@nongnu.org; Sat, 29 Jan 2011 12:40:50 -0500 Received: from mail-fx0-f45.google.com ([209.85.161.45]:35571) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PjEn3-0004be-JP for qemu-devel@nongnu.org; Sat, 29 Jan 2011 12:40:49 -0500 Received: by fxm12 with SMTP id 12so4523658fxm.4 for ; Sat, 29 Jan 2011 09:40:48 -0800 (PST) Sender: Eduard - Gabriel Munteanu From: Eduard - Gabriel Munteanu Date: Sat, 29 Jan 2011 19:40:21 +0200 Message-Id: Subject: [Qemu-devel] [PATCH 00/13] AMD IOMMU emulation patchset List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: joro@8bytes.org Cc: kvm@vger.kernel.org, qemu-devel@nongnu.org, blauwirbel@gmail.com, yamahata@valinux.co.jp, paul@codesourcery.com, Eduard - Gabriel Munteanu , avi@redhat.com Hi everybody, I'm a bit late, I know, school kept me busy. But here it is. I hope I answered your previous concerns in this patchset. Let me know what you think, I hope this gets merged soon. Some testing would be great. The patchset is based on mst/pci. I'll send the SeaBIOS patches soon. Cheers, Eduard Eduard - Gabriel Munteanu (13): Generic DMA memory access interface pci: add IOMMU support via the generic DMA layer AMD IOMMU emulation ide: use the DMA memory access interface for PCI IDE controllers rtl8139: use the DMA memory access interface eepro100: use the DMA memory access interface ac97: use the DMA memory access interface es1370: use the DMA memory access interface e1000: use the DMA memory access interface lsi53c895a: use the DMA memory access interface pcnet: use the DMA memory access interface usb-uhci: use the DMA memory access interface usb-ohci: use the DMA memory access interface Makefile.target | 2 +- dma-helpers.c | 23 ++- dma.h | 4 +- hw/ac97.c | 6 +- hw/amd_iommu.c | 694 ++++++++++++++++++++++++++++++++++++++++++++++++++++ hw/dma_rw.c | 124 ++++++++++ hw/dma_rw.h | 157 ++++++++++++ hw/e1000.c | 26 ++- hw/eepro100.c | 97 +++++--- hw/es1370.c | 4 +- hw/ide/ahci.c | 3 +- hw/ide/internal.h | 1 + hw/ide/macio.c | 4 +- hw/ide/pci.c | 18 +- hw/lsi53c895a.c | 24 +- hw/pc.c | 2 + hw/pci.c | 7 + hw/pci.h | 7 + hw/pci_ids.h | 2 + hw/pci_internals.h | 1 + hw/pci_regs.h | 1 + hw/pcnet-pci.c | 5 +- hw/rtl8139.c | 100 +++++---- hw/usb-ohci.c | 54 +++-- hw/usb-uhci.c | 26 +- 25 files changed, 1233 insertions(+), 159 deletions(-) create mode 100644 hw/amd_iommu.c create mode 100644 hw/dma_rw.c create mode 100644 hw/dma_rw.h -- 1.7.3.4