OSDN Git Service

drm/bridge: anx7625: add suspend / resume hooks
authorPi-Hsun Shih <pihsun@chromium.org>
Mon, 17 May 2021 06:35:29 +0000 (14:35 +0800)
committerRobert Foss <robert.foss@linaro.org>
Tue, 18 May 2021 12:51:15 +0000 (14:51 +0200)
Add suspend / resume hooks for anx7625 driver, that power off the device
on suspend and power on the device on resume if it was previously
powered.

Signed-off-by: Pi-Hsun Shih <pihsun@chromium.org>
Reviewed-by: Tzung-Bi Shih <tzungbi@google.com>
Signed-off-by: Robert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210517063553.554955-2-pihsun@chromium.org
drivers/gpu/drm/bridge/analogix/anx7625.c

index d6ad2ba..29493cc 100644 (file)
@@ -1705,7 +1705,39 @@ static int __maybe_unused anx7625_runtime_pm_resume(struct device *dev)
        return 0;
 }
 
+static int __maybe_unused anx7625_resume(struct device *dev)
+{
+       struct anx7625_data *ctx = dev_get_drvdata(dev);
+
+       if (!ctx->pdata.intp_irq)
+               return 0;
+
+       if (!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev)) {
+               enable_irq(ctx->pdata.intp_irq);
+               anx7625_runtime_pm_resume(dev);
+       }
+
+       return 0;
+}
+
+static int __maybe_unused anx7625_suspend(struct device *dev)
+{
+       struct anx7625_data *ctx = dev_get_drvdata(dev);
+
+       if (!ctx->pdata.intp_irq)
+               return 0;
+
+       if (!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev)) {
+               anx7625_runtime_pm_suspend(dev);
+               disable_irq(ctx->pdata.intp_irq);
+               flush_workqueue(ctx->workqueue);
+       }
+
+       return 0;
+}
+
 static const struct dev_pm_ops anx7625_pm_ops = {
+       SET_SYSTEM_SLEEP_PM_OPS(anx7625_suspend, anx7625_resume)
        SET_RUNTIME_PM_OPS(anx7625_runtime_pm_suspend,
                           anx7625_runtime_pm_resume, NULL)
 };