From: Andre Przywara Date: Sat, 14 Nov 2020 17:37:46 +0000 (+0000) Subject: net: sun8i-emac: Allow all RGMII PHY modes X-Git-Tag: v2021.10~347^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=219a5d5a975a9e561e801dea6c23e98f0c363683;p=platform%2Fkernel%2Fu-boot.git net: sun8i-emac: Allow all RGMII PHY modes So far all GBit users of the sun8i-emac driver were using the "rgmii" PHY mode, even though this turns out to be wrong. It just worked because the PHY driver doesn't do the proper setup (yet). In fact for most boards the "rgmii-id" or "rgmii-txid" PHY modes are the correct ones. To allow the DTs to describe the phy-mode correctly, and to stay compatible with Linux, at least allow those other RGMII modes in the driver. This avoids breakage if mainline DTs will be synced with U-Boot. Signed-off-by: Andre Przywara Acked-by: Heinrich Schuchardt --- diff --git a/drivers/net/sun8i_emac.c b/drivers/net/sun8i_emac.c index cf15e9f..9f91a20 100644 --- a/drivers/net/sun8i_emac.c +++ b/drivers/net/sun8i_emac.c @@ -353,6 +353,9 @@ static int sun8i_emac_set_syscon(struct sun8i_eth_pdata *pdata, /* default */ break; case PHY_INTERFACE_MODE_RGMII: + case PHY_INTERFACE_MODE_RGMII_ID: + case PHY_INTERFACE_MODE_RGMII_RXID: + case PHY_INTERFACE_MODE_RGMII_TXID: reg |= SC_EPIT | SC_ETCS_INT_GMII; break; case PHY_INTERFACE_MODE_RMII: