]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
can: m_can: m_can_close(): stop clocks after device has been shut down
authorMarc Kleine-Budde <mkl@pengutronix.de>
Mon, 9 Sep 2024 13:07:41 +0000 (15:07 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Oct 2024 14:32:29 +0000 (16:32 +0200)
[ Upstream commit 2c09b50efcad985cf920ca88baa9aa52b1999dcc ]

After calling m_can_stop() an interrupt may be pending or NAPI might
still be executed. This means the driver might still touch registers
of the IP core after the clocks have been disabled. This is not good
practice and might lead to aborts depending on the SoC integration.

To avoid these potential problems, make m_can_close() symmetric to
m_can_open(), i.e. stop the clocks at the end, right before shutting
down the transceiver.

Fixes: e0d1f4816f2a ("can: m_can: add Bosch M_CAN controller support")
Link: https://patch.msgid.link/20240910-can-m_can-fix-ifup-v3-2-6c1720ba45ce@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/can/m_can/m_can.c

index 2baf4451a9b5e1956a89c65b48dd3ed5ec7c888e..0f9f17fdb3bb89bfdf15869ce762dce7a7ebf382 100644 (file)
@@ -1721,7 +1721,6 @@ static int m_can_close(struct net_device *dev)
        netif_stop_queue(dev);
 
        m_can_stop(dev);
-       m_can_clk_stop(cdev);
        free_irq(dev->irq, dev);
 
        m_can_clean(dev);
@@ -1736,6 +1735,7 @@ static int m_can_close(struct net_device *dev)
 
        close_candev(dev);
 
+       m_can_clk_stop(cdev);
        phy_power_off(cdev->transceiver);
 
        return 0;