diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2012-07-02 14:38:47 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2012-07-19 17:15:42 +0300 |
commit | 0ae1625177aba9ac70beb1556615530ddb18086d (patch) | |
tree | df04a5aaf06d1a771e9afc4742d64cd903c2f63d /hw/piix_pci.c | |
parent | 3afa9bb488ea981d39255a25aaeb85eeafda41cb (diff) |
pci: Add INTx routing notifier
This per-device notifier shall be triggered by any interrupt router
along the path of a device's legacy interrupt signal on routing changes.
For simplicity reasons and as this is a slow path anyway, no further
details on the routing changes are provided. Instead, the callback is
expected to use pci_device_route_intx_to_irq to check the effect of the
change.
Will be used by KVM PCI device assignment and VFIO.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/piix_pci.c')
-rw-r--r-- | hw/piix_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/piix_pci.c b/hw/piix_pci.c index 8ece07c182..c497a014af 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -423,6 +423,8 @@ static void piix3_write_config(PCIDevice *dev, if (ranges_overlap(address, len, PIIX_PIRQC, 4)) { PIIX3State *piix3 = DO_UPCAST(PIIX3State, dev, dev); int pic_irq; + + pci_bus_fire_intx_routing_notifier(piix3->dev.bus); piix3_update_irq_levels(piix3); for (pic_irq = 0; pic_irq < PIIX_NUM_PIC_IRQS; pic_irq++) { piix3_set_irq_pic(piix3, pic_irq); |