Blame SOURCES/kvm-virtio-pci-add-support-for-configure-interrupt.patch

7f1c5b
From 61ac1476d3820c97e1cc103af422b17bc94c6ca5 Mon Sep 17 00:00:00 2001
7f1c5b
From: Cindy Lu <lulu@redhat.com>
7f1c5b
Date: Thu, 22 Dec 2022 15:04:51 +0800
7f1c5b
Subject: [PATCH 10/31] virtio-pci: add support for configure interrupt
7f1c5b
MIME-Version: 1.0
7f1c5b
Content-Type: text/plain; charset=UTF-8
7f1c5b
Content-Transfer-Encoding: 8bit
7f1c5b
7f1c5b
RH-Author: Cindy Lu <lulu@redhat.com>
7f1c5b
RH-MergeRequest: 132: vhost-vdpa: support config interrupt in vhost-vdpa
7f1c5b
RH-Bugzilla: 1905805
7f1c5b
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
7f1c5b
RH-Acked-by: Eugenio PĂ©rez <eperezma@redhat.com>
7f1c5b
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
7f1c5b
RH-Commit: [10/10] ebd6a11d7699660d8ac5a4e44a790f823daea57c (lulu6/qemu-kvm3)
7f1c5b
7f1c5b
https://bugzilla.redhat.com/show_bug.cgi?id=1905805
7f1c5b
Add process to handle the configure interrupt, The function's
7f1c5b
logic is the same with vq interrupt.Add extra process to check
7f1c5b
the configure interrupt
7f1c5b
7f1c5b
Signed-off-by: Cindy Lu <lulu@redhat.com>
7f1c5b
Message-Id: <20221222070451.936503-11-lulu@redhat.com>
7f1c5b
Acked-by: Jason Wang <jasowang@redhat.com>
7f1c5b
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
7f1c5b
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
7f1c5b
(cherry picked from commit 1680542862edd963e6380dd4121a5e85df55581f)
7f1c5b
Signed-off-by: Cindy Lu <lulu@redhat.com>
7f1c5b
---
7f1c5b
 hw/virtio/virtio-pci.c         | 118 +++++++++++++++++++++++++++------
7f1c5b
 include/hw/virtio/virtio-pci.h |   4 +-
7f1c5b
 2 files changed, 102 insertions(+), 20 deletions(-)
7f1c5b
7f1c5b
diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
7f1c5b
index ec816ea367..3f00e91718 100644
7f1c5b
--- a/hw/virtio/virtio-pci.c
7f1c5b
+++ b/hw/virtio/virtio-pci.c
7f1c5b
@@ -751,7 +751,8 @@ static int virtio_pci_get_notifier(VirtIOPCIProxy *proxy, int queue_no,
7f1c5b
     VirtQueue *vq;
7f1c5b
 
7f1c5b
     if (queue_no == VIRTIO_CONFIG_IRQ_IDX) {
7f1c5b
-        return -1;
7f1c5b
+        *n = virtio_config_get_guest_notifier(vdev);
7f1c5b
+        *vector = vdev->config_vector;
7f1c5b
     } else {
7f1c5b
         if (!virtio_queue_get_num(vdev, queue_no)) {
7f1c5b
             return -1;
7f1c5b
@@ -811,7 +812,7 @@ undo:
7f1c5b
     }
7f1c5b
     return ret;
7f1c5b
 }
7f1c5b
-static int kvm_virtio_pci_vector_use(VirtIOPCIProxy *proxy, int nvqs)
7f1c5b
+static int kvm_virtio_pci_vector_vq_use(VirtIOPCIProxy *proxy, int nvqs)
7f1c5b
 {
7f1c5b
     int queue_no;
7f1c5b
     int ret = 0;
7f1c5b
@@ -826,6 +827,10 @@ static int kvm_virtio_pci_vector_use(VirtIOPCIProxy *proxy, int nvqs)
7f1c5b
     return ret;
7f1c5b
 }
7f1c5b
 
7f1c5b
+static int kvm_virtio_pci_vector_config_use(VirtIOPCIProxy *proxy)
7f1c5b
+{
7f1c5b
+    return kvm_virtio_pci_vector_use_one(proxy, VIRTIO_CONFIG_IRQ_IDX);
7f1c5b
+}
7f1c5b
 
7f1c5b
 static void kvm_virtio_pci_vector_release_one(VirtIOPCIProxy *proxy,
7f1c5b
                                               int queue_no)
7f1c5b
@@ -850,7 +855,7 @@ static void kvm_virtio_pci_vector_release_one(VirtIOPCIProxy *proxy,
7f1c5b
     kvm_virtio_pci_vq_vector_release(proxy, vector);
7f1c5b
 }
7f1c5b
 
7f1c5b
-static void kvm_virtio_pci_vector_release(VirtIOPCIProxy *proxy, int nvqs)
7f1c5b
+static void kvm_virtio_pci_vector_vq_release(VirtIOPCIProxy *proxy, int nvqs)
7f1c5b
 {
7f1c5b
     int queue_no;
7f1c5b
     VirtIODevice *vdev = virtio_bus_get_device(&proxy->bus);
7f1c5b
@@ -863,6 +868,11 @@ static void kvm_virtio_pci_vector_release(VirtIOPCIProxy *proxy, int nvqs)
7f1c5b
     }
7f1c5b
 }
7f1c5b
 
7f1c5b
+static void kvm_virtio_pci_vector_config_release(VirtIOPCIProxy *proxy)
7f1c5b
+{
7f1c5b
+    kvm_virtio_pci_vector_release_one(proxy, VIRTIO_CONFIG_IRQ_IDX);
7f1c5b
+}
7f1c5b
+
7f1c5b
 static int virtio_pci_one_vector_unmask(VirtIOPCIProxy *proxy,
7f1c5b
                                        unsigned int queue_no,
7f1c5b
                                        unsigned int vector,
7f1c5b
@@ -944,9 +954,19 @@ static int virtio_pci_vector_unmask(PCIDevice *dev, unsigned vector,
7f1c5b
         }
7f1c5b
         vq = virtio_vector_next_queue(vq);
7f1c5b
     }
7f1c5b
-
7f1c5b
+    /* unmask config intr */
7f1c5b
+    if (vector == vdev->config_vector) {
7f1c5b
+        n = virtio_config_get_guest_notifier(vdev);
7f1c5b
+        ret = virtio_pci_one_vector_unmask(proxy, VIRTIO_CONFIG_IRQ_IDX, vector,
7f1c5b
+                                           msg, n);
7f1c5b
+        if (ret < 0) {
7f1c5b
+            goto undo_config;
7f1c5b
+        }
7f1c5b
+    }
7f1c5b
     return 0;
7f1c5b
-
7f1c5b
+undo_config:
7f1c5b
+    n = virtio_config_get_guest_notifier(vdev);
7f1c5b
+    virtio_pci_one_vector_mask(proxy, VIRTIO_CONFIG_IRQ_IDX, vector, n);
7f1c5b
 undo:
7f1c5b
     vq = virtio_vector_first_queue(vdev, vector);
7f1c5b
     while (vq && unmasked >= 0) {
7f1c5b
@@ -980,6 +1000,11 @@ static void virtio_pci_vector_mask(PCIDevice *dev, unsigned vector)
7f1c5b
         }
7f1c5b
         vq = virtio_vector_next_queue(vq);
7f1c5b
     }
7f1c5b
+
7f1c5b
+    if (vector == vdev->config_vector) {
7f1c5b
+        n = virtio_config_get_guest_notifier(vdev);
7f1c5b
+        virtio_pci_one_vector_mask(proxy, VIRTIO_CONFIG_IRQ_IDX, vector, n);
7f1c5b
+    }
7f1c5b
 }
7f1c5b
 
7f1c5b
 static void virtio_pci_vector_poll(PCIDevice *dev,
7f1c5b
@@ -1011,6 +1036,34 @@ static void virtio_pci_vector_poll(PCIDevice *dev,
7f1c5b
             msix_set_pending(dev, vector);
7f1c5b
         }
7f1c5b
     }
7f1c5b
+    /* poll the config intr */
7f1c5b
+    ret = virtio_pci_get_notifier(proxy, VIRTIO_CONFIG_IRQ_IDX, &notifier,
7f1c5b
+                                  &vector);
7f1c5b
+    if (ret < 0) {
7f1c5b
+        return;
7f1c5b
+    }
7f1c5b
+    if (vector < vector_start || vector >= vector_end ||
7f1c5b
+        !msix_is_masked(dev, vector)) {
7f1c5b
+        return;
7f1c5b
+    }
7f1c5b
+    if (k->guest_notifier_pending) {
7f1c5b
+        if (k->guest_notifier_pending(vdev, VIRTIO_CONFIG_IRQ_IDX)) {
7f1c5b
+            msix_set_pending(dev, vector);
7f1c5b
+        }
7f1c5b
+    } else if (event_notifier_test_and_clear(notifier)) {
7f1c5b
+        msix_set_pending(dev, vector);
7f1c5b
+    }
7f1c5b
+}
7f1c5b
+
7f1c5b
+void virtio_pci_set_guest_notifier_fd_handler(VirtIODevice *vdev, VirtQueue *vq,
7f1c5b
+                                              int n, bool assign,
7f1c5b
+                                              bool with_irqfd)
7f1c5b
+{
7f1c5b
+    if (n == VIRTIO_CONFIG_IRQ_IDX) {
7f1c5b
+        virtio_config_set_guest_notifier_fd_handler(vdev, assign, with_irqfd);
7f1c5b
+    } else {
7f1c5b
+        virtio_queue_set_guest_notifier_fd_handler(vq, assign, with_irqfd);
7f1c5b
+    }
7f1c5b
 }
7f1c5b
 
7f1c5b
 static int virtio_pci_set_guest_notifier(DeviceState *d, int n, bool assign,
7f1c5b
@@ -1019,17 +1072,25 @@ static int virtio_pci_set_guest_notifier(DeviceState *d, int n, bool assign,
7f1c5b
     VirtIOPCIProxy *proxy = to_virtio_pci_proxy(d);
7f1c5b
     VirtIODevice *vdev = virtio_bus_get_device(&proxy->bus);
7f1c5b
     VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(vdev);
7f1c5b
-    VirtQueue *vq = virtio_get_queue(vdev, n);
7f1c5b
-    EventNotifier *notifier = virtio_queue_get_guest_notifier(vq);
7f1c5b
+    VirtQueue *vq = NULL;
7f1c5b
+    EventNotifier *notifier = NULL;
7f1c5b
+
7f1c5b
+    if (n == VIRTIO_CONFIG_IRQ_IDX) {
7f1c5b
+        notifier = virtio_config_get_guest_notifier(vdev);
7f1c5b
+    } else {
7f1c5b
+        vq = virtio_get_queue(vdev, n);
7f1c5b
+        notifier = virtio_queue_get_guest_notifier(vq);
7f1c5b
+    }
7f1c5b
 
7f1c5b
     if (assign) {
7f1c5b
         int r = event_notifier_init(notifier, 0);
7f1c5b
         if (r < 0) {
7f1c5b
             return r;
7f1c5b
         }
7f1c5b
-        virtio_queue_set_guest_notifier_fd_handler(vq, true, with_irqfd);
7f1c5b
+        virtio_pci_set_guest_notifier_fd_handler(vdev, vq, n, true, with_irqfd);
7f1c5b
     } else {
7f1c5b
-        virtio_queue_set_guest_notifier_fd_handler(vq, false, with_irqfd);
7f1c5b
+        virtio_pci_set_guest_notifier_fd_handler(vdev, vq, n, false,
7f1c5b
+                                                 with_irqfd);
7f1c5b
         event_notifier_cleanup(notifier);
7f1c5b
     }
7f1c5b
 
7f1c5b
@@ -1072,10 +1133,13 @@ static int virtio_pci_set_guest_notifiers(DeviceState *d, int nvqs, bool assign)
7f1c5b
     proxy->nvqs_with_notifiers = nvqs;
7f1c5b
 
7f1c5b
     /* Must unset vector notifier while guest notifier is still assigned */
7f1c5b
-    if ((proxy->vector_irqfd || k->guest_notifier_mask) && !assign) {
7f1c5b
+    if ((proxy->vector_irqfd ||
7f1c5b
+         (vdev->use_guest_notifier_mask && k->guest_notifier_mask)) &&
7f1c5b
+        !assign) {
7f1c5b
         msix_unset_vector_notifiers(&proxy->pci_dev);
7f1c5b
         if (proxy->vector_irqfd) {
7f1c5b
-            kvm_virtio_pci_vector_release(proxy, nvqs);
7f1c5b
+            kvm_virtio_pci_vector_vq_release(proxy, nvqs);
7f1c5b
+            kvm_virtio_pci_vector_config_release(proxy);
7f1c5b
             g_free(proxy->vector_irqfd);
7f1c5b
             proxy->vector_irqfd = NULL;
7f1c5b
         }
7f1c5b
@@ -1091,20 +1155,30 @@ static int virtio_pci_set_guest_notifiers(DeviceState *d, int nvqs, bool assign)
7f1c5b
             goto assign_error;
7f1c5b
         }
7f1c5b
     }
7f1c5b
-
7f1c5b
+    r = virtio_pci_set_guest_notifier(d, VIRTIO_CONFIG_IRQ_IDX, assign,
7f1c5b
+                                      with_irqfd);
7f1c5b
+    if (r < 0) {
7f1c5b
+        goto config_assign_error;
7f1c5b
+    }
7f1c5b
     /* Must set vector notifier after guest notifier has been assigned */
7f1c5b
-    if ((with_irqfd || k->guest_notifier_mask) && assign) {
7f1c5b
+    if ((with_irqfd ||
7f1c5b
+         (vdev->use_guest_notifier_mask && k->guest_notifier_mask)) &&
7f1c5b
+        assign) {
7f1c5b
         if (with_irqfd) {
7f1c5b
             proxy->vector_irqfd =
7f1c5b
                 g_malloc0(sizeof(*proxy->vector_irqfd) *
7f1c5b
                           msix_nr_vectors_allocated(&proxy->pci_dev));
7f1c5b
-            r = kvm_virtio_pci_vector_use(proxy, nvqs);
7f1c5b
+            r = kvm_virtio_pci_vector_vq_use(proxy, nvqs);
7f1c5b
+            if (r < 0) {
7f1c5b
+                goto config_assign_error;
7f1c5b
+            }
7f1c5b
+            r = kvm_virtio_pci_vector_config_use(proxy);
7f1c5b
             if (r < 0) {
7f1c5b
-                goto assign_error;
7f1c5b
+                goto config_error;
7f1c5b
             }
7f1c5b
         }
7f1c5b
-        r = msix_set_vector_notifiers(&proxy->pci_dev,
7f1c5b
-                                      virtio_pci_vector_unmask,
7f1c5b
+
7f1c5b
+        r = msix_set_vector_notifiers(&proxy->pci_dev, virtio_pci_vector_unmask,
7f1c5b
                                       virtio_pci_vector_mask,
7f1c5b
                                       virtio_pci_vector_poll);
7f1c5b
         if (r < 0) {
7f1c5b
@@ -1117,9 +1191,15 @@ static int virtio_pci_set_guest_notifiers(DeviceState *d, int nvqs, bool assign)
7f1c5b
 notifiers_error:
7f1c5b
     if (with_irqfd) {
7f1c5b
         assert(assign);
7f1c5b
-        kvm_virtio_pci_vector_release(proxy, nvqs);
7f1c5b
+        kvm_virtio_pci_vector_vq_release(proxy, nvqs);
7f1c5b
     }
7f1c5b
-
7f1c5b
+config_error:
7f1c5b
+    if (with_irqfd) {
7f1c5b
+        kvm_virtio_pci_vector_config_release(proxy);
7f1c5b
+    }
7f1c5b
+config_assign_error:
7f1c5b
+    virtio_pci_set_guest_notifier(d, VIRTIO_CONFIG_IRQ_IDX, !assign,
7f1c5b
+                                  with_irqfd);
7f1c5b
 assign_error:
7f1c5b
     /* We get here on assignment failure. Recover by undoing for VQs 0 .. n. */
7f1c5b
     assert(assign);
7f1c5b
diff --git a/include/hw/virtio/virtio-pci.h b/include/hw/virtio/virtio-pci.h
7f1c5b
index 938799e8f6..c02e278f46 100644
7f1c5b
--- a/include/hw/virtio/virtio-pci.h
7f1c5b
+++ b/include/hw/virtio/virtio-pci.h
7f1c5b
@@ -256,5 +256,7 @@ void virtio_pci_types_register(const VirtioPCIDeviceTypeInfo *t);
7f1c5b
  * @fixed_queues.
7f1c5b
  */
7f1c5b
 unsigned virtio_pci_optimal_num_queues(unsigned fixed_queues);
7f1c5b
-
7f1c5b
+void virtio_pci_set_guest_notifier_fd_handler(VirtIODevice *vdev, VirtQueue *vq,
7f1c5b
+                                              int n, bool assign,
7f1c5b
+                                              bool with_irqfd);
7f1c5b
 #endif
7f1c5b
-- 
7f1c5b
2.31.1
7f1c5b