regulator: Do bulk enables of regulators in parallel
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 24 May 2011 00:12:40 +0000 (08:12 +0800)
committerLiam Girdwood <lrg@slimlogic.co.uk>
Mon, 30 May 2011 10:56:57 +0000 (11:56 +0100)
commitf21e0e81d81b649ad309cedc7226f1bed72982e0
tree24fe19d6408b58a32c7f82df47f9e17fb76e1a5c
parent55922c9d1b84b89cb946c777fddccb3247e7df2c
regulator: Do bulk enables of regulators in parallel

In order to reduce the impact of ramp times rather than enabling the
regulators for a device in series use async tasks to run the actual
enables. This means that the delays which the enables implement can all
run in parallel, though it does mean that the order in which the
supplies come on may be unstable.

For super bonus fun points if any of the regulators are shared between
multiple supplies on the same device (as is rather likely) then this
will test our locking.  Note that in this case we only delay once for
each physical regulator so the threads shouldn't block each other while
delaying.

It'd be even nicer if we could coalesce writes to a shared enable registers
in PMICs but that's definitely future work, and it may also be useful
and is certainly more achievable to optimise out the parallelism if none
of the regulators implement ramp delays.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
drivers/regulator/core.c
include/linux/regulator/consumer.h