diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2020-07-21 21:09:00 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2020-07-22 23:33:57 +0300 |
commit | 00067ca5331e81f609d0e1255d4807ba24488aad (patch) | |
tree | d203773c050d0779d6d0fcf9c4bbbe2b5f0eeeeb /drivers/soc/samsung/Kconfig | |
parent | 1481fd71398f6537fbcc26aa5a4aa360679822b8 (diff) | |
download | linux-00067ca5331e81f609d0e1255d4807ba24488aad.tar.xz |
soc: samsung: exynos-regulator-coupler: Add simple voltage coupler for Exynos5800
Add a simple custom voltage regulator coupler for Exynos5800 SoCs, which
require coupling between "vdd_arm" and "vdd_int" regulators. This coupler
ensures that the voltage values don't go below the bootloader-selected
operation point during the boot process until the clients set their
constraints. It is achieved by assuming minimal voltage value equal to
the current value if no constraints are set. This also ensures proper
voltage balancing if any of the client driver is missing.
The balancing code comes from the regulator/core.c with the additional
logic for handling regulators without client constraints applied added.
Link: https://lore.kernel.org/r/20200721180900.13844-5-krzk@kernel.org
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/soc/samsung/Kconfig')
-rw-r--r-- | drivers/soc/samsung/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/soc/samsung/Kconfig b/drivers/soc/samsung/Kconfig index c7a2003687c7..264185664594 100644 --- a/drivers/soc/samsung/Kconfig +++ b/drivers/soc/samsung/Kconfig @@ -37,4 +37,7 @@ config EXYNOS_PM_DOMAINS bool "Exynos PM domains" if COMPILE_TEST depends on PM_GENERIC_DOMAINS || COMPILE_TEST +config EXYNOS_REGULATOR_COUPLER + bool "Exynos SoC Regulator Coupler" if COMPILE_TEST + depends on ARCH_EXYNOS || COMPILE_TEST endif |