ov2685.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. * Omnivision OV2685 MIPI CSI-2 sensor
  2. Required Properties:
  3. - compatible: shall be "ovti,ov2685"
  4. - clocks: reference to the xvclk input clock
  5. - clock-names: shall be "xvclk"
  6. - avdd-supply: Analog voltage supply, 2.8 volts
  7. - dovdd-supply: Digital I/O voltage supply, 1.8 volts
  8. - dvdd-supply: Digital core voltage supply, 1.8 volts
  9. - reset-gpios: Low active reset gpio
  10. The device node shall contain one 'port' child node with an
  11. 'endpoint' subnode for its digital output video port,
  12. in accordance with the video interface bindings defined in
  13. Documentation/devicetree/bindings/media/video-interfaces.txt.
  14. The endpoint optional property 'data-lanes' shall be "<1>".
  15. Example:
  16. &i2c7 {
  17. ov2685: camera-sensor@3c {
  18. compatible = "ovti,ov2685";
  19. reg = <0x3c>;
  20. pinctrl-names = "default";
  21. pinctrl-0 = <&clk_24m_cam>;
  22. clocks = <&cru SCLK_TESTCLKOUT1>;
  23. clock-names = "xvclk";
  24. avdd-supply = <&pp2800_cam>;
  25. dovdd-supply = <&pp1800>;
  26. dvdd-supply = <&pp1800>;
  27. reset-gpios = <&gpio2 3 GPIO_ACTIVE_LOW>;
  28. port {
  29. ucam_out: endpoint {
  30. remote-endpoint = <&mipi_in_ucam>;
  31. data-lanes = <1>;
  32. };
  33. };
  34. };
  35. };