0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/connector/dp-connector.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: DisplayPort Connector
0008
0009 maintainers:
0010 - Tomi Valkeinen <tomi.valkeinen@ti.com>
0011
0012 properties:
0013 compatible:
0014 const: dp-connector
0015
0016 label: true
0017
0018 type:
0019 enum:
0020 - full-size
0021 - mini
0022
0023 hpd-gpios:
0024 description: A GPIO line connected to HPD
0025 maxItems: 1
0026
0027 dp-pwr-supply:
0028 description: Power supply for the DP_PWR pin
0029
0030 port:
0031 $ref: /schemas/graph.yaml#/properties/port
0032 description: Connection to controller providing DP signals
0033
0034 required:
0035 - compatible
0036 - type
0037 - port
0038
0039 additionalProperties: false
0040
0041 examples:
0042 - |
0043 connector {
0044 compatible = "dp-connector";
0045 label = "dp0";
0046 type = "full-size";
0047
0048 port {
0049 dp_connector_in: endpoint {
0050 remote-endpoint = <&dp_out>;
0051 };
0052 };
0053 };
0054
0055 ...