1* Omnivision OV7750 MIPI CSI-2 sensor 2 3Required Properties: 4- compatible: should be "ovti,ov7750" 5- clocks: reference to the 24M xvclk input clock. 6- clock-names: should be "xvclk". 7- dovdd-supply: Digital I/O voltage supply, 1.8 volts 8- avdd-supply: Analog voltage supply, 2.8 volts 9- dvdd-supply: Digital core voltage supply, 1.2 volts 10- reset-gpios: Low active reset gpio 11 12The device node must contain one 'port' child node for its digital output 13video port, in accordance with the video interface bindings defined in 14Documentation/devicetree/bindings/media/video-interfaces.txt. 15 16Example: 17 18 i2c0@1c22000 { 19 ... 20 ... 21 ov7750: ov7750@60 { 22 compatible = "ovti,ov7750"; 23 reg = <0x60>; 24 25 clocks = <&cru SCLK_CIF_OUT>; 26 clock-names = "xvclk"; 27 28 avdd-supply = <&vcc2v8_dvp>; 29 dovdd-supply = <&vcc1v8_dvp>; 30 dvdd-supply = <&vcc1v8_dvp>; 31 32 pwdn-gpios = <&gpio2 14 GPIO_ACTIVE_HIGH>; 33 34 port { 35 ucam_out: endpoint { 36 remote-endpoint = <&mipi_in_ucam>; 37 data-lanes = <1>; 38 }; 39 }; 40 }; 41 ... 42 };