Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * This include file ties a VIN interface with a single ov7725 sensor on
0004  * the iWave-RZ/G1H Qseven board development platform connected with the
0005  * camera daughter board.
0006  *
0007  * Copyright (C) 2020 Renesas Electronics Corp.
0008  */
0009 
0010 #define CAM_ENABLED     1
0011 
0012 &CAM_PARENT_I2C {
0013         status = "okay";
0014 
0015         ov7725@21 {
0016                 compatible = "ovti,ov7725";
0017                 reg = <0x21>;
0018                 clocks = <&MCLK_CAM>;
0019                 status = "okay";
0020 
0021                 port {
0022                         CAM_EP: endpoint {
0023                                 bus-width = <8>;
0024                                 bus-type = <6>;
0025                                 remote-endpoint = <&VIN_EP>;
0026                         };
0027                 };
0028         };
0029 };