1# Copyright 2024 Vogl Electronic GmbH
2# SPDX-License-Identifier: Apache-2.0
3
4config REGULATOR_MPM54304
5	bool "MPM54304 DC/DC step-down power module"
6	default y
7	depends on DT_HAS_MPS_MPM54304_ENABLED
8	select I2C
9	help
10	  Enable MPM54304 DC/DC step-down power module support.
11
12if REGULATOR_MPM54304
13
14config REGULATOR_MPM54304_INIT_PRIORITY
15	int "MPM54304 regulator driver init priority"
16	default 85
17	help
18	  Init priority for the MPS MPM54304 regulator driver.
19	  It must be greater than I2C init priority.
20
21endif
22