From: Mark Brown <broonie@opensource.wolfsonmicro.com>
To: Laxman Dewangan <ldewangan@nvidia.com>
Cc: lrg@ti.com, jedu@slimlogic.co.uk, sameo@linux.intel.com,
gg@slimlogic.co.uk, linux-kernel@vger.kernel.org,
linux-tegra@vger.kernel.org
Subject: Re: [PATCH V1] regulator: tps65910: Sleep control through external inputs
Date: Tue, 24 Jan 2012 11:58:55 +0000 [thread overview]
Message-ID: <20120124115855.GC14888@opensource.wolfsonmicro.com> (raw)
In-Reply-To: <1327395919-32378-1-git-send-email-ldewangan@nvidia.com>
On Tue, Jan 24, 2012 at 02:35:19PM +0530, Laxman Dewangan wrote:
> + /*
> + * Rail can not be control from all external input EN1, EN2 and EN3
> + * together.
> + */
> + if ((ext_sleep_config & EXT_SLEEP_CONTROL) == EXT_SLEEP_CONTROL) {
> + dev_err(mfd->dev, "External sleep control flag is not "
> + " not proper\n");
> + return -EINVAL;
> + }
Don't split log messages over multiple lines, it makes grepping the logs
harder. Also, are combinations of two external enables valid?
> +static void tps65910_shutdown(struct platform_device *pdev)
> +{
> + struct tps65910_reg *pmic = platform_get_drvdata(pdev);
> + int i;
> + int err;
> + dev_err(&pdev->dev, "%s() is called\n", __func__);
> +
> + /* Remove all external control before shutting down the device */
> + for (i = 0; i < pmic->num_regulators; i++) {
> + if (!pmic->rdev[i])
> + continue;
> +
> + err = tps65910_set_ext_sleep_config(pmic, i, 0);
> + if (err < 0)
> + dev_err(&pdev->dev, "Error in clearing external "
> + "control\n");
> + }
Why?
> +/*
> + * Regulator mode when rail is in sleep state which controlled by external
> + * input. The regultor will be OFF if it is in sleep state by default but
> + * can be set in LOW power mode by ORing following macro with any of
> + * above exterenl input option.
> + */
> +#define TPS65910_SLEEP_CONTROL_REG_LOW_POWER 0x10
There's the suspend mode API for configuring suspend modes.
> +
> /**
> * struct tps65910_board
> * Board platform data may be used to initialize regulators.
> @@ -779,6 +792,7 @@ struct tps65910_board {
> int irq_base;
> int vmbch_threshold;
> int vmbch2_threshold;
> + unsigned long regulator_ext_sleep_control[TPS65910_NUM_REGS];
I can't see anything in this code which will manage the enable signals?
next prev parent reply other threads:[~2012-01-24 11:59 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-24 9:05 [PATCH V1] regulator: tps65910: Sleep control through external inputs Laxman Dewangan
2012-01-24 11:58 ` Mark Brown [this message]
2012-01-24 12:19 ` Laxman Dewangan
2012-01-24 12:24 ` Mark Brown
2012-01-24 12:37 ` Laxman Dewangan
2012-01-24 21:21 ` Mark Brown
2012-01-25 6:22 ` Laxman Dewangan
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=20120124115855.GC14888@opensource.wolfsonmicro.com \
--to=broonie@opensource.wolfsonmicro.com \
--cc=gg@slimlogic.co.uk \
--cc=jedu@slimlogic.co.uk \
--cc=ldewangan@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=lrg@ti.com \
--cc=sameo@linux.intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox