|
@@ -30,6 +30,152 @@ static void release_pcie_device(struct device *dev)
|
|
|
kfree(to_pcie_device(dev));
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * pcie_port_msix_add_entry - add entry to given array of MSI-X entries
|
|
|
+ * @entries: Array of MSI-X entries
|
|
|
+ * @new_entry: Index of the entry to add to the array
|
|
|
+ * @nr_entries: Number of entries aleady in the array
|
|
|
+ *
|
|
|
+ * Return value: Position of the added entry in the array
|
|
|
+ */
|
|
|
+static int pcie_port_msix_add_entry(
|
|
|
+ struct msix_entry *entries, int new_entry, int nr_entries)
|
|
|
+{
|
|
|
+ int j;
|
|
|
+
|
|
|
+ for (j = 0; j < nr_entries; j++)
|
|
|
+ if (entries[j].entry == new_entry)
|
|
|
+ return j;
|
|
|
+
|
|
|
+ entries[j].entry = new_entry;
|
|
|
+ return j;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * pcie_port_enable_msix - try to set up MSI-X as interrupt mode for given port
|
|
|
+ * @dev: PCI Express port to handle
|
|
|
+ * @vectors: Array of interrupt vectors to populate
|
|
|
+ * @mask: Bitmask of port capabilities returned by get_port_device_capability()
|
|
|
+ *
|
|
|
+ * Return value: 0 on success, error code on failure
|
|
|
+ */
|
|
|
+static int pcie_port_enable_msix(struct pci_dev *dev, int *vectors, int mask)
|
|
|
+{
|
|
|
+ struct msix_entry *msix_entries;
|
|
|
+ int idx[PCIE_PORT_DEVICE_MAXSERVICES];
|
|
|
+ int nr_entries, status, pos, i, nvec;
|
|
|
+ u16 reg16;
|
|
|
+ u32 reg32;
|
|
|
+
|
|
|
+ nr_entries = pci_msix_table_size(dev);
|
|
|
+ if (!nr_entries)
|
|
|
+ return -EINVAL;
|
|
|
+ if (nr_entries > PCIE_PORT_MAX_MSIX_ENTRIES)
|
|
|
+ nr_entries = PCIE_PORT_MAX_MSIX_ENTRIES;
|
|
|
+
|
|
|
+ msix_entries = kzalloc(sizeof(*msix_entries) * nr_entries, GFP_KERNEL);
|
|
|
+ if (!msix_entries)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Allocate as many entries as the port wants, so that we can check
|
|
|
+ * which of them will be useful. Moreover, if nr_entries is correctly
|
|
|
+ * equal to the number of entries this port actually uses, we'll happily
|
|
|
+ * go through without any tricks.
|
|
|
+ */
|
|
|
+ for (i = 0; i < nr_entries; i++)
|
|
|
+ msix_entries[i].entry = i;
|
|
|
+
|
|
|
+ status = pci_enable_msix(dev, msix_entries, nr_entries);
|
|
|
+ if (status)
|
|
|
+ goto Exit;
|
|
|
+
|
|
|
+ for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
|
|
|
+ idx[i] = -1;
|
|
|
+ status = -EIO;
|
|
|
+ nvec = 0;
|
|
|
+
|
|
|
+ if (mask & (PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP)) {
|
|
|
+ int entry;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * The code below follows the PCI Express Base Specification 2.0
|
|
|
+ * stating in Section 6.1.6 that "PME and Hot-Plug Event
|
|
|
+ * interrupts (when both are implemented) always share the same
|
|
|
+ * MSI or MSI-X vector, as indicated by the Interrupt Message
|
|
|
+ * Number field in the PCI Express Capabilities register", where
|
|
|
+ * according to Section 7.8.2 of the specification "For MSI-X,
|
|
|
+ * the value in this field indicates which MSI-X Table entry is
|
|
|
+ * used to generate the interrupt message."
|
|
|
+ */
|
|
|
+ pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
|
|
|
+ pci_read_config_word(dev, pos + PCIE_CAPABILITIES_REG, ®16);
|
|
|
+ entry = (reg16 >> 9) & PCIE_PORT_MSI_VECTOR_MASK;
|
|
|
+ if (entry >= nr_entries)
|
|
|
+ goto Error;
|
|
|
+
|
|
|
+ i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
|
|
|
+ if (i == nvec)
|
|
|
+ nvec++;
|
|
|
+
|
|
|
+ idx[PCIE_PORT_SERVICE_PME_SHIFT] = i;
|
|
|
+ idx[PCIE_PORT_SERVICE_HP_SHIFT] = i;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (mask & PCIE_PORT_SERVICE_AER) {
|
|
|
+ int entry;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * The code below follows Section 7.10.10 of the PCI Express
|
|
|
+ * Base Specification 2.0 stating that bits 31-27 of the Root
|
|
|
+ * Error Status Register contain a value indicating which of the
|
|
|
+ * MSI/MSI-X vectors assigned to the port is going to be used
|
|
|
+ * for AER, where "For MSI-X, the value in this register
|
|
|
+ * indicates which MSI-X Table entry is used to generate the
|
|
|
+ * interrupt message."
|
|
|
+ */
|
|
|
+ pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
|
|
|
+ pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, ®32);
|
|
|
+ entry = reg32 >> 27;
|
|
|
+ if (entry >= nr_entries)
|
|
|
+ goto Error;
|
|
|
+
|
|
|
+ i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
|
|
|
+ if (i == nvec)
|
|
|
+ nvec++;
|
|
|
+
|
|
|
+ idx[PCIE_PORT_SERVICE_AER_SHIFT] = i;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * If nvec is equal to the allocated number of entries, we can just use
|
|
|
+ * what we have. Otherwise, the port has some extra entries not for the
|
|
|
+ * services we know and we need to work around that.
|
|
|
+ */
|
|
|
+ if (nvec == nr_entries) {
|
|
|
+ status = 0;
|
|
|
+ } else {
|
|
|
+ /* Drop the temporary MSI-X setup */
|
|
|
+ pci_disable_msix(dev);
|
|
|
+
|
|
|
+ /* Now allocate the MSI-X vectors for real */
|
|
|
+ status = pci_enable_msix(dev, msix_entries, nvec);
|
|
|
+ if (status)
|
|
|
+ goto Exit;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
|
|
|
+ vectors[i] = idx[i] >= 0 ? msix_entries[idx[i]].vector : -1;
|
|
|
+
|
|
|
+ Exit:
|
|
|
+ kfree(msix_entries);
|
|
|
+ return status;
|
|
|
+
|
|
|
+ Error:
|
|
|
+ pci_disable_msix(dev);
|
|
|
+ goto Exit;
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* assign_interrupt_mode - choose interrupt mode for PCI Express port services
|
|
|
* (INTx, MSI-X, MSI) and set up vectors
|
|
@@ -42,49 +188,31 @@ static void release_pcie_device(struct device *dev)
|
|
|
static int assign_interrupt_mode(struct pci_dev *dev, int *vectors, int mask)
|
|
|
{
|
|
|
struct pcie_port_data *port_data = pci_get_drvdata(dev);
|
|
|
- int i, pos, nvec, status = -EINVAL;
|
|
|
- int interrupt_mode = PCIE_PORT_NO_IRQ;
|
|
|
-
|
|
|
- /* Set INTx as default */
|
|
|
- for (i = 0, nvec = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++) {
|
|
|
- if (mask & (1 << i))
|
|
|
- nvec++;
|
|
|
- vectors[i] = dev->irq;
|
|
|
- }
|
|
|
- if (dev->pin)
|
|
|
- interrupt_mode = PCIE_PORT_INTx_MODE;
|
|
|
+ int irq, interrupt_mode = PCIE_PORT_NO_IRQ;
|
|
|
+ int i;
|
|
|
|
|
|
/* Check MSI quirk */
|
|
|
if (port_data->port_type == PCIE_RC_PORT && pcie_mch_quirk)
|
|
|
- return interrupt_mode;
|
|
|
+ goto Fallback;
|
|
|
+
|
|
|
+ /* Try to use MSI-X if supported */
|
|
|
+ if (!pcie_port_enable_msix(dev, vectors, mask))
|
|
|
+ return PCIE_PORT_MSIX_MODE;
|
|
|
+
|
|
|
+ /* We're not going to use MSI-X, so try MSI and fall back to INTx */
|
|
|
+ if (!pci_enable_msi(dev))
|
|
|
+ interrupt_mode = PCIE_PORT_MSI_MODE;
|
|
|
+
|
|
|
+ Fallback:
|
|
|
+ if (interrupt_mode == PCIE_PORT_NO_IRQ && dev->pin)
|
|
|
+ interrupt_mode = PCIE_PORT_INTx_MODE;
|
|
|
+
|
|
|
+ irq = interrupt_mode != PCIE_PORT_NO_IRQ ? dev->irq : -1;
|
|
|
+ for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
|
|
|
+ vectors[i] = irq;
|
|
|
+
|
|
|
+ vectors[PCIE_PORT_SERVICE_VC_SHIFT] = -1;
|
|
|
|
|
|
- /* Select MSI-X over MSI if supported */
|
|
|
- pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
|
|
|
- if (pos) {
|
|
|
- struct msix_entry msix_entries[PCIE_PORT_DEVICE_MAXSERVICES] =
|
|
|
- {{0, 0}, {0, 1}, {0, 2}, {0, 3}};
|
|
|
- status = pci_enable_msix(dev, msix_entries, nvec);
|
|
|
- if (!status) {
|
|
|
- int j = 0;
|
|
|
-
|
|
|
- interrupt_mode = PCIE_PORT_MSIX_MODE;
|
|
|
- for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++) {
|
|
|
- if (mask & (1 << i))
|
|
|
- vectors[i] = msix_entries[j++].vector;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if (status) {
|
|
|
- pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
|
|
|
- if (pos) {
|
|
|
- status = pci_enable_msi(dev);
|
|
|
- if (!status) {
|
|
|
- interrupt_mode = PCIE_PORT_MSI_MODE;
|
|
|
- for (i = 0;i < PCIE_PORT_DEVICE_MAXSERVICES;i++)
|
|
|
- vectors[i] = dev->irq;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
return interrupt_mode;
|
|
|
}
|
|
|
|