mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-14 10:07:20 +00:00
ref: - https://patchwork.kernel.org/project/linux-phy/list/?series=912540 - https://patchwork.freedesktop.org/series/120825/
69 lines
1.3 KiB
Diff
69 lines
1.3 KiB
Diff
From d7a46875e8cc330cc3f1082c054ecfb0c1b32727 Mon Sep 17 00:00:00 2001
|
|
From: Rudi Heitbaum <rudi@heitbaum.com>
|
|
Date: Sun, 29 Sep 2024 21:08:57 +1000
|
|
Subject: [PATCH 3/4] arm64: dts: fsl: imx8mq-phanbell.dts: enable DCSS and
|
|
HDMI
|
|
|
|
---
|
|
.../boot/dts/freescale/imx8mq-phanbell.dts | 31 +++++++++++++++++++
|
|
1 file changed, 31 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/freescale/imx8mq-phanbell.dts b/arch/arm64/boot/dts/freescale/imx8mq-phanbell.dts
|
|
index a3b9d615a3b4..deba4a6f65d5 100644
|
|
--- a/arch/arm64/boot/dts/freescale/imx8mq-phanbell.dts
|
|
+++ b/arch/arm64/boot/dts/freescale/imx8mq-phanbell.dts
|
|
@@ -46,6 +46,17 @@ fan: gpio-fan {
|
|
pinctrl-0 = <&pinctrl_gpio_fan>;
|
|
status = "okay";
|
|
};
|
|
+
|
|
+ hdmi_connector: connector {
|
|
+ compatible = "hdmi-connector";
|
|
+ label = "X11";
|
|
+ type = "a";
|
|
+
|
|
+ port {
|
|
+ hdmi_connector_in: endpoint {
|
|
+ };
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
&A53_0 {
|
|
@@ -111,6 +122,32 @@ map4 {
|
|
};
|
|
};
|
|
|
|
+&dcss {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&hdmi_connector {
|
|
+ port {
|
|
+ hdmi_connector_in: endpoint {
|
|
+ remote-endpoint = <&mhdp_out>;
|
|
+ };
|
|
+ };
|
|
+};
|
|
+
|
|
+&mhdp {
|
|
+ status = "okay";
|
|
+ ports {
|
|
+ port@1 {
|
|
+ reg = <1>;
|
|
+
|
|
+ mhdp_out: endpoint {
|
|
+ remote-endpoint = <&hdmi_connector_in>;
|
|
+ data-lanes = <0 1 2 3>;
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+};
|
|
+
|
|
&i2c1 {
|
|
clock-frequency = <400000>;
|
|
pinctrl-names = "default";
|
|
--
|
|
2.43.0
|
|
|