From: eric.auger@linaro.org (Eric Auger)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 0/5] ARM: KVM: Enable the ioeventfd capability of KVM on ARM
Date: Thu, 27 Nov 2014 12:01:07 +0100 [thread overview]
Message-ID: <54770473.7010307@linaro.org> (raw)
In-Reply-To: <20141124212240.10605.46770.stgit@i3820>
On 11/24/2014 10:26 PM, Nikolay Nikolaev wrote:
> The IOEVENTFD KVM capability is a prerequisite for vhost support,
> and is also used to implement improved interrupt handling in VFIO drivers.
Hi Nikolay
As far as I am aware, irqfd currently is used in vfio context, not
ioeventfd, although they both are implemented in eventfd.c. Could you
elaborate?
>
> This series enables the ioeventfd KVM capability on ARM.
>
> The implementation routes MMIO access in the IO abort handler to the KVM IO bus.
> If there is already a registered ioeventfd handler for this address, the file
> descriptor will be triggered.
>
> We extended the KVM IO bus API to expose the VCPU struct pointer. Now the VGIC
> MMIO access is done through this API. For this to operate the VGIC registers a
> kvm_io_device which reprresents the whole MMIO region.
typo & the whole dist MMIO region?
I think the transformation makes sense and does not bring upheavals in
the vgic code which is good.
Best Regards
Eric
>
> The patches are implemented on top of the latest Andre's vGICv3 work from here:
> http://www.linux-arm.org/git?p=linux-ap.git;a=shortlog;h=refs/heads/kvm-gicv3/v4
>
> The code was tested on Dual Cortex-A15 Exynos5250 (ARM Chromebook).
>
> ---
>
> Nikolay Nikolaev (5):
> KVM: redesing kvm_io_bus_ API to pass VCPU structure to the callbacks.
> ARM: on IO mem abort - route the call to KVM MMIO bus
> KVM: ARM VGIC add kvm_io_bus_ frontend
> ARM: enable linking against eventfd and irqchip
> ARM: enable KVM_CAP_IOEVENTFD
>
>
> arch/arm/kvm/Kconfig | 1 +
> arch/arm/kvm/Makefile | 2 +
> arch/arm/kvm/arm.c | 3 ++
> arch/arm/kvm/mmio.c | 32 ++++++++++++++++
> arch/ia64/kvm/kvm-ia64.c | 4 +-
> arch/powerpc/kvm/powerpc.c | 4 +-
> arch/s390/kvm/diag.c | 2 +
> arch/x86/kvm/vmx.c | 2 +
> arch/x86/kvm/x86.c | 11 +++---
> include/kvm/arm_vgic.h | 3 +-
> include/linux/kvm_host.h | 10 +++--
> virt/kvm/arm/vgic.c | 88 +++++++++++++++++++++++++++++++++++++-------
> virt/kvm/coalesced_mmio.c | 5 ++-
> virt/kvm/eventfd.c | 4 +-
> virt/kvm/iodev.h | 23 ++++++++----
> virt/kvm/kvm_main.c | 32 ++++++++--------
> 16 files changed, 163 insertions(+), 63 deletions(-)
>
> --
> Signature
>
WARNING: multiple messages have this Message-ID (diff)
From: Eric Auger <eric.auger@linaro.org>
To: Nikolay Nikolaev <n.nikolaev@virtualopensystems.com>,
kvm@vger.kernel.org, marc.zyngier@arm.com,
andre.przywara@arm.com, kvmarm@lists.cs.columbia.edu,
christoffer.dall@linaro.org
Cc: tech@virtualopensystems.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [RFC PATCH 0/5] ARM: KVM: Enable the ioeventfd capability of KVM on ARM
Date: Thu, 27 Nov 2014 12:01:07 +0100 [thread overview]
Message-ID: <54770473.7010307@linaro.org> (raw)
In-Reply-To: <20141124212240.10605.46770.stgit@i3820>
On 11/24/2014 10:26 PM, Nikolay Nikolaev wrote:
> The IOEVENTFD KVM capability is a prerequisite for vhost support,
> and is also used to implement improved interrupt handling in VFIO drivers.
Hi Nikolay
As far as I am aware, irqfd currently is used in vfio context, not
ioeventfd, although they both are implemented in eventfd.c. Could you
elaborate?
>
> This series enables the ioeventfd KVM capability on ARM.
>
> The implementation routes MMIO access in the IO abort handler to the KVM IO bus.
> If there is already a registered ioeventfd handler for this address, the file
> descriptor will be triggered.
>
> We extended the KVM IO bus API to expose the VCPU struct pointer. Now the VGIC
> MMIO access is done through this API. For this to operate the VGIC registers a
> kvm_io_device which reprresents the whole MMIO region.
typo & the whole dist MMIO region?
I think the transformation makes sense and does not bring upheavals in
the vgic code which is good.
Best Regards
Eric
>
> The patches are implemented on top of the latest Andre's vGICv3 work from here:
> http://www.linux-arm.org/git?p=linux-ap.git;a=shortlog;h=refs/heads/kvm-gicv3/v4
>
> The code was tested on Dual Cortex-A15 Exynos5250 (ARM Chromebook).
>
> ---
>
> Nikolay Nikolaev (5):
> KVM: redesing kvm_io_bus_ API to pass VCPU structure to the callbacks.
> ARM: on IO mem abort - route the call to KVM MMIO bus
> KVM: ARM VGIC add kvm_io_bus_ frontend
> ARM: enable linking against eventfd and irqchip
> ARM: enable KVM_CAP_IOEVENTFD
>
>
> arch/arm/kvm/Kconfig | 1 +
> arch/arm/kvm/Makefile | 2 +
> arch/arm/kvm/arm.c | 3 ++
> arch/arm/kvm/mmio.c | 32 ++++++++++++++++
> arch/ia64/kvm/kvm-ia64.c | 4 +-
> arch/powerpc/kvm/powerpc.c | 4 +-
> arch/s390/kvm/diag.c | 2 +
> arch/x86/kvm/vmx.c | 2 +
> arch/x86/kvm/x86.c | 11 +++---
> include/kvm/arm_vgic.h | 3 +-
> include/linux/kvm_host.h | 10 +++--
> virt/kvm/arm/vgic.c | 88 +++++++++++++++++++++++++++++++++++++-------
> virt/kvm/coalesced_mmio.c | 5 ++-
> virt/kvm/eventfd.c | 4 +-
> virt/kvm/iodev.h | 23 ++++++++----
> virt/kvm/kvm_main.c | 32 ++++++++--------
> 16 files changed, 163 insertions(+), 63 deletions(-)
>
> --
> Signature
>
next prev parent reply other threads:[~2014-11-27 11:01 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-24 21:26 [RFC PATCH 0/5] ARM: KVM: Enable the ioeventfd capability of KVM on ARM Nikolay Nikolaev
2014-11-24 21:26 ` Nikolay Nikolaev
2014-11-24 21:26 ` [RFC PATCH 1/5] KVM: redesing kvm_io_bus_ API to pass VCPU structure to the callbacks Nikolay Nikolaev
2014-11-24 21:26 ` Nikolay Nikolaev
2014-11-26 17:03 ` Eric Auger
2014-11-26 17:03 ` Eric Auger
2014-11-24 21:26 ` [RFC PATCH 2/5] ARM: on IO mem abort - route the call to KVM MMIO bus Nikolay Nikolaev
2014-11-24 21:26 ` Nikolay Nikolaev
2014-11-27 10:19 ` Eric Auger
2014-11-27 10:19 ` Eric Auger
2014-11-29 11:28 ` Christoffer Dall
2014-11-29 11:28 ` Christoffer Dall
2014-12-05 12:06 ` Nikolay Nikolaev
2014-12-05 12:06 ` Nikolay Nikolaev
2015-01-12 16:21 ` Eric Auger
2015-01-12 16:21 ` Eric Auger
2015-01-23 22:38 ` Nikolay Nikolaev
2015-01-23 22:38 ` Nikolay Nikolaev
2014-11-29 11:29 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-11-24 21:26 ` [RFC PATCH 3/5] KVM: ARM VGIC add kvm_io_bus_ frontend Nikolay Nikolaev
2014-11-24 21:26 ` Nikolay Nikolaev
2014-11-27 10:51 ` Eric Auger
2014-11-27 10:51 ` Eric Auger
2014-11-29 7:14 ` Shannon Zhao
2014-11-29 7:14 ` Shannon Zhao
2014-11-29 13:58 ` Nikolay Nikolaev
2014-11-29 13:58 ` Nikolay Nikolaev
2014-11-29 11:29 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-11-29 13:54 ` Nikolay Nikolaev
2014-11-29 13:54 ` Nikolay Nikolaev
2014-12-05 12:10 ` Nikolay Nikolaev
2014-12-05 12:10 ` Nikolay Nikolaev
2014-12-08 10:51 ` Christoffer Dall
2014-12-08 10:51 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-11-24 21:27 ` [RFC PATCH 4/5] ARM: enable linking against eventfd and irqchip Nikolay Nikolaev
2014-11-24 21:27 ` Nikolay Nikolaev
2014-11-26 16:58 ` Eric Auger
2014-11-26 16:58 ` Eric Auger
2014-11-29 7:18 ` Shannon Zhao
2014-11-29 7:18 ` Shannon Zhao
2014-11-29 13:49 ` Nikolay Nikolaev
2014-11-29 13:49 ` Nikolay Nikolaev
2014-11-29 14:32 ` Christoffer Dall
2014-11-29 14:32 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-11-29 11:29 ` Christoffer Dall
2014-12-05 12:14 ` Nikolay Nikolaev
2014-12-05 12:14 ` Nikolay Nikolaev
2014-11-24 21:27 ` [RFC PATCH 5/5] ARM: enable KVM_CAP_IOEVENTFD Nikolay Nikolaev
2014-11-24 21:27 ` Nikolay Nikolaev
2014-11-27 11:01 ` Eric Auger [this message]
2014-11-27 11:01 ` [RFC PATCH 0/5] ARM: KVM: Enable the ioeventfd capability of KVM on ARM Eric Auger
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=54770473.7010307@linaro.org \
--to=eric.auger@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.