From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org
Cc: lvivier@redhat.com, thuth@redhat.com, qemu-devel@nongnu.org,
aik@ozlabs.ru, agraf@suse.de, mdroth@linux.vnet.ibm.com,
qemu-ppc@nongnu.org, David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 06/21] spapr_iommu: Provide a function to switch a TCE table to allowing VFIO
Date: Fri, 23 Oct 2015 20:43:18 +1100 [thread overview]
Message-ID: <1445593413-22057-8-git-send-email-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <1445593413-22057-1-git-send-email-david@gibson.dropbear.id.au>
Because of the way non-VFIO guest IOMMU operations are KVM accelerated, not
all TCE tables (guest IOMMU contexts) can support VFIO devices. Currently,
this is decided at creation time.
To support hotplug of VFIO devices, we need to allow a TCE table which
previously didn't allow VFIO devices to be switched so that it can. This
patch adds an spapr_tce_set_need_vfio() function to do this, by
reallocating the table in userspace if necessary.
Currently this doesn't allow the KVM acceleration to be re-enabled if all
the VFIO devices are removed. That's an optimization for another time.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
---
hw/ppc/spapr_iommu.c | 32 ++++++++++++++++++++++++++++++++
include/hw/ppc/spapr.h | 2 ++
2 files changed, 34 insertions(+)
diff --git a/hw/ppc/spapr_iommu.c b/hw/ppc/spapr_iommu.c
index 5166cde..ed28565 100644
--- a/hw/ppc/spapr_iommu.c
+++ b/hw/ppc/spapr_iommu.c
@@ -168,6 +168,38 @@ static int spapr_tce_table_realize(DeviceState *dev)
return 0;
}
+void spapr_tce_set_need_vfio(sPAPRTCETable *tcet, bool need_vfio)
+{
+ size_t table_size = tcet->nb_table * sizeof(uint64_t);
+ void *newtable;
+
+ if (need_vfio == tcet->need_vfio) {
+ /* Nothing to do */
+ return;
+ }
+
+ if (!need_vfio) {
+ /* FIXME: We don't support transition back to KVM accelerated
+ * TCEs yet */
+ return;
+ }
+
+ tcet->need_vfio = true;
+
+ if (tcet->fd < 0) {
+ /* Table is already in userspace, nothing to be do */
+ return;
+ }
+
+ newtable = g_malloc(table_size);
+ memcpy(newtable, tcet->table, table_size);
+
+ kvmppc_remove_spapr_tce(tcet->table, tcet->fd, tcet->nb_table);
+
+ tcet->fd = -1;
+ tcet->table = newtable;
+}
+
sPAPRTCETable *spapr_tce_new_table(DeviceState *owner, uint32_t liobn,
uint64_t bus_offset,
uint32_t page_shift,
diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
index 27d65d5..5baa906 100644
--- a/include/hw/ppc/spapr.h
+++ b/include/hw/ppc/spapr.h
@@ -589,6 +589,8 @@ sPAPRTCETable *spapr_tce_new_table(DeviceState *owner, uint32_t liobn,
uint32_t page_shift,
uint32_t nb_table,
bool need_vfio);
+void spapr_tce_set_need_vfio(sPAPRTCETable *tcet, bool need_vfio);
+
MemoryRegion *spapr_tce_get_iommu(sPAPRTCETable *tcet);
int spapr_dma_dt(void *fdt, int node_off, const char *propname,
uint32_t liobn, uint64_t window, uint32_t size);
--
2.4.3
next prev parent reply other threads:[~2015-10-23 9:43 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-23 9:43 [Qemu-devel] [PULL 00/21] ppc-next-20151023 queue 20151023 David Gibson
2015-10-23 9:43 ` David Gibson
2015-10-23 12:50 ` Peter Maydell
2015-10-23 9:43 ` [Qemu-devel] [PULL 01/21] spapr: Allocate HTAB from machine init David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 02/21] spapr: Abort when HTAB of requested size isn't allocated David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 03/21] spapr: Add "slb-size" property to CPU device tree nodes David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 04/21] spapr_pci: Allow PCI host bridge DMA window to be configured David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 05/21] spapr_iommu: Rename vfio_accel parameter David Gibson
2015-10-23 9:43 ` David Gibson [this message]
2015-10-23 9:43 ` [Qemu-devel] [PULL 07/21] spapr_pci: Allow VFIO devices to work on the normal PCI host bridge David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 08/21] hw/scsi/spapr_vscsi: Remove superfluous memset David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 09/21] ppc: Add mmu_model defines for arch 2.03 and 2.07 David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 10/21] ppc/spapr: Add "ibm, pa-features" property to the device-tree David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 11/21] adb: add to input category David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 12/21] cmd646: add to storage category David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 13/21] escc: add to input category David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 14/21] grackle: add to bridge category David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 15/21] cuda: " David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 16/21] macio-ide: add to storage category David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 17/21] uninorth: add to bridge category David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 18/21] macio: " David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 19/21] macio-nvram: add to misc category David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 20/21] openpic: " David Gibson
2015-10-23 9:43 ` [Qemu-devel] [PULL 21/21] prep: do not use CPU_LOG_IOPORT, convert to tracepoints David Gibson
2015-10-23 13:56 ` [Qemu-devel] [PULL 00/21] ppc-next-20151023 queue 20151023 Michael Roth
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=1445593413-22057-8-git-send-email-david@gibson.dropbear.id.au \
--to=david@gibson.dropbear.id.au \
--cc=agraf@suse.de \
--cc=aik@ozlabs.ru \
--cc=lvivier@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=thuth@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).