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:
parent
c1627d2819
commit
317f050116
1 changed files with 5 additions and 0 deletions
|
|
@ -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>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue