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/mt9m001.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 MT9M001: 1/2-Inch Megapixel Digital Image Sensor
    2 
    3 The MT9M001 is an SXGA-format with a 1/2-inch CMOS active-pixel digital
    4 image sensor. It is programmable through I2C interface.
    5 
    6 Required Properties:
    7 
    8 - compatible: shall be "onnn,mt9m001".
    9 - clocks: reference to the master clock into sensor
   10 
   11 Optional Properties:
   12 
   13 - reset-gpios: GPIO handle which is connected to the reset pin of the chip.
   14   Active low.
   15 - standby-gpios: GPIO handle which is connected to the standby pin of the chip.
   16   Active high.
   17 
   18 The device node must contain one 'port' child node with one 'endpoint' child
   19 sub-node for its digital output video port, in accordance with the video
   20 interface bindings defined in:
   21 Documentation/devicetree/bindings/media/video-interfaces.txt
   22 
   23 Example:
   24 
   25         &i2c1 {
   26                 camera-sensor@5d {
   27                         compatible = "onnn,mt9m001";
   28                         reg = <0x5d>;
   29                         reset-gpios = <&gpio0 0 GPIO_ACTIVE_LOW>;
   30                         standby-gpios = <&gpio0 1 GPIO_ACTIVE_HIGH>;
   31                         clocks = <&camera_clk>;
   32                         port {
   33                                 mt9m001_out: endpoint {
   34                                         remote-endpoint = <&vcap_in>;
   35                                 };
   36                         };
   37                 };
   38         };

Cache object: 59fb1b4d1cbfb9be46b03719f8d50cc9


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