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.
60 lines
2.0 KiB
Diff
60 lines
2.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Juan Sanchez <juanesf91@gmail.com>
|
|
Date: Sat, 2 Aug 2025 00:22:05 -0400
|
|
Subject: Subject: From: Chen-Yu Tsai <wens@csie.org>
|
|
|
|
Signed-off-by: Juan Sanchez <juanesf91@gmail.com>
|
|
---
|
|
arch/arm64/boot/dts/allwinner/sun55i-a523.dtsi | 20 +++++-----
|
|
1 file changed, 10 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun55i-a523.dtsi b/arch/arm64/boot/dts/allwinner/sun55i-a523.dtsi
|
|
index 0136ac625605..7fbba60ec76e 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun55i-a523.dtsi
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun55i-a523.dtsi
|
|
@@ -141,20 +141,10 @@ pio: pinctrl@2000000 {
|
|
gpio-controller;
|
|
#gpio-cells = <3>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <3>;
|
|
|
|
- rgmii0_pins: rgmii0-pins {
|
|
- pins = "PH0", "PH1", "PH2", "PH3", "PH4",
|
|
- "PH5", "PH6", "PH7", "PH9", "PH10",
|
|
- "PH14", "PH15", "PH16", "PH17", "PH18";
|
|
- allwinner,pinmux = <5>;
|
|
- function = "gmac0";
|
|
- drive-strength = <40>;
|
|
- bias-disable;
|
|
- };
|
|
-
|
|
mmc0_pins: mmc0-pins {
|
|
pins = "PF0" ,"PF1", "PF2", "PF3", "PF4", "PF5";
|
|
allwinner,pinmux = <2>;
|
|
function = "mmc0";
|
|
drive-strength = <30>;
|
|
@@ -178,10 +168,20 @@ mmc2_pins: mmc2-pins {
|
|
function = "mmc2";
|
|
drive-strength = <30>;
|
|
bias-pull-up;
|
|
};
|
|
|
|
+ rgmii0_pins: rgmii0-pins {
|
|
+ pins = "PH0", "PH1", "PH2", "PH3", "PH4",
|
|
+ "PH5", "PH6", "PH7", "PH9", "PH10",
|
|
+ "PH14", "PH15", "PH16", "PH17", "PH18";
|
|
+ allwinner,pinmux = <5>;
|
|
+ function = "gmac0";
|
|
+ drive-strength = <40>;
|
|
+ bias-disable;
|
|
+ };
|
|
+
|
|
uart0_pb_pins: uart0-pb-pins {
|
|
pins = "PB9", "PB10";
|
|
allwinner,pinmux = <2>;
|
|
function = "uart0";
|
|
};
|
|
--
|
|
Created with Armbian build tools https://github.com/armbian/build
|
|
|