]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
NFC: trf7970a: Add System Suspend/Resume support
authorMark A. Greer <mgreer@animalcreek.com>
Tue, 2 Sep 2014 22:12:37 +0000 (15:12 -0700)
committerSamuel Ortiz <sameo@linux.intel.com>
Sun, 7 Sep 2014 21:13:44 +0000 (23:13 +0200)
Add system suspend/resume support by gracefully
shutting things down when suspending and bringing
the device back to full power when resuming.

Signed-off-by: Mark A. Greer <mgreer@animalcreek.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/nfc/trf7970a.c

index a42675da0667b753921cfd76e7f163174cd986ae..3859e02c4e2d672702f79d8cf508e4de14d4aa09 100644 (file)
@@ -1594,6 +1594,42 @@ static int trf7970a_remove(struct spi_device *spi)
        return 0;
 }
 
+#ifdef CONFIG_PM_SLEEP
+static int trf7970a_suspend(struct device *dev)
+{
+       struct spi_device *spi = container_of(dev, struct spi_device, dev);
+       struct trf7970a *trf = spi_get_drvdata(spi);
+       int ret = 0;
+
+       dev_dbg(dev, "Suspend\n");
+
+       mutex_lock(&trf->lock);
+
+       trf7970a_shutdown(trf);
+
+       mutex_unlock(&trf->lock);
+
+       return ret;
+}
+
+static int trf7970a_resume(struct device *dev)
+{
+       struct spi_device *spi = container_of(dev, struct spi_device, dev);
+       struct trf7970a *trf = spi_get_drvdata(spi);
+       int ret = 0;
+
+       dev_dbg(dev, "Resume\n");
+
+       mutex_lock(&trf->lock);
+
+       ret = trf7970a_startup(trf);
+
+       mutex_unlock(&trf->lock);
+
+       return ret;
+}
+#endif
+
 #ifdef CONFIG_PM_RUNTIME
 static int trf7970a_pm_runtime_suspend(struct device *dev)
 {
@@ -1629,6 +1665,7 @@ static int trf7970a_pm_runtime_resume(struct device *dev)
 #endif
 
 static const struct dev_pm_ops trf7970a_pm_ops = {
+       SET_SYSTEM_SLEEP_PM_OPS(trf7970a_suspend, trf7970a_resume)
        SET_RUNTIME_PM_OPS(trf7970a_pm_runtime_suspend,
                        trf7970a_pm_runtime_resume, NULL)
 };