/* Ensure a device is has the fake IRQ handler "turned on/off" and is * ready to be exported. This MUST be run after xen_pcibk_reset_device * which does the actual PCI device enable/disable.
*/ staticvoid xen_pcibk_control_isr(struct pci_dev *dev, int reset)
{ struct xen_pcibk_dev_data *dev_data; int rc; int enable = 0;
dev_data = pci_get_drvdata(dev); if (!dev_data) return;
/* We don't deal with bridges */ if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL) return;
/* Asked to disable, but ISR isn't runnig */ if (!enable && !dev_data->isr_on) return;
/* Squirrel away the IRQs in the dev_data. We need this * b/c when device transitions to MSI, the dev->irq is * overwritten with the MSI vector.
*/ if (enable)
dev_data->irq = dev->irq;
/* * SR-IOV devices in all use MSI-X and have no legacy * interrupts, so inhibit creating a fake IRQ handler for them.
*/ if (dev_data->irq == 0) goto out;
if (enable) { /* * The MSI or MSI-X should not have an IRQ handler. Otherwise * if the guest terminates we BUG_ON in free_msi_irqs.
*/ if (dev->msi_enabled || dev->msix_enabled) goto out;
/* Ensure a device is "turned off" and ready to be exported. * (Also see xen_pcibk_config_reset to ensure virtual configuration space is * ready to be re-exported)
*/ void xen_pcibk_reset_device(struct pci_dev *dev)
{
u16 cmd;
xen_pcibk_control_isr(dev, 1 /* reset device */);
/* Disable devices (but not bridges) */ if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) { #ifdef CONFIG_PCI_MSI /* The guest could have been abruptly killed without
* disabling MSI/MSI-X interrupts.*/ if (dev->msix_enabled)
pci_disable_msix(dev); if (dev->msi_enabled)
pci_disable_msi(dev); #endif if (pci_is_enabled(dev))
pci_disable_device(dev);
static int xen_pcibk_enable_msix(struct xen_pcibk_device *pdev, struct pci_dev *dev, struct xen_pci_op *op)
{ struct xen_pcibk_dev_data *dev_data; int i, result; struct msix_entry *entries;
u16 cmd;
dev_dbg(&dev->dev, "enable MSI-X\n");
if (op->value > SH_INFO_MAX_VEC) return -EINVAL;
if (dev->msix_enabled) return -EALREADY;
/* * PCI_COMMAND_MEMORY must be enabled, otherwise we may not be able * to access the BARs where the MSI-X entries reside. * But VF devices are unique in which the PF needs to be checked.
*/
pci_read_config_word(pci_physfn(dev), PCI_COMMAND, &cmd); if (dev->msi_enabled || !(cmd & PCI_COMMAND_MEMORY)) return -ENXIO;
static int xen_pcibk_disable_msix(struct xen_pcibk_device *pdev, struct pci_dev *dev, struct xen_pci_op *op)
{ if (dev->msix_enabled) { struct xen_pcibk_dev_data *dev_data;
pci_disable_msix(dev);
dev_data = pci_get_drvdata(dev); if (dev_data)
dev_data->ack_intr = 1;
} /* * SR-IOV devices (which don't have any legacy IRQ) have * an undefined IRQ value of zero.
*/
op->value = dev->irq ? xen_pirq_from_irq(dev->irq) : 0;
/* * Now the same evtchn is used for both pcifront conf_read_write request * as well as pcie aer front end ack. We use a new work_queue to schedule * xen_pcibk conf_read_write service for avoiding confict with aer_core * do_recovery job which also use the system default work_queue
*/ staticvoid xen_pcibk_test_and_schedule_op(struct xen_pcibk_device *pdev)
{ bool eoi = true;
/* Check that frontend is requesting an operation and that we are not
* already processing a request */ if (xen_pcibk_test_op_pending(pdev)) {
schedule_work(&pdev->op_work);
eoi = false;
} /*_XEN_PCIB_active should have been cleared by pcifront. And also make
sure xen_pcibk is waiting for ack by checking _PCIB_op_pending*/ if (!test_bit(_XEN_PCIB_active, (unsignedlong *)&pdev->sh_info->flags)
&& test_bit(_PCIB_op_pending, &pdev->flags)) {
wake_up(&xen_pcibk_aer_wait_queue);
eoi = false;
}
/* EOI if there was nothing to do. */ if (eoi)
xen_pcibk_lateeoi(pdev, XEN_EOI_FLAG_SPURIOUS);
}
/* Performing the configuration space reads/writes must not be done in atomic * context because some of the pci_* functions can sleep (mostly due to ACPI * use of semaphores). This function is intended to be called from a work
* queue in process context taking a struct xen_pcibk_device as a parameter */
*op = pdev->sh_info->op;
barrier();
dev = xen_pcibk_get_pci_dev(pdev, op->domain, op->bus, op->devfn);
if (dev == NULL)
op->err = XEN_PCI_ERR_dev_not_found; else {
dev_data = pci_get_drvdata(dev); if (dev_data)
test_intx = dev_data->enable_intx; switch (op->cmd) { case XEN_PCI_OP_conf_read:
op->err = xen_pcibk_config_read(dev,
op->offset, op->size, &op->value); break; case XEN_PCI_OP_conf_write:
op->err = xen_pcibk_config_write(dev,
op->offset, op->size, op->value); break; #ifdef CONFIG_PCI_MSI case XEN_PCI_OP_enable_msi:
op->err = xen_pcibk_enable_msi(pdev, dev, op); break; case XEN_PCI_OP_disable_msi:
op->err = xen_pcibk_disable_msi(pdev, dev, op); break; case XEN_PCI_OP_enable_msix:
nr = op->value;
op->err = xen_pcibk_enable_msix(pdev, dev, op); break; case XEN_PCI_OP_disable_msix:
op->err = xen_pcibk_disable_msix(pdev, dev, op); break; #endif default:
op->err = XEN_PCI_ERR_not_implemented; break;
}
} if (!op->err && dev && dev_data) { /* Transition detected */ if ((dev_data->enable_intx != test_intx))
xen_pcibk_control_isr(dev, 0 /* no reset */);
}
pdev->sh_info->op.err = op->err;
pdev->sh_info->op.value = op->value; #ifdef CONFIG_PCI_MSI if (op->cmd == XEN_PCI_OP_enable_msix && op->err == 0) { unsignedint i;
for (i = 0; i < nr; i++)
pdev->sh_info->op.msix_entries[i].vector =
op->msix_entries[i].vector;
} #endif /* Tell the driver domain that we're done. */
wmb();
clear_bit(_XEN_PCIF_active, (unsignedlong *)&pdev->sh_info->flags);
notify_remote_via_irq(pdev->evtchn_irq);
/* Mark that we're done. */
smp_mb__before_atomic(); /* /after/ clearing PCIF_active */
clear_bit(_PDEVF_op_active, &pdev->flags);
smp_mb__after_atomic(); /* /before/ final check for work */
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.