2024-07-30 13:55:15 +00:00
|
|
|
From 5825e6107062b231f1c7449502e04e559f8266e8 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Lucas Stach <l.stach@pengutronix.de>
|
|
|
|
Date: Tue, 13 Feb 2018 12:47:09 +0100
|
|
|
|
Subject: [PATCH 1/4] arm64: dts: fsl: imx8mq-evk: enable DCSS and HDMI
|
|
|
|
|
|
|
|
Adapted for [PATCH v16] Initial support Cadence MHDP8501(HDMI/DP) for i.MX8MQ
|
2024-12-02 07:42:40 +00:00
|
|
|
Adapted for [PATCH v19] Initial support Cadence MHDP8501(HDMI/DP) for i.MX8MQ
|
2024-07-30 13:55:15 +00:00
|
|
|
|
|
|
|
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
|
|
|
|
---
|
|
|
|
arch/arm64/boot/dts/freescale/imx8mq-evk.dts | 31 ++++++++++++++++++++
|
|
|
|
1 file changed, 31 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/arch/arm64/boot/dts/freescale/imx8mq-evk.dts b/arch/arm64/boot/dts/freescale/imx8mq-evk.dts
|
|
|
|
index 7507548cdb16..267e32895aa0 100644
|
|
|
|
--- a/arch/arm64/boot/dts/freescale/imx8mq-evk.dts
|
|
|
|
+++ b/arch/arm64/boot/dts/freescale/imx8mq-evk.dts
|
|
|
|
@@ -139,6 +139,17 @@ sound-hdmi-arc {
|
|
|
|
spdif-controller = <&spdif2>;
|
|
|
|
spdif-in;
|
|
|
|
};
|
|
|
|
+
|
|
|
|
+ hdmi_connector: connector {
|
|
|
|
+ compatible = "hdmi-connector";
|
|
|
|
+ label = "X11";
|
|
|
|
+ type = "a";
|
|
|
|
+
|
|
|
|
+ port {
|
|
|
|
+ hdmi_connector_in: endpoint {
|
|
|
|
+ };
|
|
|
|
+ };
|
|
|
|
+ };
|
|
|
|
};
|
|
|
|
|
|
|
|
&A53_0 {
|
2024-12-02 07:42:40 +00:00
|
|
|
@@ -226,6 +237,32 @@ wl-reg-on-hog {
|
2024-07-30 13:55:15 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
+&dcss {
|
|
|
|
+ status = "okay";
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+&hdmi_connector {
|
|
|
|
+ port {
|
|
|
|
+ hdmi_connector_in: endpoint {
|
|
|
|
+ remote-endpoint = <&mhdp_out>;
|
|
|
|
+ };
|
|
|
|
+ };
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+&mhdp {
|
|
|
|
+ status = "okay";
|
2024-12-02 07:42:40 +00:00
|
|
|
+ ports {
|
|
|
|
+ port@1 {
|
|
|
|
+ reg = <1>;
|
2024-07-30 13:55:15 +00:00
|
|
|
+
|
2024-12-02 07:42:40 +00:00
|
|
|
+ mhdp_out: endpoint {
|
|
|
|
+ remote-endpoint = <&hdmi_connector_in>;
|
|
|
|
+ data-lanes = <0 1 2 3>;
|
|
|
|
+ };
|
|
|
|
+ };
|
|
|
|
+ };
|
2024-07-30 13:55:15 +00:00
|
|
|
+};
|
|
|
|
+
|
|
|
|
&i2c1 {
|
|
|
|
clock-frequency = <100000>;
|
|
|
|
pinctrl-names = "default";
|
|
|
|
--
|
|
|
|
2.43.0
|
|
|
|
|