From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Yadwinder Singh Brar <yadi.brar01@gmail.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
Sangbeom Kim <sbkim73@samsung.com>,
Lee Jones <lee.jones@linaro.org>,
Sachin Kamat <sachin.kamat@linaro.org>,
linux-kernel <linux-kernel@vger.kernel.org>,
linux-samsung-soc <linux-samsung-soc@vger.kernel.org>,
Tomasz Figa <t.figa@samsung.com>,
Kyungmin Park <kyungmin.park@samsung.com>,
Marek Szyprowski <m.szyprowski@samsung.com>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
devicetree <devicetree@vger.kernel.org>
Subject: Re: [PATCH 2/3] regulator: s2mps11: Merge S2MPA01 driver
Date: Tue, 27 May 2014 09:56:40 +0200 [thread overview]
Message-ID: <1401177400.8073.16.camel@AMDC1943> (raw)
In-Reply-To: <CAKew6eXdmif5-A+sb7-HEd3fP739RNy8SbzpCVRJ6uDgkyFvoQ@mail.gmail.com>
On wto, 2014-05-27 at 12:00 +0530, Yadwinder Singh Brar wrote:
> On Mon, May 26, 2014 at 6:50 PM, Krzysztof Kozlowski
> <k.kozlowski@samsung.com> wrote:
> > Add S2MPA01 support to the s2mps11 regulator driver. This obsoletes the
> > s2mpa01 regulator driver.
> >
> > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
>
> > @@ -216,30 +250,20 @@ static int s2mps11_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay)
> > ramp_delay = s2mps11->ramp_delay16;
> > break;
> > case S2MPX_BUCK2:
> > - if (!ramp_delay) {
> > - ramp_enable = 0;
> > - break;
> > - }
> > -
>
> What if we want to disable ramp_delay from DT ?
It will work OK because at the beginning of s2mps11_set_ramp_delay():
unsigned int ramp_disable = !ramp_delay;
This 'ramp_disable' is later used if enable/disable is supported.
>
> > - s2mps11->ramp_delay2 = ramp_delay;
> > + if (s2mps11->dev_type == S2MPS11X ||
> > + ramp_delay > s2mps11->ramp_delay2)
> > + s2mps11->ramp_delay2 = ramp_delay;
> > + else /* S2MPA01 && ramp_delay <= s2mpa01->ramp_delay24 */
> > + ramp_delay = s2mps11->ramp_delay2;
>
> Here ramp_delay = 0(ramp_disable case) is also getting over written,
> if required to take care of it later.
The same, it is already stored as 'ramp_disable' local variable.
>
> > break;
> > case S2MPX_BUCK3:
> > - if (!ramp_delay) {
> > - ramp_enable = 0;
> > - break;
> > - }
>
> [snip]
>
> >
> > - if (!ramp_enable)
> > - goto ramp_disable;
> > -
> > - /* Ramp delay can be enabled/disabled only for buck[2346] */
> > if (ramp_reg->enable_supported) {
> > + if (ramp_disable)
>
> typo ? if (!ramp_enable) / if (!ramp_delay) ?
I think it is good. I changed the 'ramp_enable' into 'ramp_disable'.
Anyway while reviewing the code I found that I didn't updated the case
statements with new BUCKX enum values and the register for
enable/disable is hard-coded. I'll fix it.
>
> > + goto ramp_disable;
> > +
>
>
> Also TBH, I can't get rationale behind this merge, As i can't see
> considerable reduction in no of C code lines in comp of added
> complexity.
> Is there considerable advantage in binary stats of single driver as
> compare to independent drivers?
Overall more code is removed than added:
6 files changed, 454 insertions(+), 719 deletions(-)
but you are right that the code for ramp delay is now more complex. What
is worth noting now most of ramp delay settings are moved to an array:
static const struct s2mpx_ramp_reg s2mps11_ramp_regs[] = {
[S2MPX_BUCK1] = s2mps11_ramp_reg(BUCK16),
[S2MPX_BUCK2] = s2mps11_buck2346_ramp_reg(BUCK2, RAMP, BUCK2),
[S2MPX_BUCK3] = s2mps11_buck2346_ramp_reg(BUCK34, RAMP, BUCK3)
instead of being hard-coded into the big switch statement like it was
before.
Alternative solution to complex ramp delay setting is to just use
original functions: s2mps11_set_ramp_delay and s2mpa01_set_ramp_delay.
These chips are really similar so having two drivers seems like doubling
the effort for maintaining them.
Thanks for comments.
Best regards,
Krzysztof
next prev parent reply other threads:[~2014-05-27 7:56 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-26 13:20 [PATCH 0/3] regulator: merge s2mps11 and s2mpa01 drivers Krzysztof Kozlowski
2014-05-26 13:20 ` [PATCH 1/3] regulator: s2mps11: Refactor setting ramp delay Krzysztof Kozlowski
2014-05-27 6:26 ` Yadwinder Singh Brar
2014-05-27 6:57 ` Krzysztof Kozlowski
2014-05-26 13:20 ` [PATCH 2/3] regulator: s2mps11: Merge S2MPA01 driver Krzysztof Kozlowski
[not found] ` <1401110423-5647-3-git-send-email-k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-05-27 6:30 ` Yadwinder Singh Brar
2014-05-27 7:56 ` Krzysztof Kozlowski [this message]
2014-05-27 8:46 ` Yadwinder Singh Brar
[not found] ` <1401110423-5647-1-git-send-email-k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-05-26 13:20 ` [PATCH 3/3] regulator: s2mpa01: Remove driver because it was merged into s2mps11 Krzysztof Kozlowski
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=1401177400.8073.16.camel@AMDC1943 \
--to=k.kozlowski@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=kyungmin.park@samsung.com \
--cc=lee.jones@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=sachin.kamat@linaro.org \
--cc=sbkim73@samsung.com \
--cc=t.figa@samsung.com \
--cc=yadi.brar01@gmail.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;
as well as URLs for NNTP newsgroup(s).