2020-08-04 01:07:16 +08:00
|
|
|
# Copyright 2020 Peter Bigot Consulting, LLC
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig REGULATOR
|
|
|
|
bool "Regulator drivers"
|
|
|
|
help
|
|
|
|
Include drivers for current/voltage regulators in system config
|
|
|
|
|
|
|
|
if REGULATOR
|
|
|
|
|
2023-04-06 22:26:12 +08:00
|
|
|
config REGULATOR_THREAD_SAFE_REFCNT
|
|
|
|
bool "Thread-safe reference counting"
|
|
|
|
depends on MULTITHREADING
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
When enabled, regulator reference counting is thread-safe.
|
|
|
|
|
2022-08-24 06:43:38 +08:00
|
|
|
config REGULATOR_SHELL
|
|
|
|
bool "Regulator shell"
|
|
|
|
default y
|
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable regulator shell framework, for interacting with regulators via
|
|
|
|
the shell interface
|
|
|
|
|
2020-08-04 01:07:16 +08:00
|
|
|
module = REGULATOR
|
|
|
|
module-str = regulator
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2023-05-23 01:07:23 +08:00
|
|
|
source "drivers/regulator/Kconfig.adp5360"
|
2022-12-19 19:00:38 +08:00
|
|
|
source "drivers/regulator/Kconfig.fake"
|
2020-08-04 01:07:16 +08:00
|
|
|
source "drivers/regulator/Kconfig.fixed"
|
2023-01-12 18:02:06 +08:00
|
|
|
source "drivers/regulator/Kconfig.npm1100"
|
2023-03-14 00:33:07 +08:00
|
|
|
source "drivers/regulator/Kconfig.npm1300"
|
2022-12-12 19:27:31 +08:00
|
|
|
source "drivers/regulator/Kconfig.npm6001"
|
2022-11-11 19:55:56 +08:00
|
|
|
source "drivers/regulator/Kconfig.pca9420"
|
2023-02-02 17:56:56 +08:00
|
|
|
source "drivers/regulator/Kconfig.rpi_pico"
|
2020-08-04 01:07:16 +08:00
|
|
|
|
|
|
|
endif # REGULATOR
|