1* Sony IMX323 DVP sensor 2 3Required Properties: 4- compatible: should be "sony,imx323" 5- clocks: reference to the 37.125M 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&i2c3: imx323@1a { 18 compatible = "sony,imx323"; 19 reg = <0x1a>; 20 clocks = <&cru SCLK_CIF_OUT>; 21 clock-names = "xvclk"; 22 avdd-supply = <&vcc2v8_dvp>; 23 dovdd-supply = <&vcc1v8_dvp>; 24 dvdd-supply = <&vdd1v5_dvp>; 25 pwdn-gpios = <&gpio2 RK_PC4 GPIO_ACTIVE_HIGH>; 26 reset-gpios = <&gpio2 RK_PC5 GPIO_ACTIVE_HIGH>; 27 pinctrl-names = "default"; 28 pinctrl-0 = <&dvp_d0d1_m0 &dvp_d2d9_m0 29 &dvp_d10d11_m0 &cif_clkout_m0>; 30 port { 31 imx323_out: endpoint { 32 remote-endpoint = <&isp0_dvp_in>; 33 }; 34 }; 35}; 36