boards: shields: nxp_btb44_ov5640: Add some endpoint properties

The ov5640 camera driver now supports both MIPI CSI2 (DPHY) and DVP
modes. It is in MIPI CSI2 mode in this overlay. Add bus-type property
for this. In this mode, data-lanes property is required as well.

Signed-off-by: Phi Bang Nguyen <phibang.nguyen@nxp.com>
This commit is contained in:
Phi Bang Nguyen 2024-10-15 11:26:16 +02:00 committed by Henrik Brix Andersen
parent c1627d2819
commit 317f050116

View file

@ -4,6 +4,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/dt-bindings/video/video-interfaces.h>
/{
chosen {
zephyr,camera = &nxp_csi;
@ -22,6 +24,8 @@
port {
ov5640_ep_out: endpoint {
remote-endpoint-label = "mipi_csi2rx_ep_in";
bus-type = <VIDEO_BUS_TYPE_CSI2_DPHY>;
data-lanes = <1 2>;
};
};
};
@ -38,6 +42,7 @@
mipi_csi2rx_ep_in: endpoint {
remote-endpoint-label = "ov5640_ep_out";
data-lanes = <1 2>;
};
};
};