Commit 36a4a50f authored by Christoph Hellwig's avatar Christoph Hellwig Committed by David S. Miller

net: ethernet: aquantia: switch to pci_alloc_irq_vectors

pci_enable_msix has been long deprecated, but this driver adds a new
instance.  Convert it to pci_alloc_irq_vectors so that no new instance
of the deprecated function reaches mainline.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Tested-by: default avatarPavel Belous <pavel.belous@aquantia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent dfb011d2
...@@ -22,13 +22,11 @@ struct aq_pci_func_s { ...@@ -22,13 +22,11 @@ struct aq_pci_func_s {
void *aq_vec[AQ_CFG_PCI_FUNC_MSIX_IRQS]; void *aq_vec[AQ_CFG_PCI_FUNC_MSIX_IRQS];
resource_size_t mmio_pa; resource_size_t mmio_pa;
unsigned int msix_entry_mask; unsigned int msix_entry_mask;
unsigned int irq_type;
unsigned int ports; unsigned int ports;
bool is_pci_enabled; bool is_pci_enabled;
bool is_regions; bool is_regions;
bool is_pci_using_dac; bool is_pci_using_dac;
struct aq_hw_caps_s aq_hw_caps; struct aq_hw_caps_s aq_hw_caps;
struct msix_entry msix_entry[AQ_CFG_PCI_FUNC_MSIX_IRQS];
}; };
struct aq_pci_func_s *aq_pci_func_alloc(struct aq_hw_ops *aq_hw_ops, struct aq_pci_func_s *aq_pci_func_alloc(struct aq_hw_ops *aq_hw_ops,
...@@ -87,7 +85,6 @@ int aq_pci_func_init(struct aq_pci_func_s *self) ...@@ -87,7 +85,6 @@ int aq_pci_func_init(struct aq_pci_func_s *self)
int err = 0; int err = 0;
unsigned int bar = 0U; unsigned int bar = 0U;
unsigned int port = 0U; unsigned int port = 0U;
unsigned int i = 0U;
err = pci_enable_device(self->pdev); err = pci_enable_device(self->pdev);
if (err < 0) if (err < 0)
...@@ -145,27 +142,16 @@ int aq_pci_func_init(struct aq_pci_func_s *self) ...@@ -145,27 +142,16 @@ int aq_pci_func_init(struct aq_pci_func_s *self)
} }
} }
for (i = 0; i < self->aq_hw_caps.msix_irqs; i++)
self->msix_entry[i].entry = i;
/*enable interrupts */ /*enable interrupts */
#if AQ_CFG_FORCE_LEGACY_INT #if !AQ_CFG_FORCE_LEGACY_INT
self->irq_type = AQ_HW_IRQ_LEGACY; err = pci_alloc_irq_vectors(self->pdev, self->aq_hw_caps.msix_irqs,
#else self->aq_hw_caps.msix_irqs, PCI_IRQ_MSIX);
err = pci_enable_msix(self->pdev, self->msix_entry,
self->aq_hw_caps.msix_irqs);
if (err >= 0) { if (err < 0) {
self->irq_type = AQ_HW_IRQ_MSIX; err = pci_alloc_irq_vectors(self->pdev, 1, 1,
} else { PCI_IRQ_MSI | PCI_IRQ_LEGACY);
err = pci_enable_msi(self->pdev); if (err < 0)
goto err_exit;
if (err >= 0) {
self->irq_type = AQ_HW_IRQ_MSI;
} else {
self->irq_type = AQ_HW_IRQ_LEGACY;
err = 0;
}
} }
#endif #endif
...@@ -196,34 +182,22 @@ int aq_pci_func_init(struct aq_pci_func_s *self) ...@@ -196,34 +182,22 @@ int aq_pci_func_init(struct aq_pci_func_s *self)
int aq_pci_func_alloc_irq(struct aq_pci_func_s *self, unsigned int i, int aq_pci_func_alloc_irq(struct aq_pci_func_s *self, unsigned int i,
char *name, void *aq_vec, cpumask_t *affinity_mask) char *name, void *aq_vec, cpumask_t *affinity_mask)
{ {
struct pci_dev *pdev = self->pdev;
int err = 0; int err = 0;
switch (self->irq_type) { if (pdev->msix_enabled || pdev->msi_enabled)
case AQ_HW_IRQ_MSIX: err = request_irq(pci_irq_vector(pdev, i), aq_vec_isr, 0,
err = request_irq(self->msix_entry[i].vector, aq_vec_isr, 0,
name, aq_vec); name, aq_vec);
break; else
err = request_irq(pci_irq_vector(pdev, i), aq_vec_isr_legacy,
case AQ_HW_IRQ_MSI:
err = request_irq(self->pdev->irq, aq_vec_isr, 0, name, aq_vec);
break;
case AQ_HW_IRQ_LEGACY:
err = request_irq(self->pdev->irq, aq_vec_isr_legacy,
IRQF_SHARED, name, aq_vec); IRQF_SHARED, name, aq_vec);
break;
default:
err = -EFAULT;
break;
}
if (err >= 0) { if (err >= 0) {
self->msix_entry_mask |= (1 << i); self->msix_entry_mask |= (1 << i);
self->aq_vec[i] = aq_vec; self->aq_vec[i] = aq_vec;
if (self->irq_type == AQ_HW_IRQ_MSIX) if (pdev->msix_enabled)
irq_set_affinity_hint(self->msix_entry[i].vector, irq_set_affinity_hint(pci_irq_vector(pdev, i),
affinity_mask); affinity_mask);
} }
...@@ -232,30 +206,16 @@ int aq_pci_func_alloc_irq(struct aq_pci_func_s *self, unsigned int i, ...@@ -232,30 +206,16 @@ int aq_pci_func_alloc_irq(struct aq_pci_func_s *self, unsigned int i,
void aq_pci_func_free_irqs(struct aq_pci_func_s *self) void aq_pci_func_free_irqs(struct aq_pci_func_s *self)
{ {
struct pci_dev *pdev = self->pdev;
unsigned int i = 0U; unsigned int i = 0U;
for (i = 32U; i--;) { for (i = 32U; i--;) {
if (!((1U << i) & self->msix_entry_mask)) if (!((1U << i) & self->msix_entry_mask))
continue; continue;
switch (self->irq_type) { free_irq(pci_irq_vector(pdev, i), self->aq_vec[i]);
case AQ_HW_IRQ_MSIX: if (pdev->msix_enabled)
irq_set_affinity_hint(self->msix_entry[i].vector, NULL); irq_set_affinity_hint(pci_irq_vector(pdev, i), NULL);
free_irq(self->msix_entry[i].vector, self->aq_vec[i]);
break;
case AQ_HW_IRQ_MSI:
free_irq(self->pdev->irq, self->aq_vec[i]);
break;
case AQ_HW_IRQ_LEGACY:
free_irq(self->pdev->irq, self->aq_vec[i]);
break;
default:
break;
}
self->msix_entry_mask &= ~(1U << i); self->msix_entry_mask &= ~(1U << i);
} }
} }
...@@ -267,7 +227,11 @@ void __iomem *aq_pci_func_get_mmio(struct aq_pci_func_s *self) ...@@ -267,7 +227,11 @@ void __iomem *aq_pci_func_get_mmio(struct aq_pci_func_s *self)
unsigned int aq_pci_func_get_irq_type(struct aq_pci_func_s *self) unsigned int aq_pci_func_get_irq_type(struct aq_pci_func_s *self)
{ {
return self->irq_type; if (self->pdev->msix_enabled)
return AQ_HW_IRQ_MSIX;
if (self->pdev->msi_enabled)
return AQ_HW_IRQ_MSIX;
return AQ_HW_IRQ_LEGACY;
} }
void aq_pci_func_deinit(struct aq_pci_func_s *self) void aq_pci_func_deinit(struct aq_pci_func_s *self)
...@@ -276,22 +240,7 @@ void aq_pci_func_deinit(struct aq_pci_func_s *self) ...@@ -276,22 +240,7 @@ void aq_pci_func_deinit(struct aq_pci_func_s *self)
goto err_exit; goto err_exit;
aq_pci_func_free_irqs(self); aq_pci_func_free_irqs(self);
pci_free_irq_vectors(self->pdev);
switch (self->irq_type) {
case AQ_HW_IRQ_MSI:
pci_disable_msi(self->pdev);
break;
case AQ_HW_IRQ_MSIX:
pci_disable_msix(self->pdev);
break;
case AQ_HW_IRQ_LEGACY:
break;
default:
break;
}
if (self->is_regions) if (self->is_regions)
pci_release_regions(self->pdev); pci_release_regions(self->pdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment