mt9p031.txt 938 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. * Aptina 1/2.5-Inch 5Mp CMOS Digital Image Sensor
  2. The Aptina MT9P031 is a 1/2.5-inch CMOS active pixel digital image sensor with
  3. an active array size of 2592H x 1944V. It is programmable through a simple
  4. two-wire serial interface.
  5. Required Properties:
  6. - compatible: value should be either one among the following
  7. (a) "aptina,mt9p031" for mt9p031 sensor
  8. (b) "aptina,mt9p031m" for mt9p031m sensor
  9. - input-clock-frequency: Input clock frequency.
  10. - pixel-clock-frequency: Pixel clock frequency.
  11. Optional Properties:
  12. - reset-gpios: Chip reset GPIO
  13. For further reading on port node refer to
  14. Documentation/devicetree/bindings/media/video-interfaces.txt.
  15. Example:
  16. i2c0@1c22000 {
  17. ...
  18. ...
  19. mt9p031@5d {
  20. compatible = "aptina,mt9p031";
  21. reg = <0x5d>;
  22. reset-gpios = <&gpio3 30 0>;
  23. port {
  24. mt9p031_1: endpoint {
  25. input-clock-frequency = <6000000>;
  26. pixel-clock-frequency = <96000000>;
  27. };
  28. };
  29. };
  30. ...
  31. };