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"
|
2022-09-27 00:53:00 +08:00
|
|
|
select ONOFF
|
2020-08-04 01:07:16 +08:00
|
|
|
help
|
|
|
|
Include drivers for current/voltage regulators in system config
|
|
|
|
|
|
|
|
if REGULATOR
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
source "drivers/regulator/Kconfig.fixed"
|
2021-09-22 21:55:23 +08:00
|
|
|
source "drivers/regulator/Kconfig.pmic"
|
2020-08-04 01:07:16 +08:00
|
|
|
|
|
|
|
endif # REGULATOR
|