1# Copyright (c) 2023 Nordic Semiconductor ASA 2# SPDX -License-Identifier: Apache-2.0 3 4config REGULATOR_NPM1300 5 bool "nPM1300 PMIC regulator driver" 6 default y 7 depends on DT_HAS_NORDIC_NPM1300_REGULATOR_ENABLED 8 select I2C 9 select MFD 10 help 11 Enable the Nordic nPM1300 PMIC regulator driver 12 13if REGULATOR_NPM1300 14 15config REGULATOR_NPM1300_COMMON_INIT_PRIORITY 16 int "nPM1300 regulator driver init priority (common part)" 17 default 75 18 help 19 Init priority for the Nordic nPM1300 regulator driver (common part). 20 It must be greater than I2C init priority. 21 22config REGULATOR_NPM1300_INIT_PRIORITY 23 int "nPM1300 regulator driver init priority" 24 default 76 25 help 26 Init priority for the Nordic nPM1300 regulator driver. It must be 27 greater than REGULATOR_NPM1300_COMMON_INIT_PRIORITY. 28 29endif 30