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