From: Charles Keepax <ckeepax-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
To: broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
mark.rutland-5wv7dgnIgG8@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
patches-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org
Subject: Re: [PATCH 1/6] regulator: helpers: Add regmap set_soft_start helper
Date: Wed, 22 Mar 2017 12:57:09 +0000 [thread overview]
Message-ID: <20170322125709.GI6986@localhost.localdomain> (raw)
In-Reply-To: <1490107539-23995-1-git-send-email-ckeepax-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
On Tue, Mar 21, 2017 at 02:45:34PM +0000, Charles Keepax wrote:
> Add a helper function regulator_set_soft_start_regmap to allow regmap
> based regulators to easily enable soft start.
>
> Signed-off-by: Charles Keepax <ckeepax-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
> ---
> drivers/regulator/helpers.c | 18 ++++++++++++++++++
> include/linux/regulator/driver.h | 4 ++++
> 2 files changed, 22 insertions(+)
>
> diff --git a/drivers/regulator/helpers.c b/drivers/regulator/helpers.c
> index 379cdac..a75e7da 100644
> --- a/drivers/regulator/helpers.c
> +++ b/drivers/regulator/helpers.c
> @@ -446,6 +446,24 @@ int regulator_set_bypass_regmap(struct regulator_dev *rdev, bool enable)
> EXPORT_SYMBOL_GPL(regulator_set_bypass_regmap);
>
> /**
> + * regulator_set_soft_start_regmap - Default set_soft_start() using regmap
> + *
> + * @rdev: device to operate on.
> + */
> +int regulator_set_soft_start_regmap(struct regulator_dev *rdev)
> +{
> + unsigned int val;
> +
> + val = rdev->desc->soft_start_val_on;
> + if (!val)
> + val = rdev->desc->soft_start_mask;
> +
> + return regmap_update_bits(rdev->regmap, rdev->desc->soft_start_reg,
> + rdev->desc->soft_start_mask, val);
> +}
> +EXPORT_SYMBOL_GPL(regulator_set_soft_start_regmap);
> +
Apologies there are some small bugs here let me respin the
series.
Thanks,
Charles
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-03-22 12:57 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-21 14:45 [PATCH 1/6] regulator: helpers: Add regmap set_soft_start helper Charles Keepax
[not found] ` <1490107539-23995-1-git-send-email-ckeepax-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
2017-03-21 14:45 ` [PATCH 2/6] regulator: helpers: Add regmap set_pull_down helper Charles Keepax
2017-03-24 17:59 ` kbuild test robot
2017-03-21 14:45 ` [PATCH 3/6] regulator: arizona-micbias: Add regulator driver for Arizona micbiases Charles Keepax
2017-03-21 14:45 ` [PATCH 4/6] regulator: arizona-micbias: Add description of micbias binding Charles Keepax
2017-03-24 16:27 ` Rob Herring
2017-03-21 14:45 ` [PATCH 5/6] mfd: arizona: Add support for new micbias regulators Charles Keepax
2017-03-24 9:42 ` Lee Jones
2017-03-22 12:57 ` Charles Keepax [this message]
2017-03-21 14:45 ` [PATCH 6/6] ASoC: " Charles Keepax
2017-03-24 16:19 ` [PATCH 1/6] regulator: helpers: Add regmap set_soft_start helper kbuild test robot
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=20170322125709.GI6986@localhost.localdomain \
--to=ckeepax-yzvpicuk2aatku/dhu1wvuem+bqzidxxqq4iyu8u01e@public.gmane.org \
--cc=alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=patches-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.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;
as well as URLs for NNTP newsgroup(s).