summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/display/connector/hdmi-connector.yaml
blob: 14d7128af592a98fadd532d2266dec3f81a0641c (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
# SPDX-License-Identifier: GPL-2.0-only
%YAML 1.2
---
$id: http://devicetree.org/schemas/display/connector/hdmi-connector.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: HDMI Connector

maintainers:
  - Laurent Pinchart <Laurent.pinchart@ideasonboard.com>

properties:
  compatible:
    const: hdmi-connector

  type:
    description: The HDMI connector type
    enum:
      - a   # Standard full size
      - b   # Never deployed?
      - c   # Mini
      - d   # Micro
      - e   # automotive

  label: true

  hpd-gpios:
    description: A GPIO line connected to HPD
    maxItems: 1

  ddc-i2c-bus:
    description: phandle link to the I2C controller used for DDC EDID probing
    $ref: /schemas/types.yaml#/definitions/phandle

  ddc-en-gpios:
    description: GPIO signal to enable DDC bus
    maxItems: 1

  port:
    description: Connection to controller providing HDMI signals

required:
  - compatible
  - port
  - type

additionalProperties: false

examples:
  - |
    connector {
        compatible = "hdmi-connector";
        label = "hdmi";

        type = "a";

        port {
            hdmi_connector_in: endpoint {
                remote-endpoint = <&tpd12s015_out>;
            };
        };
    };

...