mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 06:33:41 +00:00
9f4708f76c
Onboard AR8035 PHY supports 1000Base-T operation, but onboard Ethernet magnetics do not. Reduce advertised link speeds to 100Mbps and lower. Signed-off-by: Lech Perczak <lech.perczak@gmail.com>
32 lines
465 B
Plaintext
32 lines
465 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "ar9342_ubnt_xw_rssileds.dtsi"
|
|
|
|
/ {
|
|
compatible = "ubnt,bullet-m-xw", "ubnt,xw", "qca,ar9342";
|
|
model = "Ubiquiti Bullet M (XW)";
|
|
};
|
|
|
|
&mdio0 {
|
|
status = "okay";
|
|
|
|
phy4: ethernet-phy@4 {
|
|
phy-mode = "rgmii";
|
|
reg = <4>;
|
|
max-speed = <100>;
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
status = "okay";
|
|
|
|
phy-mode = "rgmii";
|
|
phy-handle = <&phy4>;
|
|
|
|
gmac-config {
|
|
device = <&gmac>;
|
|
rxd-delay = <3>;
|
|
rxdv-delay = <3>;
|
|
};
|
|
};
|