netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Vladimir Oltean <olteanv@gmail.com>
To: Rodolfo Giometti <giometti@enneenne.com>
Cc: Jakub Kicinski <kuba@kernel.org>, Andrew Lunn <andrew@lunn.ch>,
	Matej Zachar <zachar.matej@gmail.com>,
	netdev@vger.kernel.org
Subject: Re: [DSA] fallback PTP to master port when switch does not support it
Date: Wed, 25 May 2022 18:55:36 +0300	[thread overview]
Message-ID: <20220525155536.7kjqwnp6cepmrngr@skbuf> (raw)
In-Reply-To: <8b90db13-03ca-3798-2810-516df79d3986@enneenne.com>

On Wed, May 25, 2022 at 05:00:24PM +0200, Rodolfo Giometti wrote:
> On 07/04/22 11:44, Vladimir Oltean wrote:
> > On Tue, Apr 05, 2022 at 12:48:51PM -0700, Jakub Kicinski wrote:
> > > On Tue, 5 Apr 2022 00:04:30 +0200 Andrew Lunn wrote:
> > > > What i don't like about your proposed fallback is that it gives the
> > > > impression the slave ports actually support PTP, when they do not.
> > > 
> > > +1, running PTP on the master means there is a non-PTP-aware switch
> > > in the path, which should not be taken lightly.
> > 
> > +2, the change could probably be technically done, and there are aspects
> > worth discussing, but the goal presented here is questionable and it's
> > best to not fool ourselves into thinking that the variable queuing delays
> > of the switch are taken into account when reporting the timestamps,
> > which they aren't.
> > 
> > I think that by the time you realize that you need PTP hardware
> > timestamping on switch ports but you have a PTP-unaware switch
> > integrated *into* your system, you need to go back to the drawing board.
> 
> IMHO this patch is a great hack but what you say sounds good to me.

How many Ethernet connections are there between the switch and the host?
One alternative which requires no code changes is to connect one more
switch port and run PTP at your own risk on the attached FEC port
(not DSA master).

What switch driver is it? There are 2 paths to be discussed.
On TX, does the switch forward DSA-untagged packets from the host port? Where to?
On RX, does the switch tag all packets with a DSA header towards the
host? I guess yes, but in that case, be aware that not many Ethernet
controllers can timestamp non-PTP packets. And you need anyway to demote
e.g. HWTSTAMP_FILTER_PTP_V2_EVENT to HWTSTAMP_FILTER_ALL when you pass
the request to the master to account for that, which you are not doing.

> However we can modify the patch in order to leave the default behavior as-is
> but adding the ability to enable this hack via DTS flag as follow:
> 
>                 ports {
>                         #address-cells = <1>;
>                         #size-cells = <0>;
> 
>                         port@0 {
>                                 reg = <0>;
>                                 label = "lan1";
>                                 allow-ptp-fallback;
>                         };
> 
>                         port@1 {
>                                 reg = <1>;
>                                 label = "lan2";
>                         };
> 
>                         ...
> 
>                         port@5 {
>                                 reg = <5>;
>                                 label = "cpu";
>                                 ethernet = <&fec>;
> 
>                                 fixed-link {
>                                         speed = <1000>;
>                                         full-duplex;
>                                 };
>                         };
>                 };
> 
> Then the code can do as follow:
> 
> static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
> {
>         struct dsa_slave_priv *p = netdev_priv(dev);
>         struct dsa_switch *ds = p->dp->ds;
>         int port = p->dp->index;
>         struct net_device *master = dsa_slave_to_master(dev);
> 
>         /* Pass through to switch driver if it supports timestamping */
>         switch (cmd) {
>         case SIOCGHWTSTAMP:
>                 if (ds->ops->port_hwtstamp_get)
>                         return ds->ops->port_hwtstamp_get(ds, port, ifr);
>                 if (p->dp->allow_ptp_fallback && master->netdev_ops->ndo_do_ioctl)
>                         return master->netdev_ops->ndo_do_ioctl(master, ifr, cmd);
>                 break;
>         case SIOCSHWTSTAMP:
>                 if (ds->ops->port_hwtstamp_set)
>                         return ds->ops->port_hwtstamp_set(ds, port, ifr);
>                 if (p->dp->allow_ptp_fallback && master->netdev_ops->ndo_do_ioctl)
>                         return master->netdev_ops->ndo_do_ioctl(master, ifr, cmd);
>                 break;
>         }
> 
>         return phylink_mii_ioctl(p->dp->pl, ifr, cmd);
> }
> 
> In this manner the default behavior is to return error if the switch doesn't
> support the PTP functions, but developers can intentionally enable the PTP
> fallback on specific ports only in order to be able to use PTP on buggy
> hardware.
> 
> Can this solution be acceptable?

Generally we don't allow policy configuration through the device tree.

  reply	other threads:[~2022-05-25 15:55 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-04 19:28 [DSA] fallback PTP to master port when switch does not support it Matej Zachar
2022-04-04 22:04 ` Andrew Lunn
2022-04-05 14:21   ` Matej Zachar
2022-04-05 19:48   ` Jakub Kicinski
2022-04-07  9:44     ` Vladimir Oltean
2022-05-25 15:00       ` Rodolfo Giometti
2022-05-25 15:55         ` Vladimir Oltean [this message]
2022-05-26  7:45           ` Rodolfo Giometti
2022-05-26 12:31             ` Vladimir Oltean
2022-05-25 18:18         ` Andrew Lunn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220525155536.7kjqwnp6cepmrngr@skbuf \
    --to=olteanv@gmail.com \
    --cc=andrew@lunn.ch \
    --cc=giometti@enneenne.com \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=zachar.matej@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).