From: Jonathan Cameron <jic23@kernel.org>
To: Zhiyong Tao <zhiyong.tao@mediatek.com>
Cc: <robh+dt@kernel.org>, <knaack.h@gmx.de>, <lars@metafoo.de>,
<pmeerw@pmeerw.net>, <srv_heupstream@mediatek.com>,
<liguo.zhang@mediatek.com>, <yingjoe.chen@mediatek.com>,
<sean.wang@mediatek.com>, <matthias.bgg@gmail.com>,
<s.hauer@pengutronix.de>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-iio@vger.kernel.org>, <linux-mediatek@lists.infradead.org>
Subject: Re: [PATCH v2 2/3] iio: adc: mt7622: add support for suspend/resume.
Date: Sat, 1 Jul 2017 10:19:26 +0100 [thread overview]
Message-ID: <20170701101926.1f6f35f6@kernel.org> (raw)
In-Reply-To: <1498457502-3669-3-git-send-email-zhiyong.tao@mediatek.com>
On Mon, 26 Jun 2017 14:11:41 +0800
Zhiyong Tao <zhiyong.tao@mediatek.com> wrote:
> This patch supports auxadc suspend/resume flow.
> Disable auxadc clk and power in suspend function.
> Enable axuadc clk and power in resume function.
>
> Signed-off-by: Zhiyong Tao <zhiyong.tao@mediatek.com>
small point inline.
Applied to the togreg branch of iio.git and pushed out as testing for the
autobuilders to play with it.
Thanks,
Jonathan
> ---
> drivers/iio/adc/mt6577_auxadc.c | 38 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/drivers/iio/adc/mt6577_auxadc.c b/drivers/iio/adc/mt6577_auxadc.c
> index 2d104c8..c174b73 100644
> --- a/drivers/iio/adc/mt6577_auxadc.c
> +++ b/drivers/iio/adc/mt6577_auxadc.c
> @@ -184,6 +184,39 @@ static int mt6577_auxadc_read_raw(struct iio_dev *indio_dev,
> .read_raw = &mt6577_auxadc_read_raw,
> };
>
> +#ifdef CONFIG_PM_SLEEP
There is no need to have the ifdefs as well as the __maybe_unused.
I'll drop them when applying.
> +static int __maybe_unused mt6577_auxadc_resume(struct device *dev)
> +{
> + struct iio_dev *indio_dev = dev_get_drvdata(dev);
> + struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
> + int ret;
> +
> + ret = clk_prepare_enable(adc_dev->adc_clk);
> + if (ret) {
> + pr_err("failed to enable auxadc clock\n");
> + return ret;
> + }
> +
> + mt6577_auxadc_mod_reg(adc_dev->reg_base + MT6577_AUXADC_MISC,
> + MT6577_AUXADC_PDN_EN, 0);
> + mdelay(MT6577_AUXADC_POWER_READY_MS);
> +
> + return 0;
> +}
> +
> +static int __maybe_unused mt6577_auxadc_suspend(struct device *dev)
> +{
> + struct iio_dev *indio_dev = dev_get_drvdata(dev);
> + struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
> +
> + mt6577_auxadc_mod_reg(adc_dev->reg_base + MT6577_AUXADC_MISC,
> + 0, MT6577_AUXADC_PDN_EN);
> + clk_disable_unprepare(adc_dev->adc_clk);
> +
> + return 0;
> +}
> +#endif
> +
> static int mt6577_auxadc_probe(struct platform_device *pdev)
> {
> struct mt6577_auxadc_device *adc_dev;
> @@ -269,6 +302,10 @@ static int mt6577_auxadc_remove(struct platform_device *pdev)
> return 0;
> }
>
> +static SIMPLE_DEV_PM_OPS(mt6577_auxadc_pm_ops,
> + mt6577_auxadc_suspend,
> + mt6577_auxadc_resume);
> +
> static const struct of_device_id mt6577_auxadc_of_match[] = {
> { .compatible = "mediatek,mt2701-auxadc", },
> { .compatible = "mediatek,mt8173-auxadc", },
> @@ -280,6 +317,7 @@ static int mt6577_auxadc_remove(struct platform_device *pdev)
> .driver = {
> .name = "mt6577-auxadc",
> .of_match_table = mt6577_auxadc_of_match,
> + .pm = &mt6577_auxadc_pm_ops,
> },
> .probe = mt6577_auxadc_probe,
> .remove = mt6577_auxadc_remove,
WARNING: multiple messages have this Message-ID (diff)
From: Jonathan Cameron <jic23@kernel.org>
To: Zhiyong Tao <zhiyong.tao@mediatek.com>
Cc: robh+dt@kernel.org, knaack.h@gmx.de, lars@metafoo.de,
pmeerw@pmeerw.net, srv_heupstream@mediatek.com,
liguo.zhang@mediatek.com, yingjoe.chen@mediatek.com,
sean.wang@mediatek.com, matthias.bgg@gmail.com,
s.hauer@pengutronix.de, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, linux-iio@vger.kernel.org,
linux-mediatek@lists.infradead.org
Subject: Re: [PATCH v2 2/3] iio: adc: mt7622: add support for suspend/resume.
Date: Sat, 1 Jul 2017 10:19:26 +0100 [thread overview]
Message-ID: <20170701101926.1f6f35f6@kernel.org> (raw)
In-Reply-To: <1498457502-3669-3-git-send-email-zhiyong.tao@mediatek.com>
On Mon, 26 Jun 2017 14:11:41 +0800
Zhiyong Tao <zhiyong.tao@mediatek.com> wrote:
> This patch supports auxadc suspend/resume flow.
> Disable auxadc clk and power in suspend function.
> Enable axuadc clk and power in resume function.
>
> Signed-off-by: Zhiyong Tao <zhiyong.tao@mediatek.com>
small point inline.
Applied to the togreg branch of iio.git and pushed out as testing for the
autobuilders to play with it.
Thanks,
Jonathan
> ---
> drivers/iio/adc/mt6577_auxadc.c | 38 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/drivers/iio/adc/mt6577_auxadc.c b/drivers/iio/adc/mt6577_auxadc.c
> index 2d104c8..c174b73 100644
> --- a/drivers/iio/adc/mt6577_auxadc.c
> +++ b/drivers/iio/adc/mt6577_auxadc.c
> @@ -184,6 +184,39 @@ static int mt6577_auxadc_read_raw(struct iio_dev *indio_dev,
> .read_raw = &mt6577_auxadc_read_raw,
> };
>
> +#ifdef CONFIG_PM_SLEEP
There is no need to have the ifdefs as well as the __maybe_unused.
I'll drop them when applying.
> +static int __maybe_unused mt6577_auxadc_resume(struct device *dev)
> +{
> + struct iio_dev *indio_dev = dev_get_drvdata(dev);
> + struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
> + int ret;
> +
> + ret = clk_prepare_enable(adc_dev->adc_clk);
> + if (ret) {
> + pr_err("failed to enable auxadc clock\n");
> + return ret;
> + }
> +
> + mt6577_auxadc_mod_reg(adc_dev->reg_base + MT6577_AUXADC_MISC,
> + MT6577_AUXADC_PDN_EN, 0);
> + mdelay(MT6577_AUXADC_POWER_READY_MS);
> +
> + return 0;
> +}
> +
> +static int __maybe_unused mt6577_auxadc_suspend(struct device *dev)
> +{
> + struct iio_dev *indio_dev = dev_get_drvdata(dev);
> + struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
> +
> + mt6577_auxadc_mod_reg(adc_dev->reg_base + MT6577_AUXADC_MISC,
> + 0, MT6577_AUXADC_PDN_EN);
> + clk_disable_unprepare(adc_dev->adc_clk);
> +
> + return 0;
> +}
> +#endif
> +
> static int mt6577_auxadc_probe(struct platform_device *pdev)
> {
> struct mt6577_auxadc_device *adc_dev;
> @@ -269,6 +302,10 @@ static int mt6577_auxadc_remove(struct platform_device *pdev)
> return 0;
> }
>
> +static SIMPLE_DEV_PM_OPS(mt6577_auxadc_pm_ops,
> + mt6577_auxadc_suspend,
> + mt6577_auxadc_resume);
> +
> static const struct of_device_id mt6577_auxadc_of_match[] = {
> { .compatible = "mediatek,mt2701-auxadc", },
> { .compatible = "mediatek,mt8173-auxadc", },
> @@ -280,6 +317,7 @@ static int mt6577_auxadc_remove(struct platform_device *pdev)
> .driver = {
> .name = "mt6577-auxadc",
> .of_match_table = mt6577_auxadc_of_match,
> + .pm = &mt6577_auxadc_pm_ops,
> },
> .probe = mt6577_auxadc_probe,
> .remove = mt6577_auxadc_remove,
WARNING: multiple messages have this Message-ID (diff)
From: jic23@kernel.org (Jonathan Cameron)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 2/3] iio: adc: mt7622: add support for suspend/resume.
Date: Sat, 1 Jul 2017 10:19:26 +0100 [thread overview]
Message-ID: <20170701101926.1f6f35f6@kernel.org> (raw)
In-Reply-To: <1498457502-3669-3-git-send-email-zhiyong.tao@mediatek.com>
On Mon, 26 Jun 2017 14:11:41 +0800
Zhiyong Tao <zhiyong.tao@mediatek.com> wrote:
> This patch supports auxadc suspend/resume flow.
> Disable auxadc clk and power in suspend function.
> Enable axuadc clk and power in resume function.
>
> Signed-off-by: Zhiyong Tao <zhiyong.tao@mediatek.com>
small point inline.
Applied to the togreg branch of iio.git and pushed out as testing for the
autobuilders to play with it.
Thanks,
Jonathan
> ---
> drivers/iio/adc/mt6577_auxadc.c | 38 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/drivers/iio/adc/mt6577_auxadc.c b/drivers/iio/adc/mt6577_auxadc.c
> index 2d104c8..c174b73 100644
> --- a/drivers/iio/adc/mt6577_auxadc.c
> +++ b/drivers/iio/adc/mt6577_auxadc.c
> @@ -184,6 +184,39 @@ static int mt6577_auxadc_read_raw(struct iio_dev *indio_dev,
> .read_raw = &mt6577_auxadc_read_raw,
> };
>
> +#ifdef CONFIG_PM_SLEEP
There is no need to have the ifdefs as well as the __maybe_unused.
I'll drop them when applying.
> +static int __maybe_unused mt6577_auxadc_resume(struct device *dev)
> +{
> + struct iio_dev *indio_dev = dev_get_drvdata(dev);
> + struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
> + int ret;
> +
> + ret = clk_prepare_enable(adc_dev->adc_clk);
> + if (ret) {
> + pr_err("failed to enable auxadc clock\n");
> + return ret;
> + }
> +
> + mt6577_auxadc_mod_reg(adc_dev->reg_base + MT6577_AUXADC_MISC,
> + MT6577_AUXADC_PDN_EN, 0);
> + mdelay(MT6577_AUXADC_POWER_READY_MS);
> +
> + return 0;
> +}
> +
> +static int __maybe_unused mt6577_auxadc_suspend(struct device *dev)
> +{
> + struct iio_dev *indio_dev = dev_get_drvdata(dev);
> + struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
> +
> + mt6577_auxadc_mod_reg(adc_dev->reg_base + MT6577_AUXADC_MISC,
> + 0, MT6577_AUXADC_PDN_EN);
> + clk_disable_unprepare(adc_dev->adc_clk);
> +
> + return 0;
> +}
> +#endif
> +
> static int mt6577_auxadc_probe(struct platform_device *pdev)
> {
> struct mt6577_auxadc_device *adc_dev;
> @@ -269,6 +302,10 @@ static int mt6577_auxadc_remove(struct platform_device *pdev)
> return 0;
> }
>
> +static SIMPLE_DEV_PM_OPS(mt6577_auxadc_pm_ops,
> + mt6577_auxadc_suspend,
> + mt6577_auxadc_resume);
> +
> static const struct of_device_id mt6577_auxadc_of_match[] = {
> { .compatible = "mediatek,mt2701-auxadc", },
> { .compatible = "mediatek,mt8173-auxadc", },
> @@ -280,6 +317,7 @@ static int mt6577_auxadc_remove(struct platform_device *pdev)
> .driver = {
> .name = "mt6577-auxadc",
> .of_match_table = mt6577_auxadc_of_match,
> + .pm = &mt6577_auxadc_pm_ops,
> },
> .probe = mt6577_auxadc_probe,
> .remove = mt6577_auxadc_remove,
next prev parent reply other threads:[~2017-07-01 9:19 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-26 6:11 [PATCH v2 0/3] ADC: Mediatek auxadc driver for mt7622 Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-06-26 6:11 ` [PATCH v2 1/3] dt-bindings: adc: mt7622: add binding document Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-06-28 16:46 ` Rob Herring
2017-06-28 16:46 ` Rob Herring
2017-06-28 16:46 ` Rob Herring
2017-07-01 9:18 ` Jonathan Cameron
2017-07-01 9:18 ` Jonathan Cameron
2017-07-01 9:18 ` Jonathan Cameron
2017-06-26 6:11 ` [PATCH v2 2/3] iio: adc: mt7622: add support for suspend/resume Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-07-01 9:19 ` Jonathan Cameron [this message]
2017-07-01 9:19 ` Jonathan Cameron
2017-07-01 9:19 ` Jonathan Cameron
2017-06-26 6:11 ` [PATCH v2 3/3] iio: adc: mt7622: Add compatible node for mt7622 Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-06-26 6:11 ` Zhiyong Tao
2017-07-01 9:21 ` Jonathan Cameron
2017-07-01 9:21 ` Jonathan Cameron
2017-07-01 9:21 ` Jonathan Cameron
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=20170701101926.1f6f35f6@kernel.org \
--to=jic23@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=liguo.zhang@mediatek.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=pmeerw@pmeerw.net \
--cc=robh+dt@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=sean.wang@mediatek.com \
--cc=srv_heupstream@mediatek.com \
--cc=yingjoe.chen@mediatek.com \
--cc=zhiyong.tao@mediatek.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.