* [PATCH] PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup
@ 2026-07-15 1:11 Rosen Penev
2026-07-15 1:19 ` sashiko-bot
2026-07-15 12:54 ` Pandey, Radhey Shyam
0 siblings, 2 replies; 3+ messages in thread
From: Rosen Penev @ 2026-07-15 1:11 UTC (permalink / raw)
To: linux-pci
Cc: Lorenzo Pieralisi, Krzysztof Wilczyński,
Manivannan Sadhasivam, Rob Herring, Bjorn Helgaas, Michal Simek,
Nathan Chancellor, Nick Desaulniers, Bill Wendling, Justin Stitt,
moderated list:ARM/ZYNQ ARCHITECTURE, open list,
open list:CLANG/LLVM BUILD SUPPORT:Keyword:b(?i:clang|llvm)b
Replace irq_of_parse_and_map() with fwnode_irq_get(dev_fwnode(dev), 0)
in xilinx_pcie_parse_dt(). For an OF-backed device this is equivalent to
the previous call, but uses the generic firmware-node API.
Unlike irq_of_parse_and_map(), fwnode_irq_get() returns a positive IRQ or
a negative errno and never 0 (it rewrites 0 to -EINVAL). Store the result
in an int and check for irq < 0, returning the error (including
-EPROBE_DEFER). This also adds the error handling the previous code
lacked, where irq_of_parse_and_map() failures were passed straight into
devm_request_irq().
Built for ARM (multi_v7_defconfig + CONFIG_PCIE_XILINX) with LLVM=1;
drivers/pci/controller/pcie-xilinx.o compiles cleanly.
Assisted-by: opencode:hy3-free
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
drivers/pci/controller/pcie-xilinx.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/pci/controller/pcie-xilinx.c b/drivers/pci/controller/pcie-xilinx.c
index 4aa139abac16..a7b069f7673a 100644
--- a/drivers/pci/controller/pcie-xilinx.c
+++ b/drivers/pci/controller/pcie-xilinx.c
@@ -20,10 +20,10 @@
#include <linux/of_address.h>
#include <linux/of_pci.h>
#include <linux/of_platform.h>
-#include <linux/of_irq.h>
#include <linux/pci.h>
#include <linux/pci-ecam.h>
#include <linux/platform_device.h>
+#include <linux/property.h>
#include "../pci.h"
@@ -535,7 +535,7 @@ static int xilinx_pcie_parse_dt(struct xilinx_pcie *pcie)
struct device *dev = pcie->dev;
struct device_node *node = dev->of_node;
struct resource regs;
- unsigned int irq;
+ int irq;
int err;
err = of_address_to_resource(node, 0, ®s);
@@ -548,7 +548,10 @@ static int xilinx_pcie_parse_dt(struct xilinx_pcie *pcie)
if (IS_ERR(pcie->reg_base))
return PTR_ERR(pcie->reg_base);
- irq = irq_of_parse_and_map(node, 0);
+ irq = fwnode_irq_get(dev_fwnode(dev), 0);
+ if (irq < 0)
+ return irq;
+
err = devm_request_irq(dev, irq, xilinx_pcie_intr_handler,
IRQF_SHARED | IRQF_NO_THREAD,
"xilinx-pcie", pcie);
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup
2026-07-15 1:11 [PATCH] PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup Rosen Penev
@ 2026-07-15 1:19 ` sashiko-bot
2026-07-15 12:54 ` Pandey, Radhey Shyam
1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-07-15 1:19 UTC (permalink / raw)
To: Rosen Penev; +Cc: linux-pci
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Missing `dev_err_probe()` causes spurious boot log spam on probe deferral.
--
--- Patch [1]: [PATCH] PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup ---
commit 3b83750c982aed2e3747f9f586daf87ae00edeec
Author: Rosen Penev <rosenp@gmail.com>
PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup
This commit replaces irq_of_parse_and_map() with fwnode_irq_get() in
xilinx_pcie_parse_dt(). It also introduces error handling for the returned
IRQ value, propagating negative errors (including -EPROBE_DEFER) up the
stack instead of passing failures to devm_request_irq().
> diff --git a/drivers/pci/controller/pcie-xilinx.c b/drivers/pci/controller/pcie-xilinx.c
> --- a/drivers/pci/controller/pcie-xilinx.c
> +++ b/drivers/pci/controller/pcie-xilinx.c
[ ... ]
> @@ -548,7 +548,10 @@ static int xilinx_pcie_parse_dt(struct xilinx_pcie *pcie)
> if (IS_ERR(pcie->reg_base))
> return PTR_ERR(pcie->reg_base);
>
> - irq = irq_of_parse_and_map(node, 0);
> + irq = fwnode_irq_get(dev_fwnode(dev), 0);
> + if (irq < 0)
> + return irq;
> +
[Severity: Low]
Does this introduce spurious boot log spam during probe deferral?
Since fwnode_irq_get() can return -EPROBE_DEFER, returning it directly here
propagates the deferral up to the caller, xilinx_pcie_probe().
In xilinx_pcie_probe(), the error is handled like this:
err = xilinx_pcie_parse_dt(pcie);
if (err) {
dev_err(dev, "Parsing DT failed\n");
return err;
}
Would it make sense to update xilinx_pcie_probe() to use dev_err_probe()
to handle the newly propagated -EPROBE_DEFER quietly?
> err = devm_request_irq(dev, irq, xilinx_pcie_intr_handler,
> IRQF_SHARED | IRQF_NO_THREAD,
> "xilinx-pcie", pcie);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260715011142.1261469-1-rosenp@gmail.com?part=1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup
2026-07-15 1:11 [PATCH] PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup Rosen Penev
2026-07-15 1:19 ` sashiko-bot
@ 2026-07-15 12:54 ` Pandey, Radhey Shyam
1 sibling, 0 replies; 3+ messages in thread
From: Pandey, Radhey Shyam @ 2026-07-15 12:54 UTC (permalink / raw)
To: Rosen Penev, linux-pci
Cc: Lorenzo Pieralisi, Krzysztof Wilczyński,
Manivannan Sadhasivam, Rob Herring, Bjorn Helgaas, Michal Simek,
Nathan Chancellor, Nick Desaulniers, Bill Wendling, Justin Stitt,
moderated list:ARM/ZYNQ ARCHITECTURE, open list,
open list:CLANG/LLVM BUILD SUPPORT:Keyword:b(?i:clang|llvm)b
> Replace irq_of_parse_and_map() with fwnode_irq_get(dev_fwnode(dev), 0)
> in xilinx_pcie_parse_dt(). For an OF-backed device this is equivalent to
> the previous call, but uses the generic firmware-node API.
>
> Unlike irq_of_parse_and_map(), fwnode_irq_get() returns a positive IRQ or
> a negative errno and never 0 (it rewrites 0 to -EINVAL). Store the result
> in an int and check for irq < 0, returning the error (including
> -EPROBE_DEFER). This also adds the error handling the previous code
> lacked, where irq_of_parse_and_map() failures were passed straight into
> devm_request_irq().
>
> Built for ARM (multi_v7_defconfig + CONFIG_PCIE_XILINX) with LLVM=1;
> drivers/pci/controller/pcie-xilinx.o compiles cleanly.
>
> Assisted-by: opencode:hy3-free
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
> ---
> drivers/pci/controller/pcie-xilinx.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/pci/controller/pcie-xilinx.c b/drivers/pci/controller/pcie-xilinx.c
> index 4aa139abac16..a7b069f7673a 100644
> --- a/drivers/pci/controller/pcie-xilinx.c
> +++ b/drivers/pci/controller/pcie-xilinx.c
> @@ -20,10 +20,10 @@
> #include <linux/of_address.h>
> #include <linux/of_pci.h>
> #include <linux/of_platform.h>
> -#include <linux/of_irq.h>
> #include <linux/pci.h>
> #include <linux/pci-ecam.h>
> #include <linux/platform_device.h>
> +#include <linux/property.h>
>
> #include "../pci.h"
>
> @@ -535,7 +535,7 @@ static int xilinx_pcie_parse_dt(struct xilinx_pcie *pcie)
> struct device *dev = pcie->dev;
> struct device_node *node = dev->of_node;
> struct resource regs;
> - unsigned int irq;
> + int irq;
> int err;
>
> err = of_address_to_resource(node, 0, ®s);
> @@ -548,7 +548,10 @@ static int xilinx_pcie_parse_dt(struct xilinx_pcie *pcie)
> if (IS_ERR(pcie->reg_base))
> return PTR_ERR(pcie->reg_base);
>
> - irq = irq_of_parse_and_map(node, 0);
> + irq = fwnode_irq_get(dev_fwnode(dev), 0);
> + if (irq < 0)
> + return irq;
>
Thanks for the patch.
Nit - as Sashiko review mentioned better to update xilinx_pcie_probe()
to use dev_err_probe() to avoid noise on defer.
Rest changes looks fine.
Thanks,
Radhey> err = devm_request_irq(dev, irq, xilinx_pcie_intr_handler,
> IRQF_SHARED | IRQF_NO_THREAD,
> "xilinx-pcie", pcie);
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-15 12:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-15 1:11 [PATCH] PCI: xilinx: use fwnode_irq_get() for INTx IRQ lookup Rosen Penev
2026-07-15 1:19 ` sashiko-bot
2026-07-15 12:54 ` Pandey, Radhey Shyam
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox