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/ov9650.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 * Omnivision OV9650/OV9652 CMOS sensor
    2 
    3 Required Properties:
    4 - compatible: shall be one of
    5         "ovti,ov9650"
    6         "ovti,ov9652"
    7 - clocks: reference to the xvclk input clock.
    8 
    9 Optional Properties:
   10 - reset-gpios: reference to the GPIO connected to the resetb pin, if any.
   11   Active is high.
   12 - powerdown-gpios: reference to the GPIO connected to the pwdn pin, if any.
   13   Active is high.
   14 
   15 The device node shall contain one 'port' child node with one child 'endpoint'
   16 subnode for its digital output video port, in accordance with the video
   17 interface bindings defined in Documentation/devicetree/bindings/media/
   18 video-interfaces.txt.
   19 
   20 Example:
   21 
   22 &i2c0 {
   23         ov9650: camera@30 {
   24                 compatible = "ovti,ov9650";
   25                 reg = <0x30>;
   26                 reset-gpios = <&axi_gpio_0 0 GPIO_ACTIVE_HIGH>;
   27                 powerdown-gpios = <&axi_gpio_0 1 GPIO_ACTIVE_HIGH>;
   28                 clocks = <&xclk>;
   29 
   30                 port {
   31                         ov9650_0: endpoint {
   32                                 remote-endpoint = <&vcap1_in0>;
   33                         };
   34                 };
   35         };
   36 };

Cache object: de88400199608d06794074d6dfca303e


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