]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/media/i2c/ov2659.txt
Merge remote-tracking branch 'kgdb/kgdb-next'
[karo-tx-linux.git] / Documentation / devicetree / bindings / media / i2c / ov2659.txt
1 * OV2659 1/5-Inch 2Mp SOC Camera
2
3 The Omnivision OV2659 is a 1/5-inch SOC camera, with an active array size of
4 1632H x 1212V. It is programmable through a SCCB. The OV2659 sensor supports
5 multiple resolutions output, such as UXGA, SVGA, 720p. It also can support
6 YUV422, RGB565/555 or raw RGB output formats.
7
8 Required Properties:
9 - compatible: Must be "ovti,ov2659"
10 - reg: I2C slave address
11 - clocks: reference to the xvclk input clock.
12 - clock-names: should be "xvclk".
13 - link-frequencies: target pixel clock frequency.
14
15 For further reading on port node refer to
16 Documentation/devicetree/bindings/media/video-interfaces.txt.
17
18 Example:
19
20         i2c0@1c22000 {
21                 ...
22                 ...
23                  ov2659@30 {
24                         compatible = "ovti,ov2659";
25                         reg = <0x30>;
26
27                         clocks = <&clk_ov2659 0>;
28                         clock-names = "xvclk";
29
30                         port {
31                                 ov2659_0: endpoint {
32                                         remote-endpoint = <&vpfe_ep>;
33                                         link-frequencies = /bits/ 64 <70000000>;
34                                 };
35                         };
36                 };
37                 ...
38         };