1# Copyright (c) 2023 Martin Kiepfer
2# SPDX -License-Identifier: Apache-2.0
3
4config REGULATOR_AXP192
5	bool "X-Power AXP192 PMIC regulator driver"
6	default y
7	depends on DT_HAS_X_POWERS_AXP192_REGULATOR_ENABLED
8	depends on DT_HAS_X_POWERS_AXP192_ENABLED
9	select I2C
10	select MFD
11	help
12	  Enable the AXP PMIC regulator driver
13
14if REGULATOR_AXP192
15
16config REGULATOR_AXP192_INIT_PRIORITY
17	int "AXP192 regulator driver init priority"
18	default 76
19	help
20	  Init priority for the axp192 regulator driver. It must be
21	  greater than MFD_INIT_PRIORITY.
22
23endif
24