From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Cc: "Пархоменко Павел Кириллович"
<Pavel.Parkhomenko@baikalelectronics.ru>,
"michael@stapelberg.de" <michael@stapelberg.de>,
"afleming@gmail.com" <afleming@gmail.com>,
"f.fainelli@gmail.com" <f.fainelli@gmail.com>,
"andrew@lunn.ch" <andrew@lunn.ch>,
"Малахов Алексей Валерьевич"
<Alexey.Malahov@baikalelectronics.ru>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Heiner Kallweit" <hkallweit1@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
"Jakub Kicinski" <kuba@kernel.org>,
"Serge Semin" <fancer.lancer@gmail.com>
Subject: Re: [PATCH] net: phy: marvell: Fix RGMII Tx/Rx delays setting in 88e1121-compatible PHYs
Date: Fri, 4 Feb 2022 10:41:37 +0000 [thread overview]
Message-ID: <Yf0C4WYxbzFcMO/N@shell.armlinux.org.uk> (raw)
In-Reply-To: <20220204095621.bcchrzupmtor3jbq@mobilestation>
On Fri, Feb 04, 2022 at 12:56:21PM +0300, Serge Semin wrote:
> +Cc: Heiner, Russel, David, Jakub
>
> -Sergey
>
> On Fri, Feb 04, 2022 at 08:29:11AM +0300, Пархоменко Павел Кириллович wrote:
> > 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's 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.
Thanks. Indeed, this appears to be correct for the 88E151x PHYs.
Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
> > Fixes: d6ab93364734 ("net: phy: marvell: Avoid unnecessary soft reset")
> > Signed-off-by: Pavel Parkhomenko <Pavel.Parkhomenko@baikalelectronics.ru>
> > Reviewed-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
> > Cc: Alexey Malahov <Alexey.Malahov@baikalelectronics.ru>
> > Cc: Serge Semin <Sergey.Semin@baikalelectronics.ru>
> > Cc: netdev@vger.kernel.org
> > Cc: linux-kernel@vger.kernel.org
> >
> > ---
> > drivers/net/phy/marvell.c | 10 ++++++----
> > 1 file changed, 6 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
> > index 4fcfca4e1702..a4f685927a64 100644
> > --- a/drivers/net/phy/marvell.c
> > +++ b/drivers/net/phy/marvell.c
> > @@ -551,9 +551,9 @@ static int m88e1121_config_aneg_rgmii_delays(struct
> > phy_device *phydev)
> > else
> > mscr = 0;
> >
> > - return phy_modify_paged(phydev, MII_MARVELL_MSCR_PAGE,
> > - MII_88E1121_PHY_MSCR_REG,
> > - MII_88E1121_PHY_MSCR_DELAY_MASK, mscr);
> > + return phy_modify_paged_changed(phydev, MII_MARVELL_MSCR_PAGE,
> > + MII_88E1121_PHY_MSCR_REG,
> > + MII_88E1121_PHY_MSCR_DELAY_MASK, mscr);
> > }
> >
> > static int m88e1121_config_aneg(struct phy_device *phydev)
> > @@ -567,11 +567,13 @@ static int m88e1121_config_aneg(struct phy_device *phydev)
> > return err;
> > }
> >
> > + changed = err;
> > +
> > err = marvell_set_polarity(phydev, phydev->mdix_ctrl);
> > if (err < 0)
> > return err;
> >
> > - changed = err;
> > + changed |= err;
> >
> > err = genphy_config_aneg(phydev);
> > if (err < 0)
> > --
> > 2.34.1
> >
> >
>
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
next prev parent reply other threads:[~2022-02-04 10:41 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-04 5:29 [PATCH] net: phy: marvell: Fix RGMII Tx/Rx delays setting in 88e1121-compatible PHYs Pavel.Parkhomenko
2022-02-04 9:56 ` Serge Semin
2022-02-04 10:41 ` Russell King (Oracle) [this message]
2022-02-04 13:10 ` Andrew Lunn
2022-02-05 15:22 ` Pavel.Parkhomenko
2022-02-05 16:25 ` Andrew Lunn
2022-02-05 4:02 ` Jakub Kicinski
2022-02-05 20:39 ` [PATCH net v2] " Pavel Parkhomenko
2022-02-07 17:40 ` Jakub Kicinski
2022-02-07 18:33 ` Serge Semin
2022-02-07 19:22 ` Jakub Kicinski
2022-02-08 3:58 ` Jakub Kicinski
2022-02-08 4:10 ` patchwork-bot+netdevbpf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Yf0C4WYxbzFcMO/N@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=Alexey.Malahov@baikalelectronics.ru \
--cc=Pavel.Parkhomenko@baikalelectronics.ru \
--cc=Sergey.Semin@baikalelectronics.ru \
--cc=afleming@gmail.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=f.fainelli@gmail.com \
--cc=fancer.lancer@gmail.com \
--cc=hkallweit1@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michael@stapelberg.de \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).