arm64: dts: ti: k3-am625-beagleplay: Add required voltage supplies for OV5640

The device tree overlay for OV5640 requires following voltage
supplies:

AVDD-supply: Analog voltage supply, 2.8 volts
DOVDD-supply: Digital I/O voltage supply, 1.8 volts
DVDD-supply: Digital core voltage supply, 1.5 volts

Add them in the overlay.

Signed-off-by: Rishikesh Donadkar <r-donadkar@ti.com>
Reviewed-by: Devarsh Thakkar <devarsht@ti.com>
Link: https://lore.kernel.org/r/20250506045225.1246873-2-r-donadkar@ti.com
Signed-off-by: Nishanth Menon <nm@ti.com>
This commit is contained in:
Rishikesh Donadkar 2025-05-06 10:22:24 +05:30 committed by Nishanth Menon
parent 30ce5f163e
commit a5da12f37b

View File

@ -15,6 +15,33 @@ clk_ov5640_fixed: ov5640-xclk {
#clock-cells = <0>;
clock-frequency = <12000000>;
};
reg_2p8v: regulator-2p8v {
compatible = "regulator-fixed";
regulator-name = "2P8V";
regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>;
vin-supply = <&vdd_3v3>;
regulator-always-on;
};
reg_1p8v: regulator-1p8v {
compatible = "regulator-fixed";
regulator-name = "1P8V";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
vin-supply = <&vdd_3v3>;
regulator-always-on;
};
reg_1p5v: regulator-1p5v {
compatible = "regulator-fixed";
regulator-name = "1P5V";
regulator-min-microvolt = <1500000>;
regulator-max-microvolt = <1500000>;
vin-supply = <&vdd_3v3>;
regulator-always-on;
};
};
&main_gpio0 {
@ -39,6 +66,10 @@ ov5640: camera@3c {
clocks = <&clk_ov5640_fixed>;
clock-names = "xclk";
AVDD-supply = <&reg_2p8v>;
DOVDD-supply = <&reg_1p8v>;
DVDD-supply = <&reg_1p5v>;
port {
csi2_cam0: endpoint {
remote-endpoint = <&csi2rx0_in_sensor>;