return 0;
 }
 
+/**
+ *  e1000e_force_smbus - Force interfaces to transition to SMBUS mode.
+ *  @hw: pointer to the HW structure
+ *
+ *  Force the MAC and the PHY to SMBUS mode. Assumes semaphore already
+ *  acquired.
+ *
+ * Return: 0 on success, negative errno on failure.
+ **/
+static s32 e1000e_force_smbus(struct e1000_hw *hw)
+{
+       u16 smb_ctrl = 0;
+       u32 ctrl_ext;
+       s32 ret_val;
+
+       /* Switching PHY interface always returns MDI error
+        * so disable retry mechanism to avoid wasting time
+        */
+       e1000e_disable_phy_retry(hw);
+
+       /* Force SMBus mode in the PHY */
+       ret_val = e1000_read_phy_reg_hv_locked(hw, CV_SMB_CTRL, &smb_ctrl);
+       if (ret_val) {
+               e1000e_enable_phy_retry(hw);
+               return ret_val;
+       }
+
+       smb_ctrl |= CV_SMB_CTRL_FORCE_SMBUS;
+       e1000_write_phy_reg_hv_locked(hw, CV_SMB_CTRL, smb_ctrl);
+
+       e1000e_enable_phy_retry(hw);
+
+       /* Force SMBus mode in the MAC */
+       ctrl_ext = er32(CTRL_EXT);
+       ctrl_ext |= E1000_CTRL_EXT_FORCE_SMBUS;
+       ew32(CTRL_EXT, ctrl_ext);
+
+       return 0;
+}
+
 /**
  *  e1000_enable_ulp_lpt_lp - configure Ultra Low Power mode for LynxPoint-LP
  *  @hw: pointer to the HW structure
        if (ret_val)
                goto out;
 
+       if (hw->mac.type != e1000_pch_mtp) {
+               ret_val = e1000e_force_smbus(hw);
+               if (ret_val) {
+                       e_dbg("Failed to force SMBUS: %d\n", ret_val);
+                       goto release;
+               }
+       }
+
        /* Si workaround for ULP entry flow on i127/rev6 h/w.  Enable
         * LPLU and disable Gig speed when entering ULP
         */
        }
 
 release:
-       /* Switching PHY interface always returns MDI error
-        * so disable retry mechanism to avoid wasting time
-        */
-       e1000e_disable_phy_retry(hw);
-
-       /* Force SMBus mode in PHY */
-       ret_val = e1000_read_phy_reg_hv_locked(hw, CV_SMB_CTRL, &phy_reg);
-       if (ret_val) {
-               e1000e_enable_phy_retry(hw);
-               hw->phy.ops.release(hw);
-               goto out;
+       if (hw->mac.type == e1000_pch_mtp) {
+               ret_val = e1000e_force_smbus(hw);
+               if (ret_val)
+                       e_dbg("Failed to force SMBUS over MTL system: %d\n",
+                             ret_val);
        }
-       phy_reg |= CV_SMB_CTRL_FORCE_SMBUS;
-       e1000_write_phy_reg_hv_locked(hw, CV_SMB_CTRL, phy_reg);
-
-       e1000e_enable_phy_retry(hw);
-
-       /* Force SMBus mode in MAC */
-       mac_reg = er32(CTRL_EXT);
-       mac_reg |= E1000_CTRL_EXT_FORCE_SMBUS;
-       ew32(CTRL_EXT, mac_reg);
 
        hw->phy.ops.release(hw);
 out: