Commit cc7f31bf authored by Chris J Arges's avatar Chris J Arges Committed by Willy Tarreau

igb: Workaround for igb i210 firmware issue

commit 4e684f59 upstream.

Sometimes firmware may not properly initialize I347AT4_PAGE_SELECT causing
the probe of an igb i210 NIC to fail. This patch adds an addition zeroing
of this register during igb_get_phy_id to workaround this issue.

Thanks for Jochen Henneberg for the idea and original patch.
Signed-off-by: default avatarChris J Arges <christopherarges@gmail.com>
Tested-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
Signed-off-by: default avatarWilly Tarreau <w@1wt.eu>
parent 741c8ac5
...@@ -87,6 +87,10 @@ s32 igb_get_phy_id(struct e1000_hw *hw) ...@@ -87,6 +87,10 @@ s32 igb_get_phy_id(struct e1000_hw *hw)
s32 ret_val = 0; s32 ret_val = 0;
u16 phy_id; u16 phy_id;
/* ensure PHY page selection to fix misconfigured i210 */
if (hw->mac.type == e1000_i210)
phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0);
ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id); ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id);
if (ret_val) if (ret_val)
goto out; goto out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment