netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] can: sja1000: clear interrupts on start
@ 2015-11-10 13:59 Mirza Krak
  2015-11-11  8:04 ` Marc Kleine-Budde
  0 siblings, 1 reply; 9+ messages in thread
From: Mirza Krak @ 2015-11-10 13:59 UTC (permalink / raw)
  To: wg, mkl; +Cc: andri.yngvason, linux-can, netdev, linux-kernel, Mirza Krak

From: Mirza Krak <mirza.krak@hostmobility.com>

According to SJA1000 data sheet error-warning (EI) interrupt is not
cleared by setting the controller in to reset-mode.

Then if we have the following case:
- system is suspended (echo mem > /sys/power/state) and SJA1000 is left
in operating state
- A bus error condition occurs which activates EI interrupt, system is
still suspended which means EI interrupt will be not be handled nor
cleared.

If the above two events occur, on resume there is no way to return the
SJA1000 to operating state, except to cycle power to it.

By simply reading the IR register on start we will clear any previous
conditions that could be present.

Signed-off-by: Mirza Krak <mirza.krak@hostmobility.com>
---
 drivers/net/can/sja1000/sja1000.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/can/sja1000/sja1000.c b/drivers/net/can/sja1000/sja1000.c
index 7b92e911a616..f10834be48a5 100644
--- a/drivers/net/can/sja1000/sja1000.c
+++ b/drivers/net/can/sja1000/sja1000.c
@@ -218,6 +218,9 @@ static void sja1000_start(struct net_device *dev)
 	priv->write_reg(priv, SJA1000_RXERR, 0x0);
 	priv->read_reg(priv, SJA1000_ECC);
 
+	/* clear interrupt flags */
+	priv->read_reg(priv, SJA1000_IR);
+
 	/* leave reset mode */
 	set_normal_mode(dev);
 }
-- 
2.1.0

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

end of thread, other threads:[~2015-11-11 12:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-10 13:59 [PATCH 1/1] can: sja1000: clear interrupts on start Mirza Krak
2015-11-11  8:04 ` Marc Kleine-Budde
2015-11-11  9:54   ` Mirza Krak
2015-11-11 10:06     ` Marc Kleine-Budde
2015-11-11 12:29       ` Mirza Krak
2015-11-11 12:37         ` Marc Kleine-Budde
2015-11-11 12:46           ` Mirza Krak
2015-11-11 12:48             ` Marc Kleine-Budde
2015-11-11 12:49             ` Christian Magnusson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).