Messages in this thread |  | | Date | Thu, 26 Dec 2019 11:50:44 +0100 | From | Andrew Lunn <> | Subject | Re: [PATCH 1/3] net: stmmac: dwmac-meson8b: Fix the RGMII TX delay on Meson8b/8m2 SoCs |
| |
> > # RX and TX delays are added by the MAC when required > > - rgmii > > > > # RGMII with internal RX and TX delays provided by the PHY, > > # the MAC should not add the RX or TX delays in this case > > - rgmii-id > > > > # RGMII with internal RX delay provided by the PHY, the MAC > > # should not add an RX delay in this case > > - rgmii-rxid > > > > # RGMII with internal TX delay provided by the PHY, the MAC > > # should not add an TX delay in this case > > - rgmii-txid > > > > So ideally, you want the MAC to add no delay at all, and then use the > > correct phy-mode so the PHY adds the correct delay. This gives you the > > most flexibility in terms of PHY and PCB design. This does however > > require that the PHY implements the delay, which not all do. > these boards (with RGMII PHY) that I am aware of are using an RTL8211F > PHY which implements a 2ns PHY TX delay
We need to be careful here...
Earlier this year we got into a mess with a PHY driver wrongly implemented these delays. DT contained 'rgmii', but the PHY driver actually implemented rgmii-id'. Boards worked, because they actually needed rgmii-id. But then came along a board which really did need rgmii. We took the decision, maybe the wrong decision, to fix the PHY driver, and fixup DT files as we found boards which had the incorrect setting. We broke a lot of boards for a while and caused lots of people pain.
You might have something which works, but i want to be sure it is actually correct, not two bugs cancelling each other out.
You say the RTL8211F PHY implements a 2ns PHY TX delay. So in DT, do you have the phy-mode of 'rgmii-txid'? That would be the correct setting to say that the PHY provides only the TX delay.
> however, the 3.10 vendor kernel also supports Micrel RGMII (and RMII) > PHYs where I don't know if they implement a (configurable) TX delay. > > > Looking at patches 2 and 3, the phy-mode is set to rgmii. What you > > might actually need to do is set this to rgmii-txid, or maybe > > rgmii-id, once you have the MAC not inserting any delay. > please let us split this discussion: > 1) I believe that this patch is still correct and required whenever > the MAC *has to* generate the TX delay (one use-case could be the > Micrel PHYs I mentioned above)
I think this patch splits into two parts. One is getting a 25MHz clock. That part i can agree with straight away. The second part is setting a 2ns TX delay. This we need to be careful of. What is the MAC actually doing after this patch? What is the configured RX delay? Does the driver explicitly configure the RX delay? To what?
If you look at the definitions above, if the phy-mode is rgmii, the MAC is responsible for both RX and TX delay.
> 2) the correct phy-mode and where the TX delay is being generated. I > have tried "rgmii-txid" on my own Odroid-C1 and it's working fine > there. however, it's the only board with RGMII PHY that I have from > this generation of SoCs (and other testers are typically rare for this > platform, because it's an older SoC). so my idea was to use the same > settings as the 3.10 vendor kernel because these seem to be the "known > working" ones.
Vendor kernels have the alternative of 'vendor crap' for a good reason. Just because it works does not mean it is correct.
> what do you think about 2)? my main concern is that this *could* break > Ethernet on other people's boards. > on the other hand I have no idea how likely that actually is.
From what i understand, Ethernet is already broken? Or is it broken on just some boards?
Looking at the function rtl8211f_config_init(), that PHY driver can only control TX delays. RX delays are controlled by a strapping pin.
The Micrel PHY driver can also control its clock skew, but it does it in an odd way, not via the phy-mode, but via additional properties. See the binding document.
What we normally say is make the MAC add no delays, and pass the correct configuration to the PHY so it adds the delay. But due to the strapping pin on the rtl8211f, we are in a bit of a grey area. I would suggest the MAC adds no delay, phy-mode is set to rmgii-id, the PHY driver adds TX delay in software, we assume the strapping pin is set to add RX delay, and we add a big fat comment in the DT.
For the Micrel PHY, we do the same, plus add the vendor properties to configure the clock skew.
But as i said, we are in a bit of a grey area. We can consider other options, but everything needs to be self consistent, between what the MAC is doing, what the PHY is doing, and what phy-mode is set to in DT.
Andrew
|  |