@@ -2802,6 +2802,31 @@ static void vfio_iommu_pasid_bind_notify(IOMMUCTXNotifier *n,
#endif
}
+static void vfio_iommu_cache_inv_notify(IOMMUCTXNotifier *n,
+ IOMMUCTXEventData *event_data)
+{
+#ifdef __linux__
+ VFIOIOMMUContext *giommu_ctx = container_of(n, VFIOIOMMUContext, n);
+ VFIOContainer *container = giommu_ctx->container;
+ IOMMUCTXCacheInvInfo *inv_info =
+ (IOMMUCTXCacheInvInfo *) event_data->data;
+ struct vfio_iommu_type1_cache_invalidate *cache_inv;
+ unsigned long argsz;
+
+ argsz = sizeof(*cache_inv);
+ cache_inv = g_malloc0(argsz);
+ cache_inv->argsz = argsz;
+ cache_inv->info = *inv_info->info;
+ cache_inv->flags = 0;
+
+ if (ioctl(container->fd, VFIO_IOMMU_CACHE_INVALIDATE, cache_inv) != 0) {
+ error_report("%s: cache invalidation failed: %d", __func__, -errno);
+ }
+
+ g_free(cache_inv);
+#endif
+}
+
static void vfio_realize(PCIDevice *pdev, Error **errp)
{
VFIOPCIDevice *vdev = PCI_VFIO(pdev);
@@ -3118,6 +3143,10 @@ static void vfio_realize(PCIDevice *pdev, Error **errp)
iommu_context,
vfio_iommu_pasid_bind_notify,
IOMMU_CTX_EVENT_PASID_BIND);
+ vfio_register_iommu_ctx_notifier(vdev,
+ iommu_context,
+ vfio_iommu_cache_inv_notify,
+ IOMMU_CTX_EVENT_CACHE_INV);
}
return;
@@ -34,6 +34,7 @@ enum IOMMUCTXEvent {
IOMMU_CTX_EVENT_PASID_ALLOC,
IOMMU_CTX_EVENT_PASID_FREE,
IOMMU_CTX_EVENT_PASID_BIND,
+ IOMMU_CTX_EVENT_CACHE_INV,
IOMMU_CTX_EVENT_NUM,
};
typedef enum IOMMUCTXEvent IOMMUCTXEvent;
@@ -61,6 +62,13 @@ struct IOMMUCTXPASIDBindData {
};
typedef struct IOMMUCTXPASIDBindData IOMMUCTXPASIDBindData;
+struct IOMMUCTXCacheInvInfo {
+#ifdef __linux__
+ struct iommu_cache_invalidate_info *info;
+#endif
+};
+typedef struct IOMMUCTXCacheInvInfo IOMMUCTXCacheInvInfo;
+
struct IOMMUCTXEventData {
IOMMUCTXEvent event;
uint64_t length;
This patch adds notifier for propagating guest PASID-based iotlb invalidation to host. Cc: Kevin Tian <kevin.tian@intel.com> Cc: Jacob Pan <jacob.jun.pan@linux.intel.com> Cc: Peter Xu <peterx@redhat.com> Cc: Eric Auger <eric.auger@redhat.com> Cc: Yi Sun <yi.y.sun@linux.intel.com> Cc: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Liu Yi L <yi.l.liu@intel.com> --- hw/vfio/pci.c | 29 +++++++++++++++++++++++++++++ include/hw/iommu/iommu.h | 8 ++++++++ 2 files changed, 37 insertions(+)