The ov5640 sensor does not support lanes reconfiguration according to version of the datasheet I have (version 2.03) and the driver does not parse the properties to try to reconfigure them. Fix the properties values in the camera and cci node. Signed-off-by: Jacopo Mondi <jacopo+renesas@xxxxxxxxxx> --- Loic, I see you added the camera nodes in 39e0ce6cd1bf ("arm64: dts: qcom: apq8016-sbc: Add CCI/Sensor nodes") Do you have any idea how lanes could be swapped if, from my understanding, nor the sensor nor the driver supports that ? Thanks j --- arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi index 8a4b790aa7ff..fe6613676e45 100644 --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi @@ -591,8 +591,8 @@ ports { port@0 { reg = <0>; csiphy0_ep: endpoint { - clock-lanes = <1>; - data-lanes = <0 2>; + clock-lanes = <0>; + data-lanes = <1 2>; remote-endpoint = <&ov5640_ep>; status = "okay"; }; @@ -627,8 +627,8 @@ camera_rear@3b { port { ov5640_ep: endpoint { - clock-lanes = <1>; - data-lanes = <0 2>; + clock-lanes = <0>; + data-lanes = <1 2>; remote-endpoint = <&csiphy0_ep>; }; }; -- 2.27.0