mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
When patches outside the series are in the target folder
KERNELPATCHDIR = "archive/sunxi- $ {KERNEL _ MAJOR _ MINOR}"
they create problems for all other patches in the series
and are difficult to move to the new kernel version because
they are not properly designed.
Move the patches to a separate development folder until
the design is fixed so that we can add them to the series.
97 lines
2.9 KiB
Diff
97 lines
2.9 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Juan Sanchez <juanesf91@gmail.com>
|
|
Date: Sun, 6 Jul 2025 00:12:02 -0400
|
|
Subject: From: Mikhail Kalashnikov <iuncuim@gmail.com>
|
|
|
|
Signed-off-by: Juan Sanchez <juanesf91@gmail.com>
|
|
---
|
|
arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts | 5 +++++
|
|
arch/arm64/boot/dts/allwinner/sun55i-h728-x96qpro+.dts | 5 +++++
|
|
arch/arm64/boot/dts/allwinner/sun55i-t527-avaota-a1.dts | 5 +++++
|
|
arch/arm64/boot/dts/allwinner/sun55i-t527-orangepi-4a.dts | 5 +++++
|
|
4 files changed, 20 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts b/arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts
|
|
index 592a50436454..f7a6221d02c2 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts
|
|
@@ -103,10 +103,15 @@ &gmac1 {
|
|
allwinner,rx-delay-ps = <400>;
|
|
|
|
status = "okay";
|
|
};
|
|
|
|
+&gpu {
|
|
+ mali-supply = <®_dcdc2>;
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
&mdio0 {
|
|
ext_rgmii0_phy: ethernet-phy@1 {
|
|
compatible = "ethernet-phy-ieee802.3-c22";
|
|
reg = <1>;
|
|
reset-gpios = <&pio 7 8 GPIO_ACTIVE_LOW>; /* PH8 */
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun55i-h728-x96qpro+.dts b/arch/arm64/boot/dts/allwinner/sun55i-h728-x96qpro+.dts
|
|
index 59db103546f6..0d7fb419c9b4 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun55i-h728-x96qpro+.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun55i-h728-x96qpro+.dts
|
|
@@ -52,10 +52,15 @@ &ehci0 {
|
|
|
|
&ehci1 {
|
|
status = "okay";
|
|
};
|
|
|
|
+&gpu {
|
|
+ mali-supply = <®_dcdc2>;
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
&mmc0 {
|
|
vmmc-supply = <®_vcc3v3>;
|
|
cd-gpios = <&pio 5 6 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PF6 */
|
|
bus-width = <4>;
|
|
disable-wp;
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun55i-t527-avaota-a1.dts b/arch/arm64/boot/dts/allwinner/sun55i-t527-avaota-a1.dts
|
|
index 142177c1f737..4f2366b3624a 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun55i-t527-avaota-a1.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun55i-t527-avaota-a1.dts
|
|
@@ -74,10 +74,15 @@ &gmac0 {
|
|
allwinner,rx-delay-ps = <300>;
|
|
|
|
status = "okay";
|
|
};
|
|
|
|
+&gpu {
|
|
+ mali-supply = <®_dcdc2>;
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
&mdio0 {
|
|
ext_rgmii_phy: ethernet-phy@1 {
|
|
compatible = "ethernet-phy-ieee802.3-c22";
|
|
reg = <1>;
|
|
};
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun55i-t527-orangepi-4a.dts b/arch/arm64/boot/dts/allwinner/sun55i-t527-orangepi-4a.dts
|
|
index ff2fd8e71e03..d1ffc9faec80 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun55i-t527-orangepi-4a.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun55i-t527-orangepi-4a.dts
|
|
@@ -93,10 +93,15 @@ &ehci0 {
|
|
|
|
&ehci1 {
|
|
status = "okay";
|
|
};
|
|
|
|
+&gpu {
|
|
+ mali-supply = <®_dcdc2>;
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
&mmc0 {
|
|
vmmc-supply = <®_cldo3>;
|
|
cd-gpios = <&pio 5 6 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PF6 */
|
|
bus-width = <4>;
|
|
status = "okay";
|
|
--
|
|
Created with Armbian build tools https://github.com/armbian/build
|
|
|