]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
iio: adc: at91: add suspend and resume callback
authorWenyou Yang <wenyou.yang@atmel.com>
Wed, 2 Nov 2016 09:21:48 +0000 (17:21 +0800)
committerJonathan Cameron <jic23@kernel.org>
Sat, 5 Nov 2016 16:33:00 +0000 (16:33 +0000)
Add suspend/resume callback, support the pinctrl sleep state when
the system suspend as well.

Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Acked-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/adc/at91_adc.c

index bbdac07f4aaae36a54060ef58a7d6e37b0357faf..34b928cefeedbaff6932de3eba457930e3afd297 100644 (file)
@@ -30,6 +30,7 @@
 #include <linux/iio/trigger.h>
 #include <linux/iio/trigger_consumer.h>
 #include <linux/iio/triggered_buffer.h>
+#include <linux/pinctrl/consumer.h>
 
 /* Registers */
 #define AT91_ADC_CR            0x00            /* Control Register */
@@ -1347,6 +1348,32 @@ static int at91_adc_remove(struct platform_device *pdev)
        return 0;
 }
 
+#ifdef CONFIG_PM_SLEEP
+static int at91_adc_suspend(struct device *dev)
+{
+       struct iio_dev *idev = platform_get_drvdata(to_platform_device(dev));
+       struct at91_adc_state *st = iio_priv(idev);
+
+       pinctrl_pm_select_sleep_state(dev);
+       clk_disable_unprepare(st->clk);
+
+       return 0;
+}
+
+static int at91_adc_resume(struct device *dev)
+{
+       struct iio_dev *idev = platform_get_drvdata(to_platform_device(dev));
+       struct at91_adc_state *st = iio_priv(idev);
+
+       clk_prepare_enable(st->clk);
+       pinctrl_pm_select_default_state(dev);
+
+       return 0;
+}
+#endif
+
+static SIMPLE_DEV_PM_OPS(at91_adc_pm_ops, at91_adc_suspend, at91_adc_resume);
+
 static struct at91_adc_caps at91sam9260_caps = {
        .calc_startup_ticks = calc_startup_ticks_9260,
        .num_channels = 4,
@@ -1441,6 +1468,7 @@ static struct platform_driver at91_adc_driver = {
        .driver = {
                   .name = DRIVER_NAME,
                   .of_match_table = of_match_ptr(at91_adc_dt_ids),
+                  .pm = &at91_adc_pm_ops,
        },
 };