NET: DW: fix regression for ARC boards
The commit
642b80d256
("net: designware: drop compatible altr, socfpga-stmmac")
breaks designware ethernet for all ARC boards. It removes
"altr, socfpga-stmmac" compatible from "drivers/net/designware.c"
without changing compatible in the boards which use it.
Fix that by adding "snps,arc-dwmac-3.70a" compatible string to
"drivers/net/designware.c" and using it in ARC boards device tree.
Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
This commit is contained in:
parent
879396a240
commit
2a7232371a
@ -53,7 +53,7 @@
|
||||
};
|
||||
|
||||
ethernet@18000 {
|
||||
compatible = "altr,socfpga-stmmac";
|
||||
compatible = "snps,arc-dwmac-3.70a";
|
||||
reg = < 0x18000 0x2000 >;
|
||||
phy-mode = "gmii";
|
||||
snps,pbl = < 32 >;
|
||||
|
@ -71,7 +71,7 @@
|
||||
|
||||
ethernet@f0008000 {
|
||||
#interrupt-cells = <1>;
|
||||
compatible = "altr,socfpga-stmmac";
|
||||
compatible = "snps,arc-dwmac-3.70a";
|
||||
reg = <0xf0008000 0x2000>;
|
||||
phy-mode = "gmii";
|
||||
};
|
||||
|
@ -852,6 +852,7 @@ static const struct udevice_id designware_eth_ids[] = {
|
||||
{ .compatible = "amlogic,meson-gxbb-dwmac" },
|
||||
{ .compatible = "amlogic,meson-axg-dwmac" },
|
||||
{ .compatible = "st,stm32-dwmac" },
|
||||
{ .compatible = "snps,arc-dwmac-3.70a" },
|
||||
{ }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user