public inbox for linux-sunxi@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH can] can: sun4i_can: sun4i_can_interrupt(): fix max irq loop handling
@ 2025-11-16 15:55 Marc Kleine-Budde
  2025-11-16 16:20 ` Jernej Škrabec
  0 siblings, 1 reply; 4+ messages in thread
From: Marc Kleine-Budde @ 2025-11-16 15:55 UTC (permalink / raw)
  To: Vincent Mailhol, Chen-Yu Tsai, Jernej Skrabec, Samuel Holland,
	Gerhard Bertelsmann, Maxime Ripard
  Cc: kernel, linux-can, linux-arm-kernel, linux-sunxi, linux-kernel,
	stable, Thomas Mühlbacher, Marc Kleine-Budde

Reading the interrupt register `SUN4I_REG_INT_ADDR` causes all of its bits
to be reset. If we ever reach the condition of handling more than
`SUN4I_CAN_MAX_IRQ` IRQs, we will have read the register and reset all its
bits but without actually handling the interrupt inside of the loop body.

This may, among other issues, cause us to never `netif_wake_queue()` again
after a transmission interrupt.

Fixes: 0738eff14d81 ("can: Allwinner A10/A20 CAN Controller support - Kernel module")
Cc: stable@vger.kernel.org
Co-developed-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
Signed-off-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
I've ported the fix from the sja1000 driver to the sun4i_can, which based
on the sja1000 driver.
---
 drivers/net/can/sun4i_can.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/can/sun4i_can.c b/drivers/net/can/sun4i_can.c
index 53bfd873de9b..0a7ba0942839 100644
--- a/drivers/net/can/sun4i_can.c
+++ b/drivers/net/can/sun4i_can.c
@@ -657,8 +657,8 @@ static irqreturn_t sun4i_can_interrupt(int irq, void *dev_id)
 	u8 isrc, status;
 	int n = 0;
 
-	while ((isrc = readl(priv->base + SUN4I_REG_INT_ADDR)) &&
-	       (n < SUN4I_CAN_MAX_IRQ)) {
+	while ((n < SUN4I_CAN_MAX_IRQ) &&
+	       (isrc = readl(priv->base + SUN4I_REG_INT_ADDR))) {
 		n++;
 		status = readl(priv->base + SUN4I_REG_STA_ADDR);
 

---
base-commit: 5442a9da69789741bfda39f34ee7f69552bf0c56
change-id: 20251116-sun4i-fix-loop-f265621b6a99

Best regards,
--  
Marc Kleine-Budde <mkl@pengutronix.de>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH can] can: sun4i_can: sun4i_can_interrupt(): fix max irq loop handling
  2025-11-16 15:55 [PATCH can] can: sun4i_can: sun4i_can_interrupt(): fix max irq loop handling Marc Kleine-Budde
@ 2025-11-16 16:20 ` Jernej Škrabec
  2025-11-16 16:26   ` Marc Kleine-Budde
  0 siblings, 1 reply; 4+ messages in thread
From: Jernej Škrabec @ 2025-11-16 16:20 UTC (permalink / raw)
  To: Vincent Mailhol, Chen-Yu Tsai, Samuel Holland,
	Gerhard Bertelsmann, Maxime Ripard, Marc Kleine-Budde
  Cc: kernel, linux-can, linux-arm-kernel, linux-sunxi, linux-kernel,
	stable, Thomas Mühlbacher, Marc Kleine-Budde

Dne nedelja, 16. november 2025 ob 16:55:26 Srednjeevropski standardni čas je Marc Kleine-Budde napisal(a):
> Reading the interrupt register `SUN4I_REG_INT_ADDR` causes all of its bits
> to be reset. If we ever reach the condition of handling more than
> `SUN4I_CAN_MAX_IRQ` IRQs, we will have read the register and reset all its
> bits but without actually handling the interrupt inside of the loop body.
> 
> This may, among other issues, cause us to never `netif_wake_queue()` again
> after a transmission interrupt.
> 
> Fixes: 0738eff14d81 ("can: Allwinner A10/A20 CAN Controller support - Kernel module")
> Cc: stable@vger.kernel.org
> Co-developed-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
> Signed-off-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
> I've ported the fix from the sja1000 driver to the sun4i_can, which based
> on the sja1000 driver.

Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>

Best regards,
Jernej



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH can] can: sun4i_can: sun4i_can_interrupt(): fix max irq loop handling
  2025-11-16 16:20 ` Jernej Škrabec
@ 2025-11-16 16:26   ` Marc Kleine-Budde
  2025-11-16 17:46     ` Jernej Škrabec
  0 siblings, 1 reply; 4+ messages in thread
From: Marc Kleine-Budde @ 2025-11-16 16:26 UTC (permalink / raw)
  To: Jernej Škrabec
  Cc: Vincent Mailhol, Chen-Yu Tsai, Samuel Holland,
	Gerhard Bertelsmann, Maxime Ripard, kernel, linux-can,
	linux-arm-kernel, linux-sunxi, linux-kernel, stable,
	Thomas Mühlbacher

[-- Attachment #1: Type: text/plain, Size: 1513 bytes --]

On 16.11.2025 17:20:37, Jernej Škrabec wrote:
> Dne nedelja, 16. november 2025 ob 16:55:26 Srednjeevropski standardni čas je Marc Kleine-Budde napisal(a):
> > Reading the interrupt register `SUN4I_REG_INT_ADDR` causes all of its bits
> > to be reset. If we ever reach the condition of handling more than
> > `SUN4I_CAN_MAX_IRQ` IRQs, we will have read the register and reset all its
> > bits but without actually handling the interrupt inside of the loop body.
> >
> > This may, among other issues, cause us to never `netif_wake_queue()` again
> > after a transmission interrupt.
> >
> > Fixes: 0738eff14d81 ("can: Allwinner A10/A20 CAN Controller support - Kernel module")
> > Cc: stable@vger.kernel.org
> > Co-developed-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
> > Signed-off-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
> > Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> > ---
> > I've ported the fix from the sja1000 driver to the sun4i_can, which based
> > on the sja1000 driver.
>
> Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>

Thank you very much! I have seen a lot of feedback from you about the
sun4i driver. Would you like to become the maintainer of the driver?

regards,
Marc

-- 
Pengutronix e.K.                 | Marc Kleine-Budde          |
Embedded Linux                   | https://www.pengutronix.de |
Vertretung Nürnberg              | Phone: +49-5121-206917-129 |
Amtsgericht Hildesheim, HRA 2686 | Fax:   +49-5121-206917-9   |

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH can] can: sun4i_can: sun4i_can_interrupt(): fix max irq loop handling
  2025-11-16 16:26   ` Marc Kleine-Budde
@ 2025-11-16 17:46     ` Jernej Škrabec
  0 siblings, 0 replies; 4+ messages in thread
From: Jernej Škrabec @ 2025-11-16 17:46 UTC (permalink / raw)
  To: Marc Kleine-Budde
  Cc: Vincent Mailhol, Chen-Yu Tsai, Samuel Holland,
	Gerhard Bertelsmann, Maxime Ripard, kernel, linux-can,
	linux-arm-kernel, linux-sunxi, linux-kernel, stable,
	Thomas Mühlbacher

Hi!

Dne nedelja, 16. november 2025 ob 17:26:07 Srednjeevropski standardni čas je Marc Kleine-Budde napisal(a):
> On 16.11.2025 17:20:37, Jernej Škrabec wrote:
> > Dne nedelja, 16. november 2025 ob 16:55:26 Srednjeevropski standardni čas je Marc Kleine-Budde napisal(a):
> > > Reading the interrupt register `SUN4I_REG_INT_ADDR` causes all of its bits
> > > to be reset. If we ever reach the condition of handling more than
> > > `SUN4I_CAN_MAX_IRQ` IRQs, we will have read the register and reset all its
> > > bits but without actually handling the interrupt inside of the loop body.
> > >
> > > This may, among other issues, cause us to never `netif_wake_queue()` again
> > > after a transmission interrupt.
> > >
> > > Fixes: 0738eff14d81 ("can: Allwinner A10/A20 CAN Controller support - Kernel module")
> > > Cc: stable@vger.kernel.org
> > > Co-developed-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
> > > Signed-off-by: Thomas Mühlbacher <tmuehlbacher@posteo.net>
> > > Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> > > ---
> > > I've ported the fix from the sja1000 driver to the sun4i_can, which based
> > > on the sja1000 driver.
> >
> > Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>
> 
> Thank you very much! I have seen a lot of feedback from you about the
> sun4i driver. Would you like to become the maintainer of the driver?

As a Allwinner (sunxi) maintainer, it is somehow implied that I help with
reviewing such drivers, right?

However, while I never used sun4i_can driver, I know CAN protocol well
as I work with SJA1000 compatible controllers at work, so I can help with
maintaining it.

Best regards,
Jernej



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-11-16 17:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-16 15:55 [PATCH can] can: sun4i_can: sun4i_can_interrupt(): fix max irq loop handling Marc Kleine-Budde
2025-11-16 16:20 ` Jernej Škrabec
2025-11-16 16:26   ` Marc Kleine-Budde
2025-11-16 17:46     ` Jernej Škrabec

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox