netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* About PHY_INTERFACE_MODE_REVMII
@ 2021-02-01 21:45 Vladimir Oltean
  2021-02-02  0:26 ` Florian Fainelli
  0 siblings, 1 reply; 4+ messages in thread
From: Vladimir Oltean @ 2021-02-01 21:45 UTC (permalink / raw)
  To: Florian Fainelli; +Cc: netdev

Hi Florian,

I was looking at

  commit 2cc70ba4cf5f97a7cf08063d2fae693d36b462eb
  Author: Florian Fainelli <f.fainelli@gmail.com>
  Date:   Tue May 28 04:07:21 2013 +0000

      phy: add reverse MII PHY connection type

      The PHY library currently does not know about the the reverse MII
      connection type. Add it to the list of supported PHY modes and update
      of_get_phy_mode() to support it and look for the string "rev-mii".

      Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
      Signed-off-by: David S. Miller <davem@davemloft.net>

and I couldn't figure out its intended use from the drivers that do make
use of it.

As far as I understand
https://www.eetimes.com/reverse-media-independent-interface-revmii-block-architecture/#
RevMII is a set of hardware state machines used to describe a MAC-to-MAC
connection in a richer manner than a fixed-link would. You mostly get
auto-negotiation via a minimal clause 28 state machine, which should
help avoid mismatch of link modes. You also get the illusion of a clause
22 register map that should work with the genphy driver and give you
link status based on (?!) the link partner toggling BMCR_ANRESTART, for
the most part - which would allow you to catch a change in their link
mode advertisement.

The thing is, RevMII as I understand it is simply the state machines for
autoneg and the virtual MDIO interface. RevMII is not a data link
protocol, is it? So why does PHY_INTERFACE_MODE_REVMII exist? Having
RevMII for the MDIO link management doesn't mean you don't have MII, or
RMII, or RGMII, or whatever, for the actual data link.

Another thing is, I think there's one fundamental thing that RevMII
can't abstract away behind that genphy-compatible clause 22 register
map. That is whether you're on the 'PHY' side of the RevMII block or on
the 'MAC' side of it. I think mostly small embedded devices would
implement a RevMII block in order to disguise themselves as real PHYs to
whatever the real SoC that connects to them is. But the underlying data
link is fundamentally asymmetrical any way you look at it. For example,
in the legacy MII protocol, both TX_CLK and RX_CLK are driven by the PHY
at 25 MHz. This means that two devices that use MII as a data link must
be aware of their role as a MAC or as a PHY. Same thing with RMII, where
the 50 MHz clock signals are either driven by the MAC or by an external
oscillator (but not by the PHY).

The point is that if the system implementing the RevMII block (not the
one connected over real MDIO to it) is running Linux, this creates an
apparent paradox. The MAC driver will think it's connected to a PHY, but
nonetheless, the MAC must operate in the role of a PHY. This is the
description of a PHY-to-PHY setup, something which doesn't make sense.
I.e. the MAC driver supports RMII. If it's attached to an RMII PHY it
should operate as a MAC, drive the 50 MHz clock. Except when that RMII
PHY is actually a virtual RevMII PHY and we're on the local side of it,
then everything is in reverse and we should actually not drive the 50
MHz clock because we're the PHY. But if we're on the remote side of the
RevMII PHY, things are again normal and we should do whatever a RMII MAC
does, not what a RMII PHY does.

Consider the picture below.

 +--------------------------+                    +--------------------------+
 |Linux    +----+------+----+           MDIO/MDC |-----------+      Linux   |
 |box A    |Side|RevMII|Side|<-------------------|    MDIO   |      box B   |
 |      +--| A  |block | B  |<-------------------|controller |              |
 |      |  +----+------+----+                    |-----------+              |
 |      |                   |                    |        |                 |
 |   internal               |                    |     phy-handle           |
 |    MDIO                  |Actual data link    |                          |
 |      |            +------|<-------------------|------+                   |
 |  phy-handle       | MAC  |<-------------------| MAC  |                   |
 |                   |as PHY|------------------->|as MAC|                   |
 |                   +------|------------------->|------+                   |
 |                          |MII/RMII/RGMII/SGMII|                          |
 +--------------------------+                    +--------------------------+

The RevMII block implemented by the hardware on Linux box A has two
virtual register maps compatible with a clause 22 gigabit PHY, called
side A and side B. Presumably same PHY ID is presented to both sides, so
both box A and box B load the same PHY driver (let that be genphy).
But the actual data link is RMII, which is asymmetric in roles (all MII
protocols are asymmetric in roles to some degree, even RGMII which does
support in-band signaling driven by the PHY, even SGMII where the same
thing is true). So somebody must tell Linux box A to configure the MAC
as a PHY, and Linux box B to configure the MAC as a MAC. Who tells them
that? I thought PHY_INTERFACE_MODE_REVMII was supposed to help, but I
just don't see how - the information about the underlying data link type
is just lost.

Is it the case that the hardware on Linux box A is just supposed to hide
that it's really using RGMII/RMII/MII with a PHY role as the actual data
link, and just give that a pretty name "RevMII" aka "none of your business"?
But again I don't believe that to be true, somebody still has to care at
some point about protocol specific things, like RGMII delays, or
clocking setup at 25 or 50 or 125 MHz depending on whether MII or RMII
or RGMII is used, whether to generate inband signaling and wait for ACK,
etc etc.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: About PHY_INTERFACE_MODE_REVMII
  2021-02-01 21:45 About PHY_INTERFACE_MODE_REVMII Vladimir Oltean
@ 2021-02-02  0:26 ` Florian Fainelli
  2021-02-02  0:53   ` Vladimir Oltean
  0 siblings, 1 reply; 4+ messages in thread
From: Florian Fainelli @ 2021-02-02  0:26 UTC (permalink / raw)
  To: Vladimir Oltean; +Cc: netdev

On 2/1/21 1:45 PM, Vladimir Oltean wrote:
> Hi Florian,
> 
> I was looking at
> 
>   commit 2cc70ba4cf5f97a7cf08063d2fae693d36b462eb
>   Author: Florian Fainelli <f.fainelli@gmail.com>
>   Date:   Tue May 28 04:07:21 2013 +0000
> 
>       phy: add reverse MII PHY connection type
> 
>       The PHY library currently does not know about the the reverse MII
>       connection type. Add it to the list of supported PHY modes and update
>       of_get_phy_mode() to support it and look for the string "rev-mii".
> 
>       Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
>       Signed-off-by: David S. Miller <davem@davemloft.net>
> 
> and I couldn't figure out its intended use from the drivers that do make
> use of it.
> 
> As far as I understand
> https://www.eetimes.com/reverse-media-independent-interface-revmii-block-architecture/#
> RevMII is a set of hardware state machines used to describe a MAC-to-MAC
> connection in a richer manner than a fixed-link would. You mostly get
> auto-negotiation via a minimal clause 28 state machine, which should
> help avoid mismatch of link modes. You also get the illusion of a clause
> 22 register map that should work with the genphy driver and give you
> link status based on (?!) the link partner toggling BMCR_ANRESTART, for
> the most part - which would allow you to catch a change in their link
> mode advertisement.
> 
> The thing is, RevMII as I understand it is simply the state machines for
> autoneg and the virtual MDIO interface. RevMII is not a data link
> protocol, is it? So why does PHY_INTERFACE_MODE_REVMII exist? Having
> RevMII for the MDIO link management doesn't mean you don't have MII, or
> RMII, or RGMII, or whatever, for the actual data link.
> 
> Another thing is, I think there's one fundamental thing that RevMII
> can't abstract away behind that genphy-compatible clause 22 register
> map. That is whether you're on the 'PHY' side of the RevMII block or on
> the 'MAC' side of it. I think mostly small embedded devices would
> implement a RevMII block in order to disguise themselves as real PHYs to
> whatever the real SoC that connects to them is. But the underlying data
> link is fundamentally asymmetrical any way you look at it. For example,
> in the legacy MII protocol, both TX_CLK and RX_CLK are driven by the PHY
> at 25 MHz. This means that two devices that use MII as a data link must
> be aware of their role as a MAC or as a PHY. Same thing with RMII, where
> the 50 MHz clock signals are either driven by the MAC or by an external
> oscillator (but not by the PHY).
> 
> The point is that if the system implementing the RevMII block (not the
> one connected over real MDIO to it) is running Linux, this creates an
> apparent paradox. The MAC driver will think it's connected to a PHY, but
> nonetheless, the MAC must operate in the role of a PHY. This is the
> description of a PHY-to-PHY setup, something which doesn't make sense.

It depends on the level of control that you have and expect more on that
below.

> I.e. the MAC driver supports RMII. If it's attached to an RMII PHY it
> should operate as a MAC, drive the 50 MHz clock. Except when that RMII
> PHY is actually a virtual RevMII PHY and we're on the local side of it,
> then everything is in reverse and we should actually not drive the 50
> MHz clock because we're the PHY. But if we're on the remote side of the
> RevMII PHY, things are again normal and we should do whatever a RMII MAC
> does, not what a RMII PHY does.
> 
> Consider the picture below.
> 
>  +--------------------------+                    +--------------------------+
>  |Linux    +----+------+----+           MDIO/MDC |-----------+      Linux   |
>  |box A    |Side|RevMII|Side|<-------------------|    MDIO   |      box B   |
>  |      +--| A  |block | B  |<-------------------|controller |              |
>  |      |  +----+------+----+                    |-----------+              |
>  |      |                   |                    |        |                 |
>  |   internal               |                    |     phy-handle           |
>  |    MDIO                  |Actual data link    |                          |
>  |      |            +------|<-------------------|------+                   |
>  |  phy-handle       | MAC  |<-------------------| MAC  |                   |
>  |                   |as PHY|------------------->|as MAC|                   |
>  |                   +------|------------------->|------+                   |
>  |                          |MII/RMII/RGMII/SGMII|                          |
>  +--------------------------+                    +--------------------------+
> 
> The RevMII block implemented by the hardware on Linux box A has two
> virtual register maps compatible with a clause 22 gigabit PHY, called
> side A and side B. Presumably same PHY ID is presented to both sides, so
> both box A and box B load the same PHY driver (let that be genphy).
> But the actual data link is RMII, which is asymmetric in roles (all MII
> protocols are asymmetric in roles to some degree, even RGMII which does
> support in-band signaling driven by the PHY, even SGMII where the same
> thing is true). So somebody must tell Linux box A to configure the MAC
> as a PHY, and Linux box B to configure the MAC as a MAC. Who tells them
> that? I thought PHY_INTERFACE_MODE_REVMII was supposed to help, but I
> just don't see how - the information about the underlying data link type
> is just lost.

That is true if we consider that you can use an electrical connection
other than MII, which was the flaw in the reasoning leading to introduce
the above commit. If you took the name reverse MII literally like I did,
you would not think it would apply to anything but MII and maybe reduced
MII, but not GMII or RGMII. More on that below.

> 
> Is it the case that the hardware on Linux box A is just supposed to hide
> that it's really using RGMII/RMII/MII with a PHY role as the actual data
> link, and just give that a pretty name "RevMII" aka "none of your business"?
> But again I don't believe that to be true, somebody still has to care at
> some point about protocol specific things, like RGMII delays, or
> clocking setup at 25 or 50 or 125 MHz depending on whether MII or RMII
> or RGMII is used, whether to generate inband signaling and wait for ACK,
> etc etc.

I don't believe I ever saw a system that used reverse MII and yet did
not use either plain MII as far as the electrical connections went. That
does not mean you could not electrically connect these two systems using
RMII, GMII or something else. With RGMII, I don't see the point in using
a RevMII block especially as far as clocking goes, both link partners
can have their own local clock and just do clock recovery upon receive.

When this commit was done, the only use case that had to be supported
was the case of two Ethernet MACs (one a video decoder, the other a
cable modem) connected over a MII electrical connection and we could not
change the cable modem side, so we act to make ourselves "look like" a
PHY which the hardware supported. Back then the GENET driver was just
getting a facelift to use PHYLIB and so it still used a fixed-link plus
phy-mode = "rev-mii" to get that mode to work which was probably too big
of a shortcut in addition to the flaw in the reasoning about what RevMII
really was.

If you would like to deprecate/warn when using PHY_INTERFACE_MODE_REVMII
value and come up with a better way to represent such links, no issues
with me, it looks like we have a few in tree users to convert.
-- 
Florian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: About PHY_INTERFACE_MODE_REVMII
  2021-02-02  0:26 ` Florian Fainelli
@ 2021-02-02  0:53   ` Vladimir Oltean
  2021-02-02 20:29     ` Florian Fainelli
  0 siblings, 1 reply; 4+ messages in thread
From: Vladimir Oltean @ 2021-02-02  0:53 UTC (permalink / raw)
  To: Florian Fainelli; +Cc: netdev

Hi Florian,

Thanks for the quick answer!

On Mon, Feb 01, 2021 at 04:26:36PM -0800, Florian Fainelli wrote:
> It depends on the level of control that you have and expect more on that
> below.

> That is true if we consider that you can use an electrical connection
> other than MII, which was the flaw in the reasoning leading to introduce
> the above commit. If you took the name reverse MII literally like I did,
> you would not think it would apply to anything but MII and maybe reduced
> MII, but not GMII or RGMII. More on that below.

> I don't believe I ever saw a system that used reverse MII and yet did
> not use either plain MII as far as the electrical connections went. That
> does not mean you could not electrically connect these two systems using
> RMII, GMII or something else. With RGMII, I don't see the point in using
> a RevMII block especially as far as clocking goes, both link partners
> can have their own local clock and just do clock recovery upon receive.
>
> When this commit was done, the only use case that had to be supported
> was the case of two Ethernet MACs (one a video decoder, the other a
> cable modem) connected over a MII electrical connection and we could not
> change the cable modem side, so we act to make ourselves "look like" a
> PHY which the hardware supported. Back then the GENET driver was just
> getting a facelift to use PHYLIB and so it still used a fixed-link plus
> phy-mode = "rev-mii" to get that mode to work which was probably too big
> of a shortcut in addition to the flaw in the reasoning about what RevMII
> really was.
>
> If you would like to deprecate/warn when using PHY_INTERFACE_MODE_REVMII
> value and come up with a better way to represent such links, no issues
> with me, it looks like we have a few in tree users to convert.

Well, everything depends on whether a formal specification of RevMII
exists or not. If you're sure that all users of PHY_INTERFACE_MODE_REVMII
actually use the 8-bit wide parallel data interface that runs at 25 MHz
and 100 Mbps ("that" MII), just that they operate in MII PHY mode instead
of MII MAC, then I can work with that, no reason to deprecate it.

The problem is that I saw no online reference of RevMII + RMII = RevRMII,
which would make just as much sense as RevMII. And as I said, RGMII does
support in-band signaling, it's just probably too obscure to see it in
the wild or rely on it. RGMII without in-band signaling has no reason to
differentiate between MAC and PHY role, but taking the inband signaling
into account it does. So RevRGMII might be a thing too.

For example, the sja1105 supports MII MAC, MII PHY, RMII MAC, RMII PHY
modes. But it doesn't export a clause 22 virtual PHY register map to
neither end of the link - it doesn't have any MDIO connection at all.
Does the sja1105 support RevMII or does it not? If RevMII means MII PHY
and the clause 22 interface is just optional (like it is for normal MII,
RMII, RGMII which can operate in fixed-link too), then I'd say yes,
sja1105 supports RevMII. But if RevMII is _defined_ by that standardized
clause 22 interface, then no it doesn't.

In the DSA driver, I created some custom device tree bindings to solve
the situation where you'd have two sja1105 devices connected MAC to MAC
using RMII or MII: sja1105,role-mac and sja1105,role-phy. There are no
in-tree users of these DT properties, so depending on how this
conversation goes, I might just go ahead and do the other thing: say
that RevRMII exists and the clause 22 PHY registers are optional, add
PHY_INTERFACE_MODE_REVRMII, and declare that sja1105 supports
PHY_INTERFACE_MODE_REVMII which is the equivalent of what is currently
done with PHY_INTERFACE_MODE_MII + sja1105,role-phy, and
PHY_INTERFACE_MODE_REVRMII.

Having a separate PHY interface mode for RevRMII would solve the situation
where you have two instances of the same driver at the two ends of the
same link, seeing the same PHY registers, but nonetheless needing to
configure themselves in different modes and not having what to base that
decision on. What do you think?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: About PHY_INTERFACE_MODE_REVMII
  2021-02-02  0:53   ` Vladimir Oltean
@ 2021-02-02 20:29     ` Florian Fainelli
  0 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2021-02-02 20:29 UTC (permalink / raw)
  To: Vladimir Oltean; +Cc: netdev

On 2/1/21 4:53 PM, Vladimir Oltean wrote:
> Hi Florian,
> 
> Thanks for the quick answer!
> 
> On Mon, Feb 01, 2021 at 04:26:36PM -0800, Florian Fainelli wrote:
>> It depends on the level of control that you have and expect more on that
>> below.
> 
>> That is true if we consider that you can use an electrical connection
>> other than MII, which was the flaw in the reasoning leading to introduce
>> the above commit. If you took the name reverse MII literally like I did,
>> you would not think it would apply to anything but MII and maybe reduced
>> MII, but not GMII or RGMII. More on that below.
> 
>> I don't believe I ever saw a system that used reverse MII and yet did
>> not use either plain MII as far as the electrical connections went. That
>> does not mean you could not electrically connect these two systems using
>> RMII, GMII or something else. With RGMII, I don't see the point in using
>> a RevMII block especially as far as clocking goes, both link partners
>> can have their own local clock and just do clock recovery upon receive.
>>
>> When this commit was done, the only use case that had to be supported
>> was the case of two Ethernet MACs (one a video decoder, the other a
>> cable modem) connected over a MII electrical connection and we could not
>> change the cable modem side, so we act to make ourselves "look like" a
>> PHY which the hardware supported. Back then the GENET driver was just
>> getting a facelift to use PHYLIB and so it still used a fixed-link plus
>> phy-mode = "rev-mii" to get that mode to work which was probably too big
>> of a shortcut in addition to the flaw in the reasoning about what RevMII
>> really was.
>>
>> If you would like to deprecate/warn when using PHY_INTERFACE_MODE_REVMII
>> value and come up with a better way to represent such links, no issues
>> with me, it looks like we have a few in tree users to convert.
> 
> Well, everything depends on whether a formal specification of RevMII
> exists or not. If you're sure that all users of PHY_INTERFACE_MODE_REVMII
> actually use the 8-bit wide parallel data interface that runs at 25 MHz
> and 100 Mbps ("that" MII), just that they operate in MII PHY mode instead
> of MII MAC, then I can work with that, no reason to deprecate it.

I just checked with the designer of the GENET controller and he
indicated that there is no known specification to date for Reverse MII.

According to him this is really just specific to MII because for every
other electrical mode defined there after: Reduced MII, GMII or RGMII
you can either share the same reference clock (reduced MII) or you can
recover the clock from the transmitted data.

> 
> The problem is that I saw no online reference of RevMII + RMII = RevRMII,
> which would make just as much sense as RevMII. And as I said, RGMII does
> support in-band signaling, it's just probably too obscure to see it in
> the wild or rely on it. RGMII without in-band signaling has no reason to
> differentiate between MAC and PHY role, but taking the inband signaling
> into account it does. So RevRGMII might be a thing too.
> 
> For example, the sja1105 supports MII MAC, MII PHY, RMII MAC, RMII PHY
> modes. But it doesn't export a clause 22 virtual PHY register map to
> neither end of the link - it doesn't have any MDIO connection at all.
> Does the sja1105 support RevMII or does it not? If RevMII means MII PHY
> and the clause 22 interface is just optional (like it is for normal MII,
> RMII, RGMII which can operate in fixed-link too), then I'd say yes,
> sja1105 supports RevMII. But if RevMII is _defined_ by that standardized
> clause 22 interface, then no it doesn't.
> 
> In the DSA driver, I created some custom device tree bindings to solve
> the situation where you'd have two sja1105 devices connected MAC to MAC
> using RMII or MII: sja1105,role-mac and sja1105,role-phy. There are no
> in-tree users of these DT properties, so depending on how this
> conversation goes, I might just go ahead and do the other thing: say
> that RevRMII exists and the clause 22 PHY registers are optional, add
> PHY_INTERFACE_MODE_REVRMII, and declare that sja1105 supports
> PHY_INTERFACE_MODE_REVMII which is the equivalent of what is currently
> done with PHY_INTERFACE_MODE_MII + sja1105,role-phy, and
> PHY_INTERFACE_MODE_REVRMII.
> 
> Having a separate PHY interface mode for RevRMII would solve the situation
> where you have two instances of the same driver at the two ends of the
> same link, seeing the same PHY registers, but nonetheless needing to
> configure themselves in different modes and not having what to base that
> decision on. What do you think?

Agreed, at least it is consistent with the existing
PHY_INTERFACE_MODE_REVMII and the presence/absence of a fixed-link would
tell us whether a C22 compatible interface exists... works for me.
-- 
Florian

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-02-02 20:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-01 21:45 About PHY_INTERFACE_MODE_REVMII Vladimir Oltean
2021-02-02  0:26 ` Florian Fainelli
2021-02-02  0:53   ` Vladimir Oltean
2021-02-02 20:29     ` Florian Fainelli

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).