Hello,
I’m currently working on custom board and I am trying to bring up new camera.
My camera’s power enable pins controlled by Jetson TX1 using TCA9539.
But I dont know how to spesify correct values in regulator node for this camera.
I have 2 signal’s which are comes from TCA9539’s P06 and P13.
Currently regulator node’s are :
en_vdd_cam: regulator@5 {
compatible = "regulator-fixed-sync";
reg = <5>;
regulator-name = "en-vdd-cam";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
gpio = <&tca9539_77 9 1>;
enable-active-high;
};
en_vdd_cam_1v2: regulator@209 {
compatible = "regulator-fixed-sync";
reg = <209>;
regulator-name = "en-vdd-cam-1v2";
regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>;
vin-supply = <&vdd_3v3>;
gpio = <&tca9539_77 3 1>;
enable-active-high;
};
What is the correct values of “reg” and “gpio” properties for P06 and P13, and how can I find these values for another pins of TCA9539 ?
Thanks for your answers.