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/ov2685.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 OV2685 MIPI CSI-2 sensor
    2 
    3 Required Properties:
    4 - compatible: shall be "ovti,ov2685"
    5 - clocks: reference to the xvclk input clock
    6 - clock-names: shall be "xvclk"
    7 - avdd-supply: Analog voltage supply, 2.8 volts
    8 - dovdd-supply: Digital I/O voltage supply, 1.8 volts
    9 - dvdd-supply: Digital core voltage supply, 1.8 volts
   10 - reset-gpios: Low active reset gpio
   11 
   12 The device node shall contain one 'port' child node with an
   13 'endpoint' subnode for its digital output video port,
   14 in accordance with the video interface bindings defined in
   15 Documentation/devicetree/bindings/media/video-interfaces.txt.
   16 The endpoint optional property 'data-lanes' shall be "<1>".
   17 
   18 Example:
   19 &i2c7 {
   20         ov2685: camera-sensor@3c {
   21                 compatible = "ovti,ov2685";
   22                 reg = <0x3c>;
   23                 pinctrl-names = "default";
   24                 pinctrl-0 = <&clk_24m_cam>;
   25 
   26                 clocks = <&cru SCLK_TESTCLKOUT1>;
   27                 clock-names = "xvclk";
   28 
   29                 avdd-supply = <&pp2800_cam>;
   30                 dovdd-supply = <&pp1800>;
   31                 dvdd-supply = <&pp1800>;
   32                 reset-gpios = <&gpio2 3 GPIO_ACTIVE_LOW>;
   33 
   34                 port {
   35                         ucam_out: endpoint {
   36                                 remote-endpoint = <&mipi_in_ucam>;
   37                                 data-lanes = <1>;
   38                         };
   39                 };
   40         };
   41 };

Cache object: c6a4495f219236d6765ef0ad6a91d3a9


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