zephyr/drivers/regulator/Kconfig.mpm54304
Elias Speinle 022cfdff98 drivers: regulator: add basic mps mpm54304 driver
add driver for Monolithic Power Systems MPM54304 with basic
functionality to enable/disable the buck regulators

Signed-off-by: Elias Speinle <e.speinle@vogl-electronic.com>
2024-09-03 14:39:52 +01:00

21 lines
513 B
Text

# Copyright 2024 Vogl Electronic GmbH
# SPDX-License-Identifier: Apache-2.0
config REGULATOR_MPM54304
bool "MPM54304 DC/DC step-down power module"
default y
depends on DT_HAS_MPS_MPM54304_ENABLED
select I2C
help
Enable MPM54304 DC/DC step-down power module support.
if REGULATOR_MPM54304
config REGULATOR_MPM54304_INIT_PRIORITY
int "MPM54304 regulator driver init priority"
default 85
help
Init priority for the MPS MPM54304 regulator driver.
It must be greater than I2C init priority.
endif