ARM: dts: msm: add DBO3 regulator device for Kalama boards

Add a fixed regulator device for the DBO3 buck-boost regulator.
It is enabled via PM8550 GPIO 9 and outputs 3.6 V.

Change-Id: Ib831238aed99d8a95b3eee182463ac0a425b1749
This commit is contained in:
David Collins
2022-01-14 15:13:44 -08:00
parent fc7939f394
commit 516b0bcafe

View File

@@ -1,3 +1,4 @@
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
#include "pm8550.dtsi"
@@ -42,3 +43,15 @@
};
};
};
&soc {
DBO3: regulator-dbo3 {
compatible = "qti-regulator-fixed";
regulator-name = "dbo3";
regulator-min-microvolt = <3600000>;
regulator-max-microvolt = <3600000>;
gpio = <&pm8550_gpios 9 GPIO_ACTIVE_HIGH>;
regulator-enable-ramp-delay = <1500>;
enable-active-high;
};
};