xref: /linux/drivers/gpu/drm/bridge/imx/imx8mp-hdmi-tx-connector-fixup.dtso (revision 0eaed89c18aeedf0898baf2dbf5ff027c6795152)
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * DTS overlay adding an hdmi-connector node to boards using the imx8mp hdmi_tx
4 *
5 * Copyright (C) 2026 GE HealthCare
6 * Author: Luca Ceresoli <luca.ceresoli@bootlin.com>
7 */
8
9/dts-v1/;
10/plugin/;
11
12&{/} {
13	fixup-hdmi-connector {
14		compatible = "hdmi-connector";
15		label = "HDMI";
16		type = "a";
17
18		port {
19			fixup_hdmi_connector_in: endpoint {
20				remote-endpoint = <&hdmi_tx_out>;
21			};
22		};
23	};
24};
25
26&{/soc@0/bus@32c00000/hdmi@32fd8000/ports/port@1} {
27	hdmi_tx_out: endpoint {
28		remote-endpoint = <&fixup_hdmi_connector_in>;
29	};
30};
31