From: Graeme Gregory <gg@slimlogic.co.uk>
To: Axel Lin <axel.lin@gmail.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>,
linux-kernel@vger.kernel.org, Liam Girdwood <lrg@ti.com>
Subject: Re: [PATCH RFT] regulator: palmas: Fix calcuating selector in palmas_map_voltage_smps
Date: Tue, 17 Jul 2012 09:45:57 +0100 [thread overview]
Message-ID: <50052645.4090301@slimlogic.co.uk> (raw)
In-Reply-To: <1342495743.16433.1.camel@phoenix>
Good catch, thanks I totally forgot about the range bit in that function.
Acked-by: Graeme Gregory <gg@slimlogic.co.uk>
On 17/07/12 04:29, Axel Lin wrote:
> The logic of calculating selector in palmas_map_voltage_smps() does not match
> the logic to list voltage in palmas_list_voltage_smps().
>
> We use below equation to calculate voltage when selector > 0:
> voltage = (0.49V + (selector * 0.01V)) * RANGE
> RANGE is either x1 or x2
>
> So we need to take into account with the multiplier set in VSEL register when
> calculating selector in palmas_map_voltage_smps()
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
> drivers/regulator/palmas-regulator.c | 17 ++++++++++++++---
> 1 file changed, 14 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c
> index 7540c95..17d19fb 100644
> --- a/drivers/regulator/palmas-regulator.c
> +++ b/drivers/regulator/palmas-regulator.c
> @@ -373,11 +373,22 @@ static int palmas_set_voltage_smps_sel(struct regulator_dev *dev,
> static int palmas_map_voltage_smps(struct regulator_dev *rdev,
> int min_uV, int max_uV)
> {
> + struct palmas_pmic *pmic = rdev_get_drvdata(rdev);
> + int id = rdev_get_id(rdev);
> int ret, voltage;
>
> - ret = ((min_uV - 500000) / 10000) + 1;
> - if (ret < 0)
> - return ret;
> + if (min_uV == 0)
> + return 0;
> +
> + if (pmic->range[id]) { /* RANGE is x2 */
> + if (min_uV < 1000000)
> + min_uV = 1000000;
> + ret = DIV_ROUND_UP(min_uV - 1000000, 20000) + 1;
> + } else { /* RANGE is x1 */
> + if (min_uV < 500000)
> + min_uV = 500000;
> + ret = DIV_ROUND_UP(min_uV - 500000, 10000) + 1;
> + }
>
> /* Map back into a voltage to verify we're still in bounds */
> voltage = palmas_list_voltage_smps(rdev, ret);
next prev parent reply other threads:[~2012-07-17 8:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-17 3:29 [PATCH RFT] regulator: palmas: Fix calcuating selector in palmas_map_voltage_smps Axel Lin
2012-07-17 8:45 ` Graeme Gregory [this message]
2012-07-17 10:08 ` Mark Brown
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=50052645.4090301@slimlogic.co.uk \
--to=gg@slimlogic.co.uk \
--cc=axel.lin@gmail.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lrg@ti.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