~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/media/i2c/ovti,ov8858.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: OmniVision OV8858 Image Sensor
  8 
  9 maintainers:
 10   - Jacopo Mondi <jacopo.mondi@ideasonboard.com>
 11   - Nicholas Roth <nicholas@rothemail.net>
 12 
 13 description: |
 14   The OmniVision OV8858 is a color CMOS 8 Megapixels (3264x2448) image sensor
 15   controlled through an I2C-compatible SCCB bus. The sensor transmits images
 16   on a MIPI CSI-2 output interface with up to 4 data lanes.
 17 
 18 properties:
 19   compatible:
 20     const: ovti,ov8858
 21 
 22   reg:
 23     maxItems: 1
 24 
 25   clocks:
 26     maxItems: 1
 27     description: XVCLK external clock
 28 
 29   clock-names:
 30     const: xvclk
 31 
 32   dvdd-supply:
 33     description: Digital Domain Power Supply
 34 
 35   avdd-supply:
 36     description: Analog Domain Power Supply
 37 
 38   dovdd-supply:
 39     description: I/O Domain Power Supply
 40 
 41   powerdown-gpios:
 42     description: PWDNB powerdown GPIO (active low)
 43 
 44   reset-gpios:
 45     maxItems: 1
 46     description: XSHUTDN reset GPIO (active low)
 47 
 48   port:
 49     description: MIPI CSI-2 transmitter port
 50     $ref: /schemas/graph.yaml#/$defs/port-base
 51     additionalProperties: false
 52 
 53     properties:
 54       endpoint:
 55         $ref: /schemas/media/video-interfaces.yaml#
 56         unevaluatedProperties: false
 57 
 58         properties:
 59           data-lanes:
 60             minItems: 1
 61             maxItems: 4
 62 
 63         required:
 64           - data-lanes
 65 
 66 required:
 67   - compatible
 68   - reg
 69   - clocks
 70   - port
 71 
 72 additionalProperties: false
 73 
 74 examples:
 75   - |
 76     #include <dt-bindings/pinctrl/rockchip.h>
 77     #include <dt-bindings/clock/rk3399-cru.h>
 78     #include <dt-bindings/gpio/gpio.h>
 79 
 80     i2c {
 81         #address-cells = <1>;
 82         #size-cells = <0>;
 83 
 84         ov8858: camera@36 {
 85             compatible = "ovti,ov8858";
 86             reg = <0x36>;
 87 
 88             clocks = <&cru SCLK_CIF_OUT>;
 89             clock-names = "xvclk";
 90             assigned-clocks = <&cru SCLK_CIF_OUT>;
 91             assigned-clock-rates = <24000000>;
 92 
 93             dovdd-supply = <&vcc1v8_dvp>;
 94 
 95             reset-gpios = <&gpio1 RK_PA4 GPIO_ACTIVE_LOW>;
 96             powerdown-gpios = <&gpio2 RK_PB4 GPIO_ACTIVE_LOW>;
 97 
 98             port {
 99                 ucam_out: endpoint {
100                     remote-endpoint = <&mipi_in_ucam>;
101                     data-lanes = <1 2 3 4>;
102                 };
103             };
104         };
105     };
106 ...

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php