80 lines
1.5 KiB
Diff
80 lines
1.5 KiB
Diff
|
From d65d5e5236e48648f993de983e1c7ea8f5c57b32 Mon Sep 17 00:00:00 2001
|
||
|
From: tonymac32 <tonymckahan@gmail.com>
|
||
|
Date: Sat, 28 Jan 2023 17:07:35 -0500
|
||
|
Subject: [PATCH] rk3328-roc-cc add missing nodes
|
||
|
|
||
|
Signed-off-by: tonymac32 <tonymckahan@gmail.com>
|
||
|
---
|
||
|
.../arm64/boot/dts/rockchip/rk3328-roc-cc.dts | 32 +++++++++++++++++++
|
||
|
1 file changed, 32 insertions(+)
|
||
|
|
||
|
diff --git a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
|
||
|
old mode 100644
|
||
|
new mode 100755
|
||
|
index 6b45a653a82..0a6a3cadc20
|
||
|
--- a/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
|
||
|
+++ b/arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
|
||
|
@@ -134,6 +134,14 @@ user_led: led-1 {
|
||
|
mode = <0x05>;
|
||
|
};
|
||
|
};
|
||
|
+
|
||
|
+ ir-receiver {
|
||
|
+ compatible = "gpio-ir-receiver";
|
||
|
+ gpios = <&gpio2 RK_PA2 GPIO_ACTIVE_LOW>;
|
||
|
+ pinctrl-0 = <&ir_int>;
|
||
|
+ pinctrl-names = "default";
|
||
|
+ };
|
||
|
+
|
||
|
};
|
||
|
|
||
|
&analog_sound {
|
||
|
@@ -204,6 +212,10 @@ &gmac2io {
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
+&gpu {
|
||
|
+ mali-supply = <&vdd_logic>;
|
||
|
+};
|
||
|
+
|
||
|
&hdmi {
|
||
|
status = "okay";
|
||
|
};
|
||
|
@@ -346,6 +358,13 @@ &io_domains {
|
||
|
};
|
||
|
|
||
|
&pinctrl {
|
||
|
+
|
||
|
+ ir {
|
||
|
+ ir_int: ir-int {
|
||
|
+ rockchip,pins = <2 RK_PA2 RK_FUNC_GPIO &pcfg_pull_none>;
|
||
|
+ };
|
||
|
+ };
|
||
|
+
|
||
|
pmic {
|
||
|
pmic_int_l: pmic-int-l {
|
||
|
rockchip,pins = <1 RK_PD0 RK_FUNC_GPIO &pcfg_pull_up>;
|
||
|
@@ -376,6 +395,19 @@ &sdmmc {
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
+&spdif {
|
||
|
+ pinctrl-0 = <&spdifm0_tx>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&spdif_out {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&spdif_sound {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
&tsadc {
|
||
|
status = "okay";
|
||
|
};
|
||
|
--
|
||
|
Created with Armbian build tools https://github.com/armbian/build
|
||
|
|