ixgbe: migrate ntuple filter to new API
[dpdk.git] / lib / librte_pmd_ixgbe / ixgbe / ixgbe_api.c
index 579449a..1802760 100644 (file)
@@ -1,6 +1,6 @@
 /*******************************************************************************
 
-Copyright (c) 2001-2012, Intel Corporation
+Copyright (c) 2001-2014, Intel Corporation
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
@@ -33,11 +33,20 @@ POSSIBILITY OF SUCH DAMAGE.
 
 #include "ixgbe_api.h"
 #include "ixgbe_common.h"
+#ident "$Id: ixgbe_api.c,v 1.207 2013/11/22 01:02:01 jtkirshe Exp $"
 
-extern s32 ixgbe_init_ops_82598(struct ixgbe_hw *hw);
-extern s32 ixgbe_init_ops_82599(struct ixgbe_hw *hw);
-extern s32 ixgbe_init_ops_X540(struct ixgbe_hw *hw);
-extern s32 ixgbe_init_ops_vf(struct ixgbe_hw *hw);
+/**
+ * ixgbe_dcb_get_rtrup2tc - read rtrup2tc reg
+ * @hw: pointer to hardware structure
+ * @map: pointer to u8 arr for returning map
+ *
+ * Read the rtrup2tc HW register and resolve its content into map
+ **/
+void ixgbe_dcb_get_rtrup2tc(struct ixgbe_hw *hw, u8 *map)
+{
+       if (hw->mac.ops.get_rtrup2tc)
+               hw->mac.ops.get_rtrup2tc(hw, map);
+}
 
 /**
  *  ixgbe_init_shared_code - Initialize the shared code
@@ -69,13 +78,21 @@ s32 ixgbe_init_shared_code(struct ixgbe_hw *hw)
        case ixgbe_mac_82599EB:
                status = ixgbe_init_ops_82599(hw);
                break;
+       case ixgbe_mac_X540:
+               status = ixgbe_init_ops_X540(hw);
+               break;
+       case ixgbe_mac_X550:
+               status = ixgbe_init_ops_X550(hw);
+               break;
+       case ixgbe_mac_X550EM_x:
+               status = ixgbe_init_ops_X550EM(hw);
+               break;
        case ixgbe_mac_82599_vf:
        case ixgbe_mac_X540_vf:
+       case ixgbe_mac_X550_vf:
+       case ixgbe_mac_X550EM_x_vf:
                status = ixgbe_init_ops_vf(hw);
                break;
-       case ixgbe_mac_X540:
-               status = ixgbe_init_ops_X540(hw);
-               break;
        default:
                status = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
                break;
@@ -97,55 +114,84 @@ s32 ixgbe_set_mac_type(struct ixgbe_hw *hw)
 
        DEBUGFUNC("ixgbe_set_mac_type\n");
 
-       if (hw->vendor_id == IXGBE_INTEL_VENDOR_ID) {
-               switch (hw->device_id) {
-               case IXGBE_DEV_ID_82598:
-               case IXGBE_DEV_ID_82598_BX:
-               case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
-               case IXGBE_DEV_ID_82598AF_DUAL_PORT:
-               case IXGBE_DEV_ID_82598AT:
-               case IXGBE_DEV_ID_82598AT2:
-               case IXGBE_DEV_ID_82598EB_CX4:
-               case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
-               case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
-               case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
-               case IXGBE_DEV_ID_82598EB_XF_LR:
-               case IXGBE_DEV_ID_82598EB_SFP_LOM:
-                       hw->mac.type = ixgbe_mac_82598EB;
-                       break;
-               case IXGBE_DEV_ID_82599_KX4:
-               case IXGBE_DEV_ID_82599_KX4_MEZZ:
-               case IXGBE_DEV_ID_82599_XAUI_LOM:
-               case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
-               case IXGBE_DEV_ID_82599_KR:
-               case IXGBE_DEV_ID_82599_SFP:
-               case IXGBE_DEV_ID_82599_BACKPLANE_FCOE:
-               case IXGBE_DEV_ID_82599_SFP_FCOE:
-               case IXGBE_DEV_ID_82599_SFP_EM:
-               case IXGBE_DEV_ID_82599EN_SFP:
-               case IXGBE_DEV_ID_82599_CX4:
-               case IXGBE_DEV_ID_82599_T3_LOM:
-                       hw->mac.type = ixgbe_mac_82599EB;
-                       break;
-               case IXGBE_DEV_ID_82599_VF:
-                       hw->mac.type = ixgbe_mac_82599_vf;
-                       break;
-               case IXGBE_DEV_ID_X540_VF:
-                       hw->mac.type = ixgbe_mac_X540_vf;
-                       break;
-               case IXGBE_DEV_ID_X540T:
-                       hw->mac.type = ixgbe_mac_X540;
-                       break;
-               default:
-                       ret_val = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
-                       break;
-               }
-       } else {
+       if (hw->vendor_id != IXGBE_INTEL_VENDOR_ID) {
+               ERROR_REPORT2(IXGBE_ERROR_UNSUPPORTED,
+                            "Unsupported vendor id: %x", hw->vendor_id);
+               return IXGBE_ERR_DEVICE_NOT_SUPPORTED;
+       }
+
+       switch (hw->device_id) {
+       case IXGBE_DEV_ID_82598:
+       case IXGBE_DEV_ID_82598_BX:
+       case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
+       case IXGBE_DEV_ID_82598AF_DUAL_PORT:
+       case IXGBE_DEV_ID_82598AT:
+       case IXGBE_DEV_ID_82598AT2:
+       case IXGBE_DEV_ID_82598EB_CX4:
+       case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
+       case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
+       case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
+       case IXGBE_DEV_ID_82598EB_XF_LR:
+       case IXGBE_DEV_ID_82598EB_SFP_LOM:
+               hw->mac.type = ixgbe_mac_82598EB;
+               break;
+       case IXGBE_DEV_ID_82599_KX4:
+       case IXGBE_DEV_ID_82599_KX4_MEZZ:
+       case IXGBE_DEV_ID_82599_XAUI_LOM:
+       case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
+       case IXGBE_DEV_ID_82599_KR:
+       case IXGBE_DEV_ID_82599_SFP:
+       case IXGBE_DEV_ID_82599_BACKPLANE_FCOE:
+       case IXGBE_DEV_ID_82599_SFP_FCOE:
+       case IXGBE_DEV_ID_82599_SFP_EM:
+       case IXGBE_DEV_ID_82599_SFP_SF2:
+       case IXGBE_DEV_ID_82599_SFP_SF_QP:
+       case IXGBE_DEV_ID_82599_QSFP_SF_QP:
+       case IXGBE_DEV_ID_82599EN_SFP:
+       case IXGBE_DEV_ID_82599_CX4:
+       case IXGBE_DEV_ID_82599_LS:
+       case IXGBE_DEV_ID_82599_T3_LOM:
+               hw->mac.type = ixgbe_mac_82599EB;
+               break;
+       case IXGBE_DEV_ID_82599_VF:
+       case IXGBE_DEV_ID_82599_VF_HV:
+               hw->mac.type = ixgbe_mac_82599_vf;
+               break;
+       case IXGBE_DEV_ID_X540_VF:
+       case IXGBE_DEV_ID_X540_VF_HV:
+               hw->mac.type = ixgbe_mac_X540_vf;
+               break;
+       case IXGBE_DEV_ID_X540T:
+       case IXGBE_DEV_ID_X540T1:
+               hw->mac.type = ixgbe_mac_X540;
+               break;
+       case IXGBE_DEV_ID_X550T:
+               hw->mac.type = ixgbe_mac_X550;
+               break;
+       case IXGBE_DEV_ID_X550EM_X:
+       case IXGBE_DEV_ID_X550EM_X_KX4:
+       case IXGBE_DEV_ID_X550EM_X_KR:
+       case IXGBE_DEV_ID_X550EM_X_SFP:
+               hw->mac.type = ixgbe_mac_X550EM_x;
+               break;
+       case IXGBE_DEV_ID_X550_VF:
+       case IXGBE_DEV_ID_X550_VF_HV:
+               hw->mac.type = ixgbe_mac_X550_vf;
+               break;
+       case IXGBE_DEV_ID_X550EM_X_VF:
+       case IXGBE_DEV_ID_X550EM_X_VF_HV:
+               hw->mac.type = ixgbe_mac_X550EM_x_vf;
+               break;
+       default:
                ret_val = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
+               ERROR_REPORT2(IXGBE_ERROR_UNSUPPORTED,
+                            "Unsupported device id: %x",
+                            hw->device_id);
+               break;
        }
 
        DEBUGOUT2("ixgbe_set_mac_type found mac: %d, returns: %d\n",
-                 hw->mac.type, ret_val);
+                 hw->mac.type, ret_val);
        return ret_val;
 }
 
@@ -158,7 +204,7 @@ s32 ixgbe_set_mac_type(struct ixgbe_hw *hw)
 s32 ixgbe_init_hw(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.init_hw, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -171,7 +217,7 @@ s32 ixgbe_init_hw(struct ixgbe_hw *hw)
 s32 ixgbe_reset_hw(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.reset_hw, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -187,7 +233,7 @@ s32 ixgbe_reset_hw(struct ixgbe_hw *hw)
 s32 ixgbe_start_hw(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.start_hw, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -214,7 +260,7 @@ void ixgbe_enable_relaxed_ordering(struct ixgbe_hw *hw)
 s32 ixgbe_clear_hw_cntrs(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.clear_hw_cntrs, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -226,7 +272,7 @@ s32 ixgbe_clear_hw_cntrs(struct ixgbe_hw *hw)
 enum ixgbe_media_type ixgbe_get_media_type(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_media_type, (hw),
-                              ixgbe_media_type_unknown);
+                              ixgbe_media_type_unknown);
 }
 
 /**
@@ -242,7 +288,7 @@ enum ixgbe_media_type ixgbe_get_media_type(struct ixgbe_hw *hw)
 s32 ixgbe_get_mac_addr(struct ixgbe_hw *hw, u8 *mac_addr)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_mac_addr,
-                              (hw, mac_addr), IXGBE_NOT_IMPLEMENTED);
+                              (hw, mac_addr), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -256,7 +302,7 @@ s32 ixgbe_get_mac_addr(struct ixgbe_hw *hw, u8 *mac_addr)
 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_san_mac_addr,
-                              (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
+                              (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -269,7 +315,7 @@ s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
 {
        return ixgbe_call_func(hw, hw->mac.ops.set_san_mac_addr,
-                              (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
+                              (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -282,7 +328,7 @@ s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
 s32 ixgbe_get_device_caps(struct ixgbe_hw *hw, u16 *device_caps)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_device_caps,
-                              (hw, device_caps), IXGBE_NOT_IMPLEMENTED);
+                              (hw, device_caps), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -295,11 +341,11 @@ s32 ixgbe_get_device_caps(struct ixgbe_hw *hw, u16 *device_caps)
  *  block to check the support for the alternative WWNN/WWPN prefix support.
  **/
 s32 ixgbe_get_wwn_prefix(struct ixgbe_hw *hw, u16 *wwnn_prefix,
-                         u16 *wwpn_prefix)
+                        u16 *wwpn_prefix)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_wwn_prefix,
-                              (hw, wwnn_prefix, wwpn_prefix),
-                              IXGBE_NOT_IMPLEMENTED);
+                              (hw, wwnn_prefix, wwpn_prefix),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -312,8 +358,8 @@ s32 ixgbe_get_wwn_prefix(struct ixgbe_hw *hw, u16 *wwnn_prefix,
 s32 ixgbe_get_fcoe_boot_status(struct ixgbe_hw *hw, u16 *bs)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_fcoe_boot_status,
-                              (hw, bs),
-                              IXGBE_NOT_IMPLEMENTED);
+                              (hw, bs),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -325,7 +371,7 @@ s32 ixgbe_get_fcoe_boot_status(struct ixgbe_hw *hw, u16 *bs)
 s32 ixgbe_get_bus_info(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_bus_info, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -362,7 +408,7 @@ u32 ixgbe_get_num_of_rx_queues(struct ixgbe_hw *hw)
 s32 ixgbe_stop_adapter(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.stop_adapter, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -402,7 +448,7 @@ s32 ixgbe_identify_phy(struct ixgbe_hw *hw)
 
        if (hw->phy.type == ixgbe_phy_unknown) {
                status = ixgbe_call_func(hw, hw->phy.ops.identify, (hw),
-                                        IXGBE_NOT_IMPLEMENTED);
+                                        IXGBE_NOT_IMPLEMENTED);
        }
 
        return status;
@@ -423,7 +469,7 @@ s32 ixgbe_reset_phy(struct ixgbe_hw *hw)
 
        if (status == IXGBE_SUCCESS) {
                status = ixgbe_call_func(hw, hw->phy.ops.reset, (hw),
-                                        IXGBE_NOT_IMPLEMENTED);
+                                        IXGBE_NOT_IMPLEMENTED);
        }
        return status;
 }
@@ -438,8 +484,8 @@ s32 ixgbe_get_phy_firmware_version(struct ixgbe_hw *hw, u16 *firmware_version)
        s32 status = IXGBE_SUCCESS;
 
        status = ixgbe_call_func(hw, hw->phy.ops.get_firmware_version,
-                                (hw, firmware_version),
-                                IXGBE_NOT_IMPLEMENTED);
+                                (hw, firmware_version),
+                                IXGBE_NOT_IMPLEMENTED);
        return status;
 }
 
@@ -452,13 +498,13 @@ s32 ixgbe_get_phy_firmware_version(struct ixgbe_hw *hw, u16 *firmware_version)
  *  Reads a value from a specified PHY register
  **/
 s32 ixgbe_read_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
-                       u16 *phy_data)
+                      u16 *phy_data)
 {
        if (hw->phy.id == 0)
                ixgbe_identify_phy(hw);
 
        return ixgbe_call_func(hw, hw->phy.ops.read_reg, (hw, reg_addr,
-                              device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
+                              device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -470,13 +516,13 @@ s32 ixgbe_read_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
  *  Writes a value to specified PHY register
  **/
 s32 ixgbe_write_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
-                        u16 phy_data)
+                       u16 phy_data)
 {
        if (hw->phy.id == 0)
                ixgbe_identify_phy(hw);
 
        return ixgbe_call_func(hw, hw->phy.ops.write_reg, (hw, reg_addr,
-                              device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
+                              device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -488,7 +534,7 @@ s32 ixgbe_write_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
 s32 ixgbe_setup_phy_link(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->phy.ops.setup_link, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -499,27 +545,25 @@ s32 ixgbe_setup_phy_link(struct ixgbe_hw *hw)
  *  the PHY.
  **/
 s32 ixgbe_check_phy_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
-                         bool *link_up)
+                        bool *link_up)
 {
        return ixgbe_call_func(hw, hw->phy.ops.check_link, (hw, speed,
-                              link_up), IXGBE_NOT_IMPLEMENTED);
+                              link_up), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
  *  ixgbe_setup_phy_link_speed - Set auto advertise
  *  @hw: pointer to hardware structure
  *  @speed: new link speed
- *  @autoneg: TRUE if autonegotiation enabled
  *
  *  Sets the auto advertised capabilities
  **/
 s32 ixgbe_setup_phy_link_speed(struct ixgbe_hw *hw, ixgbe_link_speed speed,
-                               bool autoneg,
-                               bool autoneg_wait_to_complete)
+                              bool autoneg_wait_to_complete)
 {
        return ixgbe_call_func(hw, hw->phy.ops.setup_link_speed, (hw, speed,
-                              autoneg, autoneg_wait_to_complete),
-                              IXGBE_NOT_IMPLEMENTED);
+                              autoneg_wait_to_complete),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -529,11 +573,11 @@ s32 ixgbe_setup_phy_link_speed(struct ixgbe_hw *hw, ixgbe_link_speed speed,
  *  Reads the links register to determine if link is up and the current speed
  **/
 s32 ixgbe_check_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
-                     bool *link_up, bool link_up_wait_to_complete)
+                    bool *link_up, bool link_up_wait_to_complete)
 {
        return ixgbe_call_func(hw, hw->mac.ops.check_link, (hw, speed,
-                              link_up, link_up_wait_to_complete),
-                              IXGBE_NOT_IMPLEMENTED);
+                              link_up, link_up_wait_to_complete),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -578,18 +622,16 @@ void ixgbe_flap_tx_laser(struct ixgbe_hw *hw)
  *  ixgbe_setup_link - Set link speed
  *  @hw: pointer to hardware structure
  *  @speed: new link speed
- *  @autoneg: TRUE if autonegotiation enabled
  *
  *  Configures link settings.  Restarts the link.
  *  Performs autonegotiation if needed.
  **/
 s32 ixgbe_setup_link(struct ixgbe_hw *hw, ixgbe_link_speed speed,
-                           bool autoneg,
-                           bool autoneg_wait_to_complete)
+                    bool autoneg_wait_to_complete)
 {
        return ixgbe_call_func(hw, hw->mac.ops.setup_link, (hw, speed,
-                              autoneg, autoneg_wait_to_complete),
-                              IXGBE_NOT_IMPLEMENTED);
+                              autoneg_wait_to_complete),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -599,10 +641,10 @@ s32 ixgbe_setup_link(struct ixgbe_hw *hw, ixgbe_link_speed speed,
  *  Determines the link capabilities of the current configuration.
  **/
 s32 ixgbe_get_link_capabilities(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
-                                bool *autoneg)
+                               bool *autoneg)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_link_capabilities, (hw,
-                              speed, autoneg), IXGBE_NOT_IMPLEMENTED);
+                              speed, autoneg), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -615,7 +657,7 @@ s32 ixgbe_get_link_capabilities(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
 s32 ixgbe_led_on(struct ixgbe_hw *hw, u32 index)
 {
        return ixgbe_call_func(hw, hw->mac.ops.led_on, (hw, index),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -628,7 +670,7 @@ s32 ixgbe_led_on(struct ixgbe_hw *hw, u32 index)
 s32 ixgbe_led_off(struct ixgbe_hw *hw, u32 index)
 {
        return ixgbe_call_func(hw, hw->mac.ops.led_off, (hw, index),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -641,7 +683,7 @@ s32 ixgbe_led_off(struct ixgbe_hw *hw, u32 index)
 s32 ixgbe_blink_led_start(struct ixgbe_hw *hw, u32 index)
 {
        return ixgbe_call_func(hw, hw->mac.ops.blink_led_start, (hw, index),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -653,7 +695,7 @@ s32 ixgbe_blink_led_start(struct ixgbe_hw *hw, u32 index)
 s32 ixgbe_blink_led_stop(struct ixgbe_hw *hw, u32 index)
 {
        return ixgbe_call_func(hw, hw->mac.ops.blink_led_stop, (hw, index),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -666,7 +708,7 @@ s32 ixgbe_blink_led_stop(struct ixgbe_hw *hw, u32 index)
 s32 ixgbe_init_eeprom_params(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->eeprom.ops.init_params, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 
@@ -683,7 +725,7 @@ s32 ixgbe_init_eeprom_params(struct ixgbe_hw *hw)
 s32 ixgbe_write_eeprom(struct ixgbe_hw *hw, u16 offset, u16 data)
 {
        return ixgbe_call_func(hw, hw->eeprom.ops.write, (hw, offset, data),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -698,11 +740,11 @@ s32 ixgbe_write_eeprom(struct ixgbe_hw *hw, u16 offset, u16 data)
  *  invalid checksum.
  **/
 s32 ixgbe_write_eeprom_buffer(struct ixgbe_hw *hw, u16 offset, u16 words,
-                              u16 *data)
+                             u16 *data)
 {
        return ixgbe_call_func(hw, hw->eeprom.ops.write_buffer,
-                              (hw, offset, words, data),
-                              IXGBE_NOT_IMPLEMENTED);
+                              (hw, offset, words, data),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -716,7 +758,7 @@ s32 ixgbe_write_eeprom_buffer(struct ixgbe_hw *hw, u16 offset, u16 words,
 s32 ixgbe_read_eeprom(struct ixgbe_hw *hw, u16 offset, u16 *data)
 {
        return ixgbe_call_func(hw, hw->eeprom.ops.read, (hw, offset, data),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -729,11 +771,11 @@ s32 ixgbe_read_eeprom(struct ixgbe_hw *hw, u16 offset, u16 *data)
  *  Reads 16 bit word(s) from EEPROM
  **/
 s32 ixgbe_read_eeprom_buffer(struct ixgbe_hw *hw, u16 offset,
-                             u16 words, u16 *data)
+                            u16 words, u16 *data)
 {
        return ixgbe_call_func(hw, hw->eeprom.ops.read_buffer,
-                              (hw, offset, words, data),
-                              IXGBE_NOT_IMPLEMENTED);
+                              (hw, offset, words, data),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -746,7 +788,7 @@ s32 ixgbe_read_eeprom_buffer(struct ixgbe_hw *hw, u16 offset,
 s32 ixgbe_validate_eeprom_checksum(struct ixgbe_hw *hw, u16 *checksum_val)
 {
        return ixgbe_call_func(hw, hw->eeprom.ops.validate_checksum,
-                              (hw, checksum_val), IXGBE_NOT_IMPLEMENTED);
+                              (hw, checksum_val), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -756,7 +798,7 @@ s32 ixgbe_validate_eeprom_checksum(struct ixgbe_hw *hw, u16 *checksum_val)
 s32 ixgbe_update_eeprom_checksum(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->eeprom.ops.update_checksum, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -771,7 +813,7 @@ s32 ixgbe_update_eeprom_checksum(struct ixgbe_hw *hw)
 s32 ixgbe_insert_mac_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq)
 {
        return ixgbe_call_func(hw, hw->mac.ops.insert_mac_addr,
-                              (hw, addr, vmdq),
+                              (hw, addr, vmdq),
                               IXGBE_NOT_IMPLEMENTED);
 }
 
@@ -786,10 +828,10 @@ s32 ixgbe_insert_mac_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq)
  *  Puts an ethernet address into a receive address register.
  **/
 s32 ixgbe_set_rar(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
-                  u32 enable_addr)
+                 u32 enable_addr)
 {
        return ixgbe_call_func(hw, hw->mac.ops.set_rar, (hw, index, addr, vmdq,
-                              enable_addr), IXGBE_NOT_IMPLEMENTED);
+                              enable_addr), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -802,7 +844,7 @@ s32 ixgbe_set_rar(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
 s32 ixgbe_clear_rar(struct ixgbe_hw *hw, u32 index)
 {
        return ixgbe_call_func(hw, hw->mac.ops.clear_rar, (hw, index),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -814,7 +856,19 @@ s32 ixgbe_clear_rar(struct ixgbe_hw *hw, u32 index)
 s32 ixgbe_set_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
 {
        return ixgbe_call_func(hw, hw->mac.ops.set_vmdq, (hw, rar, vmdq),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
+
+}
+
+/**
+ *  ixgbe_set_vmdq_san_mac - Associate VMDq index 127 with a receive address
+ *  @hw: pointer to hardware structure
+ *  @vmdq: VMDq default pool index
+ **/
+s32 ixgbe_set_vmdq_san_mac(struct ixgbe_hw *hw, u32 vmdq)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.set_vmdq_san_mac,
+                              (hw, vmdq), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -826,7 +880,7 @@ s32 ixgbe_set_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
 s32 ixgbe_clear_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
 {
        return ixgbe_call_func(hw, hw->mac.ops.clear_vmdq, (hw, rar, vmdq),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -840,7 +894,7 @@ s32 ixgbe_clear_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
 s32 ixgbe_init_rx_addrs(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.init_rx_addrs, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -864,11 +918,11 @@ u32 ixgbe_get_num_rx_addrs(struct ixgbe_hw *hw)
  *  first secondary addresses, and falls back to promiscuous mode as needed.
  **/
 s32 ixgbe_update_uc_addr_list(struct ixgbe_hw *hw, u8 *addr_list,
-                              u32 addr_count, ixgbe_mc_addr_itr func)
+                             u32 addr_count, ixgbe_mc_addr_itr func)
 {
        return ixgbe_call_func(hw, hw->mac.ops.update_uc_addr_list, (hw,
-                              addr_list, addr_count, func),
-                              IXGBE_NOT_IMPLEMENTED);
+                              addr_list, addr_count, func),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -884,12 +938,12 @@ s32 ixgbe_update_uc_addr_list(struct ixgbe_hw *hw, u8 *addr_list,
  *  multicast table.
  **/
 s32 ixgbe_update_mc_addr_list(struct ixgbe_hw *hw, u8 *mc_addr_list,
-                              u32 mc_addr_count, ixgbe_mc_addr_itr func,
-                              bool clear)
+                             u32 mc_addr_count, ixgbe_mc_addr_itr func,
+                             bool clear)
 {
        return ixgbe_call_func(hw, hw->mac.ops.update_mc_addr_list, (hw,
-                              mc_addr_list, mc_addr_count, func, clear),
-                              IXGBE_NOT_IMPLEMENTED);
+                              mc_addr_list, mc_addr_count, func, clear),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -901,7 +955,7 @@ s32 ixgbe_update_mc_addr_list(struct ixgbe_hw *hw, u8 *mc_addr_list,
 s32 ixgbe_enable_mc(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.enable_mc, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -913,7 +967,7 @@ s32 ixgbe_enable_mc(struct ixgbe_hw *hw)
 s32 ixgbe_disable_mc(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.disable_mc, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -925,7 +979,7 @@ s32 ixgbe_disable_mc(struct ixgbe_hw *hw)
 s32 ixgbe_clear_vfta(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.clear_vfta, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -940,20 +994,37 @@ s32 ixgbe_clear_vfta(struct ixgbe_hw *hw)
 s32 ixgbe_set_vfta(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on)
 {
        return ixgbe_call_func(hw, hw->mac.ops.set_vfta, (hw, vlan, vind,
-                              vlan_on), IXGBE_NOT_IMPLEMENTED);
+                              vlan_on), IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_set_vlvf - Set VLAN Pool Filter
+ *  @hw: pointer to hardware structure
+ *  @vlan: VLAN id to write to VLAN filter
+ *  @vind: VMDq output index that maps queue to VLAN id in VFVFB
+ *  @vlan_on: boolean flag to turn on/off VLAN in VFVF
+ *  @vfta_changed: pointer to boolean flag which indicates whether VFTA
+ *                 should be changed
+ *
+ *  Turn on/off specified bit in VLVF table.
+ **/
+s32 ixgbe_set_vlvf(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on,
+                   bool *vfta_changed)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.set_vlvf, (hw, vlan, vind,
+                              vlan_on, vfta_changed), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
  *  ixgbe_fc_enable - Enable flow control
  *  @hw: pointer to hardware structure
- *  @packetbuf_num: packet buffer number (0-7)
  *
  *  Configures the flow control settings based on SW configuration.
  **/
-s32 ixgbe_fc_enable(struct ixgbe_hw *hw, s32 packetbuf_num)
+s32 ixgbe_fc_enable(struct ixgbe_hw *hw)
 {
-       return ixgbe_call_func(hw, hw->mac.ops.fc_enable, (hw, packetbuf_num),
-                              IXGBE_NOT_IMPLEMENTED);
+       return ixgbe_call_func(hw, hw->mac.ops.fc_enable, (hw),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -965,10 +1036,194 @@ s32 ixgbe_fc_enable(struct ixgbe_hw *hw, s32 packetbuf_num)
  * @ver: driver version number to be sent to firmware
  **/
 s32 ixgbe_set_fw_drv_ver(struct ixgbe_hw *hw, u8 maj, u8 min, u8 build,
-                         u8 ver)
+                        u8 ver)
 {
        return ixgbe_call_func(hw, hw->mac.ops.set_fw_drv_ver, (hw, maj, min,
-                              build, ver), IXGBE_NOT_IMPLEMENTED);
+                              build, ver), IXGBE_NOT_IMPLEMENTED);
+}
+
+
+/**
+ *  ixgbe_get_thermal_sensor_data - Gathers thermal sensor data
+ *  @hw: pointer to hardware structure
+ *
+ *  Updates the temperatures in mac.thermal_sensor_data
+ **/
+s32 ixgbe_get_thermal_sensor_data(struct ixgbe_hw *hw)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.get_thermal_sensor_data, (hw),
+                               IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_init_thermal_sensor_thresh - Inits thermal sensor thresholds
+ *  @hw: pointer to hardware structure
+ *
+ *  Inits the thermal sensor thresholds according to the NVM map
+ **/
+s32 ixgbe_init_thermal_sensor_thresh(struct ixgbe_hw *hw)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.init_thermal_sensor_thresh, (hw),
+                               IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_dmac_config - Configure DMA Coalescing registers.
+ *  @hw: pointer to hardware structure
+ *
+ *  Configure DMA coalescing. If enabling dmac, dmac is activated.
+ *  When disabling dmac, dmac enable dmac bit is cleared.
+ **/
+s32 ixgbe_dmac_config(struct ixgbe_hw *hw)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.dmac_config, (hw),
+                               IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_dmac_update_tcs - Configure DMA Coalescing registers.
+ *  @hw: pointer to hardware structure
+ *
+ *  Disables dmac, updates per TC settings, and then enable dmac.
+ **/
+s32 ixgbe_dmac_update_tcs(struct ixgbe_hw *hw)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.dmac_update_tcs, (hw),
+                               IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_dmac_config_tcs - Configure DMA Coalescing registers.
+ *  @hw: pointer to hardware structure
+ *
+ *  Configure DMA coalescing threshold per TC and set high priority bit for
+ *  FCOE TC. The dmac enable bit must be cleared before configuring.
+ **/
+s32 ixgbe_dmac_config_tcs(struct ixgbe_hw *hw)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.dmac_config_tcs, (hw),
+                               IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_setup_eee - Enable/disable EEE support
+ *  @hw: pointer to the HW structure
+ *  @enable_eee: boolean flag to enable EEE
+ *
+ *  Enable/disable EEE based on enable_ee flag.
+ *  Auto-negotiation must be started after BASE-T EEE bits in PHY register 7.3C
+ *  are modified.
+ *
+ **/
+s32 ixgbe_setup_eee(struct ixgbe_hw *hw, bool enable_eee)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.setup_eee, (hw, enable_eee),
+                       IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ * ixgbe_set_source_address_pruning - Enable/Disable source address pruning
+ * @hw: pointer to hardware structure
+ * @enbale: enable or disable source address pruning
+ * @pool: Rx pool - Rx pool to toggle source address pruning
+ **/
+void ixgbe_set_source_address_pruning(struct ixgbe_hw *hw, bool enable,
+                                     unsigned int pool)
+{
+       if (hw->mac.ops.set_source_address_pruning)
+               hw->mac.ops.set_source_address_pruning(hw, enable, pool);
+}
+
+/**
+ *  ixgbe_set_ethertype_anti_spoofing - Enable/Disable Ethertype anti-spoofing
+ *  @hw: pointer to hardware structure
+ *  @enable: enable or disable switch for Ethertype anti-spoofing
+ *  @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
+ *
+ **/
+void ixgbe_set_ethertype_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
+{
+       if (hw->mac.ops.set_ethertype_anti_spoofing)
+               hw->mac.ops.set_ethertype_anti_spoofing(hw, enable, vf);
+}
+
+/**
+ *  ixgbe_read_iosf_sb_reg - Read 32 bit PHY register
+ *  @hw: pointer to hardware structure
+ *  @reg_addr: 32 bit address of PHY register to read
+ *  @device_type: type of device you want to communicate with
+ *  @phy_data: Pointer to read data from PHY register
+ *
+ *  Reads a value from a specified PHY register
+ **/
+s32 ixgbe_read_iosf_sb_reg(struct ixgbe_hw *hw, u32 reg_addr,
+                          u32 device_type, u32 *phy_data)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.read_iosf_sb_reg, (hw, reg_addr,
+                              device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_write_iosf_sb_reg - Write 32 bit register through IOSF Sideband
+ *  @hw: pointer to hardware structure
+ *  @reg_addr: 32 bit PHY register to write
+ *  @device_type: type of device you want to communicate with
+ *  @phy_data: Data to write to the PHY register
+ *
+ *  Writes a value to specified PHY register
+ **/
+s32 ixgbe_write_iosf_sb_reg(struct ixgbe_hw *hw, u32 reg_addr,
+                           u32 device_type, u32 phy_data)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.write_iosf_sb_reg, (hw, reg_addr,
+                              device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_disable_mdd - Disable malicious driver detection
+ *  @hw: pointer to hardware structure
+ *
+ **/
+void ixgbe_disable_mdd(struct ixgbe_hw *hw)
+{
+       if (hw->mac.ops.disable_mdd)
+               hw->mac.ops.disable_mdd(hw);
+}
+
+/**
+ *  ixgbe_enable_mdd - Enable malicious driver detection
+ *  @hw: pointer to hardware structure
+ *
+ **/
+void ixgbe_enable_mdd(struct ixgbe_hw *hw)
+{
+       if (hw->mac.ops.enable_mdd)
+               hw->mac.ops.enable_mdd(hw);
+}
+
+/**
+ *  ixgbe_mdd_event - Handle malicious driver detection event
+ *  @hw: pointer to hardware structure
+ *  @vf_bitmap: vf bitmap of malicious vfs
+ *
+ **/
+void ixgbe_mdd_event(struct ixgbe_hw *hw, u32 *vf_bitmap)
+{
+       if (hw->mac.ops.mdd_event)
+               hw->mac.ops.mdd_event(hw, vf_bitmap);
+}
+
+/**
+ *  ixgbe_restore_mdd_vf - Restore VF that was disabled during malicious driver
+ *  detection event
+ *  @hw: pointer to hardware structure
+ *  @vf: vf index
+ *
+ **/
+void ixgbe_restore_mdd_vf(struct ixgbe_hw *hw, u32 vf)
+{
+       if (hw->mac.ops.restore_mdd_vf)
+               hw->mac.ops.restore_mdd_vf(hw, vf);
 }
 
 /**
@@ -982,7 +1237,7 @@ s32 ixgbe_set_fw_drv_ver(struct ixgbe_hw *hw, u8 maj, u8 min, u8 build,
 s32 ixgbe_read_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 *val)
 {
        return ixgbe_call_func(hw, hw->mac.ops.read_analog_reg8, (hw, reg,
-                              val), IXGBE_NOT_IMPLEMENTED);
+                              val), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -996,7 +1251,7 @@ s32 ixgbe_read_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 *val)
 s32 ixgbe_write_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 val)
 {
        return ixgbe_call_func(hw, hw->mac.ops.write_analog_reg8, (hw, reg,
-                              val), IXGBE_NOT_IMPLEMENTED);
+                              val), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1009,7 +1264,7 @@ s32 ixgbe_write_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 val)
 s32 ixgbe_init_uta_tables(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.init_uta_tables, (hw),
-                              IXGBE_NOT_IMPLEMENTED);
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1021,10 +1276,10 @@ s32 ixgbe_init_uta_tables(struct ixgbe_hw *hw)
  *  Performs byte read operation to SFP module's EEPROM over I2C interface.
  **/
 s32 ixgbe_read_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
-                        u8 *data)
+                       u8 *data)
 {
        return ixgbe_call_func(hw, hw->phy.ops.read_i2c_byte, (hw, byte_offset,
-                              dev_addr, data), IXGBE_NOT_IMPLEMENTED);
+                              dev_addr, data), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1037,10 +1292,10 @@ s32 ixgbe_read_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
  *  at a specified device address.
  **/
 s32 ixgbe_write_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
-                         u8 data)
+                        u8 data)
 {
        return ixgbe_call_func(hw, hw->phy.ops.write_i2c_byte, (hw, byte_offset,
-                              dev_addr, data), IXGBE_NOT_IMPLEMENTED);
+                              dev_addr, data), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1052,11 +1307,11 @@ s32 ixgbe_write_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
  *  Performs byte write operation to SFP module's EEPROM over I2C interface.
  **/
 s32 ixgbe_write_i2c_eeprom(struct ixgbe_hw *hw,
-                           u8 byte_offset, u8 eeprom_data)
+                          u8 byte_offset, u8 eeprom_data)
 {
        return ixgbe_call_func(hw, hw->phy.ops.write_i2c_eeprom,
-                              (hw, byte_offset, eeprom_data),
-                              IXGBE_NOT_IMPLEMENTED);
+                              (hw, byte_offset, eeprom_data),
+                              IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1070,8 +1325,8 @@ s32 ixgbe_write_i2c_eeprom(struct ixgbe_hw *hw,
 s32 ixgbe_read_i2c_eeprom(struct ixgbe_hw *hw, u8 byte_offset, u8 *eeprom_data)
 {
        return ixgbe_call_func(hw, hw->phy.ops.read_i2c_eeprom,
-                             (hw, byte_offset, eeprom_data),
-                             IXGBE_NOT_IMPLEMENTED);
+                             (hw, byte_offset, eeprom_data),
+                             IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1083,11 +1338,11 @@ s32 ixgbe_read_i2c_eeprom(struct ixgbe_hw *hw, u8 byte_offset, u8 *eeprom_data)
 u32 ixgbe_get_supported_physical_layer(struct ixgbe_hw *hw)
 {
        return ixgbe_call_func(hw, hw->mac.ops.get_supported_physical_layer,
-                              (hw), IXGBE_PHYSICAL_LAYER_UNKNOWN);
+                              (hw), IXGBE_PHYSICAL_LAYER_UNKNOWN);
 }
 
 /**
- *  ixgbe_enable_rx_dma - Enables Rx DMA unit, dependant on device specifics
+ *  ixgbe_enable_rx_dma - Enables Rx DMA unit, dependent on device specifics
  *  @hw: pointer to hardware structure
  *  @regval: bitfield to write to the Rx DMA register
  *
@@ -1096,7 +1351,31 @@ u32 ixgbe_get_supported_physical_layer(struct ixgbe_hw *hw)
 s32 ixgbe_enable_rx_dma(struct ixgbe_hw *hw, u32 regval)
 {
        return ixgbe_call_func(hw, hw->mac.ops.enable_rx_dma,
-                              (hw, regval), IXGBE_NOT_IMPLEMENTED);
+                              (hw, regval), IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_disable_sec_rx_path - Stops the receive data path
+ *  @hw: pointer to hardware structure
+ *
+ *  Stops the receive data path.
+ **/
+s32 ixgbe_disable_sec_rx_path(struct ixgbe_hw *hw)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.disable_sec_rx_path,
+                               (hw), IXGBE_NOT_IMPLEMENTED);
+}
+
+/**
+ *  ixgbe_enable_sec_rx_path - Enables the receive data path
+ *  @hw: pointer to hardware structure
+ *
+ *  Enables the receive data path.
+ **/
+s32 ixgbe_enable_sec_rx_path(struct ixgbe_hw *hw)
+{
+       return ixgbe_call_func(hw, hw->mac.ops.enable_sec_rx_path,
+                               (hw), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1107,10 +1386,10 @@ s32 ixgbe_enable_rx_dma(struct ixgbe_hw *hw, u32 regval)
  *  Acquires the SWFW semaphore through SW_FW_SYNC register for the specified
  *  function (CSR, PHY0, PHY1, EEPROM, Flash)
  **/
-s32 ixgbe_acquire_swfw_semaphore(struct ixgbe_hw *hw, u16 mask)
+s32 ixgbe_acquire_swfw_semaphore(struct ixgbe_hw *hw, u32 mask)
 {
        return ixgbe_call_func(hw, hw->mac.ops.acquire_swfw_sync,
-                              (hw, mask), IXGBE_NOT_IMPLEMENTED);
+                              (hw, mask), IXGBE_NOT_IMPLEMENTED);
 }
 
 /**
@@ -1121,9 +1400,21 @@ s32 ixgbe_acquire_swfw_semaphore(struct ixgbe_hw *hw, u16 mask)
  *  Releases the SWFW semaphore through SW_FW_SYNC register for the specified
  *  function (CSR, PHY0, PHY1, EEPROM, Flash)
  **/
-void ixgbe_release_swfw_semaphore(struct ixgbe_hw *hw, u16 mask)
+void ixgbe_release_swfw_semaphore(struct ixgbe_hw *hw, u32 mask)
 {
        if (hw->mac.ops.release_swfw_sync)
                hw->mac.ops.release_swfw_sync(hw, mask);
 }
 
+
+void ixgbe_disable_rx(struct ixgbe_hw *hw)
+{
+       if (hw->mac.ops.disable_rx)
+               hw->mac.ops.disable_rx(hw);
+}
+
+void ixgbe_enable_rx(struct ixgbe_hw *hw)
+{
+       if (hw->mac.ops.enable_rx)
+               hw->mac.ops.enable_rx(hw);
+}