aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/media/i2c/ovti,ov64a40.yaml
blob: 2b6143aff39139c6cb1f6dc514cddd6dd5d3a0cf (plain)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/media/i2c/ovti,ov64a40.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: OmniVision OV64A40 Image Sensor

maintainers:
  - Jacopo Mondi <jacopo.mondi@ideasonboard.com>

allOf:
  - $ref: /schemas/media/video-interface-devices.yaml#

properties:
  compatible:
    const: ovti,ov64a40

  reg:
    maxItems: 1

  clocks:
    maxItems: 1

  avdd-supply:
    description: Analog voltage supply, 2.8 volts

  dvdd-supply:
    description: Digital core voltage supply, 1.1 volts

  dovdd-supply:
    description: Digital I/O voltage supply, 1.8 volts

  powerdown-gpios:
    maxItems: 1

  reset-gpios:
    maxItems: 1

  port:
    $ref: /schemas/graph.yaml#/$defs/port-base
    additionalProperties: false

    properties:
      endpoint:
        $ref: /schemas/media/video-interfaces.yaml#
        additionalProperties: false

        properties:
          bus-type:
            enum:
              - 1 # MIPI CSI-2 C-PHY
              - 4 # MIPI CSI-2 D-PHY
          data-lanes: true
          link-frequencies: true
          clock-noncontinuous: true
          remote-endpoint: true

        required:
          - bus-type
          - data-lanes
          - link-frequencies

required:
  - compatible
  - reg
  - clocks
  - port

unevaluatedProperties: false

examples:
  - |
      #include <dt-bindings/gpio/gpio.h>

      i2c {
          #address-cells = <1>;
          #size-cells = <0>;

          camera@36 {
              compatible = "ovti,ov64a40";
              reg = <0x36>;
              clocks = <&camera_clk>;
              dovdd-supply = <&vgen4_reg>;
              avdd-supply = <&vgen3_reg>;
              dvdd-supply = <&vgen2_reg>;
              powerdown-gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>;
              reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>;
              rotation = <180>;
              orientation = <2>;

              port {
                  endpoint {
                      remote-endpoint = <&mipi_csi2_in>;
                      bus-type = <4>;
                      data-lanes = <1 2 3 4>;
                      link-frequencies = /bits/ 64 <456000000>;
                  };
              };
          };
      };

...