[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-arm] [RFC v7 06/16] virtio-iommu: Implement attach/detach command
From: |
Eric Auger |
Subject: |
[Qemu-arm] [RFC v7 06/16] virtio-iommu: Implement attach/detach command |
Date: |
Mon, 6 Aug 2018 22:14:34 +0200 |
This patch implements the endpoint attach/detach to/from
a domain.
Signed-off-by: Eric Auger <address@hidden>
---
hw/virtio/virtio-iommu.c | 43 +++++++++++++++++++++++++++++++++++--------
1 file changed, 35 insertions(+), 8 deletions(-)
diff --git a/hw/virtio/virtio-iommu.c b/hw/virtio/virtio-iommu.c
index 8bbb116..4cb6e15 100644
--- a/hw/virtio/virtio-iommu.c
+++ b/hw/virtio/virtio-iommu.c
@@ -83,8 +83,8 @@ static void
virtio_iommu_detach_endpoint_from_domain(viommu_endpoint *ep)
ep->domain = NULL;
}
-viommu_endpoint *virtio_iommu_get_endpoint(VirtIOIOMMU *s, uint32_t ep_id);
-viommu_endpoint *virtio_iommu_get_endpoint(VirtIOIOMMU *s, uint32_t ep_id)
+static viommu_endpoint *virtio_iommu_get_endpoint(VirtIOIOMMU *s,
+ uint32_t ep_id)
{
viommu_endpoint *ep;
@@ -113,8 +113,8 @@ static void virtio_iommu_put_endpoint(gpointer data)
g_free(ep);
}
-viommu_domain *virtio_iommu_get_domain(VirtIOIOMMU *s, uint32_t domain_id);
-viommu_domain *virtio_iommu_get_domain(VirtIOIOMMU *s, uint32_t domain_id)
+static viommu_domain *virtio_iommu_get_domain(VirtIOIOMMU *s,
+ uint32_t domain_id)
{
viommu_domain *domain;
@@ -193,6 +193,8 @@ static int virtio_iommu_attach(VirtIOIOMMU *s,
uint32_t domain_id = le32_to_cpu(req->domain);
uint32_t ep_id = le32_to_cpu(req->endpoint);
uint32_t reserved = le32_to_cpu(req->reserved);
+ viommu_domain *domain;
+ viommu_endpoint *ep;
trace_virtio_iommu_attach(domain_id, ep_id);
@@ -200,7 +202,22 @@ static int virtio_iommu_attach(VirtIOIOMMU *s,
return VIRTIO_IOMMU_S_INVAL;
}
- return VIRTIO_IOMMU_S_UNSUPP;
+ ep = virtio_iommu_get_endpoint(s, ep_id);
+ if (ep->domain) {
+ /*
+ * the device is already attached to a domain,
+ * detach it first
+ */
+ virtio_iommu_detach_endpoint_from_domain(ep);
+ }
+
+ domain = virtio_iommu_get_domain(s, domain_id);
+ QLIST_INSERT_HEAD(&domain->endpoint_list, ep, next);
+
+ ep->domain = domain;
+ g_tree_ref(domain->mappings);
+
+ return VIRTIO_IOMMU_S_OK;
}
static int virtio_iommu_detach(VirtIOIOMMU *s,
@@ -208,14 +225,24 @@ static int virtio_iommu_detach(VirtIOIOMMU *s,
{
uint32_t ep_id = le32_to_cpu(req->endpoint);
uint32_t reserved = le32_to_cpu(req->reserved);
-
- trace_virtio_iommu_detach(ep_id);
+ viommu_endpoint *ep;
if (reserved) {
return VIRTIO_IOMMU_S_INVAL;
}
- return VIRTIO_IOMMU_S_UNSUPP;
+ ep = g_tree_lookup(s->endpoints, GUINT_TO_POINTER(ep_id));
+ if (!ep) {
+ return VIRTIO_IOMMU_S_NOENT;
+ }
+
+ if (!ep->domain) {
+ return VIRTIO_IOMMU_S_INVAL;
+ }
+
+ virtio_iommu_detach_endpoint_from_domain(ep);
+ trace_virtio_iommu_detach(ep_id);
+ return VIRTIO_IOMMU_S_OK;
}
static int virtio_iommu_map(VirtIOIOMMU *s,
--
2.5.5
- [Qemu-arm] [RFC v7 00/16] VIRTIO-IOMMU device, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 01/16] linux-headers: Partial update for virtio-iommu v0.7, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 02/16] virtio-iommu: Add skeleton, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 03/16] virtio-iommu: Decode the command payload, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 04/16] virtio-iommu: Add the iommu regions, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 06/16] virtio-iommu: Implement attach/detach command,
Eric Auger <=
- [Qemu-arm] [RFC v7 05/16] virtio-iommu: Endpoint and domains structs and helpers, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 07/16] virtio-iommu: Implement map/unmap, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 08/16] virtio-iommu: Implement translate, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 10/16] virtio-iommu: Add an msi_bypass property, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 09/16] virtio-iommu: Implement probe request, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 11/16] virtio-iommu: Implement fault reporting, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 13/16] qdev: export qbus_find_recursive, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 12/16] virtio_iommu: Handle reserved regions in translation process, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 14/16] hw/arm/virt: Add virtio-iommu to the virt board, Eric Auger, 2018/08/06
- [Qemu-arm] [RFC v7 15/16] hw/arm/virt-acpi-build: Add virtio-iommu node in IORT table, Eric Auger, 2018/08/06