[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH rfcv1 09/23] vfio/iommufd_device: Add ioas_id in IOMMUFDDevice an
From: |
Zhenzhong Duan |
Subject: |
[PATCH rfcv1 09/23] vfio/iommufd_device: Add ioas_id in IOMMUFDDevice and pass to vIOMMU |
Date: |
Mon, 15 Jan 2024 18:37:21 +0800 |
Sometimes vIOMMU needs to re-attach device to ioas id of vfio,
i.e., when vIOMMU is disabled by guest.
This is a prerequisite patch for following one.
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
---
include/sysemu/iommufd_device.h | 3 ++-
backends/iommufd_device.c | 3 ++-
hw/vfio/iommufd.c | 2 +-
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/include/sysemu/iommufd_device.h b/include/sysemu/iommufd_device.h
index 799c1345fd..7aeec9b980 100644
--- a/include/sysemu/iommufd_device.h
+++ b/include/sysemu/iommufd_device.h
@@ -26,6 +26,7 @@ typedef struct IOMMUFDDeviceOps {
struct IOMMUFDDevice {
IOMMUFDBackend *iommufd;
uint32_t dev_id;
+ uint32_t ioas_id;
IOMMUFDDeviceOps *ops;
};
@@ -36,5 +37,5 @@ int iommufd_device_get_info(IOMMUFDDevice *idev,
uint32_t len, void *data);
void iommufd_device_init(void *_idev, size_t instance_size,
IOMMUFDBackend *iommufd, uint32_t dev_id,
- IOMMUFDDeviceOps *ops);
+ uint32_t ioas_id, IOMMUFDDeviceOps *ops);
#endif
diff --git a/backends/iommufd_device.c b/backends/iommufd_device.c
index 26f69252d2..f93a201453 100644
--- a/backends/iommufd_device.c
+++ b/backends/iommufd_device.c
@@ -52,7 +52,7 @@ int iommufd_device_get_info(IOMMUFDDevice *idev,
void iommufd_device_init(void *_idev, size_t instance_size,
IOMMUFDBackend *iommufd, uint32_t dev_id,
- IOMMUFDDeviceOps *ops)
+ uint32_t ioas_id, IOMMUFDDeviceOps *ops)
{
IOMMUFDDevice *idev = (IOMMUFDDevice *)_idev;
@@ -60,5 +60,6 @@ void iommufd_device_init(void *_idev, size_t instance_size,
idev->iommufd = iommufd;
idev->dev_id = dev_id;
+ idev->ioas_id = ioas_id;
idev->ops = ops;
}
diff --git a/hw/vfio/iommufd.c b/hw/vfio/iommufd.c
index c8c669c59a..3aabe41043 100644
--- a/hw/vfio/iommufd.c
+++ b/hw/vfio/iommufd.c
@@ -432,7 +432,7 @@ found_container:
QLIST_INSERT_HEAD(&vfio_device_list, vbasedev, global_next);
iommufd_device_init(idev, sizeof(*idev), container->be, vbasedev->devid,
- &vfio_iommufd_device_ops);
+ container->ioas_id, &vfio_iommufd_device_ops);
trace_iommufd_cdev_device_info(vbasedev->name, devfd, vbasedev->num_irqs,
vbasedev->num_regions, vbasedev->flags);
return 0;
--
2.34.1
- [PATCH rfcv1 00/23] intel_iommu: Enable stage-1 translation, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 02/23] backends/iommufd: add helpers for allocating user-managed HWPT, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 01/23] Update linux header to support nested hwpt alloc, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 03/23] backends/iommufd_device: introduce IOMMUFDDevice targeted interface, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 04/23] vfio: implement IOMMUFDDevice interface callbacks, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 05/23] intel_iommu: add a placeholder variable for scalable modern mode, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 06/23] intel_iommu: check and sync host IOMMU cap/ecap in scalable modern mode, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 07/23] intel_iommu: process PASID cache invalidation, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 08/23] intel_iommu: add PASID cache management infrastructure, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 09/23] vfio/iommufd_device: Add ioas_id in IOMMUFDDevice and pass to vIOMMU,
Zhenzhong Duan <=
- [PATCH rfcv1 10/23] intel_iommu: bind/unbind guest page table to host, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 11/23] intel_iommu: ERRATA_772415 workaround, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 12/23] intel_iommu: replay pasid binds after context cache invalidation, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 13/23] intel_iommu: process PASID-based iotlb invalidation, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 14/23] intel_iommu: propagate PASID-based iotlb invalidation to host, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 15/23] intel_iommu: process PASID-based Device-TLB invalidation, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 16/23] intel_iommu: rename slpte in iotlb_entry to pte, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 17/23] intel_iommu: implement firt level translation, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 18/23] intel_iommu: fix the fault reason report, Zhenzhong Duan, 2024/01/15
- [PATCH rfcv1 21/23] intel_iommu: invalidate piotlb when flush pasid, Zhenzhong Duan, 2024/01/15