From: Laxman Dewangan <ldewangan@nvidia.com>
To: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Cc: "broonie@opensource.wolfsonmicro.com"
<broonie@opensource.wolfsonmicro.com>, "lrg@ti.com" <lrg@ti.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] regulator: max8973: add regulator driver support
Date: Tue, 20 Nov 2012 07:24:07 +0530 [thread overview]
Message-ID: <50AAE2BF.2000909@nvidia.com> (raw)
In-Reply-To: <Pine.LNX.4.64.1211190900110.11024@axis700.grange>
On Monday 19 November 2012 04:22 PM, Guennadi Liakhovetski wrote:
>
> Hi Laxman
>
> drivers in the tree. Well, I came to two conclusions so far: (1) The
> current regulator API is not very well suitable for such regulators. I
> would imagine, one would need two methods: for setting the "normal" and
> the DVS voltage. Instead of this drivers are trying to be smart at
> guessing, which voltage the user is trying to set now... (2) Drivers do
> this in different ways and at least out of the 2 drivers I looked at both
> have bugs and different ones at that. I'll send a separate email,
> describing what I found suspicious in them.
>
> Of course, all the above was just my DVS-newbie impression, which can very
> well be absolutely wrong.
>
If there is multipel VOUT register for single vout then these registers
are generally selected by the input pin of device.
In a given system, you can connect the gpios pin to this input pins to
select the proper VOUT register.
The register update through i2c consume more time and changing the gpio
state is comparatively less.
So if you have let say 4 voltages 1.10, 1.11, 1.12, 1.13 and having 4
VOUT register. Then program these vout val to vout reg like 1.10 to
vout_reg0, 1.11 to vout_reg1 etc.
Now for changing voltage between these will just require to change the
gpio pin state, not the register update and so it will be faster. You
can achive the voltage change by gpio pin state change.
Now if your DVS have more volatge scaling then you can use the LRU
mechanism to use the vout register for this new value.
>> + max->dev =&client->dev;
>> + max->desc.name = id->name;
>> + max->desc.id = 0;
> Don't you have to be able to process multiple such devices?
Not really require as device have only one output. The different devices
will have different registrations and so does not matter here.
>> + max->enable_external_control = pdata->enable_ext_control;
>> + max->dvs_gpio = pdata->dvs_gpio;
>> + max->curr_gpio_val = pdata->dvs_def_state;
>> + max->curr_vout_reg = MAX8973_VOUT + pdata->dvs_def_state;
>> + max->lru_index[0] = max->curr_vout_reg;
> Here you actually need an offset within your register address space, so,
> should be
>
> + max->lru_index[0] = pdata->dvs_def_state;
Yaah, seems some issue if vout_base is not zero. But really dont require
here as MAX8973_VOUT is 0 in this case.
next prev parent reply other threads:[~2012-11-20 1:54 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-19 1:28 [PATCH] regulator: max8973: add regulator driver support Laxman Dewangan
2012-11-19 8:03 ` Mark Brown
2012-11-19 10:52 ` Guennadi Liakhovetski
2012-11-20 0:43 ` Mark Brown
2012-11-20 7:55 ` Guennadi Liakhovetski
2012-11-20 8:08 ` Mark Brown
2012-11-20 8:23 ` Guennadi Liakhovetski
2012-11-20 8:32 ` Mark Brown
2012-11-20 1:54 ` Laxman Dewangan [this message]
2012-11-20 9:42 ` Guennadi Liakhovetski
2012-11-23 0:29 ` 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=50AAE2BF.2000909@nvidia.com \
--to=ldewangan@nvidia.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=g.liakhovetski@gmx.de \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.