diff options
author | Zhao Yan <yan.y.zhao@intel.com> | 2018-12-05 02:58:30 -0500 |
---|---|---|
committer | Anthony PERARD <anthony.perard@citrix.com> | 2019-01-14 13:45:40 +0000 |
commit | 92dbfcc6d435a6f2331298b101ff396c7e643a55 (patch) | |
tree | 4bb50af1aed869ef2b60362d4b6e92c32e308b3b /hw/xen/xen_pt.c | |
parent | 6c4f984463a269e4d4f3684de957e3c548af409a (diff) | |
download | qemu-92dbfcc6d435a6f2331298b101ff396c7e643a55.zip qemu-92dbfcc6d435a6f2331298b101ff396c7e643a55.tar.gz qemu-92dbfcc6d435a6f2331298b101ff396c7e643a55.tar.bz2 |
xen/pt: allow passthrough of devices with bogus interrupt pin
For some pci device, even its PCI_INTERRUPT_PIN is not 0, it actually
doesn't support INTx mode, so its machine irq read from host sysfs is 0.
In that case, report PCI_INTERRUPT_PIN as 0 to guest and let passthrough
continue.
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
Signed-off-by: Zhao Yan <yan.y.zhao@intel.com>
Acked-by: Anthony PERARD <anthony.perard@citrix.com>
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Diffstat (limited to 'hw/xen/xen_pt.c')
-rw-r--r-- | hw/xen/xen_pt.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/xen/xen_pt.c b/hw/xen/xen_pt.c index f1f3a37..815dc46 100644 --- a/hw/xen/xen_pt.c +++ b/hw/xen/xen_pt.c @@ -847,6 +847,12 @@ static void xen_pt_realize(PCIDevice *d, Error **errp) } machine_irq = s->real_device.irq; + if (machine_irq == 0) { + XEN_PT_LOG(d, "machine irq is 0\n"); + cmd |= PCI_COMMAND_INTX_DISABLE; + goto out; + } + rc = xc_physdev_map_pirq(xen_xc, xen_domid, machine_irq, &pirq); if (rc < 0) { error_setg_errno(errp, errno, "Mapping machine irq %u to" |