Home
last modified time | relevance | path

Searched refs:phy_status (Results 1 – 6 of 6) sorted by relevance

/dpdk/drivers/net/ixgbe/base/
H A Dixgbe_82598.c783 s32 phy_status = IXGBE_SUCCESS; in ixgbe_reset_hw_82598() local
835 phy_status = hw->phy.ops.init(hw); in ixgbe_reset_hw_82598()
836 if (phy_status == IXGBE_ERR_SFP_NOT_SUPPORTED) in ixgbe_reset_hw_82598()
838 if (phy_status == IXGBE_ERR_SFP_NOT_PRESENT) in ixgbe_reset_hw_82598()
904 if (phy_status != IXGBE_SUCCESS) in ixgbe_reset_hw_82598()
905 status = phy_status; in ixgbe_reset_hw_82598()
/dpdk/drivers/net/e1000/base/
H A De1000_phy.c2297 u16 i, phy_status; in e1000_wait_autoneg() local
2306 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in e1000_wait_autoneg()
2309 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in e1000_wait_autoneg()
2312 if (phy_status & MII_SR_AUTONEG_COMPLETE) in e1000_wait_autoneg()
2336 u16 i, phy_status; in e1000_phy_has_link_generic() local
2348 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in e1000_phy_has_link_generic()
2359 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in e1000_phy_has_link_generic()
2362 if (phy_status & MII_SR_LINK_STATUS) in e1000_phy_has_link_generic()
/dpdk/drivers/net/igc/base/
H A Digc_phy.c2332 u16 i, phy_status; in igc_wait_autoneg() local
2341 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in igc_wait_autoneg()
2344 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in igc_wait_autoneg()
2347 if (phy_status & MII_SR_AUTONEG_COMPLETE) in igc_wait_autoneg()
2371 u16 i, phy_status; in igc_phy_has_link_generic() local
2383 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in igc_phy_has_link_generic()
2394 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); in igc_phy_has_link_generic()
2397 if (phy_status & MII_SR_LINK_STATUS) in igc_phy_has_link_generic()
/dpdk/drivers/net/axgbe/
H A Daxgbe_ethdev.h381 void (*phy_status)(struct axgbe_port *); member
H A Daxgbe_mdio.c1251 phy_if->phy_status = axgbe_phy_status; in axgbe_init_function_ptrs_phy()
H A Daxgbe_ethdev.c765 pdata->phy_if.phy_status(pdata); in axgbe_dev_link_update()