2023-03-14 00:33:07 +08:00
|
|
|
# Copyright (c) 2023 Nordic Semiconductor ASA
|
2024-05-08 15:59:43 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2023-03-14 00:33:07 +08:00
|
|
|
|
|
|
|
config REGULATOR_NPM1300
|
|
|
|
bool "nPM1300 PMIC regulator driver"
|
|
|
|
default y
|
|
|
|
depends on DT_HAS_NORDIC_NPM1300_REGULATOR_ENABLED
|
|
|
|
select I2C
|
2023-05-31 20:10:52 +08:00
|
|
|
select MFD
|
2023-03-14 00:33:07 +08:00
|
|
|
help
|
|
|
|
Enable the Nordic nPM1300 PMIC regulator driver
|
|
|
|
|
|
|
|
if REGULATOR_NPM1300
|
|
|
|
|
|
|
|
config REGULATOR_NPM1300_COMMON_INIT_PRIORITY
|
|
|
|
int "nPM1300 regulator driver init priority (common part)"
|
2023-10-18 19:46:15 +08:00
|
|
|
default 85
|
2023-03-14 00:33:07 +08:00
|
|
|
help
|
|
|
|
Init priority for the Nordic nPM1300 regulator driver (common part).
|
|
|
|
It must be greater than I2C init priority.
|
|
|
|
|
|
|
|
config REGULATOR_NPM1300_INIT_PRIORITY
|
|
|
|
int "nPM1300 regulator driver init priority"
|
2023-10-18 19:46:15 +08:00
|
|
|
default 86
|
2023-03-14 00:33:07 +08:00
|
|
|
help
|
|
|
|
Init priority for the Nordic nPM1300 regulator driver. It must be
|
|
|
|
greater than REGULATOR_NPM1300_COMMON_INIT_PRIORITY.
|
|
|
|
|
|
|
|
endif
|