From: Gleb Natapov <gleb@redhat.com>
To: Alexey Kardashevskiy <aik@ozlabs.ru>
Cc: kvm@vger.kernel.org, Alexander Graf <agraf@suse.de>,
kvm-ppc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, Alex Williamson <alex.williamson@redhat.com>,
Paul Mackerras <paulus@samba.org>,
Paolo Bonzini <pbonzini@redhat.com>,
linuxppc-dev@lists.ozlabs.org,
David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH v9 00/13] KVM: PPC: IOMMU in-kernel handling of VFIO
Date: Fri, 30 Aug 2013 20:58:35 +0300 [thread overview]
Message-ID: <20130830175835.GF10142@redhat.com> (raw)
In-Reply-To: <5220736E.5050503@ozlabs.ru>
On Fri, Aug 30, 2013 at 08:26:54PM +1000, Alexey Kardashevskiy wrote:
> On 08/28/2013 06:37 PM, Alexey Kardashevskiy wrote:
> > This accelerates VFIO DMA operations on POWER by moving them
> > into kernel.
> >
> > This depends on VFIO external API patch which is on its way to upstream.
> >
> > Changes:
> > v9:
> > * replaced the "link logical bus number to IOMMU group" ioctl to KVM
> > with a KVM device doing the same thing, i.e. the actual changes are in
> > these 3 patches:
> > KVM: PPC: reserve a capability and KVM device type for realmode VFIO
> > KVM: PPC: remove warning from kvmppc_core_destroy_vm
> > KVM: PPC: Add support for IOMMU in-kernel handling
> >
> > * moved some VFIO external API bits to a separate patch to reduce the size
> > of the "KVM: PPC: Add support for IOMMU in-kernel handling" patch
> >
> > * fixed code style problems reported by checkpatch.pl.
> >
> > v8:
> > * fixed comments about capabilities numbers
> >
> > v7:
> > * rebased on v3.11-rc3.
> > * VFIO external user API will go through VFIO tree so it is
> > excluded from this series.
> > * As nobody ever reacted on "hashtable: add hash_for_each_possible_rcu_notrace()",
> > Ben suggested to push it via his tree so I included it to the series.
> > * realmode_(get|put)_page is reworked.
> >
> > More details in the individual patch comments.
> >
> > Alexey Kardashevskiy (13):
> > KVM: PPC: POWERNV: move iommu_add_device earlier
> > hashtable: add hash_for_each_possible_rcu_notrace()
> > KVM: PPC: reserve a capability number for multitce support
> > KVM: PPC: reserve a capability and KVM device type for realmode VFIO
>
>
> Hi Gleb!
>
> Could you please review and pick (if they are ok) the two "capability"
> patches from above?
>
> It would be cool if you also looked at "KVM: PPC: Add support for IOMMU
> in-kernel handling", the part about KVM device for SPAPR TCE IOMMU table.
>
> Thanks!
Will do it next week.
>
>
>
> > powerpc: Prepare to support kernel handling of IOMMU map/unmap
> > powerpc: add real mode support for dma operations on powernv
> > KVM: PPC: enable IOMMU_API for KVM_BOOK3S_64 permanently
> > KVM: PPC: Add support for multiple-TCE hcalls
> > powerpc/iommu: rework to support realmode
> > KVM: PPC: remove warning from kvmppc_core_destroy_vm
> > KVM: PPC: add trampolines for VFIO external API
> > KVM: PPC: Add support for IOMMU in-kernel handling
> > KVM: PPC: Add hugepage support for IOMMU in-kernel handling
> >
> > Documentation/virtual/kvm/api.txt | 26 +
> > .../virtual/kvm/devices/spapr_tce_iommu.txt | 37 ++
> > arch/powerpc/include/asm/iommu.h | 18 +-
> > arch/powerpc/include/asm/kvm_host.h | 38 ++
> > arch/powerpc/include/asm/kvm_ppc.h | 16 +-
> > arch/powerpc/include/asm/machdep.h | 12 +
> > arch/powerpc/include/asm/pgtable-ppc64.h | 2 +
> > arch/powerpc/include/uapi/asm/kvm.h | 8 +
> > arch/powerpc/kernel/iommu.c | 243 +++++----
> > arch/powerpc/kvm/Kconfig | 1 +
> > arch/powerpc/kvm/book3s_64_vio.c | 597 ++++++++++++++++++++-
> > arch/powerpc/kvm/book3s_64_vio_hv.c | 408 +++++++++++++-
> > arch/powerpc/kvm/book3s_hv.c | 42 +-
> > arch/powerpc/kvm/book3s_hv_rmhandlers.S | 8 +-
> > arch/powerpc/kvm/book3s_pr_papr.c | 35 ++
> > arch/powerpc/kvm/powerpc.c | 4 +
> > arch/powerpc/mm/init_64.c | 50 +-
> > arch/powerpc/platforms/powernv/pci-ioda.c | 57 +-
> > arch/powerpc/platforms/powernv/pci-p5ioc2.c | 2 +-
> > arch/powerpc/platforms/powernv/pci.c | 75 ++-
> > arch/powerpc/platforms/powernv/pci.h | 3 +-
> > arch/powerpc/platforms/pseries/iommu.c | 8 +-
> > include/linux/hashtable.h | 15 +
> > include/linux/kvm_host.h | 1 +
> > include/linux/mm.h | 14 +
> > include/linux/page-flags.h | 4 +-
> > include/uapi/linux/kvm.h | 3 +
> > virt/kvm/kvm_main.c | 5 +
> > 28 files changed, 1564 insertions(+), 168 deletions(-)
> > create mode 100644 Documentation/virtual/kvm/devices/spapr_tce_iommu.txt
> >
>
>
> --
> Alexey
--
Gleb.
prev parent reply other threads:[~2013-08-30 17:58 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-28 8:37 [PATCH v9 00/13] KVM: PPC: IOMMU in-kernel handling of VFIO Alexey Kardashevskiy
2013-08-28 8:37 ` [PATCH v9 01/13] KVM: PPC: POWERNV: move iommu_add_device earlier Alexey Kardashevskiy
2013-10-30 5:33 ` Bhushan Bharat-R65777
2013-08-28 8:37 ` [PATCH v9 02/13] hashtable: add hash_for_each_possible_rcu_notrace() Alexey Kardashevskiy
2013-08-28 8:37 ` [PATCH v9 03/13] KVM: PPC: reserve a capability number for multitce support Alexey Kardashevskiy
2013-08-28 8:37 ` [PATCH v9 04/13] KVM: PPC: reserve a capability and KVM device type for realmode VFIO Alexey Kardashevskiy
2013-09-01 11:27 ` Gleb Natapov
2013-09-01 11:39 ` Alexey Kardashevskiy
2013-09-01 12:04 ` Gleb Natapov
2013-08-28 8:37 ` [PATCH v9 05/13] powerpc: Prepare to support kernel handling of IOMMU map/unmap Alexey Kardashevskiy
2013-08-28 8:37 ` [PATCH v9 06/13] powerpc: add real mode support for dma operations on powernv Alexey Kardashevskiy
2013-08-28 8:37 ` [PATCH v9 07/13] KVM: PPC: enable IOMMU_API for KVM_BOOK3S_64 permanently Alexey Kardashevskiy
2013-08-28 8:37 ` [PATCH v9 08/13] KVM: PPC: Add support for multiple-TCE hcalls Alexey Kardashevskiy
2013-08-28 8:37 ` [PATCH v9 09/13] powerpc/iommu: rework to support realmode Alexey Kardashevskiy
2013-08-28 8:49 ` [PATCH v9 10/13] KVM: PPC: remove warning from kvmppc_core_destroy_vm Alexey Kardashevskiy
2013-08-28 8:50 ` [PATCH v9 11/13] KVM: PPC: add trampolines for VFIO external API Alexey Kardashevskiy
2013-08-28 8:50 ` [PATCH v9 12/13] KVM: PPC: Add support for IOMMU in-kernel handling Alexey Kardashevskiy
2013-09-01 12:06 ` Gleb Natapov
2013-09-02 3:14 ` Alexey Kardashevskiy
2013-09-03 10:53 ` Gleb Natapov
2013-09-03 16:01 ` Alexey Kardashevskiy
2013-09-05 18:10 ` Gleb Natapov
2013-09-05 23:38 ` Alexey Kardashevskiy
2013-09-06 6:01 ` Gleb Natapov
2013-09-06 6:06 ` Alexey Kardashevskiy
2013-09-05 4:05 ` Benjamin Herrenschmidt
2013-09-06 6:57 ` Gleb Natapov
2013-09-06 7:04 ` Alexey Kardashevskiy
2013-09-06 10:45 ` Alexey Kardashevskiy
2013-09-06 10:40 ` [PATCH v10 " Alexey Kardashevskiy
2013-09-08 14:12 ` Gleb Natapov
2013-08-28 8:51 ` [PATCH v9 13/13] KVM: PPC: Add hugepage " Alexey Kardashevskiy
2013-08-30 10:26 ` [PATCH v9 00/13] KVM: PPC: IOMMU in-kernel handling of VFIO Alexey Kardashevskiy
2013-08-30 17:58 ` Gleb Natapov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130830175835.GF10142@redhat.com \
--to=gleb@redhat.com \
--cc=agraf@suse.de \
--cc=aik@ozlabs.ru \
--cc=alex.williamson@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=kvm-ppc@vger.kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=paulus@samba.org \
--cc=pbonzini@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).