]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
bnxt_en: Refactor bnxt_fw_to_ethtool_advertised_spds().
authorMichael Chan <michael.chan@broadcom.com>
Mon, 7 Mar 2016 20:38:41 +0000 (15:38 -0500)
committerChuck Anderson <chuck.anderson@oracle.com>
Thu, 7 Jul 2016 00:37:01 +0000 (17:37 -0700)
Orabug: 23221795

Include the conversion of pause bits and add one extra call layer so
that the same refactored function can be reused to get the link partner
advertisement bits.

Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
(cherry picked from commit 27c4d578600c401c119c012a90920805fab05cc9)
Signed-off-by: Brian Maly <brian.maly@oracle.com>
drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c

index 536982ad57b6fa6be28d31c70c9cf478c5364ef5..8699e794b7e24e4670199c1eedbf44398cbc4c71 100644 (file)
@@ -542,9 +542,8 @@ static u32 bnxt_fw_to_ethtool_support_spds(struct bnxt_link_info *link_info)
        return speed_mask;
 }
 
-static u32 bnxt_fw_to_ethtool_advertised_spds(struct bnxt_link_info *link_info)
+static u32 _bnxt_fw_to_ethtool_adv_spds(u16 fw_speeds, u8 fw_pause)
 {
-       u16 fw_speeds = link_info->auto_link_speeds;
        u32 speed_mask = 0;
 
        /* TODO: support 25GB, 40GB, 50GB with different cable type */
@@ -559,9 +558,28 @@ static u32 bnxt_fw_to_ethtool_advertised_spds(struct bnxt_link_info *link_info)
                speed_mask |= ADVERTISED_10000baseT_Full;
        if (fw_speeds & BNXT_LINK_SPEED_MSK_40GB)
                speed_mask |= ADVERTISED_40000baseCR4_Full;
+
+       if ((fw_pause & BNXT_LINK_PAUSE_BOTH) == BNXT_LINK_PAUSE_BOTH)
+               speed_mask |= ADVERTISED_Pause;
+       else if (fw_pause & BNXT_LINK_PAUSE_TX)
+               speed_mask |= ADVERTISED_Asym_Pause;
+       else if (fw_pause & BNXT_LINK_PAUSE_RX)
+               speed_mask |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
+
        return speed_mask;
 }
 
+static u32 bnxt_fw_to_ethtool_advertised_spds(struct bnxt_link_info *link_info)
+{
+       u16 fw_speeds = link_info->auto_link_speeds;
+       u8 fw_pause = 0;
+
+       if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL)
+               fw_pause = link_info->auto_pause_setting;
+
+       return _bnxt_fw_to_ethtool_adv_spds(fw_speeds, fw_pause);
+}
+
 u32 bnxt_fw_to_ethtool_speed(u16 fw_link_speed)
 {
        switch (fw_link_speed) {
@@ -607,17 +625,6 @@ static int bnxt_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
                cmd->autoneg = AUTONEG_DISABLE;
                cmd->advertising = 0;
        }
-       if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) {
-               if ((link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH) ==
-                   BNXT_LINK_PAUSE_BOTH) {
-                       cmd->advertising |= ADVERTISED_Pause;
-               } else {
-                       cmd->advertising |= ADVERTISED_Asym_Pause;
-                       if (link_info->auto_pause_setting &
-                           BNXT_LINK_PAUSE_RX)
-                               cmd->advertising |= ADVERTISED_Pause;
-               }
-       }
 
        cmd->port = PORT_NONE;
        if (link_info->media_type == PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP) {