mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-03 07:54:00 +01:00
lantiq: dm200: Fix loading PHY firmware
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
The device has 1 100MBit/s port. By default the PHY firmware is running in 1GBit/s mode. The driver will try to load the 1GBit/s firmware and fail if it is not there. Set the GPHY0 also to 100MBit/s mode. The driver uses all nodes independent of the status attribute. Do the same fix for AVM FRITZ!Box 7412 too. Reported-by: Achelon in OpenWrt forum Fixes: https://github.com/openwrt/openwrt/issues/21836 Link: https://github.com/openwrt/openwrt/pull/22188 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
d527fc3c1c
commit
296b286a67
2 changed files with 14 additions and 0 deletions
|
|
@ -186,6 +186,13 @@
|
|||
lantiq,gphy-mode = <GPHY_MODE_FE>;
|
||||
};
|
||||
|
||||
/* This PHY is not used, but try to load the 100M FW too */
|
||||
&gphy1 {
|
||||
status = "disabled";
|
||||
|
||||
lantiq,gphy-mode = <GPHY_MODE_FE>;
|
||||
};
|
||||
|
||||
&gswip_mdio {
|
||||
phy11: ethernet-phy@11 {
|
||||
reg = <0x11>;
|
||||
|
|
|
|||
|
|
@ -97,6 +97,13 @@
|
|||
nvmem-cell-names = "mac-address";
|
||||
};
|
||||
|
||||
/* This PHY is not used, but try to load the 100M FW too */
|
||||
&gphy0 {
|
||||
status = "disabled";
|
||||
|
||||
lantiq,gphy-mode = <GPHY_MODE_FE>;
|
||||
};
|
||||
|
||||
&gphy1 {
|
||||
lantiq,gphy-mode = <GPHY_MODE_FE>;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue