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/aptina,mt9v111.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 * Aptina MT9V111 CMOS sensor
    2 ----------------------------
    3 
    4 The Aptina MT9V111 is a 1/4-Inch VGA-format digital image sensor with a core
    5 based on Aptina MT9V011 sensor and an integrated Image Flow Processor (IFP).
    6 
    7 The sensor has an active pixel array of 640x480 pixels and can output a number
    8 of image resolution and formats controllable through a simple two-wires
    9 interface.
   10 
   11 Required properties:
   12 --------------------
   13 
   14 - compatible: shall be "aptina,mt9v111".
   15 - clocks: reference to the system clock input provider.
   16 
   17 Optional properties:
   18 --------------------
   19 
   20 - enable-gpios: output enable signal, pin name "OE#". Active low.
   21 - standby-gpios: low power state control signal, pin name "STANDBY".
   22   Active high.
   23 - reset-gpios: chip reset signal, pin name "RESET#". Active low.
   24 
   25 The device node must contain one 'port' child node with one 'endpoint' child
   26 sub-node for its digital output video port, in accordance with the video
   27 interface bindings defined in:
   28 Documentation/devicetree/bindings/media/video-interfaces.txt
   29 
   30 Example:
   31 --------
   32 
   33         &i2c1 {
   34                 camera@48 {
   35                         compatible = "aptina,mt9v111";
   36                         reg = <0x48>;
   37 
   38                         clocks = <&camera_clk>;
   39 
   40                         port {
   41                                 mt9v111_out: endpoint {
   42                                         remote-endpoint = <&ceu_in>;
   43                                 };
   44                         };
   45                 };
   46         };

Cache object: b4529d35155e02555ef8fa6a0d8f2130


[ 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.