diff options
author | Alexey Kardashevskiy | 2018-03-13 18:17:31 +0100 |
---|---|---|
committer | Alex Williamson | 2018-03-13 18:17:31 +0100 |
commit | fcad0d2121976df4b422b4007a5eb7fcaac01134 (patch) | |
tree | 44f00a94ee883d7f7670b304834b62e9e92b2175 /hw/vfio/pci.c | |
parent | vfio-pci: Allow mmap of MSIX BAR (diff) | |
download | qemu-fcad0d2121976df4b422b4007a5eb7fcaac01134.tar.gz qemu-fcad0d2121976df4b422b4007a5eb7fcaac01134.tar.xz qemu-fcad0d2121976df4b422b4007a5eb7fcaac01134.zip |
ppc/spapr, vfio: Turn off MSIX emulation for VFIO devices
This adds a possibility for the platform to tell VFIO not to emulate MSIX
so MMIO memory regions do not get split into chunks in flatview and
the entire page can be registered as a KVM memory slot and make direct
MMIO access possible for the guest.
This enables the entire MSIX BAR mapping to the guest for the pseries
platform in order to achieve the maximum MMIO preformance for certain
devices.
Tested on:
LSI Logic / Symbios Logic SAS3008 PCI-Express Fusion-MPT SAS-3 (rev 02)
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw/vfio/pci.c')
-rw-r--r-- | hw/vfio/pci.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index 02974f4eb9..b9bc6cd310 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -1581,6 +1581,19 @@ static int vfio_msix_setup(VFIOPCIDevice *vdev, int pos, Error **errp) */ memory_region_set_enabled(&vdev->pdev.msix_pba_mmio, false); + /* + * The emulated machine may provide a paravirt interface for MSIX setup + * so it is not strictly necessary to emulate MSIX here. This becomes + * helpful when frequently accessed MMIO registers are located in + * subpages adjacent to the MSIX table but the MSIX data containing page + * cannot be mapped because of a host page size bigger than the MSIX table + * alignment. + */ + if (object_property_get_bool(OBJECT(qdev_get_machine()), + "vfio-no-msix-emulation", NULL)) { + memory_region_set_enabled(&vdev->pdev.msix_table_mmio, false); + } + return 0; } |