diff options
author | Jesse Brandeburg <jesse.brandeburg@intel.com> | 2008-08-26 07:27:10 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-09-03 10:03:33 -0400 |
commit | 2b9ade935cd2be6db26f5445656950bc3da7055d (patch) | |
tree | 10c9a842f0940d1d38f3475691b3e72d3a892b2f /drivers/net/ixgbe/ixgbe_common.c | |
parent | 3a581073e0f9f3966ac95a89cd04a0a6b948dc77 (diff) |
ixgbe: disable flow control by default
Since the adapter cannot tell what the remote end's flow control capability
is through auto-neg, we must turn off flow control by default.
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_common.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_common.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe_common.c b/drivers/net/ixgbe/ixgbe_common.c index a9f4d0e58e1c..9c0d0a1964eb 100644 --- a/drivers/net/ixgbe/ixgbe_common.c +++ b/drivers/net/ixgbe/ixgbe_common.c | |||
@@ -1065,6 +1065,13 @@ s32 ixgbe_setup_fc(struct ixgbe_hw *hw, s32 packetbuf_num) | |||
1065 | rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X); | 1065 | rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X); |
1066 | 1066 | ||
1067 | /* | 1067 | /* |
1068 | * 10 gig parts do not have a word in the EEPROM to determine the | ||
1069 | * default flow control setting, so we explicitly set it to full. | ||
1070 | */ | ||
1071 | if (hw->fc.type == ixgbe_fc_default) | ||
1072 | hw->fc.type = ixgbe_fc_full; | ||
1073 | |||
1074 | /* | ||
1068 | * We want to save off the original Flow Control configuration just in | 1075 | * We want to save off the original Flow Control configuration just in |
1069 | * case we get disconnected and then reconnected into a different hub | 1076 | * case we get disconnected and then reconnected into a different hub |
1070 | * or switch with different Flow Control capabilities. | 1077 | * or switch with different Flow Control capabilities. |
@@ -1117,6 +1124,16 @@ s32 ixgbe_setup_fc(struct ixgbe_hw *hw, s32 packetbuf_num) | |||
1117 | IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg); | 1124 | IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg); |
1118 | 1125 | ||
1119 | /* | 1126 | /* |
1127 | * Check for invalid software configuration, zeros are completely | ||
1128 | * invalid for all parameters used past this point, and if we enable | ||
1129 | * flow control with zero water marks, we blast flow control packets. | ||
1130 | */ | ||
1131 | if (!hw->fc.low_water || !hw->fc.high_water || !hw->fc.pause_time) { | ||
1132 | hw_dbg(hw, "Flow control structure initialized incorrectly\n"); | ||
1133 | return IXGBE_ERR_INVALID_LINK_SETTINGS; | ||
1134 | } | ||
1135 | |||
1136 | /* | ||
1120 | * We need to set up the Receive Threshold high and low water | 1137 | * We need to set up the Receive Threshold high and low water |
1121 | * marks as well as (optionally) enabling the transmission of | 1138 | * marks as well as (optionally) enabling the transmission of |
1122 | * XON frames. | 1139 | * XON frames. |