46bbe052d3
This add regulator driver for Smartbond DA1469X SOC. Driver can control VDD, V14, V18, V18P, V30 rails, full voltage range supported by SOC is covered. For VDD, V14, V18, V18P DCDC can be configured. Special VDD_CLAMP (always on) and VDD_SLEPP are added to allow configuration of VDD in sleep modes. Signed-off-by: Jerzy Kasenberg <jerzy.kasenberg@codecoup.pl>
17 lines
503 B
Plaintext
17 lines
503 B
Plaintext
# Copyright 2023 Renesas Electronics Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config REGULATOR_DA1469X
|
|
bool "DA1469X regulators driver"
|
|
default y
|
|
depends on DT_HAS_RENESAS_SMARTBOND_REGULATOR_ENABLED
|
|
help
|
|
Enable support for the Smartbond DA1469x regulators.
|
|
|
|
config REGULATOR_DA1469X_INIT_PRIORITY
|
|
int "Renesas DA1469x regulators driver init priority"
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
depends on REGULATOR_DA1469X
|
|
help
|
|
Init priority for the Renesas DA1469x regulators driver.
|