On Mon, Jun 01, 2020 at 12:00:16AM +0300, Vladimir Oltean wrote:
On Sun, 31 May 2020 at 03:19, Russell King - ARM Linux admin linux@armlinux.org.uk wrote:
On Sun, May 31, 2020 at 12:43:15AM +0300, Vladimir Oltean wrote:
From: Vladimir Oltean vladimir.oltean@nxp.com
In kernel 4.19 (and probably earlier too) there are issues surrounding the PHY_AN state.
For example, if a PHY is in PHY_AN state and AN has not finished, then what is supposed to happen is that the state machine gets rescheduled until it is, or until the link_timeout reaches zero which triggers an autoneg restart process.
But actually the rescheduling never works if the PHY uses interrupts, because the condition under which rescheduling occurs is just if phy_polling_mode() is true. So basically, this whole rescheduling functionality works for AN-not-yet-complete just by mistake. Let me explain.
Most of the time the AN process manages to finish by the time the interrupt has triggered. One might say "that should always be the case, otherwise the PHY wouldn't raise the interrupt, right?". Well, some PHYs implement an .aneg_done method which allows them to tell the state machine when the AN is really complete. The AR8031/AR8033 driver (at803x.c) is one such example. Even when copper autoneg completes, the driver still keeps the "aneg_done" variable unset until in-band SGMII autoneg finishes too (there is no interrupt for that). So we have the premises of a race condition.
Why do we care whether SGMII autoneg has completed - is that not the domain of the MAC side of the link?
It sounds like things are a little confused. The PHY interrupt is signalling that the copper side has completed its autoneg. If we're in SGMII mode, the PHY can now start the process of informing the MAC about the negotiation results across the SGMII link. When the MAC receives those results, and sends the acknowledgement back to the PHY, is it not the responsibility of the MAC to then say "the link is now up" ?
Things are not at all confused on my end, Russell.
When I say "It sounds like things are a little confused." I am referring to the damn PHY/driver, not to you - that should be obvious because I then describe what _should_ be happening there in the same damn paragraph.
The "803x_aneg_done: SGMII link is not ok" log message had made me aware of the existence of this piece of code for a very long while now, but to be honest I hadn't actually read the commit message in full detail until I replied to Heiner above. Especially this part:
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.
Yes, I read that after sending my reply - it seems there's a problem with this PHY not being able to complete the SGMII side of the link, but it's unclear what the problem actually is. I don't know the background, but it sounds like Zefir was hoping someone would make contact soon after the commit was added so that further debug could happen, maybe? If that was the intention, the warning message could have been better. In any case, as we're now four years on before someone has tripped over it...
The author highlighted a valid issue, but then came up with a BS solution for it. It solves no problem, and it creates a problem for some who originally had none. When used in poll mode, the at803x.c driver would occasionally catch the in-band AN in a state where it wasn't yet complete, so it would print this message once, but all was ok in the end since the state machine would get rescheduled and the link would come up. So I genuinely thought that the intention of the patch was to be helpful. But according to his own words, it is just trying to throw its hands up in the air and lay the blame on somebody else [ the gianfar maintainer ]. So in that sense, maybe it's my 'fault' for trying to make the link come up with 803x_aneg_done in place. Maybe I should just respectfully revert the patch f62265b53ef34a372b657c99e23d32e95b464316, and replace it with some other framework. The trouble is, what to replace it with?
Maybe it's how you say it is, or maybe it isn't... unless we get input from those involved, it's going to need to be re-investigated.
That's how we deal with it elsewhere with phylink integration, which is what has to be done when you have to cope with PHYs that switch their host interface mode between SGMII, 2500BASE-X, 5GBASE-R and 10GBASE-R - the MAC side needs to be dynamically reconfigured depending on the new host-side operating mode of the PHY. Only when the MAC subsequently reports that the link has been established is the whole link from the MAC to the media deemed to be operational.
This sounds to me like 'phylink has this one figured out', but I would beg to differ.
phylink has this case figured out for a PHY that does bring up the SGMII side according to the specs. That's precisely how copper SFPs work, which are fully supported - that's not opinion, that's a fact. In the case of a PHY which doesn't reliably complete SGMII, then no, phylink doesn't have that worked out.
However, yet again, you've taken my comments completely the wrong way - what you quote was meant to illustrate _why_ waiting for the SGMII side to come up before reporting link up from the PHY is wrong.
My opinion is that it's not obvious that it would be the MAC's responsibility to determine whether the overall link is operational (applied in this case to in-band AN), but the system's responsibility, and for a simple reason: it takes 2 to negotiate. The MAC PCS and the PHY have to agree on whether they perform in-band AN or not.
Right, and if you configure phylink to use "in-band-status" in DT, you will be telling phylink that this in-band status is to be used. If that's not what you want, then you don't specify that, and use PHY or fixed-link modes... and why phylink integrates the whole system status when using "in-band-status" mode.
And that's wild jungle right there, with some PHY drivers capable of in-band AN keeping it enabled and some disabled (and even worse, PHY drivers that don't enable it in Linux but enable it in U-Boot, and since the setting is sticky, it changes the default behavior), and phylink hasn't done anything to add some rules to it, just some MAC-side knobs to turn for a particular MAC-PHY combination until something works.
... because there hasn't been a /need/ to do add this yet; no one has asked for it, no one has provided me hardware that requires it, and I don't have oodles of spare time to hack randomly on stuff that maybe no one wants right now.
When I set out with phylink, it was to solve the problem of getting SFPs to work with all the in-band complexities that they have, while keeping compatibility with phylib and it does that reasonably well.
It seems that you're expecting it to also solve this Coronavirus pandemic, world hunger, etc.
This is all relevant because our options for the stable trees boil down to 2 choices:
- Revert f62265b53ef34a372b657c99e23d32e95b464316, fix an API misuse
and a bug, but lose an (admittedly ad-hoc, but still) useful way of troubleshooting a system misconfiguration (hide the problem that Zefir Kurtisi was seeing).
Or maybe just allow at803x_aneg_done() to return non-zero but still print the warning (preferably identifying the affected PHY) so your hard-to-debug problem still gets a useful kernel message pointing out what the problem is?
- Apply this patch which make the PHY state machine work even with
this bent interpretation of the API. It's not as if all phylib users could migrate to phylink in stable trees, and even phylink doesn't catch all possible configuration cases currently.
I wasn't even proposing that as a solution.
And yes, I do have some copper SFP modules that have an (inaccessible) AR803x PHY on them - Microtik S-RJ01 to be exact. I forget exactly which variant it is, and no, I haven't seen any of this "SGMII fails to come up" - in fact, the in-band SGMII status is the only way to know what the PHY negotiated with its link partner... and this SFP module works with phylink with no issues.