public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: Eddie Huang <eddie.huang@mediatek.com>, Wim Van Sebroeck <wim@iguana.be>
Cc: Matthias Brugger <matthias.bgg@gmail.com>,
	linux-watchdog@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org,
	Sascha Hauer <kernel@pengutronix.de>,
	Greta Zhang <greta.zhang@mediatek.com>,
	Roger Lu <roger.lu@mediatek.com>
Subject: Re: [PATCH v2 1/2] watchdog: add wdt suspend/resume support
Date: Thu, 23 Jul 2015 09:10:55 -0700	[thread overview]
Message-ID: <55B1120F.7010204@roeck-us.net> (raw)
In-Reply-To: <1437630551-39650-2-git-send-email-eddie.huang@mediatek.com>

On 07/22/2015 10:49 PM, Eddie Huang wrote:
> From: Greta Zhang <greta.zhang@mediatek.com>
>
> add wdt driver suspend/resume support
>
> Signed-off-by: Greta Zhang <greta.zhang@mediatek.com>
> Signed-off-by: Roger Lu <roger.lu@mediatek.com>
> Signed-off-by: Eddie Huang <eddie.huang@mediatek.com>


Subject line should identify the driver, ie mtk_wdt.
"wdt" doesn't really help.

Other than that,

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

Guenter

> ---
>   drivers/watchdog/mtk_wdt.c | 30 ++++++++++++++++++++++++++++++
>   1 file changed, 30 insertions(+)
>
> diff --git a/drivers/watchdog/mtk_wdt.c b/drivers/watchdog/mtk_wdt.c
> index 938b987..056412c 100644
> --- a/drivers/watchdog/mtk_wdt.c
> +++ b/drivers/watchdog/mtk_wdt.c
> @@ -221,17 +221,47 @@ static int mtk_wdt_remove(struct platform_device *pdev)
>   	return 0;
>   }
>
> +#ifdef CONFIG_PM_SLEEP
> +static int mtk_wdt_suspend(struct device *dev)
> +{
> +	struct mtk_wdt_dev *mtk_wdt = dev_get_drvdata(dev);
> +
> +	if (watchdog_active(&mtk_wdt->wdt_dev))
> +		mtk_wdt_stop(&mtk_wdt->wdt_dev);
> +
> +	return 0;
> +}
> +
> +static int mtk_wdt_resume(struct device *dev)
> +{
> +	struct mtk_wdt_dev *mtk_wdt = dev_get_drvdata(dev);
> +
> +	if (watchdog_active(&mtk_wdt->wdt_dev)) {
> +		mtk_wdt_start(&mtk_wdt->wdt_dev);
> +		mtk_wdt_ping(&mtk_wdt->wdt_dev);
> +	}
> +
> +	return 0;
> +}
> +#endif
> +
>   static const struct of_device_id mtk_wdt_dt_ids[] = {
>   	{ .compatible = "mediatek,mt6589-wdt" },
>   	{ /* sentinel */ }
>   };
>   MODULE_DEVICE_TABLE(of, mtk_wdt_dt_ids);
>
> +static const struct dev_pm_ops mtk_wdt_pm_ops = {
> +	SET_SYSTEM_SLEEP_PM_OPS(mtk_wdt_suspend,
> +				mtk_wdt_resume)
> +};
> +
>   static struct platform_driver mtk_wdt_driver = {
>   	.probe		= mtk_wdt_probe,
>   	.remove		= mtk_wdt_remove,
>   	.driver		= {
>   		.name		= DRV_NAME,
> +		.pm		= &mtk_wdt_pm_ops,
>   		.of_match_table	= mtk_wdt_dt_ids,
>   	},
>   };
>


  reply	other threads:[~2015-07-23 16:11 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-23  5:49 [PATCH v2 0/2] Add Mediatek watchdog suspend resume and shutdown Eddie Huang
2015-07-23  5:49 ` [PATCH v2 1/2] watchdog: add wdt suspend/resume support Eddie Huang
2015-07-23 16:10   ` Guenter Roeck [this message]
2015-07-23 17:36   ` Matthias Brugger
2015-07-23  5:49 ` [PATCH v2 2/2] watchdog: add wdt shutdown callback to disable wdt if enabled Eddie Huang
2015-07-23 16:12   ` Guenter Roeck
2015-07-23 17:37   ` Matthias Brugger
2015-08-11  4:28     ` Daniel Kurtz
2015-08-11  4:42       ` Guenter Roeck
2015-08-11  7:38         ` Daniel Kurtz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55B1120F.7010204@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=eddie.huang@mediatek.com \
    --cc=greta.zhang@mediatek.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=matthias.bgg@gmail.com \
    --cc=roger.lu@mediatek.com \
    --cc=wim@iguana.be \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox