net: alx: switch to pci_alloc_irq_vectors
Remove the deprecated pci_enable_msix API in favour of its successor, and make sure to handle errors during IRQ setup properly. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c6606a87db
commit
f3297f686d
@ -102,9 +102,6 @@ struct alx_napi {
|
|||||||
|
|
||||||
#define ALX_MAX_NAPIS 8
|
#define ALX_MAX_NAPIS 8
|
||||||
|
|
||||||
#define ALX_FLAG_USING_MSIX BIT(0)
|
|
||||||
#define ALX_FLAG_USING_MSI BIT(1)
|
|
||||||
|
|
||||||
struct alx_priv {
|
struct alx_priv {
|
||||||
struct net_device *dev;
|
struct net_device *dev;
|
||||||
|
|
||||||
@ -112,7 +109,6 @@ struct alx_priv {
|
|||||||
|
|
||||||
/* msi-x vectors */
|
/* msi-x vectors */
|
||||||
int num_vec;
|
int num_vec;
|
||||||
struct msix_entry *msix_entries;
|
|
||||||
|
|
||||||
/* all descriptor memory */
|
/* all descriptor memory */
|
||||||
struct {
|
struct {
|
||||||
@ -139,8 +135,6 @@ struct alx_priv {
|
|||||||
|
|
||||||
u16 msg_enable;
|
u16 msg_enable;
|
||||||
|
|
||||||
int flags;
|
|
||||||
|
|
||||||
/* protects hw.stats */
|
/* protects hw.stats */
|
||||||
spinlock_t stats_lock;
|
spinlock_t stats_lock;
|
||||||
};
|
};
|
||||||
|
@ -314,7 +314,7 @@ static int alx_poll(struct napi_struct *napi, int budget)
|
|||||||
napi_complete_done(&np->napi, work);
|
napi_complete_done(&np->napi, work);
|
||||||
|
|
||||||
/* enable interrupt */
|
/* enable interrupt */
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX) {
|
if (alx->hw.pdev->msix_enabled) {
|
||||||
alx_mask_msix(hw, np->vec_idx, false);
|
alx_mask_msix(hw, np->vec_idx, false);
|
||||||
} else {
|
} else {
|
||||||
spin_lock_irqsave(&alx->irq_lock, flags);
|
spin_lock_irqsave(&alx->irq_lock, flags);
|
||||||
@ -811,7 +811,7 @@ static void alx_config_vector_mapping(struct alx_priv *alx)
|
|||||||
u32 tbl[2] = {0, 0};
|
u32 tbl[2] = {0, 0};
|
||||||
int i, vector, idx, shift;
|
int i, vector, idx, shift;
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX) {
|
if (alx->hw.pdev->msix_enabled) {
|
||||||
/* tx mappings */
|
/* tx mappings */
|
||||||
for (i = 0, vector = 1; i < alx->num_txq; i++, vector++) {
|
for (i = 0, vector = 1; i < alx->num_txq; i++, vector++) {
|
||||||
idx = txq_vec_mapping_shift[i * 2];
|
idx = txq_vec_mapping_shift[i * 2];
|
||||||
@ -828,29 +828,19 @@ static void alx_config_vector_mapping(struct alx_priv *alx)
|
|||||||
alx_write_mem32(hw, ALX_MSI_ID_MAP, 0);
|
alx_write_mem32(hw, ALX_MSI_ID_MAP, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool alx_enable_msix(struct alx_priv *alx)
|
static int alx_enable_msix(struct alx_priv *alx)
|
||||||
{
|
{
|
||||||
int i, err, num_vec, num_txq, num_rxq;
|
int err, num_vec, num_txq, num_rxq;
|
||||||
|
|
||||||
num_txq = min_t(int, num_online_cpus(), ALX_MAX_TX_QUEUES);
|
num_txq = min_t(int, num_online_cpus(), ALX_MAX_TX_QUEUES);
|
||||||
num_rxq = 1;
|
num_rxq = 1;
|
||||||
num_vec = max_t(int, num_txq, num_rxq) + 1;
|
num_vec = max_t(int, num_txq, num_rxq) + 1;
|
||||||
|
|
||||||
alx->msix_entries = kcalloc(num_vec, sizeof(struct msix_entry),
|
err = pci_alloc_irq_vectors(alx->hw.pdev, num_vec, num_vec,
|
||||||
GFP_KERNEL);
|
PCI_IRQ_MSIX);
|
||||||
if (!alx->msix_entries) {
|
|
||||||
netdev_warn(alx->dev, "Allocation of msix entries failed!\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < num_vec; i++)
|
|
||||||
alx->msix_entries[i].entry = i;
|
|
||||||
|
|
||||||
err = pci_enable_msix(alx->hw.pdev, alx->msix_entries, num_vec);
|
|
||||||
if (err) {
|
if (err) {
|
||||||
kfree(alx->msix_entries);
|
|
||||||
netdev_warn(alx->dev, "Enabling MSI-X interrupts failed!\n");
|
netdev_warn(alx->dev, "Enabling MSI-X interrupts failed!\n");
|
||||||
return false;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
alx->num_vec = num_vec;
|
alx->num_vec = num_vec;
|
||||||
@ -858,7 +848,7 @@ static bool alx_enable_msix(struct alx_priv *alx)
|
|||||||
alx->num_txq = num_txq;
|
alx->num_txq = num_txq;
|
||||||
alx->num_rxq = num_rxq;
|
alx->num_rxq = num_rxq;
|
||||||
|
|
||||||
return true;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int alx_request_msix(struct alx_priv *alx)
|
static int alx_request_msix(struct alx_priv *alx)
|
||||||
@ -866,7 +856,7 @@ static int alx_request_msix(struct alx_priv *alx)
|
|||||||
struct net_device *netdev = alx->dev;
|
struct net_device *netdev = alx->dev;
|
||||||
int i, err, vector = 0, free_vector = 0;
|
int i, err, vector = 0, free_vector = 0;
|
||||||
|
|
||||||
err = request_irq(alx->msix_entries[0].vector, alx_intr_msix_misc,
|
err = request_irq(pci_irq_vector(alx->hw.pdev, 0), alx_intr_msix_misc,
|
||||||
0, netdev->name, alx);
|
0, netdev->name, alx);
|
||||||
if (err)
|
if (err)
|
||||||
goto out_err;
|
goto out_err;
|
||||||
@ -889,7 +879,7 @@ static int alx_request_msix(struct alx_priv *alx)
|
|||||||
sprintf(np->irq_lbl, "%s-unused", netdev->name);
|
sprintf(np->irq_lbl, "%s-unused", netdev->name);
|
||||||
|
|
||||||
np->vec_idx = vector;
|
np->vec_idx = vector;
|
||||||
err = request_irq(alx->msix_entries[vector].vector,
|
err = request_irq(pci_irq_vector(alx->hw.pdev, vector),
|
||||||
alx_intr_msix_ring, 0, np->irq_lbl, np);
|
alx_intr_msix_ring, 0, np->irq_lbl, np);
|
||||||
if (err)
|
if (err)
|
||||||
goto out_free;
|
goto out_free;
|
||||||
@ -897,47 +887,31 @@ static int alx_request_msix(struct alx_priv *alx)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_free:
|
out_free:
|
||||||
free_irq(alx->msix_entries[free_vector++].vector, alx);
|
free_irq(pci_irq_vector(alx->hw.pdev, free_vector++), alx);
|
||||||
|
|
||||||
vector--;
|
vector--;
|
||||||
for (i = 0; i < vector; i++)
|
for (i = 0; i < vector; i++)
|
||||||
free_irq(alx->msix_entries[free_vector++].vector,
|
free_irq(pci_irq_vector(alx->hw.pdev,free_vector++),
|
||||||
alx->qnapi[i]);
|
alx->qnapi[i]);
|
||||||
|
|
||||||
out_err:
|
out_err:
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void alx_init_intr(struct alx_priv *alx, bool msix)
|
static int alx_init_intr(struct alx_priv *alx)
|
||||||
{
|
{
|
||||||
if (msix) {
|
int ret;
|
||||||
if (alx_enable_msix(alx))
|
|
||||||
alx->flags |= ALX_FLAG_USING_MSIX;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!(alx->flags & ALX_FLAG_USING_MSIX)) {
|
ret = pci_alloc_irq_vectors(alx->hw.pdev, 1, 1,
|
||||||
alx->num_vec = 1;
|
PCI_IRQ_MSI | PCI_IRQ_LEGACY);
|
||||||
alx->num_napi = 1;
|
if (ret)
|
||||||
alx->num_txq = 1;
|
return ret;
|
||||||
alx->num_rxq = 1;
|
|
||||||
|
|
||||||
if (!pci_enable_msi(alx->hw.pdev))
|
alx->num_vec = 1;
|
||||||
alx->flags |= ALX_FLAG_USING_MSI;
|
alx->num_napi = 1;
|
||||||
}
|
alx->num_txq = 1;
|
||||||
}
|
alx->num_rxq = 1;
|
||||||
|
return 0;
|
||||||
static void alx_disable_advanced_intr(struct alx_priv *alx)
|
|
||||||
{
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX) {
|
|
||||||
kfree(alx->msix_entries);
|
|
||||||
pci_disable_msix(alx->hw.pdev);
|
|
||||||
alx->flags &= ~ALX_FLAG_USING_MSIX;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSI) {
|
|
||||||
pci_disable_msi(alx->hw.pdev);
|
|
||||||
alx->flags &= ~ALX_FLAG_USING_MSI;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void alx_irq_enable(struct alx_priv *alx)
|
static void alx_irq_enable(struct alx_priv *alx)
|
||||||
@ -950,10 +924,11 @@ static void alx_irq_enable(struct alx_priv *alx)
|
|||||||
alx_write_mem32(hw, ALX_IMR, alx->int_mask);
|
alx_write_mem32(hw, ALX_IMR, alx->int_mask);
|
||||||
alx_post_write(hw);
|
alx_post_write(hw);
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX)
|
if (alx->hw.pdev->msix_enabled) {
|
||||||
/* enable all msix irqs */
|
/* enable all msix irqs */
|
||||||
for (i = 0; i < alx->num_vec; i++)
|
for (i = 0; i < alx->num_vec; i++)
|
||||||
alx_mask_msix(hw, i, false);
|
alx_mask_msix(hw, i, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void alx_irq_disable(struct alx_priv *alx)
|
static void alx_irq_disable(struct alx_priv *alx)
|
||||||
@ -965,13 +940,13 @@ static void alx_irq_disable(struct alx_priv *alx)
|
|||||||
alx_write_mem32(hw, ALX_IMR, 0);
|
alx_write_mem32(hw, ALX_IMR, 0);
|
||||||
alx_post_write(hw);
|
alx_post_write(hw);
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX) {
|
if (alx->hw.pdev->msix_enabled) {
|
||||||
for (i = 0; i < alx->num_vec; i++) {
|
for (i = 0; i < alx->num_vec; i++) {
|
||||||
alx_mask_msix(hw, i, true);
|
alx_mask_msix(hw, i, true);
|
||||||
synchronize_irq(alx->msix_entries[i].vector);
|
synchronize_irq(pci_irq_vector(alx->hw.pdev, i));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
synchronize_irq(alx->hw.pdev->irq);
|
synchronize_irq(pci_irq_vector(alx->hw.pdev, 0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -981,8 +956,11 @@ static int alx_realloc_resources(struct alx_priv *alx)
|
|||||||
|
|
||||||
alx_free_rings(alx);
|
alx_free_rings(alx);
|
||||||
alx_free_napis(alx);
|
alx_free_napis(alx);
|
||||||
alx_disable_advanced_intr(alx);
|
pci_free_irq_vectors(alx->hw.pdev);
|
||||||
alx_init_intr(alx, false);
|
|
||||||
|
err = alx_init_intr(alx);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
err = alx_alloc_napis(alx);
|
err = alx_alloc_napis(alx);
|
||||||
if (err)
|
if (err)
|
||||||
@ -1004,7 +982,7 @@ static int alx_request_irq(struct alx_priv *alx)
|
|||||||
|
|
||||||
msi_ctrl = (hw->imt >> 1) << ALX_MSI_RETRANS_TM_SHIFT;
|
msi_ctrl = (hw->imt >> 1) << ALX_MSI_RETRANS_TM_SHIFT;
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX) {
|
if (alx->hw.pdev->msix_enabled) {
|
||||||
alx_write_mem32(hw, ALX_MSI_RETRANS_TIMER, msi_ctrl);
|
alx_write_mem32(hw, ALX_MSI_RETRANS_TIMER, msi_ctrl);
|
||||||
err = alx_request_msix(alx);
|
err = alx_request_msix(alx);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1016,20 +994,20 @@ static int alx_request_irq(struct alx_priv *alx)
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSI) {
|
if (alx->hw.pdev->msi_enabled) {
|
||||||
alx_write_mem32(hw, ALX_MSI_RETRANS_TIMER,
|
alx_write_mem32(hw, ALX_MSI_RETRANS_TIMER,
|
||||||
msi_ctrl | ALX_MSI_MASK_SEL_LINE);
|
msi_ctrl | ALX_MSI_MASK_SEL_LINE);
|
||||||
err = request_irq(pdev->irq, alx_intr_msi, 0,
|
err = request_irq(pci_irq_vector(pdev, 0), alx_intr_msi, 0,
|
||||||
alx->dev->name, alx);
|
alx->dev->name, alx);
|
||||||
if (!err)
|
if (!err)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
/* fall back to legacy interrupt */
|
/* fall back to legacy interrupt */
|
||||||
alx->flags &= ~ALX_FLAG_USING_MSI;
|
pci_free_irq_vectors(alx->hw.pdev);
|
||||||
pci_disable_msi(alx->hw.pdev);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
alx_write_mem32(hw, ALX_MSI_RETRANS_TIMER, 0);
|
alx_write_mem32(hw, ALX_MSI_RETRANS_TIMER, 0);
|
||||||
err = request_irq(pdev->irq, alx_intr_legacy, IRQF_SHARED,
|
err = request_irq(pci_irq_vector(pdev, 0), alx_intr_legacy, IRQF_SHARED,
|
||||||
alx->dev->name, alx);
|
alx->dev->name, alx);
|
||||||
out:
|
out:
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1042,18 +1020,15 @@ out:
|
|||||||
static void alx_free_irq(struct alx_priv *alx)
|
static void alx_free_irq(struct alx_priv *alx)
|
||||||
{
|
{
|
||||||
struct pci_dev *pdev = alx->hw.pdev;
|
struct pci_dev *pdev = alx->hw.pdev;
|
||||||
int i, vector = 0;
|
int i;
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX) {
|
free_irq(pci_irq_vector(pdev, 0), alx);
|
||||||
free_irq(alx->msix_entries[vector++].vector, alx);
|
if (alx->hw.pdev->msix_enabled) {
|
||||||
for (i = 0; i < alx->num_napi; i++)
|
for (i = 0; i < alx->num_napi; i++)
|
||||||
free_irq(alx->msix_entries[vector++].vector,
|
free_irq(pci_irq_vector(pdev, i + 1), alx->qnapi[i]);
|
||||||
alx->qnapi[i]);
|
|
||||||
} else {
|
|
||||||
free_irq(pdev->irq, alx);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
alx_disable_advanced_intr(alx);
|
pci_free_irq_vectors(pdev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int alx_identify_hw(struct alx_priv *alx)
|
static int alx_identify_hw(struct alx_priv *alx)
|
||||||
@ -1221,7 +1196,12 @@ static int __alx_open(struct alx_priv *alx, bool resume)
|
|||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
alx_init_intr(alx, true);
|
err = alx_enable_msix(alx);
|
||||||
|
if (err < 0) {
|
||||||
|
err = alx_init_intr(alx);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
if (!resume)
|
if (!resume)
|
||||||
netif_carrier_off(alx->dev);
|
netif_carrier_off(alx->dev);
|
||||||
@ -1264,7 +1244,7 @@ out_free_rings:
|
|||||||
alx_free_rings(alx);
|
alx_free_rings(alx);
|
||||||
alx_free_napis(alx);
|
alx_free_napis(alx);
|
||||||
out_disable_adv_intr:
|
out_disable_adv_intr:
|
||||||
alx_disable_advanced_intr(alx);
|
pci_free_irq_vectors(alx->hw.pdev);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1637,11 +1617,11 @@ static void alx_poll_controller(struct net_device *netdev)
|
|||||||
struct alx_priv *alx = netdev_priv(netdev);
|
struct alx_priv *alx = netdev_priv(netdev);
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (alx->flags & ALX_FLAG_USING_MSIX) {
|
if (alx->hw.pdev->msix_enabled) {
|
||||||
alx_intr_msix_misc(0, alx);
|
alx_intr_msix_misc(0, alx);
|
||||||
for (i = 0; i < alx->num_txq; i++)
|
for (i = 0; i < alx->num_txq; i++)
|
||||||
alx_intr_msix_ring(0, alx->qnapi[i]);
|
alx_intr_msix_ring(0, alx->qnapi[i]);
|
||||||
} else if (alx->flags & ALX_FLAG_USING_MSI)
|
} else if (alx->hw.pdev->msi_enabled)
|
||||||
alx_intr_msi(0, alx);
|
alx_intr_msi(0, alx);
|
||||||
else
|
else
|
||||||
alx_intr_legacy(0, alx);
|
alx_intr_legacy(0, alx);
|
||||||
@ -1783,7 +1763,7 @@ static int alx_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
|
|
||||||
netdev->netdev_ops = &alx_netdev_ops;
|
netdev->netdev_ops = &alx_netdev_ops;
|
||||||
netdev->ethtool_ops = &alx_ethtool_ops;
|
netdev->ethtool_ops = &alx_ethtool_ops;
|
||||||
netdev->irq = pdev->irq;
|
netdev->irq = pci_irq_vector(pdev, 0);
|
||||||
netdev->watchdog_timeo = ALX_WATCHDOG_TIME;
|
netdev->watchdog_timeo = ALX_WATCHDOG_TIME;
|
||||||
|
|
||||||
if (ent->driver_data & ALX_DEV_QUIRK_MSI_INTX_DISABLE_BUG)
|
if (ent->driver_data & ALX_DEV_QUIRK_MSI_INTX_DISABLE_BUG)
|
||||||
|
Loading…
Reference in New Issue
Block a user