[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1461761010-5452-1-git-send-email-xyjxie@linux.vnet.ibm.com>
Date: Wed, 27 Apr 2016 20:43:25 +0800
From: Yongji Xie <xyjxie@...ux.vnet.ibm.com>
To: kvm@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-pci@...r.kernel.org, linuxppc-dev@...ts.ozlabs.org,
iommu@...ts.linux-foundation.org
Cc: alex.williamson@...hat.com, bhelgaas@...gle.com, aik@...abs.ru,
benh@...nel.crashing.org, paulus@...ba.org, mpe@...erman.id.au,
joro@...tes.org, warrier@...ux.vnet.ibm.com,
zhong@...ux.vnet.ibm.com, nikunj@...ux.vnet.ibm.com,
eric.auger@...aro.org, will.deacon@....com,
gwshan@...ux.vnet.ibm.com, David.Laight@...LAB.COM,
alistair@...ple.id.au, ruscur@...sell.cc,
Yongji Xie <xyjxie@...ux.vnet.ibm.com>
Subject: [PATCH 0/5] vfio-pci: Add support for mmapping MSI-X table
Current vfio-pci implementation disallows to mmap the page
containing MSI-X table in case that users can write to MSI-X
table and generate an incorrect MSIs.
However, this will cause some performance issue when there
are some critical device registers in the same page as the
MSI-X table. We have to handle the mmio access to these
registers in QEMU emulation rather than in guest.
To solve this issue, this series allows to mmap MSI-X table
when hardware supports the capability of interrupt remapping
which can ensure that a given pci device can only shoot the
MSIs assigned for it. And we introduce a new bus_flags
PCI_BUS_FLAGS_MSI_REMAP to test this capability on PCI side
for different archs.
The patch 3 are based on the proposed patchset[1].
[1] http://www.spinics.net/lists/kvm/msg130256.html
Yongji Xie (5):
PCI: Add a new PCI_BUS_FLAGS_MSI_REMAP flag
iommu: Set PCI_BUS_FLAGS_MSI_REMAP if IOMMU have capability of IRQ remapping
PCI: Set PCI_BUS_FLAGS_MSI_REMAP if MSI controller supports IRQ remapping
pci-ioda: Set PCI_BUS_FLAGS_MSI_REMAP for IODA host bridge
vfio-pci: Allow to mmap MSI-X table if interrupt remapping is supported
arch/powerpc/platforms/powernv/pci-ioda.c | 8 ++++++++
drivers/iommu/iommu.c | 15 +++++++++++++++
drivers/pci/msi.c | 12 ++++++++++++
drivers/pci/probe.c | 3 +++
drivers/vfio/pci/vfio_pci.c | 7 +++++--
drivers/vfio/pci/vfio_pci_rdwr.c | 3 ++-
include/linux/msi.h | 6 +++++-
include/linux/pci.h | 1 +
8 files changed, 51 insertions(+), 4 deletions(-)
--
1.7.9.5
Powered by blists - more mailing lists