linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Any news on Runtime Interpreted Power Sequences
@ 2013-10-25  0:22 NeilBrown
  2013-10-25  6:23 ` Alex Courbot
  0 siblings, 1 reply; 10+ messages in thread
From: NeilBrown @ 2013-10-25  0:22 UTC (permalink / raw)
  To: Alexandre Courbot; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 422 bytes --]


Hi Alex,
 I'm wondering if there was any news on the Runtime Interpreted Power
Sequences?
The most recent news I can find is
  https://lkml.org/lkml/2013/4/27/73
where you say they might be ready for 3.11.  Clearly that didn't work
(predictions being hard, especially about the future).

I'm really keen to see them turning into a reality and I gather others are
too. So ... can we hope?

Thanks,
NeilBrown

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-25  0:22 Any news on Runtime Interpreted Power Sequences NeilBrown
@ 2013-10-25  6:23 ` Alex Courbot
  2013-10-25  7:33   ` NeilBrown
  0 siblings, 1 reply; 10+ messages in thread
From: Alex Courbot @ 2013-10-25  6:23 UTC (permalink / raw)
  To: NeilBrown; +Cc: linux-kernel, Thierry Reding

Hi Neil,

On 10/25/2013 09:22 AM, NeilBrown wrote:
>   I'm wondering if there was any news on the Runtime Interpreted Power
> Sequences?
> The most recent news I can find is
>    https://lkml.org/lkml/2013/4/27/73
> where you say they might be ready for 3.11.  Clearly that didn't work
> (predictions being hard, especially about the future).
>
> I'm really keen to see them turning into a reality and I gather others are
> too. So ... can we hope?

A prerequisite of power sequences was to merge the gpiod interface, and 
this is finally happening. It took much longer than I wanted, sorry 
about that.

Logically speaking nothing should now stand in the way of a new version 
of the power sequences. Expected maybe my own skepticism about them.

The first version of the power seqs is mainly the result of my 
misunderstanding of the device tree. Reconsidering it now, if we strip 
the DT support away power seqs would just become a simplified way to 
describe how to power a device up and down. In other words, it would be 
another way to express what can be expressed with C code and would not 
bring any additional flexibility that DT-described power seqs would have 
(and I say this totally convinced now that power sequences in the device 
tree were a bad idea).

The advantage I could see is that using power sequences we could get rid 
of the cumbersome and mistake-prone error checking code which is 
basically the same for most devices. You would just need to describe 
what you want to activate, and in which order, and the power seqs 
framework would catch and report any error.

I'm not sure if this is a sufficient reason to introduce another 
framework into the kernel, but if this is deemed a good reason by more 
experienced people then I'm ok to give it a shot. If you have other 
motivations for this, please also state them so I can get the whole 
picture. Maybe I just need to be a little bit more motivated about this 
idea myself. :)

Thanks,
Alex.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-25  6:23 ` Alex Courbot
@ 2013-10-25  7:33   ` NeilBrown
  2013-10-28 10:01     ` Alex Courbot
  0 siblings, 1 reply; 10+ messages in thread
From: NeilBrown @ 2013-10-25  7:33 UTC (permalink / raw)
  To: Alex Courbot; +Cc: linux-kernel, Thierry Reding

[-- Attachment #1: Type: text/plain, Size: 5813 bytes --]

On Fri, 25 Oct 2013 15:23:45 +0900 Alex Courbot <acourbot@nvidia.com> wrote:

> Hi Neil,
> 
> On 10/25/2013 09:22 AM, NeilBrown wrote:
> >   I'm wondering if there was any news on the Runtime Interpreted Power
> > Sequences?
> > The most recent news I can find is
> >    https://lkml.org/lkml/2013/4/27/73
> > where you say they might be ready for 3.11.  Clearly that didn't work
> > (predictions being hard, especially about the future).
> >
> > I'm really keen to see them turning into a reality and I gather others are
> > too. So ... can we hope?
> 
> A prerequisite of power sequences was to merge the gpiod interface, and 
> this is finally happening. It took much longer than I wanted, sorry 
> about that.
> 
> Logically speaking nothing should now stand in the way of a new version 
> of the power sequences. Expected maybe my own skepticism about them.
> 
> The first version of the power seqs is mainly the result of my 
> misunderstanding of the device tree. Reconsidering it now, if we strip 
> the DT support away power seqs would just become a simplified way to 
> describe how to power a device up and down. In other words, it would be 
> another way to express what can be expressed with C code and would not 
> bring any additional flexibility that DT-described power seqs would have 
> (and I say this totally convinced now that power sequences in the device 
> tree were a bad idea).
> 
> The advantage I could see is that using power sequences we could get rid 
> of the cumbersome and mistake-prone error checking code which is 
> basically the same for most devices. You would just need to describe 
> what you want to activate, and in which order, and the power seqs 
> framework would catch and report any error.
> 
> I'm not sure if this is a sufficient reason to introduce another 
> framework into the kernel, but if this is deemed a good reason by more 
> experienced people then I'm ok to give it a shot. If you have other 
> motivations for this, please also state them so I can get the whole 
> picture. Maybe I just need to be a little bit more motivated about this 
> idea myself. :)
> 
> Thanks,
> Alex.

Hmmm... I'm not encouraged that you don't see them as belonging in
device-tree, as that is exactly where I want them.

Let me explain what I'm thinking.

I have two (or three) use-cases on my board ("GTA04" replacement motherboard
for Openmoko Phone).

Firstly the wifi chip is very fussy about being reset properly before being
accessed.  However it shares the same power regulator as the bluetooth chip.
So if the bluetooth is in use when you "ifconfig down; ifconfig up" the
wifi, it won't get powered down, so it won't get reset, so it won't work.

What I need to do is to tell the 'mmc/sdio' driver that when it wants to
power-on the wifi, it must
   pull a reset-gpio low
   turn-on the regulator (which might already be on)
   pull the reset-gpio high again

I currently have that hacked into the omap-hsmmc driver but I don't think the
code really belongs there.
I would much rather that the omap-hsmmc could be given a 'RIPS' instead
of (or as well as) the regulator and be told to just turn that RIPS on or off.
The RIPS would do the appropriate timed fiddling with GPIO and Regulator.
The only place I can think of the describe the RIPS would be in device-tree.

Secondly I have two devices that are behind serial ports - a GPS and the
bluetooth.
It makes perfect sense to tie the  power-on/off of these to the serial-port
concept of "DTR".  The omap-serial doesn't have a physical DTR, but is can be
configured with a GPIO to use as the DTR (it gets asserted on 'open' and
de-asserted on 'close').

I currently have a "gpio-to-regulator" converting driver plugged between the
serial port and the blue-tooth's regulator.  When I open the serial port for
bluetooth it asserts the gpio line which is routed through gpiolib to my
driver which enables the appropriate regulator.  I have something similar for
the GPS.

I think the gpio-to-regulator driver is a kludge.  I would much rather tell
the omap-serial to activate/de-activate a RIPS as the DTR action.  That RIPS
could then control GPIO for a "real" dtr line, or control a regulator to
support my bluetooth.

For the GPS, power on/off is really messy.  There is a toggle connected to a
GPIO so you need to know what the current state is before you can know how to
"turn off".  So you need to either plug into the serial driver and watch for
input, or use pinctrl to grab the RX pin and treat it like a GPIO.
This is admittedly quite horrible and it makes sense to have a dedicated
driver for it, but as the purpose of the driver would be to power
something up or down it would be nice if the interface it presented was a
power-up-down interface which is exactly what RIPS promised.


I imagine a device-tree interface a bit like GPIO but with more details.
We would have #defines for 
#define RIPS_REG_ON <0>,
#define RIPS_REG_OFF <1>,
#define RIPS_GPIO_ASSERT <2>,
#define RIPS_GPIO_DEASSERT <3>,
#define RIPS_DELAY <4>,
#define RIPS_NATIVE_ON <5>,
#define RIPS_NATIVE_OFF <6>,

Then

 rips-on = RIPS_GPIO_ASSERT  "wifi-reset",
           RIPS_DELAY         <10>,
           RIPS_REG_ON       "wifi",
           RIPS_DELAY         <10>,
           RIPS_GPIO_DEASSERT "wifi-reset";
 wifi-reset-gpio = <&gpio1 0 GPIO_ACTIVE_HIGH>;
 wifi-supply = <&vaux4>;

would would power-on my wifi-chip.  It's probably a bit ugly, but it is
simple and does follow an established pattern to some extent.

I expect some people will hate it and I won't be able to argue coherently
with them, so please pay more attention to my proposed use-case than to my
concrete example.

Thanks,
NeilBrown

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-25  7:33   ` NeilBrown
@ 2013-10-28 10:01     ` Alex Courbot
  2013-10-28 11:10       ` NeilBrown
  0 siblings, 1 reply; 10+ messages in thread
From: Alex Courbot @ 2013-10-28 10:01 UTC (permalink / raw)
  To: NeilBrown; +Cc: linux-kernel, Thierry Reding, linux-pm

On 10/25/2013 04:33 PM, NeilBrown wrote:
> * PGP Signed by an unknown key
>
> On Fri, 25 Oct 2013 15:23:45 +0900 Alex Courbot <acourbot@nvidia.com> wrote:
>
>> Hi Neil,
>>
>> On 10/25/2013 09:22 AM, NeilBrown wrote:
>>>    I'm wondering if there was any news on the Runtime Interpreted Power
>>> Sequences?
>>> The most recent news I can find is
>>>     https://lkml.org/lkml/2013/4/27/73
>>> where you say they might be ready for 3.11.  Clearly that didn't work
>>> (predictions being hard, especially about the future).
>>>
>>> I'm really keen to see them turning into a reality and I gather others are
>>> too. So ... can we hope?
>>
>> A prerequisite of power sequences was to merge the gpiod interface, and
>> this is finally happening. It took much longer than I wanted, sorry
>> about that.
>>
>> Logically speaking nothing should now stand in the way of a new version
>> of the power sequences. Expected maybe my own skepticism about them.
>>
>> The first version of the power seqs is mainly the result of my
>> misunderstanding of the device tree. Reconsidering it now, if we strip
>> the DT support away power seqs would just become a simplified way to
>> describe how to power a device up and down. In other words, it would be
>> another way to express what can be expressed with C code and would not
>> bring any additional flexibility that DT-described power seqs would have
>> (and I say this totally convinced now that power sequences in the device
>> tree were a bad idea).
>>
>> The advantage I could see is that using power sequences we could get rid
>> of the cumbersome and mistake-prone error checking code which is
>> basically the same for most devices. You would just need to describe
>> what you want to activate, and in which order, and the power seqs
>> framework would catch and report any error.
>>
>> I'm not sure if this is a sufficient reason to introduce another
>> framework into the kernel, but if this is deemed a good reason by more
>> experienced people then I'm ok to give it a shot. If you have other
>> motivations for this, please also state them so I can get the whole
>> picture. Maybe I just need to be a little bit more motivated about this
>> idea myself. :)
>>
>> Thanks,
>> Alex.
>
> Hmmm... I'm not encouraged that you don't see them as belonging in
> device-tree, as that is exactly where I want them.
>
> Let me explain what I'm thinking.
>
> I have two (or three) use-cases on my board ("GTA04" replacement motherboard
> for Openmoko Phone).
>
> Firstly the wifi chip is very fussy about being reset properly before being
> accessed.  However it shares the same power regulator as the bluetooth chip.
> So if the bluetooth is in use when you "ifconfig down; ifconfig up" the
> wifi, it won't get powered down, so it won't get reset, so it won't work.
>
> What I need to do is to tell the 'mmc/sdio' driver that when it wants to
> power-on the wifi, it must
>     pull a reset-gpio low
>     turn-on the regulator (which might already be on)
>     pull the reset-gpio high again
>
> I currently have that hacked into the omap-hsmmc driver but I don't think the
> code really belongs there.

I'd argue that it probably belongs here, on the contrary - unless this 
power-on sequence breaks other use-cases (which I don't think it does), 
it could simply be considered a safer way to power your device on. 
Shared regulators are quite common in the kernel, so you cannot simply 
rely on them solely to power a device down and expect it to be back to 
its reset set the next time you switch the regulator on.

> I would much rather that the omap-hsmmc could be given a 'RIPS' instead
> of (or as well as) the regulator and be told to just turn that RIPS on or off.
> The RIPS would do the appropriate timed fiddling with GPIO and Regulator.
> The only place I can think of the describe the RIPS would be in device-tree.

The problem I have with this is that the power sequence of a device is 
something that should be device-specific (as opposed to board-specific), 
and thus should be handled by the device driver. If you need to come 
with a board-specific way to power a device up, this most most certainly 
means something is wrong with the device's powerup sequence to start 
with. In the current case, it definitely seems to be the issue. Is there 
any problem introduced by asserting reset on your device when you power 
it up?

> Secondly I have two devices that are behind serial ports - a GPS and the
> bluetooth.
> It makes perfect sense to tie the  power-on/off of these to the serial-port
> concept of "DTR".  The omap-serial doesn't have a physical DTR, but is can be
> configured with a GPIO to use as the DTR (it gets asserted on 'open' and
> de-asserted on 'close').
>
> I currently have a "gpio-to-regulator" converting driver plugged between the
> serial port and the blue-tooth's regulator.  When I open the serial port for
> bluetooth it asserts the gpio line which is routed through gpiolib to my
> driver which enables the appropriate regulator.  I have something similar for
> the GPS.
>
> I think the gpio-to-regulator driver is a kludge.  I would much rather tell
> the omap-serial to activate/de-activate a RIPS as the DTR action.  That RIPS
> could then control GPIO for a "real" dtr line, or control a regulator to
> support my bluetooth.

What you describe here sounds pretty much like the hotplug GPIO of e.g. 
HDMI drivers, which activates the display controller when a plug event 
occurs. I'd say that you need a similar mechanism, either at the driver 
or framework level, that powers-up the device (not a single regulator 
which might once again be shared).

Power sequences would be of little help here, since instead of having a 
gpio-to-regulator driver you would need a gpio-to-powerseq one. Instead 
of relying on power sequences for this, maybe you could leverage the 
runtime_pm framework and invoke pm_runtime_get() on your device when the 
GPIO is asserted, and pm_runtime_put() once it goes down. This could be 
done at your GPS driver level, but it might be interesting to see if 
this could not be generalized for a larger group of devices. This kind 
of 'device active when a GPIO gets high' should be rather common.

> For the GPS, power on/off is really messy.  There is a toggle connected to a
> GPIO so you need to know what the current state is before you can know how to
> "turn off".  So you need to either plug into the serial driver and watch for
> input, or use pinctrl to grab the RX pin and treat it like a GPIO.
> This is admittedly quite horrible and it makes sense to have a dedicated
> driver for it, but as the purpose of the driver would be to power
> something up or down it would be nice if the interface it presented was a
> power-up-down interface which is exactly what RIPS promised.

I'm not sure I understand all the actors involved here, but since you 
mention GPIOs powering devices up and down again, wouldn't it somehow 
fit within the runtime_pm leverage I suggested earlier? Here it seems 
like you need a "power conditions" framework more than "power sequences". :)

> I imagine a device-tree interface a bit like GPIO but with more details.
> We would have #defines for
> #define RIPS_REG_ON <0>,
> #define RIPS_REG_OFF <1>,
> #define RIPS_GPIO_ASSERT <2>,
> #define RIPS_GPIO_DEASSERT <3>,
> #define RIPS_DELAY <4>,
> #define RIPS_NATIVE_ON <5>,
> #define RIPS_NATIVE_OFF <6>,
>
> Then
>
>   rips-on = RIPS_GPIO_ASSERT  "wifi-reset",
>             RIPS_DELAY         <10>,
>             RIPS_REG_ON       "wifi",
>             RIPS_DELAY         <10>,
>             RIPS_GPIO_DEASSERT "wifi-reset";
>   wifi-reset-gpio = <&gpio1 0 GPIO_ACTIVE_HIGH>;
>   wifi-supply = <&vaux4>;
>
> would would power-on my wifi-chip.  It's probably a bit ugly, but it is
> simple and does follow an established pattern to some extent.

But this most likely belongs to your wifi driver. Maybe not every board 
embedding your wifi chip will require e.g. active regulator, but that's 
what dummy regulators are for, and using them results in much less 
complexity (and much less controversy :)) that having interpreted code 
all over the device tree.

So far I don't see any hard requirement for power seqs in your use 
cases, but feel free to challenge my arguments. I'm adding the linux-pm 
list to the discussion since I feel we might get interesting comments 
from there - especially since what you want to do does not seem so uncommon.

Alex.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-28 10:01     ` Alex Courbot
@ 2013-10-28 11:10       ` NeilBrown
  2013-10-28 23:53         ` Mark Brown
  0 siblings, 1 reply; 10+ messages in thread
From: NeilBrown @ 2013-10-28 11:10 UTC (permalink / raw)
  To: Alex Courbot; +Cc: linux-kernel, Thierry Reding, linux-pm

[-- Attachment #1: Type: text/plain, Size: 11258 bytes --]

On Mon, 28 Oct 2013 19:01:41 +0900 Alex Courbot <acourbot@nvidia.com> wrote:

> On 10/25/2013 04:33 PM, NeilBrown wrote:
> > * PGP Signed by an unknown key
> >
> > On Fri, 25 Oct 2013 15:23:45 +0900 Alex Courbot <acourbot@nvidia.com> wrote:
> >
> >> Hi Neil,
> >>
> >> On 10/25/2013 09:22 AM, NeilBrown wrote:
> >>>    I'm wondering if there was any news on the Runtime Interpreted Power
> >>> Sequences?
> >>> The most recent news I can find is
> >>>     https://lkml.org/lkml/2013/4/27/73
> >>> where you say they might be ready for 3.11.  Clearly that didn't work
> >>> (predictions being hard, especially about the future).
> >>>
> >>> I'm really keen to see them turning into a reality and I gather others are
> >>> too. So ... can we hope?
> >>
> >> A prerequisite of power sequences was to merge the gpiod interface, and
> >> this is finally happening. It took much longer than I wanted, sorry
> >> about that.
> >>
> >> Logically speaking nothing should now stand in the way of a new version
> >> of the power sequences. Expected maybe my own skepticism about them.
> >>
> >> The first version of the power seqs is mainly the result of my
> >> misunderstanding of the device tree. Reconsidering it now, if we strip
> >> the DT support away power seqs would just become a simplified way to
> >> describe how to power a device up and down. In other words, it would be
> >> another way to express what can be expressed with C code and would not
> >> bring any additional flexibility that DT-described power seqs would have
> >> (and I say this totally convinced now that power sequences in the device
> >> tree were a bad idea).
> >>
> >> The advantage I could see is that using power sequences we could get rid
> >> of the cumbersome and mistake-prone error checking code which is
> >> basically the same for most devices. You would just need to describe
> >> what you want to activate, and in which order, and the power seqs
> >> framework would catch and report any error.
> >>
> >> I'm not sure if this is a sufficient reason to introduce another
> >> framework into the kernel, but if this is deemed a good reason by more
> >> experienced people then I'm ok to give it a shot. If you have other
> >> motivations for this, please also state them so I can get the whole
> >> picture. Maybe I just need to be a little bit more motivated about this
> >> idea myself. :)
> >>
> >> Thanks,
> >> Alex.
> >
> > Hmmm... I'm not encouraged that you don't see them as belonging in
> > device-tree, as that is exactly where I want them.
> >
> > Let me explain what I'm thinking.
> >
> > I have two (or three) use-cases on my board ("GTA04" replacement motherboard
> > for Openmoko Phone).
> >
> > Firstly the wifi chip is very fussy about being reset properly before being
> > accessed.  However it shares the same power regulator as the bluetooth chip.
> > So if the bluetooth is in use when you "ifconfig down; ifconfig up" the
> > wifi, it won't get powered down, so it won't get reset, so it won't work.
> >
> > What I need to do is to tell the 'mmc/sdio' driver that when it wants to
> > power-on the wifi, it must
> >     pull a reset-gpio low
> >     turn-on the regulator (which might already be on)
> >     pull the reset-gpio high again
> >
> > I currently have that hacked into the omap-hsmmc driver but I don't think the
> > code really belongs there.
> 
> I'd argue that it probably belongs here, on the contrary - unless this 
> power-on sequence breaks other use-cases (which I don't think it does), 
> it could simply be considered a safer way to power your device on. 
> Shared regulators are quite common in the kernel, so you cannot simply 
> rely on them solely to power a device down and expect it to be back to 
> its reset set the next time you switch the regulator on.
> 
> > I would much rather that the omap-hsmmc could be given a 'RIPS' instead
> > of (or as well as) the regulator and be told to just turn that RIPS on or off.
> > The RIPS would do the appropriate timed fiddling with GPIO and Regulator.
> > The only place I can think of the describe the RIPS would be in device-tree.
> 
> The problem I have with this is that the power sequence of a device is 
> something that should be device-specific (as opposed to board-specific), 
> and thus should be handled by the device driver. If you need to come 
> with a board-specific way to power a device up, this most most certainly 
> means something is wrong with the device's powerup sequence to start 
> with. In the current case, it definitely seems to be the issue. Is there 
> any problem introduced by asserting reset on your device when you power 
> it up?

I agree that this power-up sequence should be a property of the device.
However until the device has been powered up, Linux doesn't know about it.
Neither a board file or a devicetree can (as far as I can tell), tell the
MMC port that a particular card is attached.  Rather the host probes the card
to see what it is.
So there isn't any way for the device driver to get control at the
appropriate time to effect the proper sequencing.



> 
> > Secondly I have two devices that are behind serial ports - a GPS and the
> > bluetooth.
> > It makes perfect sense to tie the  power-on/off of these to the serial-port
> > concept of "DTR".  The omap-serial doesn't have a physical DTR, but is can be
> > configured with a GPIO to use as the DTR (it gets asserted on 'open' and
> > de-asserted on 'close').
> >
> > I currently have a "gpio-to-regulator" converting driver plugged between the
> > serial port and the blue-tooth's regulator.  When I open the serial port for
> > bluetooth it asserts the gpio line which is routed through gpiolib to my
> > driver which enables the appropriate regulator.  I have something similar for
> > the GPS.
> >
> > I think the gpio-to-regulator driver is a kludge.  I would much rather tell
> > the omap-serial to activate/de-activate a RIPS as the DTR action.  That RIPS
> > could then control GPIO for a "real" dtr line, or control a regulator to
> > support my bluetooth.
> 
> What you describe here sounds pretty much like the hotplug GPIO of e.g. 
> HDMI drivers, which activates the display controller when a plug event 
> occurs. I'd say that you need a similar mechanism, either at the driver 
> or framework level, that powers-up the device (not a single regulator 
> which might once again be shared).

I'm not following here.  This 'hotplug GPIO' sounds like an input GPIO, which
signals the CPU when a cable in plugged in.
I'm thinking of an output GPIO which signals some hardware when a /dev/ttyO1
device is opened.  Only I capture the signal in software and redirect it to
switch a regulator.

> 
> Power sequences would be of little help here, since instead of having a 
> gpio-to-regulator driver you would need a gpio-to-powerseq one. Instead 
> of relying on power sequences for this, maybe you could leverage the 
> runtime_pm framework and invoke pm_runtime_get() on your device when the 
> GPIO is asserted, and pm_runtime_put() once it goes down. This could be 
> done at your GPS driver level, but it might be interesting to see if 
> this could not be generalized for a larger group of devices. This kind 
> of 'device active when a GPIO gets high' should be rather common.

The benefit I see to using power sequences is that it adds a level of
abstraction.  Instead of the serial driver toggling a GPIO, it could just
activate or deactivate a power sequence.  That could toggle a real GPIO or
enable a real regulator, or do whatever is needed to tell the device attached
to the serial port that someone is ready to talk to it (that the Data
Terminal is Ready).  i.e. a more general solution.

I cannot leverage runtime_pm of the device as there is no driver for the
device.
I'm actually talking about bluetooth here (not GPS, that comes next).  The
kernel doesn't know that there is a bluetooth device behind the serial port.
User-space does and so it runs hciattach.
The question is: how do I arrange that the bluetooth module gets power
exactly when hciattach is run.  The most obvious answer to me is signalling
through the DTR concept.  DTR is perfectly well defined within the serial
layer.  All I need is some sort of interconnect to carry that signalling from
the serial port through to the particular regulator.
This is unquestionably a function of the board, not of any particular device.


> 
> > For the GPS, power on/off is really messy.  There is a toggle connected to a
> > GPIO so you need to know what the current state is before you can know how to
> > "turn off".  So you need to either plug into the serial driver and watch for
> > input, or use pinctrl to grab the RX pin and treat it like a GPIO.
> > This is admittedly quite horrible and it makes sense to have a dedicated
> > driver for it, but as the purpose of the driver would be to power
> > something up or down it would be nice if the interface it presented was a
> > power-up-down interface which is exactly what RIPS promised.
> 
> I'm not sure I understand all the actors involved here, but since you 
> mention GPIOs powering devices up and down again, wouldn't it somehow 
> fit within the runtime_pm leverage I suggested earlier? Here it seems 
> like you need a "power conditions" framework more than "power sequences". :)

It is a bit complicated I agree.

But again, the kernel has no driver for the GPS.  It just has a serial port.
User-space knows this and runs 'gpsd'.  But I need to power-on the GPS when
gpsd opens /dev/ttyO0.  And power it off when the device is closed.

> 
> > I imagine a device-tree interface a bit like GPIO but with more details.
> > We would have #defines for
> > #define RIPS_REG_ON <0>,
> > #define RIPS_REG_OFF <1>,
> > #define RIPS_GPIO_ASSERT <2>,
> > #define RIPS_GPIO_DEASSERT <3>,
> > #define RIPS_DELAY <4>,
> > #define RIPS_NATIVE_ON <5>,
> > #define RIPS_NATIVE_OFF <6>,
> >
> > Then
> >
> >   rips-on = RIPS_GPIO_ASSERT  "wifi-reset",
> >             RIPS_DELAY         <10>,
> >             RIPS_REG_ON       "wifi",
> >             RIPS_DELAY         <10>,
> >             RIPS_GPIO_DEASSERT "wifi-reset";
> >   wifi-reset-gpio = <&gpio1 0 GPIO_ACTIVE_HIGH>;
> >   wifi-supply = <&vaux4>;
> >
> > would would power-on my wifi-chip.  It's probably a bit ugly, but it is
> > simple and does follow an established pattern to some extent.
> 
> But this most likely belongs to your wifi driver. Maybe not every board 
> embedding your wifi chip will require e.g. active regulator, but that's 
> what dummy regulators are for, and using them results in much less 
> complexity (and much less controversy :)) that having interpreted code 
> all over the device tree.
> 
> So far I don't see any hard requirement for power seqs in your use 
> cases, but feel free to challenge my arguments. I'm adding the linux-pm 
> list to the discussion since I feel we might get interesting comments 
> from there - especially since what you want to do does not seem so uncommon.

Thanks

NeilBrown


> 
> Alex.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-28 11:10       ` NeilBrown
@ 2013-10-28 23:53         ` Mark Brown
  2013-10-29  0:10           ` NeilBrown
  0 siblings, 1 reply; 10+ messages in thread
From: Mark Brown @ 2013-10-28 23:53 UTC (permalink / raw)
  To: NeilBrown; +Cc: Alex Courbot, linux-kernel, Thierry Reding, linux-pm

[-- Attachment #1: Type: text/plain, Size: 784 bytes --]

On Mon, Oct 28, 2013 at 10:10:04PM +1100, NeilBrown wrote:

> I agree that this power-up sequence should be a property of the device.
> However until the device has been powered up, Linux doesn't know about it.
> Neither a board file or a devicetree can (as far as I can tell), tell the
> MMC port that a particular card is attached.  Rather the host probes the card
> to see what it is.
> So there isn't any way for the device driver to get control at the
> appropriate time to effect the proper sequencing.

If it is a genuinely pluggable MMC slot then I'd expect the sequence to
be implementing whatever is required for standard MMC enumeration to
work.  If the device is a soldered down one with extra control (as is
quite common) then there shouldn't be a problem describing it?

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-28 23:53         ` Mark Brown
@ 2013-10-29  0:10           ` NeilBrown
  2013-10-29 16:18             ` Mark Brown
  0 siblings, 1 reply; 10+ messages in thread
From: NeilBrown @ 2013-10-29  0:10 UTC (permalink / raw)
  To: Mark Brown; +Cc: Alex Courbot, linux-kernel, Thierry Reding, linux-pm

[-- Attachment #1: Type: text/plain, Size: 1244 bytes --]

On Mon, 28 Oct 2013 16:53:44 -0700 Mark Brown <broonie@kernel.org> wrote:

> On Mon, Oct 28, 2013 at 10:10:04PM +1100, NeilBrown wrote:
> 
> > I agree that this power-up sequence should be a property of the device.
> > However until the device has been powered up, Linux doesn't know about it.
> > Neither a board file or a devicetree can (as far as I can tell), tell the
> > MMC port that a particular card is attached.  Rather the host probes the card
> > to see what it is.
> > So there isn't any way for the device driver to get control at the
> > appropriate time to effect the proper sequencing.
> 
> If it is a genuinely pluggable MMC slot then I'd expect the sequence to
> be implementing whatever is required for standard MMC enumeration to
> work.  If the device is a soldered down one with extra control (as is
> quite common) then there shouldn't be a problem describing it?

Yes, the device is soldered down and has a reset line that needs to be pulsed
low at about the same time that the MMC port enables the regulator.

How do you propose that I describe this?  Which driver should know about the
reset GPIO, how to I tell it about the GPIO, and which function should do the
pulsing?

Thanks,
NeilBrown

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-29  0:10           ` NeilBrown
@ 2013-10-29 16:18             ` Mark Brown
  2013-10-31  4:59               ` NeilBrown
  0 siblings, 1 reply; 10+ messages in thread
From: Mark Brown @ 2013-10-29 16:18 UTC (permalink / raw)
  To: NeilBrown; +Cc: Alex Courbot, linux-kernel, Thierry Reding, linux-pm

[-- Attachment #1: Type: text/plain, Size: 830 bytes --]

On Tue, Oct 29, 2013 at 11:10:37AM +1100, NeilBrown wrote:

> Yes, the device is soldered down and has a reset line that needs to be pulsed
> low at about the same time that the MMC port enables the regulator.

> How do you propose that I describe this?  Which driver should know about the
> reset GPIO, how to I tell it about the GPIO, and which function should do the
> pulsing?

I'd expect the driver for the device to know about this, obviously
depending on what this actually does it might want to use this at
runtime (for example, putting the device into reset to minimise power
while it's idle).  We really need a generic way for devices such as this
on enumerable buses to run before the current probe() in order to allow
them to manage their power up sequences in embedded systems, this is
*far* from a unique situation.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-29 16:18             ` Mark Brown
@ 2013-10-31  4:59               ` NeilBrown
  2013-10-31  5:23                 ` Alex Courbot
  0 siblings, 1 reply; 10+ messages in thread
From: NeilBrown @ 2013-10-31  4:59 UTC (permalink / raw)
  To: Mark Brown; +Cc: Alex Courbot, linux-kernel, Thierry Reding, linux-pm

[-- Attachment #1: Type: text/plain, Size: 1594 bytes --]

On Tue, 29 Oct 2013 09:18:16 -0700 Mark Brown <broonie@kernel.org> wrote:

> On Tue, Oct 29, 2013 at 11:10:37AM +1100, NeilBrown wrote:
> 
> > Yes, the device is soldered down and has a reset line that needs to be pulsed
> > low at about the same time that the MMC port enables the regulator.
> 
> > How do you propose that I describe this?  Which driver should know about the
> > reset GPIO, how to I tell it about the GPIO, and which function should do the
> > pulsing?
> 
> I'd expect the driver for the device to know about this, obviously
> depending on what this actually does it might want to use this at
> runtime (for example, putting the device into reset to minimise power
> while it's idle).  We really need a generic way for devices such as this
> on enumerable buses to run before the current probe() in order to allow
> them to manage their power up sequences in embedded systems, this is
> *far* from a unique situation.

I agree.
To me, this sounds a lot like saying "We need a way for enumerable buses to
be given a power-on-sequence to power on the attached device".  That is what
I hopped RIPS would provide.

Maybe various devices could allow other devices to register for call-backs
when the first device activates or deactivates a port  (whether an MMC port or
USB or Serial or whatever).
Then a driver that needs to control the power-on sequence would register as a
platform-device which registers a call-back with the appropriate parent and
performs the required power-on/off.

Does that sound like the right sort of thing?

NeilBrown

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Any news on Runtime Interpreted Power Sequences
  2013-10-31  4:59               ` NeilBrown
@ 2013-10-31  5:23                 ` Alex Courbot
  0 siblings, 0 replies; 10+ messages in thread
From: Alex Courbot @ 2013-10-31  5:23 UTC (permalink / raw)
  To: NeilBrown, Mark Brown; +Cc: linux-kernel, Thierry Reding, linux-pm

On 10/31/2013 01:59 PM, NeilBrown wrote:
> * PGP Signed by an unknown key
>
> On Tue, 29 Oct 2013 09:18:16 -0700 Mark Brown <broonie@kernel.org> wrote:
>
>> On Tue, Oct 29, 2013 at 11:10:37AM +1100, NeilBrown wrote:
>>
>>> Yes, the device is soldered down and has a reset line that needs to be pulsed
>>> low at about the same time that the MMC port enables the regulator.
>>
>>> How do you propose that I describe this?  Which driver should know about the
>>> reset GPIO, how to I tell it about the GPIO, and which function should do the
>>> pulsing?
>>
>> I'd expect the driver for the device to know about this, obviously
>> depending on what this actually does it might want to use this at
>> runtime (for example, putting the device into reset to minimise power
>> while it's idle).  We really need a generic way for devices such as this
>> on enumerable buses to run before the current probe() in order to allow
>> them to manage their power up sequences in embedded systems, this is
>> *far* from a unique situation.
>
> I agree.
> To me, this sounds a lot like saying "We need a way for enumerable buses to
> be given a power-on-sequence to power on the attached device".  That is what
> I hopped RIPS would provide.

There are a few ad-hoc solutions that provide such a mechanism using 
platform data. Take for instance 
include/linux/platform_data/brcmfmac-sdio.h. It allows you to register a 
platform device which sole purpose is to control the power sequence of a 
SDIO network device. When the platform device is registered, it powers 
the network device which can then be probed by the bus. The network 
driver also calls the platform power on/off functions when appropriate.

This works quite well in the case of board files where you can write 
power sequencing code freely, but the question is how to translate it to 
device tree. You need to translate several, board-specific (and not 
device-specific) functions. Here I have to admit this seems like a good 
fit for in-DT power sequences.

> Maybe various devices could allow other devices to register for call-backs
> when the first device activates or deactivates a port  (whether an MMC port or
> USB or Serial or whatever).
> Then a driver that needs to control the power-on sequence would register as a
> platform-device which registers a call-back with the appropriate parent and
> performs the required power-on/off.
>
> Does that sound like the right sort of thing?

I think it does, but you are still left with the problem of how and 
where to define that board-specific power sequence. If things were 
always as simple as turning a regulator on, this would be easy, but 
apparently we also face more complex cases.

Alex.


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-10-31  5:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-25  0:22 Any news on Runtime Interpreted Power Sequences NeilBrown
2013-10-25  6:23 ` Alex Courbot
2013-10-25  7:33   ` NeilBrown
2013-10-28 10:01     ` Alex Courbot
2013-10-28 11:10       ` NeilBrown
2013-10-28 23:53         ` Mark Brown
2013-10-29  0:10           ` NeilBrown
2013-10-29 16:18             ` Mark Brown
2013-10-31  4:59               ` NeilBrown
2013-10-31  5:23                 ` Alex Courbot

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).