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