Skip to content

Commit

Permalink
Merge branch 'remotes/lorenzo/pci/xilinx-nwl'
Browse files Browse the repository at this point in the history
- Declare bitmap correctly and as part of struct nwl_msi managed resource
  (Christophe JAILLET)

* remotes/lorenzo/pci/xilinx-nwl:
  PCI: xilinx-nwl: Simplify code and fix a memory leak
  • Loading branch information
Bjorn Helgaas committed Jan 13, 2022
2 parents 18b026d + 61f0aa4 commit a99f501
Showing 1 changed file with 7 additions and 23 deletions.
30 changes: 7 additions & 23 deletions drivers/pci/controller/pcie-xilinx-nwl.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@

struct nwl_msi { /* MSI information */
struct irq_domain *msi_domain;
unsigned long *bitmap;
DECLARE_BITMAP(bitmap, INT_PCI_MSI_NR);
struct irq_domain *dev_domain;
struct mutex lock; /* protect bitmap variable */
int irq_msi0;
Expand Down Expand Up @@ -335,12 +335,10 @@ static void nwl_pcie_leg_handler(struct irq_desc *desc)

static void nwl_pcie_handle_msi_irq(struct nwl_pcie *pcie, u32 status_reg)
{
struct nwl_msi *msi;
struct nwl_msi *msi = &pcie->msi;
unsigned long status;
u32 bit;

msi = &pcie->msi;

while ((status = nwl_bridge_readl(pcie, status_reg)) != 0) {
for_each_set_bit(bit, &status, 32) {
nwl_bridge_writel(pcie, 1 << bit, status_reg);
Expand Down Expand Up @@ -560,30 +558,21 @@ static int nwl_pcie_enable_msi(struct nwl_pcie *pcie)
struct nwl_msi *msi = &pcie->msi;
unsigned long base;
int ret;
int size = BITS_TO_LONGS(INT_PCI_MSI_NR) * sizeof(long);

mutex_init(&msi->lock);

msi->bitmap = kzalloc(size, GFP_KERNEL);
if (!msi->bitmap)
return -ENOMEM;

/* Get msi_1 IRQ number */
msi->irq_msi1 = platform_get_irq_byname(pdev, "msi1");
if (msi->irq_msi1 < 0) {
ret = -EINVAL;
goto err;
}
if (msi->irq_msi1 < 0)
return -EINVAL;

irq_set_chained_handler_and_data(msi->irq_msi1,
nwl_pcie_msi_handler_high, pcie);

/* Get msi_0 IRQ number */
msi->irq_msi0 = platform_get_irq_byname(pdev, "msi0");
if (msi->irq_msi0 < 0) {
ret = -EINVAL;
goto err;
}
if (msi->irq_msi0 < 0)
return -EINVAL;

irq_set_chained_handler_and_data(msi->irq_msi0,
nwl_pcie_msi_handler_low, pcie);
Expand All @@ -592,8 +581,7 @@ static int nwl_pcie_enable_msi(struct nwl_pcie *pcie)
ret = nwl_bridge_readl(pcie, I_MSII_CAPABILITIES) & MSII_PRESENT;
if (!ret) {
dev_err(dev, "MSI not present\n");
ret = -EIO;
goto err;
return -EIO;
}

/* Enable MSII */
Expand Down Expand Up @@ -632,10 +620,6 @@ static int nwl_pcie_enable_msi(struct nwl_pcie *pcie)
nwl_bridge_writel(pcie, MSGF_MSI_SR_LO_MASK, MSGF_MSI_MASK_LO);

return 0;
err:
kfree(msi->bitmap);
msi->bitmap = NULL;
return ret;
}

static int nwl_pcie_bridge_init(struct nwl_pcie *pcie)
Expand Down

0 comments on commit a99f501

Please sign in to comment.