]> Git Repo - qemu.git/commitdiff
s390x/flic: implement qemu_s390_clear_io_flic()
authorDavid Hildenbrand <[email protected]>
Mon, 29 Jan 2018 12:56:15 +0000 (13:56 +0100)
committerCornelia Huck <[email protected]>
Fri, 9 Feb 2018 08:37:13 +0000 (09:37 +0100)
Now that we have access to the io interrupts, we can implement
clear_io_irq() for TCG.

Signed-off-by: David Hildenbrand <[email protected]>
Message-Id: <20180129125623[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
hw/intc/s390_flic.c

index 928bdc30371ba31ce213fbc172b83f07bb9d878f..cb216de9ba5a12921a2ed9c3d266cc5e81269af1 100644 (file)
@@ -79,8 +79,35 @@ static void qemu_s390_release_adapter_routes(S390FLICState *fs,
 static int qemu_s390_clear_io_flic(S390FLICState *fs, uint16_t subchannel_id,
                            uint16_t subchannel_nr)
 {
-    /* Fixme TCG */
-    return -ENOSYS;
+    QEMUS390FLICState *flic  = QEMU_S390_FLIC(fs);
+    QEMUS390FlicIO *cur, *next;
+    uint8_t isc;
+
+    g_assert(qemu_mutex_iothread_locked());
+    if (!(flic->pending & FLIC_PENDING_IO)) {
+        return 0;
+    }
+
+    /* check all iscs */
+    for (isc = 0; isc < 8; isc++) {
+        if (QLIST_EMPTY(&flic->io[isc])) {
+            continue;
+        }
+
+        /* search and delete any matching one */
+        QLIST_FOREACH_SAFE(cur, &flic->io[isc], next, next) {
+            if (cur->id == subchannel_id && cur->nr == subchannel_nr) {
+                QLIST_REMOVE(cur, next);
+                g_free(cur);
+            }
+        }
+
+        /* update our indicator bit */
+        if (QLIST_EMPTY(&flic->io[isc])) {
+            flic->pending &= ~ISC_TO_PENDING_IO(isc);
+        }
+    }
+    return 0;
 }
 
 static int qemu_s390_modify_ais_mode(S390FLICState *fs, uint8_t isc,
This page took 0.02801 seconds and 4 git commands to generate.