From: Alexey Kardashevskiy <aik@ozlabs.ru>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: Alexey Kardashevskiy <aik@ozlabs.ru>,
qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PATCH 3/3] vfio-pci: rework of EOI
Date: Mon, 23 Jul 2012 15:32:47 +1000 [thread overview]
Message-ID: <1343021567-3701-4-git-send-email-aik@ozlabs.ru> (raw)
In-Reply-To: <1343021567-3701-1-git-send-email-aik@ozlabs.ru>
Originally VFIO is coded to support IOAPIC only (i.e. x86).
The patch adds XICS (POWERPC interrupt controller) and replaces
ioapic_add_gsi_eoi_notifier with unified macro to have as little
#ifdef TARGET_PPC64 as possible.
Still needs some rework to get rid of #ifdef TARGET_PPC64.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
hw/vfio_pci.c | 24 ++++++++++++++++--------
hw/vfio_pci.h | 1 -
2 files changed, 16 insertions(+), 9 deletions(-)
diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c
index fd65731..cd68fe0 100644
--- a/hw/vfio_pci.c
+++ b/hw/vfio_pci.c
@@ -21,7 +21,6 @@
#include <dirent.h>
#include <stdio.h>
#include <unistd.h>
-#include <sys/io.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/types.h>
@@ -44,6 +43,15 @@
#include "range.h"
#include "vfio_pci.h"
+#ifndef TARGET_PPC64
+#include <sys/io.h>
+#include "ioapic.h"
+#define vfio_irq_add_eoi_notifier ioapic_add_gsi_eoi_notifier
+#else
+#include "xics.h"
+#define vfio_irq_add_eoi_notifier xics_add_eoi_notifier
+#endif
+
//#define DEBUG_VFIO
#ifdef DEBUG_VFIO
#define DPRINTF(fmt, ...) \
@@ -258,7 +266,7 @@ static void vfio_enable_intx_kvm(VFIODevice *vdev)
irqfd.fd = event_notifier_get_fd(&vdev->intx.interrupt);
qemu_set_fd_handler(irqfd.fd, NULL, NULL, vdev);
- ioapic_remove_gsi_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
+ notifier_remove(&vdev->intx.eoi);
vfio_mask_intx(vdev);
vdev->intx.pending = false;
qemu_set_irq(vdev->pdev.irq[vdev->intx.pin], 0);
@@ -294,7 +302,7 @@ static void vfio_enable_intx_kvm(VFIODevice *vdev)
return;
fail:
- ioapic_add_gsi_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
+ vfio_irq_add_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
qemu_set_fd_handler(irqfd.fd, vfio_intx_interrupt, NULL, vdev);
vfio_unmask_intx(vdev);
#endif
@@ -341,7 +349,7 @@ static void vfio_disable_intx_kvm(VFIODevice *vdev)
event_notifier_cleanup(&vdev->intx.unmask);
- ioapic_add_gsi_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
+ vfio_irq_add_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
qemu_set_fd_handler(irqfd.fd, vfio_intx_interrupt, NULL, vdev);
vfio_unmask_intx(vdev);
@@ -366,7 +374,7 @@ static void vfio_update_irq(Notifier *notify, void *data)
vdev->host.func, vdev->intx.irq, irq);
vfio_disable_intx_kvm(vdev);
- ioapic_remove_gsi_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
+ notifier_remove(&vdev->intx.eoi);
vdev->intx.irq = irq;
@@ -375,7 +383,7 @@ static void vfio_update_irq(Notifier *notify, void *data)
return;
}
- ioapic_add_gsi_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
+ vfio_irq_add_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
vfio_enable_intx_kvm(vdev);
/* Re-enable the interrupt in cased we missed an EOI */
@@ -404,7 +412,7 @@ static int vfio_enable_intx(VFIODevice *vdev)
vdev->intx.pin = pin - 1; /* Pin A (1) -> irq[0] */
vdev->intx.irq = pci_get_irq(&vdev->pdev, vdev->intx.pin);
vdev->intx.eoi.notify = vfio_eoi;
- ioapic_add_gsi_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
+ vfio_irq_add_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
vdev->intx.update_irq.notify = vfio_update_irq;
pci_add_irq_update_notifier(&vdev->pdev, &vdev->intx.update_irq);
@@ -441,7 +449,7 @@ static void vfio_disable_intx(VFIODevice *vdev)
vfio_disable_irqindex(vdev, VFIO_PCI_INTX_IRQ_INDEX);
pci_remove_irq_update_notifier(&vdev->intx.update_irq);
- ioapic_remove_gsi_eoi_notifier(&vdev->intx.eoi, vdev->intx.irq);
+ notifier_remove(&vdev->intx.eoi);
fd = event_notifier_get_fd(&vdev->intx.interrupt);
qemu_set_fd_handler(fd, NULL, NULL, vdev);
diff --git a/hw/vfio_pci.h b/hw/vfio_pci.h
index 00bb3dd..d1a7434 100644
--- a/hw/vfio_pci.h
+++ b/hw/vfio_pci.h
@@ -4,7 +4,6 @@
#include "qemu-common.h"
#include "qemu-queue.h"
#include "pci.h"
-#include "ioapic.h"
#include "event_notifier.h"
typedef struct VFIOPCIHostDevice {
--
1.7.10.4
next prev parent reply other threads:[~2012-07-23 5:33 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-10 5:51 [Qemu-devel] [PATCH 0/2] RFC: powerpc-vfio: adding support Alexey Kardashevskiy
2012-07-10 5:51 ` [Qemu-devel] [PATCH 1/2] pseries pci: spapr_finalize_pci_setup introduced Alexey Kardashevskiy
2012-07-10 5:51 ` [Qemu-devel] [PATCH 2/2] vfio-powerpc: added VFIO support Alexey Kardashevskiy
2012-07-10 16:55 ` Alex Williamson
2012-07-10 21:32 ` Benjamin Herrenschmidt
2012-07-10 21:48 ` Alex Williamson
2012-07-10 21:53 ` Benjamin Herrenschmidt
2012-07-11 2:54 ` Alexey Kardashevskiy
2012-07-11 3:10 ` Benjamin Herrenschmidt
2012-07-12 3:11 ` Alex Williamson
2012-07-12 8:47 ` Alexey Kardashevskiy
2012-07-10 22:26 ` Scott Wood
2012-07-10 23:55 ` Alexey Kardashevskiy
2012-07-11 0:04 ` Benjamin Herrenschmidt
2012-07-11 0:17 ` Alexey Kardashevskiy
2012-07-11 0:26 ` Benjamin Herrenschmidt
2012-07-10 16:57 ` [Qemu-devel] [PATCH 0/2] RFC: powerpc-vfio: adding support Alex Williamson
2012-07-11 2:25 ` Alexey Kardashevskiy
2012-07-12 2:54 ` Alex Williamson
2012-07-12 4:16 ` Alexey Kardashevskiy
2012-07-12 4:31 ` Alex Williamson
2012-07-12 4:38 ` Alexey Kardashevskiy
2012-07-12 4:43 ` Alex Williamson
2012-07-12 4:58 ` Alexey Kardashevskiy
2012-07-12 5:29 ` Alex Williamson
2012-07-12 5:47 ` Alexey Kardashevskiy
2012-07-16 3:51 ` Alexey Kardashevskiy
2012-07-23 5:32 ` [Qemu-devel] [PATCH 0/3] vfio-pci: reworking end-of-interrupt Alexey Kardashevskiy
2012-07-23 5:32 ` [Qemu-devel] [PATCH 1/3] xics: added end-of-interrupt (EOI) handlers Alexey Kardashevskiy
2012-07-23 5:32 ` [Qemu-devel] [PATCH 2/3] ioapic: removed obsolete ioapic_remove_gsi_eoi_notifier Alexey Kardashevskiy
2012-07-23 5:32 ` Alexey Kardashevskiy [this message]
2012-07-12 8:52 ` [Qemu-devel] [PATCH] RFC: vfio-powerpc: added VFIO support (v2) Alexey Kardashevskiy
2012-07-12 20:54 ` [Qemu-devel] [Qemu-ppc] " Blue Swirl
2012-07-12 21:37 ` Alex Williamson
2012-07-13 5:24 ` Alexey Kardashevskiy
2012-07-13 14:33 ` Blue Swirl
2012-07-12 22:35 ` Scott Wood
2012-07-13 5:31 ` Alexey Kardashevskiy
2012-07-13 3:47 ` [Qemu-devel] " Alex Williamson
2012-07-13 5:03 ` Alexey Kardashevskiy
2012-07-13 7:26 ` [Qemu-devel] [PATCH] RFC: vfio-powerpc: added VFIO support (v3) Alexey Kardashevskiy
2012-07-13 14:38 ` Blue Swirl
2012-07-13 15:07 ` Alex Williamson
2012-07-14 2:34 ` Alexey Kardashevskiy
2012-07-16 14:21 ` Alex Williamson
2012-07-16 21:17 ` Alex Williamson
2012-07-17 7:53 ` Alexey Kardashevskiy
2012-07-17 14:11 ` Alex Williamson
2012-07-18 11:09 ` [Qemu-devel] [PATCH] vfio-powerpc: added VFIO support (v4) Alexey Kardashevskiy
2012-07-18 14:14 ` Alex Williamson
2012-07-19 4:01 ` Alexey Kardashevskiy
2012-07-19 4:04 ` [Qemu-devel] [PATCH] vfio-powerpc: added VFIO support (v5) Alexey Kardashevskiy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1343021567-3701-4-git-send-email-aik@ozlabs.ru \
--to=aik@ozlabs.ru \
--cc=alex.williamson@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).