Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: sun8i: h3: bpi-m2-plus: Fix address for external RGMII Ethernet PHY

The external RTL8211E RGMII Ethernet PHY is configured via external
resistors to use the address 0x1. The 0x0 address is a broadcast address
for this family of PHYs, and should not be used explicitly.

Fixes: 8c7ba536e709 ("ARM: sun8i: bananapi-m2-plus: Enable dwmac-sun8i")
Fixes: 4904337fe34f ("ARM: dts: sunxi: Restore EMAC changes (boards)")
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Chen-Yu Tsai <wens@csie.org>

authored by

Chen-Yu Tsai and committed by
Maxime Ripard
db9fd9d1 6c700289

+1 -1
+1 -1
arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts
··· 140 140 &external_mdio { 141 141 ext_rgmii_phy: ethernet-phy@1 { 142 142 compatible = "ethernet-phy-ieee802.3-c22"; 143 - reg = <0>; 143 + reg = <1>; 144 144 }; 145 145 }; 146 146