]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
remoteproc: imx_dsp_rproc: Wait for suspend ACK only if WAIT_FW_CONFIRMATION is set
authorIuliana Prodan <iuliana.prodan@nxp.com>
Thu, 4 Dec 2025 12:28:25 +0000 (14:28 +0200)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Mon, 15 Dec 2025 02:09:06 +0000 (19:09 -0700)
The DSP suspend path currently waits unconditionally for a suspend ack
from the firmware. This breaks firmwares that do not implement the
mailbox-based CONFIRMATION handshake, as the DSP never responds and
system suspend fails with -EBUSY.

The driver already uses the WAIT_FW_CONFIRMATION flag to indicate that
the firmware supports the CONFIRMATION handshake at boot. Apply the same
logic during suspend: only send the suspend message and wait for the
suspend ack when the firmware is expected to support it.

Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Link: https://lore.kernel.org/r/20251204122825.756106-3-iuliana.prodan@oss.nxp.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/remoteproc/imx_dsp_rproc.c

index 1f3a35756769f81960d86d70cc7e2e97a20f1fa9..d03017d6b2143e2b4eef540befcf4b707878c773 100644 (file)
@@ -1251,6 +1251,12 @@ static int imx_dsp_suspend(struct device *dev)
                goto out;
        }
 
+       /* No fw confirmation expected, so trigger PM runtime suspend */
+       if (!(priv->flags & WAIT_FW_CONFIRMATION)) {
+               dev_dbg(dev, "No FW_CONFIRMATION needed, suspend directly.\n");
+               goto out;
+       }
+
        reinit_completion(&priv->pm_comp);
 
        /* Tell DSP that suspend is happening */