[PATCH net] ixgbe: set X550 MDIO speed before talking to PHY

Subsystems: intel ethernet drivers, networking drivers, the rest

STALE1768d

4 messages, 3 authors, 2021-10-30 · open the first message on its own page

[PATCH net] ixgbe: set X550 MDIO speed before talking to PHY

From: Cyril Novikov <hidden>
Date: 2021-10-29 01:11:47

The MDIO bus speed must be initialized before talking to the PHY the first
time in order to avoid talking to it using a speed that the PHY doesn't
support.

This fixes HW initialization error -17 (IXGBE_ERR_PHY_ADDR_INVALID) on
Denverton CPUs (a.k.a. the Atom C3000 family) on ports with a 10Gb network
plugged in. On those devices, HLREG0[MDCSPD] resets to 1, which combined
with the 10Gb network results in a 24MHz MDIO speed, which is apparently
too fast for the connected PHY. PHY register reads over MDIO bus return
garbage, leading to initialization failure.

Signed-off-by: Cyril Novikov <redacted>
---
 drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c | 3 +++
 1 file changed, 3 insertions(+)

Reproduced with Linux kernel 4.19 and 5.15-rc7. Can be reproduced using
the following setup:

* Use an Atom C3000 family system with at least one X550 LAN on the SoC
* Disable PXE or other BIOS network initialization if possible
  (the interface must not be initialized before Linux boots)
* Connect a live 10Gb Ethernet cable to an X550 port
* Power cycle (not reset, doesn't always work) the system and boot Linux
* Observe: ixgbe interfaces w/ 10GbE cables plugged in fail with error -17
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
index 9724ffb16518..e4b50c7781ff 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
@@ -3405,6 +3405,9 @@ static s32 ixgbe_reset_hw_X550em(struct ixgbe_hw *hw)
 	/* flush pending Tx transactions */
 	ixgbe_clear_tx_pending(hw);
 
+	/* set MDIO speed before talking to the PHY in case it's the 1st time */
+	ixgbe_set_mdio_speed(hw);
+
 	/* PHY ops must be identified and initialized prior to reset */
 	status = hw->phy.ops.init(hw);
 	if (status == IXGBE_ERR_SFP_NOT_SUPPORTED ||
-- 
2.19.1-412.replication

Re: [Intel-wired-lan] [PATCH net] ixgbe: set X550 MDIO speed before talking to PHY

From: Paul Menzel <hidden>
Date: 2021-10-29 06:47:49

Dear Cyril,


On 29.10.21 03:03, Cyril Novikov wrote:
The MDIO bus speed must be initialized before talking to the PHY the first
time in order to avoid talking to it using a speed that the PHY doesn't
support.

This fixes HW initialization error -17 (IXGBE_ERR_PHY_ADDR_INVALID) on
Denverton CPUs (a.k.a. the Atom C3000 family) on ports with a 10Gb network
plugged in. On those devices, HLREG0[MDCSPD] resets to 1, which combined
with the 10Gb network results in a 24MHz MDIO speed, which is apparently
too fast for the connected PHY. PHY register reads over MDIO bus return
garbage, leading to initialization failure.
Maybe add a Fixes tag?
Signed-off-by: Cyril Novikov <redacted>
---
  drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c | 3 +++
  1 file changed, 3 insertions(+)

Reproduced with Linux kernel 4.19 and 5.15-rc7. Can be reproduced using
the following setup:

* Use an Atom C3000 family system with at least one X550 LAN on the SoC
* Disable PXE or other BIOS network initialization if possible
   (the interface must not be initialized before Linux boots)
* Connect a live 10Gb Ethernet cable to an X550 port
* Power cycle (not reset, doesn't always work) the system and boot Linux
* Observe: ixgbe interfaces w/ 10GbE cables plugged in fail with error -17
Why not add that to the commit message?
quoted hunk
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
index 9724ffb16518..e4b50c7781ff 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
@@ -3405,6 +3405,9 @@ static s32 ixgbe_reset_hw_X550em(struct ixgbe_hw *hw)
  	/* flush pending Tx transactions */
  	ixgbe_clear_tx_pending(hw);
  
+	/* set MDIO speed before talking to the PHY in case it's the 1st time */
+	ixgbe_set_mdio_speed(hw);
+
  	/* PHY ops must be identified and initialized prior to reset */
  	status = hw->phy.ops.init(hw);
  	if (status == IXGBE_ERR_SFP_NOT_SUPPORTED ||
Is `ixgbe_set_mdio_speed(hw)` at the end of the function then still needed?


Kind regards,

Paul

Re: [Intel-wired-lan] [PATCH net] ixgbe: set X550 MDIO speed before talking to PHY

From: Cyril Novikov <hidden>
Date: 2021-10-29 23:11:46

On 10/28/2021 11:47 PM, Paul Menzel wrote:
Dear Cyril,


On 29.10.21 03:03, Cyril Novikov wrote:
quoted
The MDIO bus speed must be initialized before talking to the PHY the 
first
time in order to avoid talking to it using a speed that the PHY doesn't
support.

This fixes HW initialization error -17 (IXGBE_ERR_PHY_ADDR_INVALID) on
Denverton CPUs (a.k.a. the Atom C3000 family) on ports with a 10Gb 
network
plugged in. On those devices, HLREG0[MDCSPD] resets to 1, which combined
with the 10Gb network results in a 24MHz MDIO speed, which is apparently
too fast for the connected PHY. PHY register reads over MDIO bus return
garbage, leading to initialization failure.
Maybe add a Fixes tag?
This is my first patch submission for Linux kernel. What I read about 
the Fixes tag says it identifies a previous commit that had introduced 
the bug. I have no idea which commit introduced this bug. We saw it in 
4.19 which probably means the bug was always there and is not a 
regression. It's also quite possible the original commit was correct for 
the hardware existing at that time and it only started behaving 
incorrectly with new hardware, so it wasn't actually a bug at the time 
it was submitted. I also don't have the capability or time to bisect 
this problem.
quoted
Signed-off-by: Cyril Novikov <redacted>
---
  drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c | 3 +++
  1 file changed, 3 insertions(+)

Reproduced with Linux kernel 4.19 and 5.15-rc7. Can be reproduced using
the following setup:

* Use an Atom C3000 family system with at least one X550 LAN on the SoC
* Disable PXE or other BIOS network initialization if possible
   (the interface must not be initialized before Linux boots)
* Connect a live 10Gb Ethernet cable to an X550 port
* Power cycle (not reset, doesn't always work) the system and boot Linux
* Observe: ixgbe interfaces w/ 10GbE cables plugged in fail with error 
-17
Why not add that to the commit message?
I wasn't sure if the reproduction scenario belonged to the commit 
message, and have no problem adding it if you believe it does.
quoted
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c 
b/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
index 9724ffb16518..e4b50c7781ff 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
@@ -3405,6 +3405,9 @@ static s32 ixgbe_reset_hw_X550em(struct ixgbe_hw 
*hw)
      /* flush pending Tx transactions */
      ixgbe_clear_tx_pending(hw);
+    /* set MDIO speed before talking to the PHY in case it's the 1st 
time */
+    ixgbe_set_mdio_speed(hw);
+
      /* PHY ops must be identified and initialized prior to reset */
      status = hw->phy.ops.init(hw);
      if (status == IXGBE_ERR_SFP_NOT_SUPPORTED ||
Is `ixgbe_set_mdio_speed(hw)` at the end of the function then still needed?
The code between the two calls issues a global reset to the MAC and 
optionally the link, depending on some flags. That may reset the MDIO 
speed back to the wrong value or, according to the comments in the code, 
may reset the PHY and result in renegotiation and a different link 
speed. So, the MDIO speed setting may require an adjustment. Even if it 
actually doesn't at the moment, doing the second call makes the code 
robust to future software and hardware changes.

--
Cyril

Re: [Intel-wired-lan] [PATCH net] ixgbe: set X550 MDIO speed before talking to PHY

From: Andrew Lunn <andrew@lunn.ch>
Date: 2021-10-30 17:29:03

On Fri, Oct 29, 2021 at 04:06:26PM -0700, Cyril Novikov wrote:
On 10/28/2021 11:47 PM, Paul Menzel wrote:
quoted
Dear Cyril,


On 29.10.21 03:03, Cyril Novikov wrote:
quoted
The MDIO bus speed must be initialized before talking to the PHY the
first
time in order to avoid talking to it using a speed that the PHY doesn't
support.

This fixes HW initialization error -17 (IXGBE_ERR_PHY_ADDR_INVALID) on
Denverton CPUs (a.k.a. the Atom C3000 family) on ports with a 10Gb
network
plugged in. On those devices, HLREG0[MDCSPD] resets to 1, which combined
with the 10Gb network results in a 24MHz MDIO speed, which is apparently
too fast for the connected PHY. PHY register reads over MDIO bus return
garbage, leading to initialization failure.
Maybe add a Fixes tag?
This is my first patch submission for Linux kernel.
Welcome to the community.
What I read about the
Fixes tag says it identifies a previous commit that had introduced the bug.
I have no idea which commit introduced this bug. We saw it in 4.19 which
probably means the bug was always there and is not a regression. It's also
quite possible the original commit was correct for the hardware existing at
that time and it only started behaving incorrectly with new hardware, so it
wasn't actually a bug at the time it was submitted. I also don't have the
capability or time to bisect this problem.
From how you describe it, i assume the issue is present for any 10G
links? git blame suggests:

e84db7272798e (Mark Rustad         2016-04-01 12:18:30 -0700 3357) static void ixgbe_set_mdio_speed(struct ixgbe_hw *hw)
e84db7272798e (Mark Rustad         2016-04-01 12:18:30 -0700 3358) {
e84db7272798e (Mark Rustad         2016-04-01 12:18:30 -0700 3359)      u32 hlreg0;
e84db7272798e (Mark Rustad         2016-04-01 12:18:30 -0700 3360) 
e84db7272798e (Mark Rustad         2016-04-01 12:18:30 -0700 3361)      switch (hw->device_id) {
e84db7272798e (Mark Rustad         2016-04-01 12:18:30 -0700 3362)      case IXGBE_DEV_ID_X550EM_X_10G_T:
a83c27e79068c (Don Skidmore        2016-08-17 17:34:07 -0400 3363)      case IXGBE_DEV_ID_X550EM_A_SGMII:
a83c27e79068c (Don Skidmore        2016-08-17 17:34:07 -0400 3364)      case IXGBE_DEV_ID_X550EM_A_SGMII_L:
92ed84300718d (Don Skidmore        2016-08-17 20:34:40 -0400 3365)      case IXGBE_DEV_ID_X550EM_A_10G_T:

commit e84db7272798ed8abb2760a3fcd9c6d89abf99a5
Author: Mark Rustad [off-list ref]
Date:   Fri Apr 1 12:18:30 2016 -0700

    ixgbe: Introduce function to control MDIO speed
    
    Move code that controls MDIO speed into a new function because
    there will be more MACs that need the control.
    
    Signed-off-by: Mark Rustad [off-list ref]
    Tested-by: Andrew Bowers [off-list ref]
    Signed-off-by: Jeff Kirsher [off-list ref]

So the fixes would be

Fixes: e84db7272798 ("ixgbe: Introduce function to control MDIO speed")
quoted
quoted
Signed-off-by: Cyril Novikov <redacted>
---
  drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c | 3 +++
  1 file changed, 3 insertions(+)

Reproduced with Linux kernel 4.19 and 5.15-rc7. Can be reproduced using
the following setup:

* Use an Atom C3000 family system with at least one X550 LAN on the SoC
* Disable PXE or other BIOS network initialization if possible
   (the interface must not be initialized before Linux boots)
* Connect a live 10Gb Ethernet cable to an X550 port
* Power cycle (not reset, doesn't always work) the system and boot Linux
* Observe: ixgbe interfaces w/ 10GbE cables plugged in fail with
error -17
Why not add that to the commit message?
I wasn't sure if the reproduction scenario belonged to the commit message,
and have no problem adding it if you believe it does.
quoted
Is `ixgbe_set_mdio_speed(hw)` at the end of the function then still needed?
The code between the two calls issues a global reset to the MAC and
optionally the link, depending on some flags. That may reset the MDIO speed
back to the wrong value or, according to the comments in the code, may reset
the PHY and result in renegotiation and a different link speed. So, the MDIO
speed setting may require an adjustment. Even if it actually doesn't at the
moment, doing the second call makes the code robust to future software and
hardware changes.
This is useful information to put in the commit message.

When writing commit messages, try to also think from the perspective
of the person doing the review. What questions are the reviewers
likely to ask, and can those questions be answered in the commit
message, rather than having them asked on the list?

Another use case of the commit message is when it turns out a change
causes a regression. It happens sometimes, and including information
about how you tested your change can be useful for helping fix the
regression. It allows whoever is fixing the regression to also test
your case, or at least something similar.

So in general, more information in the commit messages is better than
less.

     Andrew
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help