Re: [PATCH 2/2] ethtool: Add 100BaseT1 and 1000BaseT1 link modes

2019-05-31 Thread Lucas Stach
Am Freitag, den 31.05.2019, 14:30 +0200 schrieb Andrew Lunn: > > That's not just theory. The Broadcom BCM54811 PHY supports both > > 100/1000baseT, as well as 100baseT1. > > Hi Lucus > > There does not appear to be a driver for it, which is why i've not > seen it, nor have we had this conversatio

Re: [PATCH 2/2] ethtool: Add 100BaseT1 and 1000BaseT1 link modes

2019-05-31 Thread Andrew Lunn
> That's not just theory. The Broadcom BCM54811 PHY supports both > 100/1000baseT, as well as 100baseT1. Hi Lucus There does not appear to be a driver for it, which is why i've not seen it, nor have we had this conversation before. Do you have a driver to submit? Andrew

Re: [PATCH 2/2] ethtool: Add 100BaseT1 and 1000BaseT1 link modes

2019-05-31 Thread Lucas Stach
Am Freitag, den 31.05.2019, 13:59 +0200 schrieb Andrew Lunn: > > > @@ -634,10 +636,14 @@ static void dump_link_caps(const char *prefix, > > > const char *an_prefix, > > > > > >     "100baseT/Half" }, > > > > > >   { 1, ETHTOOL_LINK_MODE_100baseT_Full_BIT, > > > > > >  

Re: [PATCH 2/2] ethtool: Add 100BaseT1 and 1000BaseT1 link modes

2019-05-31 Thread Andrew Lunn
> > @@ -634,10 +636,14 @@ static void dump_link_caps(const char *prefix, const > > char *an_prefix, > > "100baseT/Half" }, > > { 1, ETHTOOL_LINK_MODE_100baseT_Full_BIT, > > "100baseT/Full" }, > > + { 1, ETHTOOL_LINK_MODE_100baseT1_Full_BIT, > > +

Re: [PATCH 2/2] ethtool: Add 100BaseT1 and 1000BaseT1 link modes

2019-05-31 Thread Michal Kubecek
On Thu, May 30, 2019 at 08:06:16PM +0200, Andrew Lunn wrote: > The kernel can now indicate if the PHY supports operating over a > single pair at 100Mbps or 1000Mbps. > > Signed-off-by: Andrew Lunn > --- > ethtool.c | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/ethtool.c b/ethto

[PATCH 2/2] ethtool: Add 100BaseT1 and 1000BaseT1 link modes

2019-05-30 Thread Andrew Lunn
The kernel can now indicate if the PHY supports operating over a single pair at 100Mbps or 1000Mbps. Signed-off-by: Andrew Lunn --- ethtool.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/ethtool.c b/ethtool.c index 66a907edd97b..35158939e04c 100644 --- a/ethtool.c +++ b/ethtool.c @@