Locking in the clk API

Colin Cross ccross at google.com
Fri Jan 21 17:28:15 EST 2011


On Fri, Jan 21, 2011 at 2:02 PM, Russell King - ARM Linux
<linux at arm.linux.org.uk> wrote:
> On Fri, Jan 21, 2011 at 04:53:44PM -0500, Nicolas Pitre wrote:
>> So I think that the API must be augmented with more methods, such as:
>>
>> clk_slow_enable():
>>   - may sleep
>>   - may be a no-op if the clk_fast_enable() is supported
>>
>> clk_fast_enable():
>>   - may not sleep, used in atomic context
>>   - may be a no-op if controlling the clock takes time, in which case
>>     clk_slow_enable() must have set the clock up entirely
>>
>> ... and similar for clk_slow_disable() and clk_fast_disable().
>
> Isn't this along the same lines as my clk_prepare() vs clk_enable()
> suggestion?
>
> I suggested that clk_prepare() be callable only from non-atomic contexts,
> and do whatever's required to ensure that the clock is available.  That
> may end up enabling the clock as a result.
>
> clk_enable() callable from atomic contexts, and turns the clock on if
> the hardware supports such an operation.
>
> So, if you have something like:
>
> Xtal--->PLL--->Routing/Masking--->Device
>
> clk = clk_get() returns the clock for the device.
>
> clk_prepare(clk) would walk up the clock tree, selecting the routing and
> preparing each clock.  Clocks prior to _and_ including the PLL would need
> to be enabled.
>
> clk_enable(clk) would walk up the tree if the clock isn't already enabled,
> calling clk_enable() on the parent clock.  As we require prepared clocks
> to already be enabled, this automatically stops at the PLL.
>
> To encourage correct usage, we just need to make sure that clk_prepare()
> has a might_sleep() thing, and clk_enable() throws a fit if it's used
> on a clk without prepare being used first.  The second point is not easy
> to do in a foolproof manner though, but doing _something_ is better than
> nothing.

I like this proposal, and I prefer the clk_prepare naming over
clk_slow_enable - too many people would call clk_slow_enable instead
of, and not as well as, clk_fast_enable.

On Tegra, I currently use the ugly conditional mutex or spinlock
method to deal with voltage scaling based on clock frequency.  Clocks
that have a voltage dependency, or depend on a clock that has a
voltage dependency, are non-atomic, everything else is atomic.  PLLs
are atomic because they lock very fast (300 uS or 1ms) and are shared
by so many clocks that they realistically don't get turned off very
often, and if I made them non-atomic, all clocks would be non-atomic.

If clk_prepare, clk_unprepare, and clk_set_rate were only callable in
sleepable contexts, I could make PLLs and voltage-dependent clocks
sleepable, but allow atomic clocks to depend on them.  Calling
clk_prepare on a voltage-dependent clock would bump the voltage up if
necessary, but not enable the clock.  Drivers that don't need atomic
clocks can call clk_prepare and clk_enable when they want the clock
on, keeping the same power savings as my current implementation.

Converting all the existing clk API users could be hard, but with a
little trickery backwards compatibility with the previous API could
also be maintained.  clk_enable could call clk_prepare if it hasn't
been called, with a WARN_ON_ONCE to find drivers that need to be
fixed, and the last clk_disable could call clk_unprepare.  For systems
where all clocks are atomic, everything would continue to work.



More information about the linux-arm-kernel mailing list