]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
net: phy: mscc: Enable RMII clock output for VSC8541 PHY
authorPranav Tilak <pranav.vinaytilak@amd.com>
Thu, 29 Jan 2026 08:10:54 +0000 (13:40 +0530)
committerMichal Simek <michal.simek@amd.com>
Wed, 11 Feb 2026 08:41:26 +0000 (09:41 +0100)
Set RMII reference clock output to enabled (1) by default for VSC8541
PHY in RMII mode. The RMII specification requires a 50MHz reference
clock, and many board designs expect the PHY to provide this clock to
the MAC controller.

Previously, the driver defaulted rmii_clk_out to 0 (disabled) for all
interface modes, which caused the PHY to not output the required 50MHz
clock. This resulted in MAC-PHY communication failures and prevented
network operations like DHCP from working on RMII-configured boards.

This change alligns with the hardware power-up default behavior and
aligns with both the generic PHY driver and Linux MSCC PHY driver
implementations.

Signed-off-by: Pranav Tilak <pranav.vinaytilak@amd.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/20260129081054.1703479-1-pranav.vinaytilak@amd.com
drivers/net/phy/mscc.c

index 7263887b9ce0f8262a24fa62ca2e37de343d5146..a65e81dff0c3b0423446d67dcda2361e343a45d8 100644 (file)
@@ -1388,7 +1388,7 @@ static int vsc8541_config(struct phy_device *phydev)
                return -EINVAL;
        }
        /* Default RMII Clk Output to 0=OFF/1=ON  */
-       rmii_clk_out = 0;
+       rmii_clk_out = 1;
 
        retval = vsc8531_vsc8541_clk_skew_config(phydev);
        if (retval != 0)