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.
30 lines
1000 B
Diff
30 lines
1000 B
Diff
From: Chen-Yu Tsai <wens@csie.org>
|
|
|
|
The external Ethernet PHY has a reset pin that is connected to the SoC.
|
|
It is missing from the original submission.
|
|
|
|
Add it to complete the description.
|
|
|
|
Fixes: acca163f3f51 ("arm64: dts: allwinner: a527: add EMAC0 to Radxa A5E board")
|
|
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
|
|
---
|
|
arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts | 3 +++
|
|
1 file changed, 3 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 8bc0f2c72a24..c57ecc420aed 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun55i-a527-cubie-a5e.dts
|
|
@@ -70,6 +70,9 @@ &mdio0 {
|
|
ext_rgmii_phy: ethernet-phy@1 {
|
|
compatible = "ethernet-phy-ieee802.3-c22";
|
|
reg = <1>;
|
|
+ reset-gpios = <&pio 7 8 GPIO_ACTIVE_LOW>; /* PH8 */
|
|
+ reset-assert-us = <10000>;
|
|
+ reset-deassert-us = <150000>;
|
|
};
|
|
};
|
|
|
|
--
|
|
2.39.5
|