lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <027901d8f180$96886a20$c3993e60$@gmail.com>
Date:   Sun, 6 Nov 2022 02:39:18 +0100
From:   <piergiorgio.beruto@...il.com>
To:     "'Andrew Lunn'" <andrew@...n.ch>
Cc:     <netdev@...r.kernel.org>
Subject: RE: Adding IEEE802.3cg Clause 148 PLCA support to Linux

Hello Andrew,
Thank you for your kind reply.

Please see my answers interleaved below.

Kind Regards,
Piergiorgio

-----Original Message-----
From: Andrew Lunn <andrew@...n.ch> 
Sent: 6 November, 2022 00:41
To: piergiorgio.beruto@...il.com
Cc: netdev@...r.kernel.org
Subject: Re: Adding IEEE802.3cg Clause 148 PLCA support to Linux

On Sat, Nov 05, 2022 at 06:42:10PM +0100, piergiorgio.beruto@...il.com
wrote:
>> Hello,
>> I would like to add IEEE 802.3cg-2019 PLCA support to Linux.

> Could you recommend any introductory document? 802.3 can be heavy going.

The 10BASE-T1S specifications span over Clauses 147 and 148. 802.3cg is an
amendment over 802.3 adding these clauses and further amending Clause 22, 45
and 30. Please, be aware that 802.3cg amends more clauses related to
10BASE-T1L (long-reach, point-to-point PHY), T1 autoneg and power over data
lines. However, these are not in scope for 10BASE-T1S and PLCA. The standard
is relatively new (2019) therefore there isn't a lot of whitepapers
available yet.
I can recommend presentations posted on the IEEE 802.3cg website
(https://www.ieee802.org/3/cg/). This one is contains a general overview of
PLCA: https://www.ieee802.org/3/cg/public/July2018/PLCA%20overview.pdf.
I can also send you a few presentations on a separate e-mail.
Finally, I'm drafting a Wikipedia page on T1S
(https://en.wikipedia.org/wiki/Draft:10BASE-T1S) but it is really work in
progress.

>> PLCA (Physical Layer Collision Avoidance) is an enhanced media-access 
>> protocol for multi-drop networks, and it is currently specified for 
>> the 10BASE-T1S PHY defined in Clause 147 of the same standard.

>> This feature is fully integrated into PHY and MACPHY implementations 
>> such as the onsemi NCN26010 and Microchip LAN867x, which are available 
>> on the market.

> Do the MAC and PHY need to negotiate this feature? Does the MAC need to
know if the PHY is PLCA capable? Ideally,
> genphy_c45_pma_read_abilities() can determine if a PHY is PLCA capable?
And the MAC can then check the result of this and enable its part of PLCA?

PLCA was intentionally designed NOT to change the MAC. It is similar to EPON
in this regard (but way simpler). So the straight answer is no, the MAC does
not need to know that the PHY is PLCA capable.
However, PLCA can only work if the MAC supports half-duplex mode.
PLCA support can be tested by probing dedicated registers. Unfortunately,
because of "political/philosophical" fights we could not specify the PLCA
registers in Standard Clause 45 at the time the standard was sent for
review. This is why we ended up having a separate document. We do have
Clause 30 parameters, which maps directly to the registers defined in the
OPEN Alliance.

IMPORTANT: if you look at the IEEE specifications, the PLCA RS is defined to
be on top of the MII interface (but still below the MAC, in the Physical
layer). This is due to how the IEEE layering is structured, but it is NOT
how everybody implements PLCA. As I said, the intention was not to require
modifications to the MAC. You can see this explained in
https://www.ieee802.org/3/cg/public/July2018/PLCA%20overview.pdf and
https://www.ieee802.org/3/cg/public/Jan2019/Tutorial_cg_0119_final.pdf. In
short, there is an "internal" MII between the RS and the PCS layers, plus an
exposed MII which connects to the MAC (formally it is an implementation of
Clause 4 and 6 primitives that matches the existing MII interface). This
external MII allows to connect to any MAC, In fact, it was tested
successfully even against MAC belonging to 1990's.

>> In practice, what we need to do is configuring some additional 
>> parameters of the PHY: PLCA ID, TO_TIMER, NODE_COUNT, BURST.

> Are these purely PHY configuration values? Is the MAC involved at all?
They are PHY attributes, the MAC is unaware of the underlying PLCA layer.

>> The PHY registers for PLCA configuration are further documented in the 
>> OPEN alliance SIG public specifications (see 
>> https://www.opensig.org/about/specifications/ -> PLCA Management
>> Registers)

> Nice. But do the available PHYs actually follow this? Ideally you should
provide a set of helpers which implement these registers. But you have to
assume that silicon vendors will ignore the standard and implement it
differently. They often do. So the helpers are just helpers, and the PHY
driver
> needs to be able to implement these values in there own way.

The Si vendors are actually following this specification. I work for one of
those companies, and you can see that implemented in these datasheets:
https://www.onsemi.com/download/data-sheet/pdf/ncn26010-d.pdf
https://ww1.microchip.com/downloads/aemtest/AIS/ProductDocuments/DataSheets/
DS-LAN8670-1-2-60001573C.pdf
I am also personally aware of more implementations that are coming to the
market from different suppliers and they are all going to follow this
standard.  In fact, it is required by our customers and there is just no
reason not to follow those.
Just to cite an example, during the automotive Ethernet congress in Munich
(June 2022) there was a big show where products from Analog Devices, Marvell
and others have been demonstrated and tested for interoperability. All of
those are OPEN compliant.

>> The parameters I mentioned has to be configured dynamically.

> How dynamically? And what is setting them? Do you see the need for a user
space daemon? Are values placed in /etc/network/interfaces?

At the moment, the actual method for setting these parameters is not
mandated by the standard. In my understanding, people will use different
approaches based on their application. For engineered networks, they will
likely be set according to some HW configuration (EEPROM, GPIOs, board
slot/connector, switch port, etc.). In other use cases, the network will
start in "normal" CSMA/CD mode to negotiate the PLCA configuration using
LLDP and/or DHCP.

So, back to your questions, I don't really know yet. I believe we are going
to have different approaches, some of which may require a user-space daemon.
But eventually, everything comes down to writing the appropriate values in
the PHY registers. For a start, that will be sufficient.
I don't mean to create confusion, but there is another standard,
IEEE802.3da, that is further extending PLCA to implement a fully automated
way to assign the PLCA IDs in HW (we call this D-PLCA). However, it is still
work in progress and I'd rather not mix the two things here and now.
Existing products implement PLCA, not D-PLCA. I mentioned this just to give
you the bigger picture.

> Ethtool does seems like one option. But i would like to understand the
bigger picture before making a definitive answer.
Sure, I totally understand. And I'll be happy to answer any question you
might have.

       Andrew

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ