From: b38343@freescale.com (Robin Gong)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v8 2/5] ARM: imx6: gpc: Add PU power domain for GPU/VPU
Date: Wed, 10 Sep 2014 18:13:02 +0800 [thread overview]
Message-ID: <20140910101301.GA30706@Robin-OptiPlex-780> (raw)
In-Reply-To: <1410340023.4508.4.camel@paszta.hi.pengutronix.de>
On Wed, Sep 10, 2014 at 11:07:03AM +0200, Philipp Zabel wrote:
> Hi Robin,
>
> Am Mittwoch, den 10.09.2014, 11:49 +0800 schrieb Robin Gong:
> > Hi Philipp,
> > Thanks for your great job, power domain make things clear. But looks your
> > patch depend on 'PU regulator', if there is no PU regulator passed down from
> > dts, we'll never implement your way for PGC. On i.mx6sx, there is no internal
> > PU regulator, so I suggest you consider this case.
>
> thank you for the hint. Would making the PU regulator optional be enough
> to make this work on i.MX6SX?
>
> regards
> Philipp
>
Yes, that's enough. Whether PU regulator exist or not, PGC power off flow should
be walked through.
> ---8<---
> From: Philipp Zabel <p.zabel@pengutronix.de>
> Subject: [PATCH] ARM: imx6: gpc: Make PU regulator optional
>
> On i.MX6SX there is no internal PU regulator, make it optional.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
> arch/arm/mach-imx/gpc.c | 17 +++++++++++------
> 1 file changed, 11 insertions(+), 6 deletions(-)
>
> diff --git a/arch/arm/mach-imx/gpc.c b/arch/arm/mach-imx/gpc.c
> index cdf8a06..b36703d 100644
> --- a/arch/arm/mach-imx/gpc.c
> +++ b/arch/arm/mach-imx/gpc.c
> @@ -186,7 +186,8 @@ static int imx6q_pm_pu_power_off(struct generic_pm_domain *genpd)
> /* Wait ISO + ISO2SW IPG clock cycles */
> ndelay((iso + iso2sw) * 1000 / 66);
>
> - regulator_disable(pu->reg);
> + if (pu->reg)
> + regulator_disable(pu->reg);
>
> return 0;
> }
> @@ -197,8 +198,9 @@ static int imx6q_pm_pu_power_on(struct generic_pm_domain *genpd)
> int i, ret, sw, sw2iso;
> u32 val;
>
> - ret = regulator_enable(pu->reg);
> - if (ret) {
> + if (pu->reg)
> + ret = regulator_enable(pu->reg);
> + if (pu->reg && ret) {
> pr_err("%s: failed to enable regulator: %d\n", __func__, ret);
> return ret;
> }
> @@ -309,7 +311,9 @@ static int imx_gpc_probe(struct platform_device *pdev)
> struct regulator *pu_reg;
> int ret;
>
> - pu_reg = devm_regulator_get(&pdev->dev, "pu");
> + pu_reg = devm_regulator_get_optional(&pdev->dev, "pu");
> + if (PTR_ERR(pu_reg) == -ENODEV)
> + pu_reg = NULL;
> if (IS_ERR(pu_reg)) {
> ret = PTR_ERR(pu_reg);
> dev_err(&pdev->dev, "failed to get pu regulator: %d\n", ret);
> @@ -317,8 +321,9 @@ static int imx_gpc_probe(struct platform_device *pdev)
> }
>
> /* The regulator is initially enabled */
> - ret = regulator_enable(pu_reg);
> - if (ret < 0) {
> + if (pu_reg)
> + ret = regulator_enable(pu_reg);
> + if (pu_reg && ret < 0) {
> dev_err(&pdev->dev, "failed to enable pu regulator: %d\n", ret);
> return ret;
> }
> --
> 2.1.0
>
next prev parent reply other threads:[~2014-09-10 10:13 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-09 13:05 [PATCH v8 0/5] i.MX6 PU power domain support Philipp Zabel
2014-09-09 13:05 ` [PATCH v8 1/5] Documentation: Add device tree bindings for Freescale i.MX GPC Philipp Zabel
2014-09-09 13:05 ` [PATCH v8 2/5] ARM: imx6: gpc: Add PU power domain for GPU/VPU Philipp Zabel
2014-09-10 3:49 ` Robin Gong
2014-09-10 9:07 ` Philipp Zabel
2014-09-10 10:13 ` Robin Gong [this message]
2014-09-09 13:05 ` [PATCH v8 3/5] ARM: dts: imx6qdl: Add power-domain information to gpc node Philipp Zabel
2014-09-09 13:05 ` [PATCH v8 4/5] ARM: dts: imx6sl: " Philipp Zabel
2014-09-09 13:05 ` [PATCH v8 5/5] ARM: dts: imx6qdl: Allow disabling the PU regulator, add a enable ramp delay Philipp Zabel
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=20140910101301.GA30706@Robin-OptiPlex-780 \
--to=b38343@freescale.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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