hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/media/i2c/ov5647.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
 
title: Omnivision OV5647 raw image sensor
 
maintainers:
  - Dave Stevenson <dave.stevenson@raspberrypi.com>
  - Jacopo Mondi <jacopo@jmondi.org>
 
description: |-
  The OV5647 is a raw image sensor with MIPI CSI-2 and CCP2 image data
  interfaces and CCI (I2C compatible) control bus.
 
properties:
  compatible:
    const: ovti,ov5647
 
  reg:
    description: I2C device address.
    maxItems: 1
 
  clocks:
    description: Reference to the xclk clock.
    maxItems: 1
 
  pwdn-gpios:
    description: Reference to the GPIO connected to the pwdn pin. Active high.
    maxItems: 1
 
  port:
    type: object
    description: |-
      Should contain one endpoint sub-node used to model connection to the
      video receiver according to the specification defined in
      Documentation/devicetree/bindings/media/video-interfaces.txt.
 
    properties:
      endpoint:
        type: object
 
        properties:
          remote-endpoint:
            description: |-
              phandle to the video receiver input port.
 
          clock-noncontinuous:
            type: boolean
            description: |-
              Set to true to allow MIPI CSI-2 non-continuous clock operations.
 
        additionalProperties: false
 
    additionalProperties: false
 
required:
  - compatible
  - reg
  - clocks
  - port
 
additionalProperties: false
 
examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
 
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;
 
        ov5647: camera@36 {
            compatible = "ovti,ov5647";
            reg = <0x36>;
            clocks = <&camera_clk>;
            pwdn-gpios = <&pioE 29 GPIO_ACTIVE_HIGH>;
 
            port {
                camera_out: endpoint {
                    remote-endpoint = <&csi1_ep1>;
                };
            };
        };
    };
 
...