On Mon, May 22, 2017 at 03:12:03PM -0500, Timur Tabi wrote: > On 10/24/2016 05:40 AM, Zefir Kurtisi wrote: > > This commit adds a wrapper function for at8031 > > that in case of operating in SGMII mode double > > checks SGMII link state when generic aneg_done() > > succeeds. It prints a warning on failure but > > intentionally does not try to recover from this > > state. As a result, if you ever see a warning > > '803x_aneg_done: SGMII link is not ok' you will > > end up having an Ethernet link up but won't get > > any data through. This should not happen, if it > > does, please contact the module maintainer. > > I'm getting bitten by this one again. We're now have several systems that > are reporting the link failure ("803x_aneg_done: SGMII link is not ok"), and > the interface comes up but is not functional. I believe this is expected. > > The problem, however, is not because of the link failure. Instead, the > problem is this: > > > + /* check if the SGMII link is OK. */ > > + if (!(phy_read(phydev, AT803X_PSSR) & AT803X_PSSR_MR_AN_COMPLETE)) { > > + pr_warn("803x_aneg_done: SGMII link is not ok\n"); > > + aneg_done = 0; > > Returning zero is what breaks the interface. If I comment-out this last > line, so that at803x_aneg_done() returns BMSR_ANEGCOMPLETE instead, then > everything works.
Are you using interrupts? Or polling? If polling, it should come back again 1 second later and see if auto-neg has completed. Hopefully the SGMII side comes up eventually. If you are using interrupts, you need another interrupt when the SGMII side comes up, otherwise i think the state machine is stuck waiting. Andrew