mirror of
https://github.com/armbian/build.git
synced 2025-08-17 16:46:58 +02:00
65 lines
1.4 KiB
Diff
65 lines
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Ryzer58 <ryestar101@gmail.com>
|
|
Date: Mon, 2 Jun 2025 00:29:48 +0100
|
|
Subject: Add HDMI support for pcDuino 3 by including HDMI and DE nodes
|
|
|
|
Signed-off-by: Ryzer58 <ryestar101@gmail.com>
|
|
---
|
|
arch/arm/boot/dts/allwinner/sun7i-a20-pcduino3.dts | 25 ++++++++++
|
|
1 file changed, 25 insertions(+)
|
|
|
|
diff --git a/arch/arm/boot/dts/allwinner/sun7i-a20-pcduino3.dts b/arch/arm/boot/dts/allwinner/sun7i-a20-pcduino3.dts
|
|
index 928b86a95f34..5086fb93f3b1 100644
|
|
--- a/arch/arm/boot/dts/allwinner/sun7i-a20-pcduino3.dts
|
|
+++ b/arch/arm/boot/dts/allwinner/sun7i-a20-pcduino3.dts
|
|
@@ -73,10 +73,21 @@ led-1 {
|
|
label = "pcduino3:green:rx";
|
|
gpios = <&pio 7 16 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
|
|
+ hdmi-connector {
|
|
+ compatible = "hdmi-connector";
|
|
+ type = "a";
|
|
+
|
|
+ port {
|
|
+ hdmi_con_in: endpoint {
|
|
+ remote-endpoint = <&hdmi_out_con>;
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
gpio-keys {
|
|
compatible = "gpio-keys";
|
|
|
|
key-back {
|
|
label = "Key Back";
|
|
@@ -135,10 +146,24 @@ axp209: pmic@34 {
|
|
interrupt-parent = <&nmi_intc>;
|
|
interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
|
|
};
|
|
};
|
|
|
|
+&de {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&hdmi {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&hdmi_out {
|
|
+ hdmi_out_con: endpoint {
|
|
+ remote-endpoint = <&hdmi_con_in>;
|
|
+ };
|
|
+};
|
|
+
|
|
#include "axp209.dtsi"
|
|
|
|
&ir0 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&ir0_rx_pin>;
|
|
--
|
|
Created with Armbian build tools https://github.com/armbian/build
|
|
|