This patch adds notifier for propagating guest PASID-based iotlb invalidation to host.
Cc: Kevin Tian <kevin.t...@intel.com> Cc: Jacob Pan <jacob.jun....@linux.intel.com> Cc: Peter Xu <pet...@redhat.com> Cc: Eric Auger <eric.au...@redhat.com> Cc: Yi Sun <yi.y....@linux.intel.com> Cc: David Gibson <da...@gibson.dropbear.id.au> Signed-off-by: Liu Yi L <yi.l....@intel.com> --- hw/vfio/pci.c | 29 +++++++++++++++++++++++++++++ include/hw/iommu/iommu.h | 8 ++++++++ 2 files changed, 37 insertions(+) diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index 012b8ed..52fe3ed 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -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; diff --git a/include/hw/iommu/iommu.h b/include/hw/iommu/iommu.h index 4f21aa1..452f609 100644 --- a/include/hw/iommu/iommu.h +++ b/include/hw/iommu/iommu.h @@ -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; -- 2.7.4