mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
00067ca533
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>
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Samsung SoC drivers
|
|
#
|
|
menuconfig SOC_SAMSUNG
|
|
bool "Samsung SoC driver support" if COMPILE_TEST
|
|
|
|
if SOC_SAMSUNG
|
|
|
|
config EXYNOS_ASV
|
|
bool "Exynos Adaptive Supply Voltage support" if COMPILE_TEST
|
|
depends on (ARCH_EXYNOS && EXYNOS_CHIPID) || COMPILE_TEST
|
|
select EXYNOS_ASV_ARM if ARM && ARCH_EXYNOS
|
|
|
|
# There is no need to enable these drivers for ARMv8
|
|
config EXYNOS_ASV_ARM
|
|
bool "Exynos ASV ARMv7-specific driver extensions" if COMPILE_TEST
|
|
depends on EXYNOS_ASV
|
|
|
|
config EXYNOS_CHIPID
|
|
bool "Exynos Chipid controller driver" if COMPILE_TEST
|
|
depends on ARCH_EXYNOS || COMPILE_TEST
|
|
select MFD_SYSCON
|
|
select SOC_BUS
|
|
|
|
config EXYNOS_PMU
|
|
bool "Exynos PMU controller driver" if COMPILE_TEST
|
|
depends on ARCH_EXYNOS || ((ARM || ARM64) && COMPILE_TEST)
|
|
select EXYNOS_PMU_ARM_DRIVERS if ARM && ARCH_EXYNOS
|
|
|
|
# There is no need to enable these drivers for ARMv8
|
|
config EXYNOS_PMU_ARM_DRIVERS
|
|
bool "Exynos PMU ARMv7-specific driver extensions" if COMPILE_TEST
|
|
depends on EXYNOS_PMU
|
|
|
|
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
|