All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
@ 2021-07-20  9:57 Russell King
  2021-07-20 13:51 ` Andrew Lunn
  2021-07-20 14:13 ` Andrew Lunn
  0 siblings, 2 replies; 13+ messages in thread
From: Russell King @ 2021-07-20  9:57 UTC (permalink / raw)
  To: Andrew Lunn, Heiner Kallweit
  Cc: David S. Miller, netdev, Ioana Ciornei, Jakub Kicinski

Phylink documentation says:
  Note that the PHY may be able to transform from one connection
  technology to another, so, eg, don't clear 1000BaseX just
  because the MAC is unable to BaseX mode. This is more about
  clearing unsupported speeds and duplex settings. The port modes
  should not be cleared; phylink_set_port_modes() will help with this.

So add the missing 10G modes.

Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Acked-by: Marek Behún <kabel@kernel.org>
Acked-by: Ioana Ciornei <ioana.ciornei@nxp.com>
---
 drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c b/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
index ae6d382d8735..543c1f202420 100644
--- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
+++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
@@ -140,6 +140,11 @@ static void dpaa2_mac_validate(struct phylink_config *config,
 	case PHY_INTERFACE_MODE_10GBASER:
 	case PHY_INTERFACE_MODE_USXGMII:
 		phylink_set(mask, 10000baseT_Full);
+		phylink_set(mask, 10000baseCR_Full);
+		phylink_set(mask, 10000baseSR_Full);
+		phylink_set(mask, 10000baseLR_Full);
+		phylink_set(mask, 10000baseLRM_Full);
+		phylink_set(mask, 10000baseER_Full);
 		if (state->interface == PHY_INTERFACE_MODE_10GBASER)
 			break;
 		phylink_set(mask, 5000baseT_Full);
-- 
2.20.1


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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-07-20  9:57 [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes Russell King
@ 2021-07-20 13:51 ` Andrew Lunn
  2021-07-20 14:11   ` Russell King (Oracle)
  2021-07-20 14:13 ` Andrew Lunn
  1 sibling, 1 reply; 13+ messages in thread
From: Andrew Lunn @ 2021-07-20 13:51 UTC (permalink / raw)
  To: Russell King
  Cc: Heiner Kallweit, David S. Miller, netdev, Ioana Ciornei, Jakub Kicinski

On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> Phylink documentation says:
>   Note that the PHY may be able to transform from one connection
>   technology to another, so, eg, don't clear 1000BaseX just
>   because the MAC is unable to BaseX mode. This is more about
>   clearing unsupported speeds and duplex settings. The port modes
>   should not be cleared; phylink_set_port_modes() will help with this.
> 
> So add the missing 10G modes.

Hi Russell

Would a phylink_set_10g(mask) helper make sense? As you say, it is
about the speed, not the individual modes.

      Andrew

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-07-20 13:51 ` Andrew Lunn
@ 2021-07-20 14:11   ` Russell King (Oracle)
  2021-07-20 14:13     ` Andrew Lunn
  2021-08-16 14:47     ` Ioana Ciornei
  0 siblings, 2 replies; 13+ messages in thread
From: Russell King (Oracle) @ 2021-07-20 14:11 UTC (permalink / raw)
  To: Andrew Lunn
  Cc: Heiner Kallweit, David S. Miller, netdev, Ioana Ciornei, Jakub Kicinski

On Tue, Jul 20, 2021 at 03:51:35PM +0200, Andrew Lunn wrote:
> On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> > Phylink documentation says:
> >   Note that the PHY may be able to transform from one connection
> >   technology to another, so, eg, don't clear 1000BaseX just
> >   because the MAC is unable to BaseX mode. This is more about
> >   clearing unsupported speeds and duplex settings. The port modes
> >   should not be cleared; phylink_set_port_modes() will help with this.
> > 
> > So add the missing 10G modes.
> 
> Hi Russell
> 
> Would a phylink_set_10g(mask) helper make sense? As you say, it is
> about the speed, not the individual modes.

Yes, good point, and that will probably help avoid this in the future.
We can't do that for things like e.g. SGMII though, because 1000/half
isn't universally supported.

Shall we get this patch merged anyway and then clean it up - as such
a change will need to cover multiple drivers anyway?

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-07-20 14:11   ` Russell King (Oracle)
@ 2021-07-20 14:13     ` Andrew Lunn
  2021-08-16 14:47     ` Ioana Ciornei
  1 sibling, 0 replies; 13+ messages in thread
From: Andrew Lunn @ 2021-07-20 14:13 UTC (permalink / raw)
  To: Russell King (Oracle)
  Cc: Heiner Kallweit, David S. Miller, netdev, Ioana Ciornei, Jakub Kicinski

> Shall we get this patch merged anyway and then clean it up - as such
> a change will need to cover multiple drivers anyway?

Yes, do it as a cleanup later.

     Andrew

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-07-20  9:57 [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes Russell King
  2021-07-20 13:51 ` Andrew Lunn
@ 2021-07-20 14:13 ` Andrew Lunn
  1 sibling, 0 replies; 13+ messages in thread
From: Andrew Lunn @ 2021-07-20 14:13 UTC (permalink / raw)
  To: Russell King
  Cc: Heiner Kallweit, David S. Miller, netdev, Ioana Ciornei, Jakub Kicinski

On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> Phylink documentation says:
>   Note that the PHY may be able to transform from one connection
>   technology to another, so, eg, don't clear 1000BaseX just
>   because the MAC is unable to BaseX mode. This is more about
>   clearing unsupported speeds and duplex settings. The port modes
>   should not be cleared; phylink_set_port_modes() will help with this.
> 
> So add the missing 10G modes.
> 
> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
> Acked-by: Marek Behún <kabel@kernel.org>
> Acked-by: Ioana Ciornei <ioana.ciornei@nxp.com>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-07-20 14:11   ` Russell King (Oracle)
  2021-07-20 14:13     ` Andrew Lunn
@ 2021-08-16 14:47     ` Ioana Ciornei
  2021-09-03 10:33       ` Russell King (Oracle)
  1 sibling, 1 reply; 13+ messages in thread
From: Ioana Ciornei @ 2021-08-16 14:47 UTC (permalink / raw)
  To: Russell King (Oracle)
  Cc: Andrew Lunn, Heiner Kallweit, David S. Miller, netdev,
	Ioana Ciornei, Jakub Kicinski

On Tue, Jul 20, 2021 at 03:11:34PM +0100, Russell King (Oracle) wrote:
> On Tue, Jul 20, 2021 at 03:51:35PM +0200, Andrew Lunn wrote:
> > On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> > > Phylink documentation says:
> > >   Note that the PHY may be able to transform from one connection
> > >   technology to another, so, eg, don't clear 1000BaseX just
> > >   because the MAC is unable to BaseX mode. This is more about
> > >   clearing unsupported speeds and duplex settings. The port modes
> > >   should not be cleared; phylink_set_port_modes() will help with this.
> > > 
> > > So add the missing 10G modes.
> > 
> > Hi Russell
> > 
> > Would a phylink_set_10g(mask) helper make sense? As you say, it is
> > about the speed, not the individual modes.
> 
> Yes, good point, and that will probably help avoid this in the future.
> We can't do that for things like e.g. SGMII though, because 1000/half
> isn't universally supported.
> 
> Shall we get this patch merged anyway and then clean it up - as such
> a change will need to cover multiple drivers anyway?
> 

This didn't get merged unfortunately.

Could you please resend it? Alternatively, I can take a look into adding
that phylink_set_10g() helper if that is what's keeping it from being
merged.

Ioana

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-08-16 14:47     ` Ioana Ciornei
@ 2021-09-03 10:33       ` Russell King (Oracle)
  2021-09-03 11:09         ` Ioana Ciornei
  0 siblings, 1 reply; 13+ messages in thread
From: Russell King (Oracle) @ 2021-09-03 10:33 UTC (permalink / raw)
  To: Ioana Ciornei
  Cc: Andrew Lunn, Heiner Kallweit, David S. Miller, netdev,
	Ioana Ciornei, Jakub Kicinski

On Mon, Aug 16, 2021 at 05:47:52PM +0300, Ioana Ciornei wrote:
> On Tue, Jul 20, 2021 at 03:11:34PM +0100, Russell King (Oracle) wrote:
> > On Tue, Jul 20, 2021 at 03:51:35PM +0200, Andrew Lunn wrote:
> > > On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> > > > Phylink documentation says:
> > > >   Note that the PHY may be able to transform from one connection
> > > >   technology to another, so, eg, don't clear 1000BaseX just
> > > >   because the MAC is unable to BaseX mode. This is more about
> > > >   clearing unsupported speeds and duplex settings. The port modes
> > > >   should not be cleared; phylink_set_port_modes() will help with this.
> > > > 
> > > > So add the missing 10G modes.
> > > 
> > > Hi Russell
> > > 
> > > Would a phylink_set_10g(mask) helper make sense? As you say, it is
> > > about the speed, not the individual modes.
> > 
> > Yes, good point, and that will probably help avoid this in the future.
> > We can't do that for things like e.g. SGMII though, because 1000/half
> > isn't universally supported.
> > 
> > Shall we get this patch merged anyway and then clean it up - as such
> > a change will need to cover multiple drivers anyway?
> > 
> 
> This didn't get merged unfortunately.
> 
> Could you please resend it? Alternatively, I can take a look into adding
> that phylink_set_10g() helper if that is what's keeping it from being
> merged.

It looks like the original patch didn't appear in patchwork for some
reason - at least google can find it in lore's netdev archives, but
not in patchwork. I can only put this down to some kernel.org
unreliability - we've seen this unreliability in the past with netdev,
and it seems to be an ongoing issue.

It's now too late to re-send for this merge window - net-next is
currently closed. Whether I remember in a fortnight or so time when
net-next re-opens is another problem.

And yes, I also have the phylink_set_10g() patches in my tree, which
was waiting for this patch to have been merged.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-09-03 10:33       ` Russell King (Oracle)
@ 2021-09-03 11:09         ` Ioana Ciornei
  2021-09-03 11:34           ` Russell King (Oracle)
  0 siblings, 1 reply; 13+ messages in thread
From: Ioana Ciornei @ 2021-09-03 11:09 UTC (permalink / raw)
  To: Russell King (Oracle)
  Cc: Ioana Ciornei, Andrew Lunn, Heiner Kallweit, David S. Miller,
	netdev, Ioana Ciornei, Jakub Kicinski

On Fri, Sep 03, 2021 at 11:33:58AM +0100, Russell King (Oracle) wrote:
> On Mon, Aug 16, 2021 at 05:47:52PM +0300, Ioana Ciornei wrote:
> > On Tue, Jul 20, 2021 at 03:11:34PM +0100, Russell King (Oracle) wrote:
> > > On Tue, Jul 20, 2021 at 03:51:35PM +0200, Andrew Lunn wrote:
> > > > On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> > > > > Phylink documentation says:
> > > > >   Note that the PHY may be able to transform from one connection
> > > > >   technology to another, so, eg, don't clear 1000BaseX just
> > > > >   because the MAC is unable to BaseX mode. This is more about
> > > > >   clearing unsupported speeds and duplex settings. The port modes
> > > > >   should not be cleared; phylink_set_port_modes() will help with this.
> > > > > 
> > > > > So add the missing 10G modes.
> > > > 
> > > > Hi Russell
> > > > 
> > > > Would a phylink_set_10g(mask) helper make sense? As you say, it is
> > > > about the speed, not the individual modes.
> > > 
> > > Yes, good point, and that will probably help avoid this in the future.
> > > We can't do that for things like e.g. SGMII though, because 1000/half
> > > isn't universally supported.
> > > 
> > > Shall we get this patch merged anyway and then clean it up - as such
> > > a change will need to cover multiple drivers anyway?
> > > 
> > 
> > This didn't get merged unfortunately.
> > 
> > Could you please resend it? Alternatively, I can take a look into adding
> > that phylink_set_10g() helper if that is what's keeping it from being
> > merged.
> 
> It looks like the original patch didn't appear in patchwork for some
> reason - at least google can find it in lore's netdev archives, but
> not in patchwork. I can only put this down to some kernel.org
> unreliability - we've seen this unreliability in the past with netdev,
> and it seems to be an ongoing issue.
> 

Yes, it cannot be found though google but the patch appears in
patchwork, it was tagged with 'Changes requested'.
https://patchwork.kernel.org/project/netdevbpf/patch/E1m5mVT-00032g-Km@rmk-PC.armlinux.org.uk/


> It's now too late to re-send for this merge window - net-next is
> currently closed. Whether I remember in a fortnight or so time when
> net-next re-opens is another problem.
> 
> And yes, I also have the phylink_set_10g() patches in my tree, which
> was waiting for this patch to have been merged.
> 

Ok, thanks!

Ioana

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-09-03 11:09         ` Ioana Ciornei
@ 2021-09-03 11:34           ` Russell King (Oracle)
  2021-09-03 13:11             ` Andrew Lunn
  0 siblings, 1 reply; 13+ messages in thread
From: Russell King (Oracle) @ 2021-09-03 11:34 UTC (permalink / raw)
  To: Ioana Ciornei
  Cc: Andrew Lunn, Heiner Kallweit, David S. Miller, netdev,
	Ioana Ciornei, Jakub Kicinski

On Fri, Sep 03, 2021 at 02:09:16PM +0300, Ioana Ciornei wrote:
> On Fri, Sep 03, 2021 at 11:33:58AM +0100, Russell King (Oracle) wrote:
> > On Mon, Aug 16, 2021 at 05:47:52PM +0300, Ioana Ciornei wrote:
> > > On Tue, Jul 20, 2021 at 03:11:34PM +0100, Russell King (Oracle) wrote:
> > > > On Tue, Jul 20, 2021 at 03:51:35PM +0200, Andrew Lunn wrote:
> > > > > On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> > > > > > Phylink documentation says:
> > > > > >   Note that the PHY may be able to transform from one connection
> > > > > >   technology to another, so, eg, don't clear 1000BaseX just
> > > > > >   because the MAC is unable to BaseX mode. This is more about
> > > > > >   clearing unsupported speeds and duplex settings. The port modes
> > > > > >   should not be cleared; phylink_set_port_modes() will help with this.
> > > > > > 
> > > > > > So add the missing 10G modes.
> > > > > 
> > > > > Hi Russell
> > > > > 
> > > > > Would a phylink_set_10g(mask) helper make sense? As you say, it is
> > > > > about the speed, not the individual modes.
> > > > 
> > > > Yes, good point, and that will probably help avoid this in the future.
> > > > We can't do that for things like e.g. SGMII though, because 1000/half
> > > > isn't universally supported.
> > > > 
> > > > Shall we get this patch merged anyway and then clean it up - as such
> > > > a change will need to cover multiple drivers anyway?
> > > > 
> > > 
> > > This didn't get merged unfortunately.
> > > 
> > > Could you please resend it? Alternatively, I can take a look into adding
> > > that phylink_set_10g() helper if that is what's keeping it from being
> > > merged.
> > 
> > It looks like the original patch didn't appear in patchwork for some
> > reason - at least google can find it in lore's netdev archives, but
> > not in patchwork. I can only put this down to some kernel.org
> > unreliability - we've seen this unreliability in the past with netdev,
> > and it seems to be an ongoing issue.
> > 
> 
> Yes, it cannot be found though google but the patch appears in
> patchwork, it was tagged with 'Changes requested'.
> https://patchwork.kernel.org/project/netdevbpf/patch/E1m5mVT-00032g-Km@rmk-PC.armlinux.org.uk/

Thanks. I wonder why searching for it via google and also via patchworks
search facility didn't find it.

So, it got incorrectly tagged by netdev maintainers, presumably because
they're too quick to classify a patch while discussion on the patch was
still ongoing - and there's no way for those discussing that to ever
know without finding it in patchwork. Which is pretty much impossible
unless you know the patchwork URL format and message ID, and are
prepared to regularly poll the patchwork website.

The netdev process, as a patch submitter or reviewer, is really very
unfriendly.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-09-03 11:34           ` Russell King (Oracle)
@ 2021-09-03 13:11             ` Andrew Lunn
  2021-09-03 17:06               ` Ioana Ciornei
  0 siblings, 1 reply; 13+ messages in thread
From: Andrew Lunn @ 2021-09-03 13:11 UTC (permalink / raw)
  To: Russell King (Oracle)
  Cc: Ioana Ciornei, Heiner Kallweit, David S. Miller, netdev,
	Ioana Ciornei, Jakub Kicinski

On Fri, Sep 03, 2021 at 12:34:34PM +0100, Russell King (Oracle) wrote:
> On Fri, Sep 03, 2021 at 02:09:16PM +0300, Ioana Ciornei wrote:
> > On Fri, Sep 03, 2021 at 11:33:58AM +0100, Russell King (Oracle) wrote:
> > > On Mon, Aug 16, 2021 at 05:47:52PM +0300, Ioana Ciornei wrote:
> > > > On Tue, Jul 20, 2021 at 03:11:34PM +0100, Russell King (Oracle) wrote:
> > > > > On Tue, Jul 20, 2021 at 03:51:35PM +0200, Andrew Lunn wrote:
> > > > > > On Tue, Jul 20, 2021 at 10:57:43AM +0100, Russell King wrote:
> > > > > > > Phylink documentation says:
> > > > > > >   Note that the PHY may be able to transform from one connection
> > > > > > >   technology to another, so, eg, don't clear 1000BaseX just
> > > > > > >   because the MAC is unable to BaseX mode. This is more about
> > > > > > >   clearing unsupported speeds and duplex settings. The port modes
> > > > > > >   should not be cleared; phylink_set_port_modes() will help with this.
> > > > > > > 
> > > > > > > So add the missing 10G modes.
> > > > > > 
> > > > > > Hi Russell
> > > > > > 
> > > > > > Would a phylink_set_10g(mask) helper make sense? As you say, it is
> > > > > > about the speed, not the individual modes.
> > > > > 
> > > > > Yes, good point, and that will probably help avoid this in the future.
> > > > > We can't do that for things like e.g. SGMII though, because 1000/half
> > > > > isn't universally supported.
> > > > > 
> > > > > Shall we get this patch merged anyway and then clean it up - as such
> > > > > a change will need to cover multiple drivers anyway?
> > > > > 
> > > > 
> > > > This didn't get merged unfortunately.
> > > > 
> > > > Could you please resend it? Alternatively, I can take a look into adding
> > > > that phylink_set_10g() helper if that is what's keeping it from being
> > > > merged.
> > > 
> > > It looks like the original patch didn't appear in patchwork for some
> > > reason - at least google can find it in lore's netdev archives, but
> > > not in patchwork. I can only put this down to some kernel.org
> > > unreliability - we've seen this unreliability in the past with netdev,
> > > and it seems to be an ongoing issue.
> > > 
> > 
> > Yes, it cannot be found though google but the patch appears in
> > patchwork, it was tagged with 'Changes requested'.
> > https://patchwork.kernel.org/project/netdevbpf/patch/E1m5mVT-00032g-Km@rmk-PC.armlinux.org.uk/
> 
> Thanks. I wonder why searching for it via google and also via patchworks
> search facility didn't find it.
> 
> So, it got incorrectly tagged by netdev maintainers, presumably because
> they're too quick to classify a patch while discussion on the patch was
> still ongoing - and there's no way for those discussing that to ever
> know without finding it in patchwork. Which is pretty much impossible
> unless you know the patchwork URL format and message ID, and are
> prepared to regularly poll the patchwork website.
> 
> The netdev process, as a patch submitter or reviewer, is really very
> unfriendly.

H Russell, Ioana

It sounds like at LPC there is going to be a time slot to talk about
netdev processes. I would like to find out and discuss the new policy
for the time it takes to merge patches. Patchwork issues, and the lack
of integration with email workflows could be another interesting topic
to discuss.

	Andrew

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-09-03 13:11             ` Andrew Lunn
@ 2021-09-03 17:06               ` Ioana Ciornei
  0 siblings, 0 replies; 13+ messages in thread
From: Ioana Ciornei @ 2021-09-03 17:06 UTC (permalink / raw)
  To: Andrew Lunn
  Cc: Russell King (Oracle),
	Ioana Ciornei, Heiner Kallweit, David S. Miller, netdev,
	Ioana Ciornei, Jakub Kicinski

On Fri, Sep 03, 2021 at 03:11:36PM +0200, Andrew Lunn wrote:

> > Thanks. I wonder why searching for it via google and also via patchworks
> > search facility didn't find it.
> > 
> > So, it got incorrectly tagged by netdev maintainers, presumably because
> > they're too quick to classify a patch while discussion on the patch was
> > still ongoing - and there's no way for those discussing that to ever
> > know without finding it in patchwork. Which is pretty much impossible
> > unless you know the patchwork URL format and message ID, and are
> > prepared to regularly poll the patchwork website.
> > 
> > The netdev process, as a patch submitter or reviewer, is really very
> > unfriendly.
> 
> H Russell, Ioana
> 
> It sounds like at LPC there is going to be a time slot to talk about
> netdev processes.

Is this on the Networking track? I didn't find any session that would
appear to target this topic.

> I would like to find out and discuss the new policy
> for the time it takes to merge patches. Patchwork issues, and the lack
> of integration with email workflows could be another interesting topic
> to discuss.

It would be interesting to have patchwork send a notification of some
sorts to the submitter when a certain patch set's state was changed.

Ioana

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

* Re: [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
  2021-03-09 15:35 Russell King
@ 2021-03-10  2:01 ` Andrew Lunn
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Lunn @ 2021-03-10  2:01 UTC (permalink / raw)
  To: Russell King
  Cc: Ioana Ciornei, Ioana Radulescu, David S. Miller, Jakub Kicinski, netdev

On Tue, Mar 09, 2021 at 03:35:05PM +0000, Russell King wrote:
> Phylink documentation says:
>  * Note that the PHY may be able to transform from one connection
>  * technology to another, so, eg, don't clear 1000BaseX just
>  * because the MAC is unable to BaseX mode. This is more about
>  * clearing unsupported speeds and duplex settings. The port modes
>  * should not be cleared; phylink_set_port_modes() will help with this.
> 
> So add the missing 10G modes. This allows SFP+ modules to be used with
> the SolidRun boards.
> 
> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

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

* [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes
@ 2021-03-09 15:35 Russell King
  2021-03-10  2:01 ` Andrew Lunn
  0 siblings, 1 reply; 13+ messages in thread
From: Russell King @ 2021-03-09 15:35 UTC (permalink / raw)
  To: Ioana Ciornei, Ioana Radulescu; +Cc: David S. Miller, Jakub Kicinski, netdev

Phylink documentation says:
 * Note that the PHY may be able to transform from one connection
 * technology to another, so, eg, don't clear 1000BaseX just
 * because the MAC is unable to BaseX mode. This is more about
 * clearing unsupported speeds and duplex settings. The port modes
 * should not be cleared; phylink_set_port_modes() will help with this.

So add the missing 10G modes. This allows SFP+ modules to be used with
the SolidRun boards.

Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
---
 drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c b/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
index ccaf7e35abeb..c2a889ac089a 100644
--- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
+++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
@@ -125,6 +125,11 @@ static void dpaa2_mac_validate(struct phylink_config *config,
 	case PHY_INTERFACE_MODE_10GBASER:
 	case PHY_INTERFACE_MODE_USXGMII:
 		phylink_set(mask, 10000baseT_Full);
+		phylink_set(mask, 10000baseCR_Full);
+		phylink_set(mask, 10000baseSR_Full);
+		phylink_set(mask, 10000baseLR_Full);
+		phylink_set(mask, 10000baseLRM_Full);
+		phylink_set(mask, 10000baseER_Full);
 		if (state->interface == PHY_INTERFACE_MODE_10GBASER)
 			break;
 		phylink_set(mask, 5000baseT_Full);
-- 
2.20.1


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

end of thread, other threads:[~2021-09-03 17:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-20  9:57 [PATCH net-next] net: dpaa2-mac: add support for more ethtool 10G link modes Russell King
2021-07-20 13:51 ` Andrew Lunn
2021-07-20 14:11   ` Russell King (Oracle)
2021-07-20 14:13     ` Andrew Lunn
2021-08-16 14:47     ` Ioana Ciornei
2021-09-03 10:33       ` Russell King (Oracle)
2021-09-03 11:09         ` Ioana Ciornei
2021-09-03 11:34           ` Russell King (Oracle)
2021-09-03 13:11             ` Andrew Lunn
2021-09-03 17:06               ` Ioana Ciornei
2021-07-20 14:13 ` Andrew Lunn
  -- strict thread matches above, loose matches on Subject: below --
2021-03-09 15:35 Russell King
2021-03-10  2:01 ` Andrew Lunn

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.