media: imx-jpeg: Add pm-sleep support for imx-jpeg
authorMing Qian <ming.qian@nxp.com>
Wed, 6 Apr 2022 09:47:03 +0000 (10:47 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sun, 24 Apr 2022 07:48:02 +0000 (08:48 +0100)
Wait finishing jpeg job before system sleep,
otherwise the encoding/decoding can't be resumed after suspend.

Signed-off-by: Ming Qian <ming.qian@nxp.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/platform/nxp/imx-jpeg/mxc-jpeg.c

index c9ca757..9ce1e78 100644 (file)
@@ -2209,9 +2209,33 @@ static int mxc_jpeg_runtime_suspend(struct device *dev)
 }
 #endif
 
+#ifdef CONFIG_PM_SLEEP
+static int mxc_jpeg_suspend(struct device *dev)
+{
+       struct mxc_jpeg_dev *jpeg = dev_get_drvdata(dev);
+
+       v4l2_m2m_suspend(jpeg->m2m_dev);
+       return pm_runtime_force_suspend(dev);
+}
+
+static int mxc_jpeg_resume(struct device *dev)
+{
+       struct mxc_jpeg_dev *jpeg = dev_get_drvdata(dev);
+       int ret;
+
+       ret = pm_runtime_force_resume(dev);
+       if (ret < 0)
+               return ret;
+
+       v4l2_m2m_resume(jpeg->m2m_dev);
+       return ret;
+}
+#endif
+
 static const struct dev_pm_ops mxc_jpeg_pm_ops = {
        SET_RUNTIME_PM_OPS(mxc_jpeg_runtime_suspend,
                           mxc_jpeg_runtime_resume, NULL)
+       SET_SYSTEM_SLEEP_PM_OPS(mxc_jpeg_suspend, mxc_jpeg_resume)
 };
 
 static int mxc_jpeg_remove(struct platform_device *pdev)