* [PATCH] irqchip/mvebu-gicp: clear pending irqs on init
@ 2025-07-29 8:48 enachman
2025-07-29 12:10 ` Thomas Gleixner
2025-07-29 19:07 ` Markus Elfring
0 siblings, 2 replies; 3+ messages in thread
From: enachman @ 2025-07-29 8:48 UTC (permalink / raw)
To: andrew, gregory.clement, sebastian.hesselbarth, tglx,
linux-arm-kernel, linux-kernel
Cc: enachman
From: Elad Nachman <enachman@marvell.com>
For kexec case, left interrupt might generate spurious
interrupts in various A7/A8/CN913x interrupt system
from the I/O SB to the NB. Clear all pending interrupts
when the driver is initialized to prevent these spurious
interrupts.
Signed-off-by: Elad Nachman <enachman@marvell.com>
---
drivers/irqchip/irq-mvebu-gicp.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/irqchip/irq-mvebu-gicp.c b/drivers/irqchip/irq-mvebu-gicp.c
index d3232d6d8dce..0fa21a45d4e1 100644
--- a/drivers/irqchip/irq-mvebu-gicp.c
+++ b/drivers/irqchip/irq-mvebu-gicp.c
@@ -31,6 +31,7 @@ struct mvebu_gicp_spi_range {
struct mvebu_gicp {
struct mvebu_gicp_spi_range *spi_ranges;
+ void __iomem *base;
unsigned int spi_ranges_cnt;
unsigned int spi_cnt;
unsigned long *spi_bitmap;
@@ -236,6 +237,14 @@ static int mvebu_gicp_probe(struct platform_device *pdev)
return -ENODEV;
}
+ gicp->base = devm_platform_ioremap_resource(pdev, 0);
+ if (IS_ERR(gicp->base))
+ dev_err(&pdev->dev, "gicp - Cannot ioremap !\n");
+ else {
+ for (i = 0; i < 64; i++)
+ writel(i, gicp->base + GICP_CLRSPI_NSR_OFFSET);
+ }
+
return msi_create_parent_irq_domain(&info, &gicp_msi_parent_ops) ? 0 : -ENOMEM;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] irqchip/mvebu-gicp: clear pending irqs on init
2025-07-29 8:48 [PATCH] irqchip/mvebu-gicp: clear pending irqs on init enachman
@ 2025-07-29 12:10 ` Thomas Gleixner
2025-07-29 19:07 ` Markus Elfring
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2025-07-29 12:10 UTC (permalink / raw)
To: enachman, andrew, gregory.clement, sebastian.hesselbarth,
linux-arm-kernel, linux-kernel
Cc: enachman
On Tue, Jul 29 2025 at 11:48, enachman@marvell.com wrote:
> From: Elad Nachman <enachman@marvell.com>
>
> For kexec case, left interrupt might generate spurious
> interrupts in various A7/A8/CN913x interrupt system
> from the I/O SB to the NB.
That's a lot of incomprehensible acronyms. Is any of that relevant for
understanding the problem?
What's a 'left' interrupt?
Just say something like this:
When a kexec'ed kernel boots up, there might be stale unhandled
interrupts pending in the interrupt controller. These are delivered as
spurious interrupts once the boot CPU enables interrupts.
That's clear and sufficient, no?
> Clear all pending interrupts
> when the driver is initialized to prevent these spurious
> interrupts.
> Signed-off-by: Elad Nachman <enachman@marvell.com>
> ---
> drivers/irqchip/irq-mvebu-gicp.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/drivers/irqchip/irq-mvebu-gicp.c b/drivers/irqchip/irq-mvebu-gicp.c
> index d3232d6d8dce..0fa21a45d4e1 100644
> --- a/drivers/irqchip/irq-mvebu-gicp.c
> +++ b/drivers/irqchip/irq-mvebu-gicp.c
> @@ -31,6 +31,7 @@ struct mvebu_gicp_spi_range {
>
> struct mvebu_gicp {
> struct mvebu_gicp_spi_range *spi_ranges;
> + void __iomem *base;
Why?
> unsigned int spi_ranges_cnt;
> unsigned int spi_cnt;
> unsigned long *spi_bitmap;
> @@ -236,6 +237,14 @@ static int mvebu_gicp_probe(struct platform_device *pdev)
> return -ENODEV;
> }
>
> + gicp->base = devm_platform_ioremap_resource(pdev, 0);
There is no reason to create a permanent mapping, which is not used
anywhere else. Just map, write, unmap.
> + if (IS_ERR(gicp->base))
> + dev_err(&pdev->dev, "gicp - Cannot ioremap !\n");
So this emits a unspecific error message and then happily
continues. That does not make sense.
As the ioremap failure is not fatal, tell the user what this is about,
i.e. "ioremap() failed. Unable to clear pending interrupts."
or something to that effect.
> + else {
Lacks parenthesis on the if clause for symmetry.
> + for (i = 0; i < 64; i++)
> + writel(i, gicp->base + GICP_CLRSPI_NSR_OFFSET);
> + }
> +
> return msi_create_parent_irq_domain(&info, &gicp_msi_parent_ops) ? 0 : -ENOMEM;
> }
Thanks,
tglx
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] irqchip/mvebu-gicp: clear pending irqs on init
2025-07-29 8:48 [PATCH] irqchip/mvebu-gicp: clear pending irqs on init enachman
2025-07-29 12:10 ` Thomas Gleixner
@ 2025-07-29 19:07 ` Markus Elfring
1 sibling, 0 replies; 3+ messages in thread
From: Markus Elfring @ 2025-07-29 19:07 UTC (permalink / raw)
To: Elad Nachman, linux-arm-kernel
Cc: LKML, Andrew Lunn, Gregory Clement, Sebastian Hesselbarth,
Thomas Gleixner
…
> from the I/O SB to the NB. Clear all pending interrupts
> when the driver is initialized to prevent these spurious
> interrupts.
Under which circumstances would you become interested to put more than 56 characters
into text lines of such a change description?
See also once more:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.16#n658
Regards,
Markus
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-07-29 19:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-29 8:48 [PATCH] irqchip/mvebu-gicp: clear pending irqs on init enachman
2025-07-29 12:10 ` Thomas Gleixner
2025-07-29 19:07 ` Markus Elfring
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox