From: Russell King (Oracle) <hidden> Date: 2021-07-12 15:47:25
The documentation for Armada 8040 says:
Bit 2 Field InBandAnEn In-band Auto-Negotiation enable. ...
When <PortType> = 1 (1000BASE-X) this field must be set to 1.
We presently ignore whether userspace requests autonegotiation or not
through the ethtool ksettings interface. However, we have some network
interfaces that wish to do this. To offer a consistent API across
network interfaces, deny the ability to disable autonegotiation on
mvneta hardware when in 1000BASE-X and 2500BASE-X.
This means the only way to switch between 2500BASE-X and 1000BASE-X
on SFPs that support this will be:
# ethtool -s ethX advertise 0x20000006000 # 1000BASE-X Pause AsymPause
# ethtool -s ethX advertise 0xe000 # 2500BASE-X Pause AsymPause
Signed-off-by: Russell King (Oracle) <redacted>
---
net-next is currently closed, but I'd like to collect acks for this
patch. Thanks.
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c | 9 +++++++++
1 file changed, 9 insertions(+)
@@ -6269,6 +6269,15 @@ static void mvpp2_phylink_validate(struct phylink_config *config,if(!mvpp2_port_supports_rgmii(port))gotoempty_set;break;+casePHY_INTERFACE_MODE_1000BASEX:+casePHY_INTERFACE_MODE_2500BASEX:+/* When in 802.3z mode, we must have AN enabled:+*Bit2FieldInBandAnEnIn-bandAuto-Negotiationenable....+*When<PortType>=1(1000BASE-X)thisfieldmustbesetto1.+*/+if(!phylink_test(state->advertising,Autoneg))+gotoempty_set;+break;default:break;}
From: Marek Behun <hidden> Date: 2021-07-12 21:27:50
On Mon, 12 Jul 2021 16:47:21 +0100
"Russell King (Oracle)" [off-list ref] wrote:
quoted hunk
The documentation for Armada 8040 says:
Bit 2 Field InBandAnEn In-band Auto-Negotiation enable. ...
When <PortType> = 1 (1000BASE-X) this field must be set to 1.
We presently ignore whether userspace requests autonegotiation or not
through the ethtool ksettings interface. However, we have some network
interfaces that wish to do this. To offer a consistent API across
network interfaces, deny the ability to disable autonegotiation on
mvneta hardware when in 1000BASE-X and 2500BASE-X.
This means the only way to switch between 2500BASE-X and 1000BASE-X
on SFPs that support this will be:
# ethtool -s ethX advertise 0x20000006000 # 1000BASE-X Pause AsymPause
# ethtool -s ethX advertise 0xe000 # 2500BASE-X Pause AsymPause
Signed-off-by: Russell King (Oracle) <redacted>
---
net-next is currently closed, but I'd like to collect acks for this
patch. Thanks.
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c | 9 +++++++++
1 file changed, 9 insertions(+)
@@ -6269,6 +6269,15 @@ static void mvpp2_phylink_validate(struct phylink_config *config,if(!mvpp2_port_supports_rgmii(port))gotoempty_set;break;+casePHY_INTERFACE_MODE_1000BASEX:+casePHY_INTERFACE_MODE_2500BASEX:+/* When in 802.3z mode, we must have AN enabled:+*Bit2FieldInBandAnEnIn-bandAuto-Negotiationenable....+*When<PortType>=1(1000BASE-X)thisfieldmustbesetto1.+*/+if(!phylink_test(state->advertising,Autoneg))+gotoempty_set;+break;default:break;}
From: Marcin Wojtas <hidden> Date: 2021-07-13 00:25:16
Hi,
pon., 12 lip 2021 o 17:47 Russell King (Oracle)
[off-list ref] napisał(a):
The documentation for Armada 8040 says:
Bit 2 Field InBandAnEn In-band Auto-Negotiation enable. ...
When <PortType> = 1 (1000BASE-X) this field must be set to 1.
We presently ignore whether userspace requests autonegotiation or not
through the ethtool ksettings interface. However, we have some network
interfaces that wish to do this. To offer a consistent API across
network interfaces, deny the ability to disable autonegotiation on
mvneta hardware when in 1000BASE-X and 2500BASE-X.
s/mvneta/mvpp2/
With that change you can add my:
Acked-by: Marcin Wojtas <redacted>
Thanks,
Marcin
quoted hunk
This means the only way to switch between 2500BASE-X and 1000BASE-X
on SFPs that support this will be:
# ethtool -s ethX advertise 0x20000006000 # 1000BASE-X Pause AsymPause
# ethtool -s ethX advertise 0xe000 # 2500BASE-X Pause AsymPause
Signed-off-by: Russell King (Oracle) <redacted>
---
net-next is currently closed, but I'd like to collect acks for this
patch. Thanks.
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c | 9 +++++++++
1 file changed, 9 insertions(+)
@@ -6269,6 +6269,15 @@ static void mvpp2_phylink_validate(struct phylink_config *config,if(!mvpp2_port_supports_rgmii(port))gotoempty_set;break;+casePHY_INTERFACE_MODE_1000BASEX:+casePHY_INTERFACE_MODE_2500BASEX:+/* When in 802.3z mode, we must have AN enabled:+*Bit2FieldInBandAnEnIn-bandAuto-Negotiationenable....+*When<PortType>=1(1000BASE-X)thisfieldmustbesetto1.+*/+if(!phylink_test(state->advertising,Autoneg))+gotoempty_set;+break;default:break;}--