]> git.hungrycats.org Git - linux/commitdiff
igb: add i211 to i210 PHY workaround
authorTodd Fujinaka <todd.fujinaka@intel.com>
Fri, 17 Mar 2017 00:48:19 +0000 (00:48 +0000)
committerWilly Tarreau <w@1wt.eu>
Tue, 20 Jun 2017 12:04:34 +0000 (14:04 +0200)
commit 5bc8c230e2a993b49244f9457499f17283da9ec7 upstream.

i210 and i211 share the same PHY but have different PCI IDs. Don't
forget i211 for any i210 workarounds.

Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/net/ethernet/intel/igb/e1000_phy.c

index 3012c09c5c1c52aeef31904a2accfc6f34d62292..583ebff31160d648f8f37be12216a0c10f04197f 100644 (file)
@@ -88,7 +88,7 @@ s32 igb_get_phy_id(struct e1000_hw *hw)
        u16 phy_id;
 
        /* ensure PHY page selection to fix misconfigured i210 */
-       if (hw->mac.type == e1000_i210)
+       if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211))
                phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0);
 
        ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id);