Path: blob/master/Documentation/devicetree/bindings/display/connector/dp-connector.yaml
29286 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/display/connector/dp-connector.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: DisplayPort Connector78maintainers:9- Tomi Valkeinen <tomi.valkeinen@ti.com>1011properties:12compatible:13const: dp-connector1415label: true1617type:18enum:19- full-size20- mini2122hpd-gpios:23description: A GPIO line connected to HPD24maxItems: 12526dp-pwr-supply:27description: Power supply for the DP_PWR pin2829port:30$ref: /schemas/graph.yaml#/properties/port31description: Connection to controller providing DP signals3233ports:34$ref: /schemas/graph.yaml#/properties/ports35description: OF graph representation of signales routed to DP connector3637properties:38port@0:39$ref: /schemas/graph.yaml#/properties/port40description: Connection to controller providing DP signals4142port@1:43$ref: /schemas/graph.yaml#/properties/port44description: Connection to controller providing AUX signals4546required:47- port@048- port@14950required:51- compatible52- type5354oneOf:55- required:56- port57- required:58- ports5960additionalProperties: false6162examples:63- |64connector {65compatible = "dp-connector";66label = "dp0";67type = "full-size";6869port {70dp_connector_in: endpoint {71remote-endpoint = <&dp_out>;72};73};74};7576- |77/* DP connecttor being driven by the USB+DP combo PHY */78connector {79compatible = "dp-connector";80label = "dp0";81type = "full-size";8283ports {84#address-cells = <1>;85#size-cells = <0>;8687port@0 {88reg = <0>;8990endpoint {91remote-endpoint = <&phy_ss_out>;92};93};9495port@1 {96reg = <1>;9798endpoint {99remote-endpoint = <&phy_sbu_out>;100};101};102};103};104...105106107