From: Wei Dai Date: Thu, 12 Jan 2017 14:53:29 +0000 (+0800) Subject: net/ixgbe/base: use clause 22 MDIO functions for Marvell PHYs X-Git-Tag: spdx-start~4826 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=96dae4644af74f1b55f2558eda147eb8ac1306e8;p=dpdk.git net/ixgbe/base: use clause 22 MDIO functions for Marvell PHYs Set the MDIO (Management Data Input/Output Interface) read/write function pointers for Marvell PHYs on some X550 platforms to use the clause 22 functions. Marvell PHYs do not support clause 45. Signed-off-by: Wei Dai --- diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/drivers/net/ixgbe/base/ixgbe_x550.c index 1fd7ffb73a..e15054bedd 100644 --- a/drivers/net/ixgbe/base/ixgbe_x550.c +++ b/drivers/net/ixgbe/base/ixgbe_x550.c @@ -2373,6 +2373,10 @@ s32 ixgbe_init_phy_ops_X550em(struct ixgbe_hw *hw) /* set up for CS4227 usage */ hw->phy.phy_semaphore_mask = IXGBE_GSSR_SHARED_I2C_SM; break; + case IXGBE_DEV_ID_X550EM_X_1G_T: + phy->ops.read_reg_mdi = ixgbe_read_phy_reg_mdi_22; + phy->ops.write_reg_mdi = ixgbe_write_phy_reg_mdi_22; + break; default: break; }