-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken Tinkerboard booting due to changes in stmmac driver (#1734)
- Loading branch information
1 parent
0c38be8
commit 2099cb1
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
patch/kernel/rockchip-current/general-temporary-ethernet-fixup.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
This is a temporary fix for ethernet with kernels 5.4.7+ | ||
|
||
It reverts the following change: https://patchwork.ozlabs.org/patch/1213121/ | ||
which disabled mdio init for most of the boards except NanoPi M4(V2) | ||
or NanoPC T4 which have proper device tree definition for mdio/phy. | ||
|
||
The proper fix will be to add phy device tree node for boards that miss | ||
it. | ||
|
||
--- | ||
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c | ||
index 170c3a052b14..1f230bd854c4 100644 | ||
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c | ||
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c | ||
@@ -320,7 +320,7 @@ out: | ||
static int stmmac_dt_phy(struct plat_stmmacenet_data *plat, | ||
struct device_node *np, struct device *dev) | ||
{ | ||
- bool mdio = false; | ||
+ bool mdio = true; | ||
static const struct of_device_id need_mdio_ids[] = { | ||
{ .compatible = "snps,dwc-qos-ethernet-4.10" }, | ||
{}, |