zephyr/drivers/regulator/Kconfig.rpi_pico
TOKITA Hiroshi 47f52bba42 drivers: regulator: add support for RaspberryPi Pico regulator.
Add support for rpi_pico regulator.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
2023-03-02 21:14:34 +01:00

20 lines
533 B
Plaintext

# Copyright (c) 2023 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
# SPDX-License-Identifier: Apache-2.0
config REGULATOR_RPI_PICO
bool "RaspberryPi Pico regulator driver"
default y
depends on DT_HAS_RASPBERRYPI_CORE_SUPPLY_REGULATOR_ENABLED
help
Enable support for the RaspberryPi Pico regulator.
if REGULATOR_RPI_PICO
config REGULATOR_RPI_PICO_INIT_PRIORITY
int "RaspberryPi Pico regulator driver init priority"
default KERNEL_INIT_PRIORITY_DEVICE
help
Init priority for the RaspberryPi Pico regulator driver.
endif