* [PATCH v4 3/4] regulator: Add support for a fixed delay after voltage increases
@ 2016-09-06 19:05 Matthias Kaehlcke
[not found] ` <20160906190504.GA79728-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Matthias Kaehlcke @ 2016-09-06 19:05 UTC (permalink / raw)
To: Mark Brown, lgirdwood
Cc: Douglas Anderson, briannorris, javier, robh+dt, mark.rutland,
linux-kernel, devicetree
The target voltage isn't necessarily reached inmediately after
requesting a regulator to change the voltage. In some cases the
ramp_delay can be used to calculate the stabilisation time, in others
there is no direct relationship between the delta in the voltage and
the stabilisation time. This change introduces the device tree property
"regulator-settle-time-up-us" which allows to specify a fixed delay
after a voltage increase.
We don't add an option of a fixed delay on the way down for now because
the way down is probably modelled best with a ramp rate, not a fixed
delay.
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
---
Changes in v4:
- Moved from PWM regulator to regulator core
- Added 'regulator' prefix to device tree property
.../devicetree/bindings/regulator/regulator.txt | 2 ++
drivers/regulator/core.c | 24 +++++++++++++---------
drivers/regulator/of_regulator.c | 4 ++++
include/linux/regulator/machine.h | 2 ++
4 files changed, 22 insertions(+), 10 deletions(-)
diff --git a/Documentation/devicetree/bindings/regulator/regulator.txt b/Documentation/devicetree/bindings/regulator/regulator.txt
index ecfc593..d2d1c4d 100644
--- a/Documentation/devicetree/bindings/regulator/regulator.txt
+++ b/Documentation/devicetree/bindings/regulator/regulator.txt
@@ -21,6 +21,8 @@ Optional properties:
design requires. This property describes the total system ramp time
required due to the combination of internal ramping of the regulator itself,
and board design issues such as trace capacitance and load on the supply.
+- regulator-settle-time-up-us: Time to settle down after a voltage increase
+ (unit: us). For regulators with a ramp delay the two values are added.
- regulator-soft-start: Enable soft start so that voltage ramps slowly
- regulator-state-mem sub-root node for Suspend-to-RAM mode
: suspend to memory, the device goes to sleep, but all data stored in memory,
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index b1cef47..ed69fdc 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -2801,7 +2801,9 @@ static int _regulator_do_set_voltage(struct regulator_dev *rdev,
ret = -EINVAL;
}
- if (ret != 0 || rdev->constraints->ramp_disable)
+ if (ret != 0 ||
+ (rdev->constraints->ramp_disable &&
+ !rdev->constraints->settle_time_up))
goto no_delay;
if (rdev->desc->ops->set_voltage_time) {
@@ -3050,25 +3052,27 @@ EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
* Provided with the starting and ending voltage, this function calculates
* the time in microseconds required to rise or fall to this new voltage.
*
- * Drivers providing ramp_delay in regulation_constraints can use this as their
- * set_voltage_time() operation.
+ * Drivers providing ramp_delay or settle_time_up in regulation_constraints
+ * can use this as their set_voltage_time() operation.
*/
int regulator_set_voltage_time_op(struct regulator_dev *rdev,
int old_uV, int new_uV)
{
+ unsigned int settle_time = 0;
unsigned int ramp_delay = 0;
+ if (new_uV > old_uV)
+ settle_time = rdev->constraints->settle_time_up;
+
if (rdev->constraints->ramp_delay)
ramp_delay = rdev->constraints->ramp_delay;
else if (rdev->desc->ramp_delay)
ramp_delay = rdev->desc->ramp_delay;
- if (ramp_delay == 0) {
- rdev_warn(rdev, "ramp_delay not set\n");
- return 0;
- }
+ if (ramp_delay == 0)
+ return settle_time;
- return DIV_ROUND_UP(abs(new_uV - old_uV), ramp_delay);
+ return settle_time + DIV_ROUND_UP(abs(new_uV - old_uV), ramp_delay);
}
EXPORT_SYMBOL_GPL(regulator_set_voltage_time_op);
@@ -3081,8 +3085,8 @@ EXPORT_SYMBOL_GPL(regulator_set_voltage_time_op);
* Provided with the starting and target voltage selectors, this function
* returns time in microseconds required to rise or fall to this new voltage
*
- * Drivers providing ramp_delay in regulation_constraints can use this as their
- * set_voltage_time_sel() operation.
+ * Drivers providing ramp_delay or settle_time_up in regulation_constraints
+ * can use this as their set_voltage_time_sel() operation.
*/
int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
unsigned int old_selector,
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index 4f613ec..056f242 100644
--- a/drivers/regulator/of_regulator.c
+++ b/drivers/regulator/of_regulator.c
@@ -90,6 +90,10 @@ static void of_get_regulation_constraints(struct device_node *np,
if (!ret)
constraints->enable_time = pval;
+ ret = of_property_read_u32(np, "regulator-settle-time-up-us", &pval);
+ if (!ret)
+ constraints->settle_time_up = pval;
+
constraints->soft_start = of_property_read_bool(np,
"regulator-soft-start");
ret = of_property_read_u32(np, "regulator-active-discharge", &pval);
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h
index ad3e515..8681a82 100644
--- a/include/linux/regulator/machine.h
+++ b/include/linux/regulator/machine.h
@@ -108,6 +108,7 @@ struct regulator_state {
* @initial_state: Suspend state to set by default.
* @initial_mode: Mode to set at startup.
* @ramp_delay: Time to settle down after voltage change (unit: uV/us)
+ * @settle_time_up: Time to settle down after voltage increase (unit: uV/us)
* @active_discharge: Enable/disable active discharge. The enum
* regulator_active_discharge values are used for
* initialisation.
@@ -150,6 +151,7 @@ struct regulation_constraints {
unsigned int ramp_delay;
unsigned int enable_time;
+ unsigned int settle_time_up;
unsigned int active_discharge;
--
2.8.0.rc3.226.g39d4020
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v4 3/4] regulator: Add support for a fixed delay after voltage increases
[not found] ` <20160906190504.GA79728-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
@ 2016-09-12 18:36 ` Mark Brown
2016-09-15 12:51 ` Doug Anderson
2016-09-16 12:28 ` Rob Herring
1 sibling, 1 reply; 4+ messages in thread
From: Mark Brown @ 2016-09-12 18:36 UTC (permalink / raw)
To: Matthias Kaehlcke
Cc: lgirdwood-Re5JQEeQqe8AvxtiuMwx3w, Douglas Anderson,
briannorris-F7+t8E8rja9g9hUCZPvPmw, javier-0uQlZySMnqxg9hUCZPvPmw,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A, mark.rutland-5wv7dgnIgG8,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 644 bytes --]
On Tue, Sep 06, 2016 at 12:05:04PM -0700, Matthias Kaehlcke wrote:
> the stabilisation time. This change introduces the device tree property
> "regulator-settle-time-up-us" which allows to specify a fixed delay
> We don't add an option of a fixed delay on the way down for now because
> the way down is probably modelled best with a ramp rate, not a fixed
> delay.
Are you sure? It seems more likely to be highly load dependent if
there's an appreciable variation. That could be a ramp rate if you've
got a very predictable load and a simple regulator but it seems like
the system is less likely to care if we collapsed down in that case.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v4 3/4] regulator: Add support for a fixed delay after voltage increases
2016-09-12 18:36 ` Mark Brown
@ 2016-09-15 12:51 ` Doug Anderson
0 siblings, 0 replies; 4+ messages in thread
From: Doug Anderson @ 2016-09-15 12:51 UTC (permalink / raw)
To: Mark Brown
Cc: Matthias Kaehlcke, Liam Girdwood, Brian Norris,
Javier Martinez Canillas, Rob Herring, Mark Rutland,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Hi
On Tue, Sep 13, 2016 at 2:36 AM, Mark Brown <broonie@kernel.org> wrote:
> On Tue, Sep 06, 2016 at 12:05:04PM -0700, Matthias Kaehlcke wrote:
>
>> the stabilisation time. This change introduces the device tree property
>> "regulator-settle-time-up-us" which allows to specify a fixed delay
>
>> We don't add an option of a fixed delay on the way down for now because
>> the way down is probably modelled best with a ramp rate, not a fixed
>> delay.
>
> Are you sure? It seems more likely to be highly load dependent if
> there's an appreciable variation. That could be a ramp rate if you've
> got a very predictable load and a simple regulator but it seems like
> the system is less likely to care if we collapsed down in that case.
In the particular case we cared about we had to make some assumptions
about the slowest possible ramp rate downward because we were trying
to avoid triggering an over voltage protection. In that particular
case the best way to model it was with a ramp rate because longer
voltage changes caused longer worst case transitions. Just like you
said, the actual ramp time is highly variable but the "worst case
slowest" ramp time is best modeled with a ramp rate.
-Doug
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v4 3/4] regulator: Add support for a fixed delay after voltage increases
[not found] ` <20160906190504.GA79728-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2016-09-12 18:36 ` Mark Brown
@ 2016-09-16 12:28 ` Rob Herring
1 sibling, 0 replies; 4+ messages in thread
From: Rob Herring @ 2016-09-16 12:28 UTC (permalink / raw)
To: Matthias Kaehlcke
Cc: Mark Brown, lgirdwood-Re5JQEeQqe8AvxtiuMwx3w, Douglas Anderson,
briannorris-F7+t8E8rja9g9hUCZPvPmw, javier-0uQlZySMnqxg9hUCZPvPmw,
mark.rutland-5wv7dgnIgG8, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA
On Tue, Sep 06, 2016 at 12:05:04PM -0700, Matthias Kaehlcke wrote:
> The target voltage isn't necessarily reached inmediately after
> requesting a regulator to change the voltage. In some cases the
> ramp_delay can be used to calculate the stabilisation time, in others
> there is no direct relationship between the delta in the voltage and
> the stabilisation time. This change introduces the device tree property
> "regulator-settle-time-up-us" which allows to specify a fixed delay
> after a voltage increase.
>
> We don't add an option of a fixed delay on the way down for now because
> the way down is probably modelled best with a ramp rate, not a fixed
> delay.
>
> Signed-off-by: Matthias Kaehlcke <mka-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
> Signed-off-by: Douglas Anderson <dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
>
> ---
> Changes in v4:
> - Moved from PWM regulator to regulator core
> - Added 'regulator' prefix to device tree property
>
> .../devicetree/bindings/regulator/regulator.txt | 2 ++
> drivers/regulator/core.c | 24 +++++++++++++---------
> drivers/regulator/of_regulator.c | 4 ++++
> include/linux/regulator/machine.h | 2 ++
> 4 files changed, 22 insertions(+), 10 deletions(-)
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-09-16 12:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-06 19:05 [PATCH v4 3/4] regulator: Add support for a fixed delay after voltage increases Matthias Kaehlcke
[not found] ` <20160906190504.GA79728-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2016-09-12 18:36 ` Mark Brown
2016-09-15 12:51 ` Doug Anderson
2016-09-16 12:28 ` Rob Herring
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).