The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/media/i2c/imx274.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: d56dd70510e203474639e6da4b39bd9a


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.