Lines Matching refs:pause
1159 /* enable pause frame*/
1162 ndev->phydev && ndev->phydev->pause)) {
2716 struct ethtool_pauseparam *pause)
2720 pause->autoneg = (fep->pause_flag & FEC_PAUSE_FLAG_AUTONEG) != 0;
2721 pause->tx_pause = (fep->pause_flag & FEC_PAUSE_FLAG_ENABLE) != 0;
2722 pause->rx_pause = pause->tx_pause;
2726 struct ethtool_pauseparam *pause)
2733 if (pause->tx_pause != pause->rx_pause) {
2741 /* tx pause must be same as rx pause */
2742 fep->pause_flag |= pause->rx_pause ? FEC_PAUSE_FLAG_ENABLE : 0;
2743 fep->pause_flag |= pause->autoneg ? FEC_PAUSE_FLAG_AUTONEG : 0;
2745 phy_set_sym_pause(ndev->phydev, pause->rx_pause, pause->tx_pause,
2746 pause->autoneg);
2748 if (pause->autoneg) {
4326 /* default enable pause frame auto negotiation */