]> git.baikalelectronics.ru Git - kernel.git/commit
regulator: core: Use ktime_get_boottime() to determine how long a regulator was off
authorMatthias Kaehlcke <mka@chromium.org>
Thu, 23 Feb 2023 00:33:30 +0000 (00:33 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Mar 2023 08:34:25 +0000 (09:34 +0100)
commit43f4264807bc516c01802eada52cd4df966d9a58
tree2359c49082390aee3b097660c06eba216a54206d
parent14d386372284404ddfa4f831ad8fe2d956cfad73
regulator: core: Use ktime_get_boottime() to determine how long a regulator was off

commit 70210e146bfce5a6d76b562b56d706d4baee722f upstream.

For regulators with 'off-on-delay-us' the regulator framework currently
uses ktime_get() to determine how long the regulator has been off
before re-enabling it (after a delay if needed). A problem with using
ktime_get() is that it doesn't account for the time the system is
suspended. As a result a regulator with a longer 'off-on-delay' (e.g.
500ms) that was switched off during suspend might still incurr in a
delay on resume before it is re-enabled, even though the regulator
might have been off for hours. ktime_get_boottime() accounts for
suspend time, use it instead of ktime_get().

Fixes: a8d08f352abe ("regulator: core: Fix off_on_delay handling")
Cc: stable@vger.kernel.org # 5.13+
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Link: https://lore.kernel.org/r/20230223003301.v2.1.I9719661b8eb0a73b8c416f9c26cf5bd8c0563f99@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/regulator/core.c