diff options
author | Dmitry Osipenko <digetx@gmail.com> | 2021-05-28 02:54:00 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2021-06-01 12:13:30 +0200 |
commit | 380d2b2d5a0491e47dfa250b40e3d849a922871d (patch) | |
tree | f8a9fe33fd48baa69b263ccd533b472c9b20fac2 /include/linux/regulator/driver.h | |
parent | 6efb943b8616ec53a5e444193dccf1af9ad627b5 (diff) | |
download | linux-380d2b2d5a0491e47dfa250b40e3d849a922871d.tar.gz linux-380d2b2d5a0491e47dfa250b40e3d849a922871d.tar.bz2 linux-380d2b2d5a0491e47dfa250b40e3d849a922871d.zip |
regulator: core: Add regulator_sync_voltage_rdev()
Some NVIDIA Tegra devices use a CPU soft-reset method for the reboot and
in this case we need to restore the coupled voltages to the state that is
suitable for hardware during boot. Add new regulator_sync_voltage_rdev()
helper which is needed by regulator drivers in order to sync voltage of
a coupled regulators.
Acked-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'include/linux/regulator/driver.h')
-rw-r--r-- | include/linux/regulator/driver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index 4ea520c248e9..35e5a611db81 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h @@ -540,6 +540,7 @@ int regulator_set_current_limit_regmap(struct regulator_dev *rdev, int regulator_get_current_limit_regmap(struct regulator_dev *rdev); void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data); int regulator_set_ramp_delay_regmap(struct regulator_dev *rdev, int ramp_delay); +int regulator_sync_voltage_rdev(struct regulator_dev *rdev); /* * Helper functions intended to be used by regulator drivers prior registering |