From: Rosen Penev <rosenp@gmail.com>
To: dmaengine@vger.kernel.org
Cc: Vinod Koul <vkoul@kernel.org>, Frank Li <Frank.Li@kernel.org>,
linux-kernel@vger.kernel.org (open list)
Subject: [PATCHv2] dmaengine: ppc4xx: convert irq_of_parse_and_map to platform_get_irq
Date: Sun, 13 Sep 2026 12:55:47 -0700 [thread overview]
Message-ID: <20260913195547.41579-1-rosenp@gmail.com> (raw)
Replace irq_of_parse_and_map() with platform_get_irq(), which is the
preferred way to obtain IRQ resources from platform devices. This
eliminates the corresponding irq_dispose_mapping() calls since the
framework manages the mapping.
While here, fix a latent bug in the err_req2 error path: the error IRQ
was not freed when a subsequent step (I2O setup) failed.
The struct device_node *np declaration is moved to the scope where
it is still needed (I2O register lookup).
Assisted-by: LLM
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
v2: use _optional
drivers/dma/ppc4xx/adma.c | 35 ++++++++++++++---------------------
1 file changed, 14 insertions(+), 21 deletions(-)
diff --git a/drivers/dma/ppc4xx/adma.c b/drivers/dma/ppc4xx/adma.c
index 279a431ccae3..99aee726644e 100644
--- a/drivers/dma/ppc4xx/adma.c
+++ b/drivers/dma/ppc4xx/adma.c
@@ -3865,28 +3865,24 @@ static int ppc440spe_adma_setup_irqs(struct ppc440spe_adma_device *adev,
int *initcode)
{
struct platform_device *ofdev;
- struct device_node *np;
int ret;
ofdev = container_of(adev->dev, struct platform_device, dev);
- np = ofdev->dev.of_node;
if (adev->id != PPC440SPE_XOR_ID) {
- adev->err_irq = irq_of_parse_and_map(np, 1);
- if (!adev->err_irq) {
+ adev->err_irq = platform_get_irq_optional(ofdev, 1);
+ if (adev->err_irq < 0) {
dev_warn(adev->dev, "no err irq resource?\n");
*initcode = PPC_ADMA_INIT_IRQ2;
- adev->err_irq = -ENXIO;
} else
atomic_inc(&ppc440spe_adma_err_irq_ref);
} else {
adev->err_irq = -ENXIO;
}
- adev->irq = irq_of_parse_and_map(np, 0);
- if (!adev->irq) {
- dev_err(adev->dev, "no irq resource\n");
+ adev->irq = platform_get_irq(ofdev, 0);
+ if (adev->irq < 0) {
*initcode = PPC_ADMA_INIT_IRQ1;
- ret = -ENXIO;
+ ret = adev->irq;
goto err_irq_map;
}
dev_dbg(adev->dev, "irq %d, err irq %d\n",
@@ -3899,7 +3895,7 @@ static int ppc440spe_adma_setup_irqs(struct ppc440spe_adma_device *adev,
adev->irq);
*initcode = PPC_ADMA_INIT_IRQ1;
ret = -EIO;
- goto err_req1;
+ goto err_irq_map;
}
/* only DMA engines have a separate error IRQ
@@ -3917,7 +3913,7 @@ static int ppc440spe_adma_setup_irqs(struct ppc440spe_adma_device *adev,
adev->err_irq);
*initcode = PPC_ADMA_INIT_IRQ2;
ret = -EIO;
- goto err_req2;
+ goto err_req1;
}
}
@@ -3927,6 +3923,7 @@ static int ppc440spe_adma_setup_irqs(struct ppc440spe_adma_device *adev,
XOR_IE_ICIE_BIT | XOR_IE_RPTIE_BIT,
&adev->xor_reg->ier);
} else {
+ struct device_node *np;
u32 mask, enable;
np = of_find_compatible_node(NULL, NULL, "ibm,i2o-440spe");
@@ -3956,14 +3953,13 @@ static int ppc440spe_adma_setup_irqs(struct ppc440spe_adma_device *adev,
return 0;
err_req2:
- free_irq(adev->irq, chan);
+ if (adev->err_irq > 0)
+ free_irq(adev->err_irq, chan);
err_req1:
- irq_dispose_mapping(adev->irq);
+ free_irq(adev->irq, chan);
err_irq_map:
- if (adev->err_irq > 0) {
- if (atomic_dec_and_test(&ppc440spe_adma_err_irq_ref))
- irq_dispose_mapping(adev->err_irq);
- }
+ if (adev->err_irq > 0)
+ atomic_dec(&ppc440spe_adma_err_irq_ref);
return ret;
}
@@ -3987,13 +3983,10 @@ static void ppc440spe_adma_release_irqs(struct ppc440spe_adma_device *adev,
iowrite32(mask, &adev->i2o_reg->iopim);
}
free_irq(adev->irq, chan);
- irq_dispose_mapping(adev->irq);
if (adev->err_irq > 0) {
free_irq(adev->err_irq, chan);
- if (atomic_dec_and_test(&ppc440spe_adma_err_irq_ref)) {
- irq_dispose_mapping(adev->err_irq);
+ if (atomic_dec_and_test(&ppc440spe_adma_err_irq_ref))
iounmap(adev->i2o_reg);
- }
}
}
--
2.55.0
reply other threads:[~2026-09-13 19:55 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260913195547.41579-1-rosenp@gmail.com \
--to=rosenp@gmail.com \
--cc=Frank.Li@kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®