1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*5def4c47SEmmanuel Vadot%YAML 1.2 3*5def4c47SEmmanuel Vadot--- 4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/display/connector/dp-connector.yaml# 5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5def4c47SEmmanuel Vadot 7*5def4c47SEmmanuel Vadottitle: DisplayPort Connector 8*5def4c47SEmmanuel Vadot 9*5def4c47SEmmanuel Vadotmaintainers: 10*5def4c47SEmmanuel Vadot - Tomi Valkeinen <tomi.valkeinen@ti.com> 11*5def4c47SEmmanuel Vadot 12*5def4c47SEmmanuel Vadotproperties: 13*5def4c47SEmmanuel Vadot compatible: 14*5def4c47SEmmanuel Vadot const: dp-connector 15*5def4c47SEmmanuel Vadot 16*5def4c47SEmmanuel Vadot label: true 17*5def4c47SEmmanuel Vadot 18*5def4c47SEmmanuel Vadot type: 19*5def4c47SEmmanuel Vadot enum: 20*5def4c47SEmmanuel Vadot - full-size 21*5def4c47SEmmanuel Vadot - mini 22*5def4c47SEmmanuel Vadot 23*5def4c47SEmmanuel Vadot hpd-gpios: 24*5def4c47SEmmanuel Vadot description: A GPIO line connected to HPD 25*5def4c47SEmmanuel Vadot maxItems: 1 26*5def4c47SEmmanuel Vadot 27*5def4c47SEmmanuel Vadot dp-pwr-supply: 28*5def4c47SEmmanuel Vadot description: Power supply for the DP_PWR pin 29*5def4c47SEmmanuel Vadot 30*5def4c47SEmmanuel Vadot port: 31*5def4c47SEmmanuel Vadot $ref: /schemas/graph.yaml#/properties/port 32*5def4c47SEmmanuel Vadot description: Connection to controller providing DP signals 33*5def4c47SEmmanuel Vadot 34*5def4c47SEmmanuel Vadotrequired: 35*5def4c47SEmmanuel Vadot - compatible 36*5def4c47SEmmanuel Vadot - type 37*5def4c47SEmmanuel Vadot - port 38*5def4c47SEmmanuel Vadot 39*5def4c47SEmmanuel VadotadditionalProperties: false 40*5def4c47SEmmanuel Vadot 41*5def4c47SEmmanuel Vadotexamples: 42*5def4c47SEmmanuel Vadot - | 43*5def4c47SEmmanuel Vadot connector { 44*5def4c47SEmmanuel Vadot compatible = "dp-connector"; 45*5def4c47SEmmanuel Vadot label = "dp0"; 46*5def4c47SEmmanuel Vadot type = "full-size"; 47*5def4c47SEmmanuel Vadot 48*5def4c47SEmmanuel Vadot port { 49*5def4c47SEmmanuel Vadot dp_connector_in: endpoint { 50*5def4c47SEmmanuel Vadot remote-endpoint = <&dp_out>; 51*5def4c47SEmmanuel Vadot }; 52*5def4c47SEmmanuel Vadot }; 53*5def4c47SEmmanuel Vadot }; 54*5def4c47SEmmanuel Vadot 55*5def4c47SEmmanuel Vadot... 56