Hello,
The Android supports OV5645 as a front camera and the latest Debian release supports it as rear camera.
What should be changed in order to follow Android configuration?
The changes i have done till now are in blsp_i2c6 section:
camera@78 {
compatible = “ovti,ov5645”;
reg = <0x78>;
enable-gpios = <&msmgpio 33 0>;
reset-gpios = <&msmgpio 28 1>;
pinctrl-names = "default";
pinctrl-0 = <&camera_front_default>;
clocks = <&gcc GCC_CAMSS_MCLK1_CLK>;
clock-names = "xclk";
vdddo-supply = <&camera_vdddo_1v8>;
vdda-supply = <&camera_vdda_2v8>;
vddd-supply = <&camera_vddd_1v5>;
port {
ov5645_ep: endpoint {
clock-lanes = <1>;
data-lanes = <0 2>;
remote-endpoint = <&csiphy0_ep>;
};
};
};
The camera was recognized and everything works except there is no preview and no captured image.
Thank you.