From: "Bengt Jönsson" <bengt.g.jonsson@stericsson.com>
To: Axel Lin <axel.lin@ingics.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>,
Lee Jones <lee.jones@linaro.org>,
Yvan FILLION <yvan.fillion@stericsson.com>,
Liam Girdwood <lgirdwood@gmail.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH RFT 2/2] regulator: ab8500: Optimize ab8540_aux3_regulator_get_voltage_sel
Date: Tue, 16 Apr 2013 13:12:31 +0200 [thread overview]
Message-ID: <516D321F.5090704@stericsson.com> (raw)
In-Reply-To: <1365576380.4283.5.camel@phoenix>
On 04/10/2013 08:46 AM, Axel Lin wrote:
> We can save a register read operation in some case if read
> expand_register first.
> If info->expand_register.voltage_mask bit is set, no need to read
> voltage_reg.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
Looks good.
Acked-by: Bengt Jonsson <bengt.g.jonsson@stericsson.com>
> ---
> drivers/regulator/ab8500.c | 42 ++++++++++++++++++------------------------
> 1 file changed, 18 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c
> index 222a63e..7a86fe6 100644
> --- a/drivers/regulator/ab8500.c
> +++ b/drivers/regulator/ab8500.c
> @@ -521,7 +521,7 @@ static int ab8500_regulator_get_voltage_sel(struct regulator_dev *rdev)
>
> static int ab8540_aux3_regulator_get_voltage_sel(struct regulator_dev *rdev)
> {
> - int ret, val;
> + int ret;
> struct ab8500_regulator_info *info = rdev_get_drvdata(rdev);
> u8 regval, regval_expand;
>
> @@ -531,18 +531,25 @@ static int ab8540_aux3_regulator_get_voltage_sel(struct regulator_dev *rdev)
> }
>
> ret = abx500_get_register_interruptible(info->dev,
> - info->voltage_bank, info->voltage_reg, ®val);
> -
> + info->expand_register.voltage_bank,
> + info->expand_register.voltage_reg, ®val_expand);
> if (ret < 0) {
> dev_err(rdev_get_dev(rdev),
> - "couldn't read voltage reg for regulator\n");
> + "couldn't read voltage expand reg for regulator\n");
> return ret;
> }
>
> - ret = abx500_get_register_interruptible(info->dev,
> - info->expand_register.voltage_bank,
> - info->expand_register.voltage_reg, ®val_expand);
> + dev_vdbg(rdev_get_dev(rdev),
> + "%s-get_voltage expand (bank, reg, mask, value): 0x%x, 0x%x, 0x%x, 0x%x\n",
> + info->desc.name, info->expand_register.voltage_bank,
> + info->expand_register.voltage_reg,
> + info->expand_register.voltage_mask, regval_expand);
> +
> + if (regval_expand & info->expand_register.voltage_mask)
> + return info->expand_register.voltage_limit;
>
> + ret = abx500_get_register_interruptible(info->dev,
> + info->voltage_bank, info->voltage_reg, ®val);
> if (ret < 0) {
> dev_err(rdev_get_dev(rdev),
> "couldn't read voltage reg for regulator\n");
> @@ -550,24 +557,11 @@ static int ab8540_aux3_regulator_get_voltage_sel(struct regulator_dev *rdev)
> }
>
> dev_vdbg(rdev_get_dev(rdev),
> - "%s-get_voltage (bank, reg, mask, value): 0x%x, 0x%x, 0x%x,"
> - " 0x%x\n",
> - info->desc.name, info->voltage_bank, info->voltage_reg,
> - info->voltage_mask, regval);
> - dev_vdbg(rdev_get_dev(rdev),
> - "%s-get_voltage expand (bank, reg, mask, value): 0x%x, 0x%x, 0x%x,"
> - " 0x%x\n",
> - info->desc.name, info->expand_register.voltage_bank,
> - info->expand_register.voltage_reg,
> - info->expand_register.voltage_mask, regval_expand);
> -
> - if (regval_expand&(info->expand_register.voltage_mask))
> - /* Vaux3 has a different layout */
> - val = info->expand_register.voltage_limit;
> - else
> - val = (regval & info->voltage_mask) >> info->voltage_shift;
> + "%s-get_voltage (bank, reg, mask, value): 0x%x, 0x%x, 0x%x, 0x%x\n",
> + info->desc.name, info->voltage_bank, info->voltage_reg,
> + info->voltage_mask, regval);
>
> - return val;
> + return (regval & info->voltage_mask) >> info->voltage_shift;
> }
>
> static int ab8500_regulator_set_voltage_sel(struct regulator_dev *rdev,
next prev parent reply other threads:[~2013-04-16 11:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-10 6:40 [PATCH RFT 1/2] regulator: ab8500: Fix set voltage for AB8540_LDO_AUX3 Axel Lin
2013-04-10 6:46 ` [PATCH RFT 2/2] regulator: ab8500: Optimize ab8540_aux3_regulator_get_voltage_sel Axel Lin
2013-04-16 11:12 ` Bengt Jönsson [this message]
2013-04-16 11:24 ` Mark Brown
2013-04-16 10:57 ` [PATCH RFT 1/2] regulator: ab8500: Fix set voltage for AB8540_LDO_AUX3 Bengt Jönsson
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=516D321F.5090704@stericsson.com \
--to=bengt.g.jonsson@stericsson.com \
--cc=axel.lin@ingics.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=lee.jones@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=yvan.fillion@stericsson.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