xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/media/i2c/ov2735.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1* Omnivision OV2735 MIPI CSI-2 sensor
2
3Required Properties:
4- compatible: should be "ovti,ov2735"
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		ov2735: ov2735@3c {
22			compatible = "ovti,ov2735";
23			reg = <0x3c>;
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 2>;
38				};
39			};
40		};
41		...
42	};