brintos

brintos / linux-shallow public Read only

0
0
Text · 1.3 KiB · 3ee8f92 Raw
69 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only2%YAML 1.23---4$id: http://devicetree.org/schemas/display/connector/hdmi-connector.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: HDMI Connector8 9maintainers:10  - Laurent Pinchart <Laurent.pinchart@ideasonboard.com>11 12properties:13  compatible:14    const: hdmi-connector15 16  type:17    description: The HDMI connector type18    enum:19      - a   # Standard full size20      - b   # Never deployed?21      - c   # Mini22      - d   # Micro23      - e   # automotive24 25  label: true26 27  hpd-gpios:28    description: A GPIO line connected to HPD29    maxItems: 130 31  ddc-i2c-bus:32    description: phandle link to the I2C controller used for DDC EDID probing33    $ref: /schemas/types.yaml#/definitions/phandle34 35  ddc-en-gpios:36    description: GPIO signal to enable DDC bus37    maxItems: 138 39  hdmi-pwr-supply:40    description: Power supply for the HDMI +5V Power pin41 42  port:43    $ref: /schemas/graph.yaml#/properties/port44    description: Connection to controller providing HDMI signals45 46required:47  - compatible48  - port49  - type50 51additionalProperties: false52 53examples:54  - |55    connector {56        compatible = "hdmi-connector";57        label = "hdmi";58 59        type = "a";60 61        port {62            hdmi_connector_in: endpoint {63                remote-endpoint = <&tpd12s015_out>;64            };65        };66    };67 68...69