]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
net: phy: marvell: Fix RGMII Tx/Rx delays setting in 88e1121-compatible PHYs
authorPavel Parkhomenko <Pavel.Parkhomenko@baikalelectronics.ru>
Sat, 5 Feb 2022 20:39:32 +0000 (23:39 +0300)
committerPaolo Pisati <paolo.pisati@canonical.com>
Mon, 7 Mar 2022 10:41:55 +0000 (11:41 +0100)
commit2d254e5af5d65baffe83d4ad3c4e648ed87d9548
treef41edda9674a1f979d63ea1e7f0ab2673f9094d2
parent3ae63a25ce08c8671655b97130eb9642e6ee3fe0
net: phy: marvell: Fix RGMII Tx/Rx delays setting in 88e1121-compatible PHYs

BugLink: https://bugs.launchpad.net/bugs/1963889
commit fe4f57bf7b585dca58f1496c4e2481ecbae18126 upstream.

It is mandatory for a software to issue a reset upon modifying RGMII
Receive Timing Control and RGMII Transmit Timing Control bit fields of MAC
Specific Control register 2 (page 2, register 21) otherwise the changes
won't be perceived by the PHY (the same is applicable for a lot of other
registers). Not setting the RGMII delays on the platforms that imply it'
being done on the PHY side will consequently cause the traffic loss. We
discovered that the denoted soft-reset is missing in the
m88e1121_config_aneg() method for the case if the RGMII delays are
modified but the MDIx polarity isn't changed or the auto-negotiation is
left enabled, thus causing the traffic loss on our platform with Marvell
Alaska 88E1510 installed. Let's fix that by issuing the soft-reset if the
delays have been actually set in the m88e1121_config_aneg_rgmii_delays()
method.

Cc: stable@vger.kernel.org
Fixes: d6ab93364734 ("net: phy: marvell: Avoid unnecessary soft reset")
Signed-off-by: Pavel Parkhomenko <Pavel.Parkhomenko@baikalelectronics.ru>
Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Reviewed-by: Serge Semin <fancer.lancer@gmail.com>
Link: https://lore.kernel.org/r/20220205203932.26899-1-Pavel.Parkhomenko@baikalelectronics.ru
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
drivers/net/phy/marvell.c