qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Alex Williamson <alex.williamson@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 07/11] sysbus: add irq_routing_notifier
Date: Mon, 06 Jul 2015 12:35:17 -0600	[thread overview]
Message-ID: <20150706183517.15635.72316.stgit@gimli.home> (raw)
In-Reply-To: <20150706183311.15635.76314.stgit@gimli.home>

From: Eric Auger <eric.auger@linaro.org>

Add a new connect_irq_notifier notifier in the SysBusDeviceClass. This
notifier, if populated, is called after sysbus_connect_irq.

This mechanism is used to setup VFIO signaling once VFIO platform
devices get attached to their platform bus, on a machine init done
notifier.

Signed-off-by: Eric Auger <eric.auger@linaro.org>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Tested-by: Vikram Sethi <vikrams@codeaurora.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
---
 hw/core/sysbus.c    |    6 ++++++
 include/hw/sysbus.h |    1 +
 2 files changed, 7 insertions(+)

diff --git a/hw/core/sysbus.c b/hw/core/sysbus.c
index 278a2d1..3c58629 100644
--- a/hw/core/sysbus.c
+++ b/hw/core/sysbus.c
@@ -109,7 +109,13 @@ qemu_irq sysbus_get_connected_irq(SysBusDevice *dev, int n)
 
 void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq)
 {
+    SysBusDeviceClass *sbd = SYS_BUS_DEVICE_GET_CLASS(dev);
+
     qdev_connect_gpio_out_named(DEVICE(dev), SYSBUS_DEVICE_GPIO_IRQ, n, irq);
+
+    if (sbd->connect_irq_notifier) {
+        sbd->connect_irq_notifier(dev, irq);
+    }
 }
 
 /* Check whether an MMIO region exists */
diff --git a/include/hw/sysbus.h b/include/hw/sysbus.h
index 34f93c3..cc1dba4 100644
--- a/include/hw/sysbus.h
+++ b/include/hw/sysbus.h
@@ -58,6 +58,7 @@ typedef struct SysBusDeviceClass {
      * omitted then. (This is not considered a fatal error.)
      */
     char *(*explicit_ofw_unit_address)(const SysBusDevice *dev);
+    void (*connect_irq_notifier)(SysBusDevice *dev, qemu_irq irq);
 } SysBusDeviceClass;
 
 struct SysBusDevice {

  parent reply	other threads:[~2015-07-06 18:35 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-06 18:34 [Qemu-devel] [PULL 00/11] VFIO updates for 2.4-rc0 Alex Williamson
2015-07-06 18:34 ` [Qemu-devel] [PULL 01/11] vfio: fix return type of pread Alex Williamson
2015-07-06 18:34 ` [Qemu-devel] [PULL 02/11] cpu-all: complete "real" host page size API Alex Williamson
2015-07-06 18:34 ` [Qemu-devel] [PULL 03/11] vfio: cpu: Use "real" " Alex Williamson
2015-07-06 18:35 ` [Qemu-devel] [PULL 04/11] kvm: rename kvm_irqchip_[add, remove]_irqfd_notifier with gsi suffix Alex Williamson
2015-07-06 18:35 ` [Qemu-devel] [PULL 05/11] kvm-all.c: add qemu_irq/gsi hash table and utility routines Alex Williamson
2015-07-06 18:35 ` [Qemu-devel] [PULL 06/11] intc: arm_gic_kvm: set the qemu_irq/gsi mapping Alex Williamson
2015-07-06 18:35 ` Alex Williamson [this message]
2015-07-06 18:35 ` [Qemu-devel] [PULL 08/11] kvm: some fixes to kvm_resamplefds_allowed Alex Williamson
2015-07-06 18:35 ` [Qemu-devel] [PULL 09/11] hw/vfio/platform: add irqfd support Alex Williamson
2015-07-06 18:35 ` [Qemu-devel] [PULL 10/11] vfio: Unregister IOMMU notifiers when container is destroyed Alex Williamson
2015-07-06 18:35 ` [Qemu-devel] [PULL 11/11] vfio/pci : Add pba_offset PCI quirk for Chelsio T5 devices Alex Williamson
2015-07-07 10:19 ` [Qemu-devel] [PULL 00/11] VFIO updates for 2.4-rc0 Peter Maydell

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=20150706183517.15635.72316.stgit@gimli.home \
    --to=alex.williamson@redhat.com \
    --cc=qemu-devel@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).