|
@@ -295,6 +295,12 @@ static s32 ixgbe_identify_phy_x550em(struct ixgbe_hw *hw)
|
|
|
case IXGBE_DEV_ID_X550EM_A_KR_L:
|
|
|
hw->phy.type = ixgbe_phy_x550em_kr;
|
|
|
break;
|
|
|
+ case IXGBE_DEV_ID_X550EM_A_10G_T:
|
|
|
+ if (hw->bus.lan_id)
|
|
|
+ hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
|
|
|
+ else
|
|
|
+ hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
|
|
|
+ /* Fallthrough */
|
|
|
case IXGBE_DEV_ID_X550EM_X_1G_T:
|
|
|
case IXGBE_DEV_ID_X550EM_X_10G_T:
|
|
|
return ixgbe_identify_phy_generic(hw);
|
|
@@ -2500,6 +2506,7 @@ static enum ixgbe_media_type ixgbe_get_media_type_X550em(struct ixgbe_hw *hw)
|
|
|
break;
|
|
|
case IXGBE_DEV_ID_X550EM_X_1G_T:
|
|
|
case IXGBE_DEV_ID_X550EM_X_10G_T:
|
|
|
+ case IXGBE_DEV_ID_X550EM_A_10G_T:
|
|
|
media_type = ixgbe_media_type_copper;
|
|
|
break;
|
|
|
default:
|
|
@@ -2560,6 +2567,7 @@ static void ixgbe_set_mdio_speed(struct ixgbe_hw *hw)
|
|
|
case IXGBE_DEV_ID_X550EM_X_10G_T:
|
|
|
case IXGBE_DEV_ID_X550EM_A_SGMII:
|
|
|
case IXGBE_DEV_ID_X550EM_A_SGMII_L:
|
|
|
+ case IXGBE_DEV_ID_X550EM_A_10G_T:
|
|
|
case IXGBE_DEV_ID_X550EM_A_SFP:
|
|
|
/* Config MDIO clock speed before the first MDIO PHY access */
|
|
|
hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
|