From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXl18-0000nY-2o for qemu-devel@nongnu.org; Thu, 11 Aug 2016 04:07:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bXl15-0000iy-Rq for qemu-devel@nongnu.org; Thu, 11 Aug 2016 04:07:04 -0400 Received: from mail-yw0-x229.google.com ([2607:f8b0:4002:c05::229]:33655) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXl15-0000il-MS for qemu-devel@nongnu.org; Thu, 11 Aug 2016 04:07:03 -0400 Received: by mail-yw0-x229.google.com with SMTP id r9so39379128ywg.0 for ; Thu, 11 Aug 2016 01:07:03 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <6d92b4b2-6e31-fada-52bf-c1009ef3e7a0@gmail.com> References: <1470858179-27754-1-git-send-email-davidkiarie4@gmail.com> <6d92b4b2-6e31-fada-52bf-c1009ef3e7a0@gmail.com> From: David Kiarie Date: Thu, 11 Aug 2016 11:07:02 +0300 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [V1 0/4] AMD-Vi Interrupt Remapping List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Valentine Sinitsyn Cc: QEMU Developers , "J. Kiszka" , "Michael S. Tsirkin" , Paolo Bonzini , Eduardo Habkost , Peter Maydell On Thu, Aug 11, 2016 at 9:39 AM, Valentine Sinitsyn < valentine.sinitsyn@gmail.com> wrote: > Hi David, > > On 11.08.2016 00:42, David Kiarie wrote: > >> Hello all, >> >> The following patchset adds AMD-Vi interrupt remapping logic >> to Qemu and hooks it onto existing interrupt remapping infrastructure.It >> has >> a dependency on "Explicit SID for IOAPIC" patchset though. >> >> I would appreciate your feedback! >> > Nice work! I'll look into it deeper in a few days. > > In the meantime, I'm not able to apply this on top of your V15 IOMMU > series applied to the current master. Am I missing anything? I think it got stale already. You can test from here though https://github.com/aslaq/qemu v15 > > Valentine > > > >> For quick testing https://github.com/aslaq/qemu IR >> >> David Kiarie (4): >> hw/iommu: Prepare for AMD IOMMU interrupt remapping >> hw/iommu: AMD IOMMU interrupt remapping >> hw/acpi: report IOAPIC on IVRS >> hw/iommu: share common between IOMMUs >> >> hw/i386/acpi-build.c | 2 + >> hw/i386/amd_iommu.c | 226 ++++++++++++++++++++++++++++++ >> +++++++++++++++++++- >> hw/i386/amd_iommu.h | 74 +++++++++++++++++ >> hw/i386/intel_iommu.c | 9 -- >> hw/i386/trace-events | 7 ++ >> hw/i386/x86-iommu.c | 8 ++ >> 6 files changed, 316 insertions(+), 10 deletions(-) >> >>