imx274.txt 957 B

123456789101112131415161718192021222324252627282930313233
  1. * Sony 1/2.5-Inch 8.51Mp CMOS Digital Image Sensor
  2. The Sony imx274 is a 1/2.5-inch CMOS active pixel digital image sensor with
  3. an active array size of 3864H x 2202V. It is programmable through I2C
  4. interface. The I2C address is fixed to 0x1a as per sensor data sheet.
  5. Image data is sent through MIPI CSI-2, which is configured as 4 lanes
  6. at 1440 Mbps.
  7. Required Properties:
  8. - compatible: value should be "sony,imx274" for imx274 sensor
  9. - reg: I2C bus address of the device
  10. Optional Properties:
  11. - reset-gpios: Sensor reset GPIO
  12. The imx274 device node should contain one 'port' child node with
  13. an 'endpoint' subnode. For further reading on port node refer to
  14. Documentation/devicetree/bindings/media/video-interfaces.txt.
  15. Example:
  16. sensor@1a {
  17. compatible = "sony,imx274";
  18. reg = <0x1a>;
  19. #address-cells = <1>;
  20. #size-cells = <0>;
  21. reset-gpios = <&gpio_sensor 0 0>;
  22. port {
  23. sensor_out: endpoint {
  24. remote-endpoint = <&csiss_in>;
  25. };
  26. };
  27. };