You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
551 B
23 lines
551 B
menuconfig RT_USING_REGULATOR
|
|
bool "Using Voltage and Current Regulator"
|
|
select RT_USING_ADT
|
|
select RT_USING_ADT_REF
|
|
depends on RT_USING_DM
|
|
default n
|
|
|
|
config RT_REGULATOR_FIXED
|
|
bool "Fixed regulator support"
|
|
depends on RT_USING_REGULATOR
|
|
depends on RT_USING_PIN
|
|
depends on RT_USING_PINCTRL
|
|
default y
|
|
|
|
config RT_REGULATOR_GPIO
|
|
bool "GPIO regulator support"
|
|
depends on RT_USING_REGULATOR
|
|
depends on RT_USING_PIN
|
|
default y
|
|
|
|
if RT_USING_REGULATOR
|
|
osource "$(SOC_DM_REGULATOR_DIR)/Kconfig"
|
|
endif
|
|
|