2020-08-03 19:07:16 +02: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 16:26:12 +02: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 00:43:38 +02:00
|
|
|
config REGULATOR_SHELL
|
|
|
|
bool "Regulator shell"
|
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable regulator shell framework, for interacting with regulators via
|
|
|
|
the shell interface
|
|
|
|
|
2020-08-03 19:07:16 +02:00
|
|
|
module = REGULATOR
|
|
|
|
module-str = regulator
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2023-06-01 23:57:45 +02:00
|
|
|
source "drivers/regulator/Kconfig.axp192"
|
2023-05-22 19:07:23 +02:00
|
|
|
source "drivers/regulator/Kconfig.adp5360"
|
2023-06-21 21:55:02 +02:00
|
|
|
source "drivers/regulator/Kconfig.cp9314"
|
2023-10-27 13:01:50 +02:00
|
|
|
source "drivers/regulator/Kconfig.da1469x"
|
2022-12-19 12:00:38 +01:00
|
|
|
source "drivers/regulator/Kconfig.fake"
|
2020-08-03 19:07:16 +02:00
|
|
|
source "drivers/regulator/Kconfig.fixed"
|
2023-04-24 09:00:20 +02:00
|
|
|
source "drivers/regulator/Kconfig.gpio"
|
2023-10-30 12:55:22 +01:00
|
|
|
source "drivers/regulator/Kconfig.max20335"
|
2023-01-12 11:02:06 +01:00
|
|
|
source "drivers/regulator/Kconfig.npm1100"
|
2023-03-13 17:33:07 +01:00
|
|
|
source "drivers/regulator/Kconfig.npm1300"
|
2022-12-12 12:27:31 +01:00
|
|
|
source "drivers/regulator/Kconfig.npm6001"
|
2022-11-11 12:55:56 +01:00
|
|
|
source "drivers/regulator/Kconfig.pca9420"
|
2023-02-02 10:56:56 +01:00
|
|
|
source "drivers/regulator/Kconfig.rpi_pico"
|
2023-03-28 22:34:12 +02:00
|
|
|
source "drivers/regulator/Kconfig.nxp_vref"
|
2020-08-03 19:07:16 +02:00
|
|
|
|
|
|
|
endif # REGULATOR
|