• Sean Nyekjaer's avatar
    can: flexcan: fix possible deadlock and out-of-order reception after wakeup · e707180a
    Sean Nyekjaer authored
    When suspending, and there is still CAN traffic on the interfaces the
    flexcan immediately wakes the platform again. As it should :-). But it
    throws this error msg:
    
    [ 3169.378661] PM: noirq suspend of devices failed
    
    On the way down to suspend the interface that throws the error message
    calls flexcan_suspend() but fails to call flexcan_noirq_suspend(). That
    means flexcan_enter_stop_mode() is called, but on the way out of suspend
    the driver only calls flexcan_resume() and skips flexcan_noirq_resume(),
    thus it doesn't call flexcan_exit_stop_mode(). This leaves the flexcan
    in stop mode, and with the current driver it can't recover from this
    even with a soft reboot, it requires a hard reboot.
    
    This patch fixes the deadlock when using self wakeup, by calling
    flexcan_exit_stop_mode() from flexcan_resume() instead of
    flexcan_noirq_resume().
    
    This also fixes another issue: CAN frames are received out-of-order in
    first IRQ handler run after wakeup.
    
    The problem is that the wakeup latency from frame reception to the IRQ
    handler (where the CAN frames are sorted by timestamp) is much bigger
    than the time stamp counter wrap around time. This means it's
    impossible to sort the CAN frames by timestamp.
    
    The reason is that the controller exits stop mode during noirq resume,
    which means it receives frames immediately, but interrupt handling is
    still not possible.
    
    So exit stop mode during resume stage instead of noirq resume fixes this
    issue.
    
    Fixes: de3578c1 ("can: flexcan: add self wakeup support")
    Signed-off-by: default avatarSean Nyekjaer <sean@geanix.com>
    Tested-by: default avatarSean Nyekjaer <sean@geanix.com>
    Signed-off-by: default avatarJoakim Zhang <qiangqing.zhang@nxp.com>
    Cc: linux-stable <stable@vger.kernel.org> # >= v5.0
    Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
    e707180a
flexcan.c 48.6 KB