ov2659.txt 930 B

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