blob: a7ae4d45b53d0e77c2622480a8a5e5b72af4ea35 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Peter P Waskiewicz Jr3efac5a2009-02-01 01:19:20 -08004 Copyright(c) 1999 - 2009 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/pci.h>
29#include <linux/delay.h>
30#include <linux/sched.h>
31
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070032#include "ixgbe.h"
Auke Kok9a799d72007-09-15 14:07:45 -070033#include "ixgbe_phy.h"
34
35#define IXGBE_82598_MAX_TX_QUEUES 32
36#define IXGBE_82598_MAX_RX_QUEUES 64
37#define IXGBE_82598_RAR_ENTRIES 16
Christopher Leech2c5645c2008-08-26 04:27:02 -070038#define IXGBE_82598_MC_TBL_SIZE 128
39#define IXGBE_82598_VFT_TBL_SIZE 128
Auke Kok9a799d72007-09-15 14:07:45 -070040
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070041static s32 ixgbe_get_copper_link_capabilities_82598(struct ixgbe_hw *hw,
42 ixgbe_link_speed *speed,
43 bool *autoneg);
Auke Kok9a799d72007-09-15 14:07:45 -070044static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070045static s32 ixgbe_setup_copper_link_speed_82598(struct ixgbe_hw *hw,
46 ixgbe_link_speed speed,
47 bool autoneg,
48 bool autoneg_wait_to_complete);
Donald Skidmorec4900be2008-11-20 21:11:42 -080049static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
50 u8 *eeprom_data);
Auke Kok9a799d72007-09-15 14:07:45 -070051
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070052/**
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -080053 * ixgbe_get_pcie_msix_count_82598 - Gets MSI-X vector count
54 * @hw: pointer to hardware structure
55 *
56 * Read PCIe configuration space, and get the MSI-X vector count from
57 * the capabilities table.
58 **/
Hannes Eder1aef47c2009-02-14 11:38:36 +000059static u16 ixgbe_get_pcie_msix_count_82598(struct ixgbe_hw *hw)
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -080060{
61 struct ixgbe_adapter *adapter = hw->back;
62 u16 msix_count;
63 pci_read_config_word(adapter->pdev, IXGBE_PCIE_MSIX_82598_CAPS,
64 &msix_count);
65 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
66
67 /* MSI-X count is zero-based in HW, so increment to give proper value */
68 msix_count++;
69
70 return msix_count;
71}
72
73/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070074 */
Auke Kok9a799d72007-09-15 14:07:45 -070075static s32 ixgbe_get_invariants_82598(struct ixgbe_hw *hw)
76{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070077 struct ixgbe_mac_info *mac = &hw->mac;
PJ Waskiewicz03cfa202009-03-19 01:23:29 +000078
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070079 /* Call PHY identify routine to get the phy type */
80 ixgbe_identify_phy_generic(hw);
Auke Kok3957d632007-10-31 15:22:10 -070081
PJ Waskiewicz04f165e2009-04-09 22:27:57 +000082 mac->mcft_size = IXGBE_82598_MC_TBL_SIZE;
83 mac->vft_size = IXGBE_82598_VFT_TBL_SIZE;
84 mac->num_rar_entries = IXGBE_82598_RAR_ENTRIES;
85 mac->max_rx_queues = IXGBE_82598_MAX_RX_QUEUES;
86 mac->max_tx_queues = IXGBE_82598_MAX_TX_QUEUES;
87 mac->max_msix_vectors = ixgbe_get_pcie_msix_count_82598(hw);
88
89 return 0;
90}
91
92/**
93 * ixgbe_init_phy_ops_82598 - PHY/SFP specific init
94 * @hw: pointer to hardware structure
95 *
96 * Initialize any function pointers that were not able to be
97 * set during get_invariants because the PHY/SFP type was
98 * not known. Perform the SFP init if necessary.
99 *
100 **/
101s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw)
102{
103 struct ixgbe_mac_info *mac = &hw->mac;
104 struct ixgbe_phy_info *phy = &hw->phy;
105 s32 ret_val = 0;
106 u16 list_offset, data_offset;
107
108 /* Identify the PHY */
109 phy->ops.identify(hw);
110
111 /* Overwrite the link function pointers if copper PHY */
112 if (mac->ops.get_media_type(hw) == ixgbe_media_type_copper) {
113 mac->ops.setup_link = &ixgbe_setup_copper_link_82598;
114 mac->ops.setup_link_speed =
115 &ixgbe_setup_copper_link_speed_82598;
116 mac->ops.get_link_capabilities =
117 &ixgbe_get_copper_link_capabilities_82598;
118 }
119
120 switch (hw->phy.type) {
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700121 case ixgbe_phy_tn:
122 phy->ops.check_link = &ixgbe_check_phy_link_tnx;
123 phy->ops.get_firmware_version =
124 &ixgbe_get_phy_firmware_version_tnx;
125 break;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800126 case ixgbe_phy_nl:
127 phy->ops.reset = &ixgbe_reset_phy_nl;
128
129 /* Call SFP+ identify routine to get the SFP+ module type */
130 ret_val = phy->ops.identify_sfp(hw);
131 if (ret_val != 0)
132 goto out;
133 else if (hw->phy.sfp_type == ixgbe_sfp_type_unknown) {
134 ret_val = IXGBE_ERR_SFP_NOT_SUPPORTED;
135 goto out;
136 }
137
138 /* Check to see if SFP+ module is supported */
139 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw,
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000140 &list_offset,
141 &data_offset);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800142 if (ret_val != 0) {
143 ret_val = IXGBE_ERR_SFP_NOT_SUPPORTED;
144 goto out;
145 }
146 break;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700147 default:
148 break;
Auke Kok3957d632007-10-31 15:22:10 -0700149 }
150
Donald Skidmorec4900be2008-11-20 21:11:42 -0800151out:
152 return ret_val;
Auke Kok9a799d72007-09-15 14:07:45 -0700153}
154
155/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700156 * ixgbe_get_link_capabilities_82598 - Determines link capabilities
Auke Kok9a799d72007-09-15 14:07:45 -0700157 * @hw: pointer to hardware structure
158 * @speed: pointer to link speed
159 * @autoneg: boolean auto-negotiation value
160 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700161 * Determines the link capabilities by reading the AUTOC register.
Auke Kok9a799d72007-09-15 14:07:45 -0700162 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700163static s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700164 ixgbe_link_speed *speed,
165 bool *autoneg)
Auke Kok9a799d72007-09-15 14:07:45 -0700166{
167 s32 status = 0;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000168 u32 autoc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700169
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800170 /*
171 * Determine link capabilities based on the stored value of AUTOC,
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000172 * which represents EEPROM defaults. If AUTOC value has not been
173 * stored, use the current register value.
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800174 */
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000175 if (hw->mac.orig_link_settings_stored)
176 autoc = hw->mac.orig_autoc;
177 else
178 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
179
180 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
Auke Kok9a799d72007-09-15 14:07:45 -0700181 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
182 *speed = IXGBE_LINK_SPEED_1GB_FULL;
183 *autoneg = false;
184 break;
185
186 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
187 *speed = IXGBE_LINK_SPEED_10GB_FULL;
188 *autoneg = false;
189 break;
190
191 case IXGBE_AUTOC_LMS_1G_AN:
192 *speed = IXGBE_LINK_SPEED_1GB_FULL;
193 *autoneg = true;
194 break;
195
196 case IXGBE_AUTOC_LMS_KX4_AN:
197 case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
198 *speed = IXGBE_LINK_SPEED_UNKNOWN;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000199 if (autoc & IXGBE_AUTOC_KX4_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700200 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000201 if (autoc & IXGBE_AUTOC_KX_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700202 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
203 *autoneg = true;
204 break;
205
206 default:
207 status = IXGBE_ERR_LINK_SETUP;
208 break;
209 }
210
211 return status;
212}
213
214/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700215 * ixgbe_get_copper_link_capabilities_82598 - Determines link capabilities
Auke Kok9a799d72007-09-15 14:07:45 -0700216 * @hw: pointer to hardware structure
217 * @speed: pointer to link speed
218 * @autoneg: boolean auto-negotiation value
219 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700220 * Determines the link capabilities by reading the AUTOC register.
Auke Kok9a799d72007-09-15 14:07:45 -0700221 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800222static s32 ixgbe_get_copper_link_capabilities_82598(struct ixgbe_hw *hw,
223 ixgbe_link_speed *speed,
224 bool *autoneg)
Auke Kok9a799d72007-09-15 14:07:45 -0700225{
226 s32 status = IXGBE_ERR_LINK_SETUP;
227 u16 speed_ability;
228
229 *speed = 0;
230 *autoneg = true;
231
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700232 status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_SPEED_ABILITY,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700233 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
234 &speed_ability);
Auke Kok9a799d72007-09-15 14:07:45 -0700235
236 if (status == 0) {
237 if (speed_ability & IXGBE_MDIO_PHY_SPEED_10G)
238 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
239 if (speed_ability & IXGBE_MDIO_PHY_SPEED_1G)
240 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
241 }
242
243 return status;
244}
245
246/**
247 * ixgbe_get_media_type_82598 - Determines media type
248 * @hw: pointer to hardware structure
249 *
250 * Returns the media type (fiber, copper, backplane)
251 **/
252static enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
253{
254 enum ixgbe_media_type media_type;
255
256 /* Media type for I82598 is based on device ID */
257 switch (hw->device_id) {
Don Skidmore1e336d02009-01-26 20:57:51 -0800258 case IXGBE_DEV_ID_82598:
Don Skidmore2f21bdd2009-02-01 01:18:23 -0800259 case IXGBE_DEV_ID_82598_BX:
Don Skidmore1e336d02009-01-26 20:57:51 -0800260 media_type = ixgbe_media_type_backplane;
261 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700262 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
263 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
264 case IXGBE_DEV_ID_82598EB_CX4:
Jesse Brandeburg8d792cd2008-08-08 16:24:19 -0700265 case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800266 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
267 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -0700268 case IXGBE_DEV_ID_82598EB_XF_LR:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800269 case IXGBE_DEV_ID_82598EB_SFP_LOM:
Auke Kok9a799d72007-09-15 14:07:45 -0700270 media_type = ixgbe_media_type_fiber;
271 break;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700272 case IXGBE_DEV_ID_82598AT:
273 media_type = ixgbe_media_type_copper;
274 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700275 default:
276 media_type = ixgbe_media_type_unknown;
277 break;
278 }
279
280 return media_type;
281}
282
283/**
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800284 * ixgbe_fc_enable_82598 - Enable flow control
285 * @hw: pointer to hardware structure
286 * @packetbuf_num: packet buffer number (0-7)
287 *
288 * Enable flow control according to the current settings.
289 **/
290static s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
291{
292 s32 ret_val = 0;
293 u32 fctrl_reg;
294 u32 rmcs_reg;
295 u32 reg;
296
297 fctrl_reg = IXGBE_READ_REG(hw, IXGBE_FCTRL);
298 fctrl_reg &= ~(IXGBE_FCTRL_RFCE | IXGBE_FCTRL_RPFCE);
299
300 rmcs_reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
301 rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X);
302
303 /*
304 * The possible values of fc.current_mode are:
305 * 0: Flow control is completely disabled
306 * 1: Rx flow control is enabled (we can receive pause frames,
307 * but not send pause frames).
308 * 2: Tx flow control is enabled (we can send pause frames but
309 * we do not support receiving pause frames).
310 * 3: Both Rx and Tx flow control (symmetric) are enabled.
311 * other: Invalid.
312 */
313 switch (hw->fc.current_mode) {
314 case ixgbe_fc_none:
315 /* Flow control completely disabled by software override. */
316 break;
317 case ixgbe_fc_rx_pause:
318 /*
319 * Rx Flow control is enabled and Tx Flow control is
320 * disabled by software override. Since there really
321 * isn't a way to advertise that we are capable of RX
322 * Pause ONLY, we will advertise that we support both
323 * symmetric and asymmetric Rx PAUSE. Later, we will
324 * disable the adapter's ability to send PAUSE frames.
325 */
326 fctrl_reg |= IXGBE_FCTRL_RFCE;
327 break;
328 case ixgbe_fc_tx_pause:
329 /*
330 * Tx Flow control is enabled, and Rx Flow control is
331 * disabled by software override.
332 */
333 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
334 break;
335 case ixgbe_fc_full:
336 /* Flow control (both Rx and Tx) is enabled by SW override. */
337 fctrl_reg |= IXGBE_FCTRL_RFCE;
338 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
339 break;
340 default:
341 hw_dbg(hw, "Flow control param set incorrectly\n");
342 ret_val = -IXGBE_ERR_CONFIG;
343 goto out;
344 break;
345 }
346
347 /* Enable 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +0000348 fctrl_reg |= IXGBE_FCTRL_DPF;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800349 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl_reg);
350 IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg);
351
352 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
353 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
354 if (hw->fc.send_xon) {
355 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(packetbuf_num),
356 (hw->fc.low_water | IXGBE_FCRTL_XONE));
357 } else {
358 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(packetbuf_num),
359 hw->fc.low_water);
360 }
361
362 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(packetbuf_num),
363 (hw->fc.high_water | IXGBE_FCRTH_FCEN));
364 }
365
366 /* Configure pause time (2 TCs per register) */
367 reg = IXGBE_READ_REG(hw, IXGBE_FCTTV(packetbuf_num));
368 if ((packetbuf_num & 1) == 0)
369 reg = (reg & 0xFFFF0000) | hw->fc.pause_time;
370 else
371 reg = (reg & 0x0000FFFF) | (hw->fc.pause_time << 16);
372 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(packetbuf_num / 2), reg);
373
374 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, (hw->fc.pause_time >> 1));
375
376out:
377 return ret_val;
378}
379
380/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700381 * ixgbe_setup_fc_82598 - Configure flow control settings
382 * @hw: pointer to hardware structure
383 * @packetbuf_num: packet buffer number (0-7)
384 *
385 * Configures the flow control settings based on SW configuration. This
386 * function is used for 802.3x flow control configuration only.
387 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800388static s32 ixgbe_setup_fc_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700389{
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800390 s32 ret_val = 0;
391 ixgbe_link_speed speed;
392 bool link_up;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700393
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800394 /* Validate the packetbuf configuration */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700395 if (packetbuf_num < 0 || packetbuf_num > 7) {
396 hw_dbg(hw, "Invalid packet buffer number [%d], expected range is"
397 " 0-7\n", packetbuf_num);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800398 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
399 goto out;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700400 }
401
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700402 /*
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800403 * Validate the water mark configuration. Zero water marks are invalid
404 * because it causes the controller to just blast out fc packets.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700405 */
406 if (!hw->fc.low_water || !hw->fc.high_water || !hw->fc.pause_time) {
PJ Waskiewiczd3e9c562009-04-09 22:27:39 +0000407 if (hw->fc.requested_mode != ixgbe_fc_none) {
408 hw_dbg(hw, "Invalid water mark configuration\n");
409 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
410 goto out;
411 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700412 }
413
414 /*
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800415 * Validate the requested mode. Strict IEEE mode does not allow
416 * ixgbe_fc_rx_pause because it will cause testing anomalies.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700417 */
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800418 if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
419 hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
420 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
421 goto out;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700422 }
423
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800424 /*
425 * 10gig parts do not have a word in the EEPROM to determine the
426 * default flow control setting, so we explicitly set it to full.
427 */
428 if (hw->fc.requested_mode == ixgbe_fc_default)
429 hw->fc.requested_mode = ixgbe_fc_full;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700430
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800431 /*
432 * Save off the requested flow control mode for use later. Depending
433 * on the link partner's capabilities, we may or may not use this mode.
434 */
435
436 hw->fc.current_mode = hw->fc.requested_mode;
437
438 /* Decide whether to use autoneg or not. */
439 hw->mac.ops.check_link(hw, &speed, &link_up, false);
Don Skidmore71fd5702009-03-31 21:35:05 +0000440 if (!hw->fc.disable_fc_autoneg && hw->phy.multispeed_fiber &&
441 (speed == IXGBE_LINK_SPEED_1GB_FULL))
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800442 ret_val = ixgbe_fc_autoneg(hw);
443
444 if (ret_val)
445 goto out;
446
447 ret_val = ixgbe_fc_enable_82598(hw, packetbuf_num);
448
449out:
450 return ret_val;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700451}
452
453/**
Auke Kok9a799d72007-09-15 14:07:45 -0700454 * ixgbe_setup_mac_link_82598 - Configures MAC link settings
455 * @hw: pointer to hardware structure
456 *
457 * Configures link settings based on values in the ixgbe_hw struct.
458 * Restarts the link. Performs autonegotiation if needed.
459 **/
460static s32 ixgbe_setup_mac_link_82598(struct ixgbe_hw *hw)
461{
462 u32 autoc_reg;
463 u32 links_reg;
464 u32 i;
465 s32 status = 0;
466
Auke Kok9a799d72007-09-15 14:07:45 -0700467 /* Restart link */
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800468 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Auke Kok9a799d72007-09-15 14:07:45 -0700469 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
470 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
471
472 /* Only poll for autoneg to complete if specified to do so */
473 if (hw->phy.autoneg_wait_to_complete) {
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800474 if ((autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
475 IXGBE_AUTOC_LMS_KX4_AN ||
476 (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
477 IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
Auke Kok9a799d72007-09-15 14:07:45 -0700478 links_reg = 0; /* Just in case Autoneg time = 0 */
479 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
480 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
481 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
482 break;
483 msleep(100);
484 }
485 if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
486 status = IXGBE_ERR_AUTONEG_NOT_COMPLETE;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700487 hw_dbg(hw, "Autonegotiation did not complete.\n");
Auke Kok9a799d72007-09-15 14:07:45 -0700488 }
489 }
490 }
491
492 /*
493 * We want to save off the original Flow Control configuration just in
494 * case we get disconnected and then reconnected into a different hub
495 * or switch with different Flow Control capabilities.
496 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700497 ixgbe_setup_fc_82598(hw, 0);
Auke Kok9a799d72007-09-15 14:07:45 -0700498
499 /* Add delay to filter out noises during initial link setup */
500 msleep(50);
501
502 return status;
503}
504
505/**
506 * ixgbe_check_mac_link_82598 - Get link/speed status
507 * @hw: pointer to hardware structure
508 * @speed: pointer to link speed
509 * @link_up: true is link is up, false otherwise
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700510 * @link_up_wait_to_complete: bool used to wait for link up or not
Auke Kok9a799d72007-09-15 14:07:45 -0700511 *
512 * Reads the links register to determine if link is up and the current speed
513 **/
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700514static s32 ixgbe_check_mac_link_82598(struct ixgbe_hw *hw,
515 ixgbe_link_speed *speed, bool *link_up,
516 bool link_up_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700517{
518 u32 links_reg;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700519 u32 i;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800520 u16 link_reg, adapt_comp_reg;
521
522 /*
523 * SERDES PHY requires us to read link status from register 0xC79F.
524 * Bit 0 set indicates link is up/ready; clear indicates link down.
525 * 0xC00C is read to check that the XAUI lanes are active. Bit 0
526 * clear indicates active; set indicates inactive.
527 */
528 if (hw->phy.type == ixgbe_phy_nl) {
529 hw->phy.ops.read_reg(hw, 0xC79F, IXGBE_TWINAX_DEV, &link_reg);
530 hw->phy.ops.read_reg(hw, 0xC79F, IXGBE_TWINAX_DEV, &link_reg);
531 hw->phy.ops.read_reg(hw, 0xC00C, IXGBE_TWINAX_DEV,
532 &adapt_comp_reg);
533 if (link_up_wait_to_complete) {
534 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
535 if ((link_reg & 1) &&
536 ((adapt_comp_reg & 1) == 0)) {
537 *link_up = true;
538 break;
539 } else {
540 *link_up = false;
541 }
542 msleep(100);
543 hw->phy.ops.read_reg(hw, 0xC79F,
544 IXGBE_TWINAX_DEV,
545 &link_reg);
546 hw->phy.ops.read_reg(hw, 0xC00C,
547 IXGBE_TWINAX_DEV,
548 &adapt_comp_reg);
549 }
550 } else {
551 if ((link_reg & 1) && ((adapt_comp_reg & 1) == 0))
552 *link_up = true;
553 else
554 *link_up = false;
555 }
556
557 if (*link_up == false)
558 goto out;
559 }
Auke Kok9a799d72007-09-15 14:07:45 -0700560
561 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700562 if (link_up_wait_to_complete) {
563 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
564 if (links_reg & IXGBE_LINKS_UP) {
565 *link_up = true;
566 break;
567 } else {
568 *link_up = false;
569 }
570 msleep(100);
571 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
572 }
573 } else {
574 if (links_reg & IXGBE_LINKS_UP)
575 *link_up = true;
576 else
577 *link_up = false;
578 }
Auke Kok9a799d72007-09-15 14:07:45 -0700579
580 if (links_reg & IXGBE_LINKS_SPEED)
581 *speed = IXGBE_LINK_SPEED_10GB_FULL;
582 else
583 *speed = IXGBE_LINK_SPEED_1GB_FULL;
584
Donald Skidmorec4900be2008-11-20 21:11:42 -0800585out:
Auke Kok9a799d72007-09-15 14:07:45 -0700586 return 0;
587}
588
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700589
Auke Kok9a799d72007-09-15 14:07:45 -0700590/**
591 * ixgbe_setup_mac_link_speed_82598 - Set MAC link speed
592 * @hw: pointer to hardware structure
593 * @speed: new link speed
594 * @autoneg: true if auto-negotiation enabled
595 * @autoneg_wait_to_complete: true if waiting is needed to complete
596 *
597 * Set the link speed in the AUTOC register and restarts link.
598 **/
599static s32 ixgbe_setup_mac_link_speed_82598(struct ixgbe_hw *hw,
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800600 ixgbe_link_speed speed, bool autoneg,
601 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700602{
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800603 s32 status = 0;
604 ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN;
605 u32 curr_autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
606 u32 autoc = curr_autoc;
607 u32 link_mode = autoc & IXGBE_AUTOC_LMS_MASK;
Auke Kok9a799d72007-09-15 14:07:45 -0700608
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800609 /* Check to see if speed passed in is supported. */
610 ixgbe_get_link_capabilities_82598(hw, &link_capabilities, &autoneg);
611 speed &= link_capabilities;
612
613 if (speed == IXGBE_LINK_SPEED_UNKNOWN)
Auke Kok9a799d72007-09-15 14:07:45 -0700614 status = IXGBE_ERR_LINK_SETUP;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800615
616 /* Set KX4/KX support according to speed requested */
617 else if (link_mode == IXGBE_AUTOC_LMS_KX4_AN ||
618 link_mode == IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
619 autoc &= ~IXGBE_AUTOC_KX4_KX_SUPP_MASK;
620 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
621 autoc |= IXGBE_AUTOC_KX4_SUPP;
622 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
623 autoc |= IXGBE_AUTOC_KX_SUPP;
624 if (autoc != curr_autoc)
625 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700626 }
627
628 if (status == 0) {
629 hw->phy.autoneg_wait_to_complete = autoneg_wait_to_complete;
630
Auke Kok9a799d72007-09-15 14:07:45 -0700631 /*
632 * Setup and restart the link based on the new values in
633 * ixgbe_hw This will write the AUTOC register based on the new
634 * stored values
635 */
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800636 status = ixgbe_setup_mac_link_82598(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700637 }
638
639 return status;
640}
641
642
643/**
644 * ixgbe_setup_copper_link_82598 - Setup copper link settings
645 * @hw: pointer to hardware structure
646 *
647 * Configures link settings based on values in the ixgbe_hw struct.
648 * Restarts the link. Performs autonegotiation if needed. Restart
649 * phy and wait for autonegotiate to finish. Then synchronize the
650 * MAC and PHY.
651 **/
652static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw)
653{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700654 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700655
656 /* Restart autonegotiation on PHY */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700657 status = hw->phy.ops.setup_link(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700658
Auke Kok3957d632007-10-31 15:22:10 -0700659 /* Set up MAC */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700660 ixgbe_setup_mac_link_82598(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700661
662 return status;
663}
664
665/**
666 * ixgbe_setup_copper_link_speed_82598 - Set the PHY autoneg advertised field
667 * @hw: pointer to hardware structure
668 * @speed: new link speed
669 * @autoneg: true if autonegotiation enabled
670 * @autoneg_wait_to_complete: true if waiting is needed to complete
671 *
672 * Sets the link speed in the AUTOC register in the MAC and restarts link.
673 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700674static s32 ixgbe_setup_copper_link_speed_82598(struct ixgbe_hw *hw,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700675 ixgbe_link_speed speed,
676 bool autoneg,
677 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700678{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700679 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700680
681 /* Setup the PHY according to input speed */
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700682 status = hw->phy.ops.setup_link_speed(hw, speed, autoneg,
683 autoneg_wait_to_complete);
Auke Kok9a799d72007-09-15 14:07:45 -0700684
Auke Kok3957d632007-10-31 15:22:10 -0700685 /* Set up MAC */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700686 ixgbe_setup_mac_link_82598(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700687
688 return status;
689}
690
691/**
692 * ixgbe_reset_hw_82598 - Performs hardware reset
693 * @hw: pointer to hardware structure
694 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700695 * Resets the hardware by resetting the transmit and receive units, masks and
Auke Kok9a799d72007-09-15 14:07:45 -0700696 * clears all interrupts, performing a PHY reset, and performing a link (MAC)
697 * reset.
698 **/
699static s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
700{
701 s32 status = 0;
702 u32 ctrl;
703 u32 gheccr;
704 u32 i;
705 u32 autoc;
706 u8 analog_val;
707
708 /* Call adapter stop to disable tx/rx and clear interrupts */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700709 hw->mac.ops.stop_adapter(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700710
711 /*
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700712 * Power up the Atlas Tx lanes if they are currently powered down.
713 * Atlas Tx lanes are powered down for MAC loopback tests, but
Auke Kok9a799d72007-09-15 14:07:45 -0700714 * they are not automatically restored on reset.
715 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700716 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700717 if (analog_val & IXGBE_ATLAS_PDN_TX_REG_EN) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700718 /* Enable Tx Atlas so packets can be transmitted again */
719 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
720 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700721 analog_val &= ~IXGBE_ATLAS_PDN_TX_REG_EN;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700722 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
723 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700724
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700725 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
726 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700727 analog_val &= ~IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700728 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
729 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700730
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700731 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
732 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700733 analog_val &= ~IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700734 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
735 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700736
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700737 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
738 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700739 analog_val &= ~IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700740 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
741 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700742 }
743
744 /* Reset PHY */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000745 if (hw->phy.reset_disable == false) {
746 /* PHY ops must be identified and initialized prior to reset */
747
748 /* Init PHY and function pointers, perform SFP setup */
749 status = hw->phy.ops.init(hw);
750 if (status == IXGBE_ERR_SFP_NOT_SUPPORTED)
751 goto reset_hw_out;
752
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700753 hw->phy.ops.reset(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000754 }
Auke Kok9a799d72007-09-15 14:07:45 -0700755
756 /*
757 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
758 * access and verify no pending requests before reset
759 */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000760 status = ixgbe_disable_pcie_master(hw);
761 if (status != 0) {
Auke Kok9a799d72007-09-15 14:07:45 -0700762 status = IXGBE_ERR_MASTER_REQUESTS_PENDING;
763 hw_dbg(hw, "PCI-E Master disable polling has failed.\n");
764 }
765
766 /*
767 * Issue global reset to the MAC. This needs to be a SW reset.
768 * If link reset is used, it might reset the MAC when mng is using it
769 */
770 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
771 IXGBE_WRITE_REG(hw, IXGBE_CTRL, (ctrl | IXGBE_CTRL_RST));
772 IXGBE_WRITE_FLUSH(hw);
773
774 /* Poll for reset bit to self-clear indicating reset is complete */
775 for (i = 0; i < 10; i++) {
776 udelay(1);
777 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
778 if (!(ctrl & IXGBE_CTRL_RST))
779 break;
780 }
781 if (ctrl & IXGBE_CTRL_RST) {
782 status = IXGBE_ERR_RESET_FAILED;
783 hw_dbg(hw, "Reset polling failed to complete.\n");
784 }
785
786 msleep(50);
787
788 gheccr = IXGBE_READ_REG(hw, IXGBE_GHECCR);
789 gheccr &= ~((1 << 21) | (1 << 18) | (1 << 9) | (1 << 6));
790 IXGBE_WRITE_REG(hw, IXGBE_GHECCR, gheccr);
791
792 /*
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800793 * Store the original AUTOC value if it has not been
794 * stored off yet. Otherwise restore the stored original
795 * AUTOC value since the reset operation sets back to deaults.
Auke Kok9a799d72007-09-15 14:07:45 -0700796 */
797 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800798 if (hw->mac.orig_link_settings_stored == false) {
799 hw->mac.orig_autoc = autoc;
800 hw->mac.orig_link_settings_stored = true;
801 } else if (autoc != hw->mac.orig_autoc) {
802 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, hw->mac.orig_autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700803 }
804
805 /* Store the permanent mac address */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700806 hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
Auke Kok9a799d72007-09-15 14:07:45 -0700807
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000808reset_hw_out:
Auke Kok9a799d72007-09-15 14:07:45 -0700809 return status;
810}
811
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700812/**
813 * ixgbe_set_vmdq_82598 - Associate a VMDq set index with a rx address
814 * @hw: pointer to hardware struct
815 * @rar: receive address register index to associate with a VMDq index
816 * @vmdq: VMDq set index
817 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800818static s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700819{
820 u32 rar_high;
821
822 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
823 rar_high &= ~IXGBE_RAH_VIND_MASK;
824 rar_high |= ((vmdq << IXGBE_RAH_VIND_SHIFT) & IXGBE_RAH_VIND_MASK);
825 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
826 return 0;
827}
828
829/**
830 * ixgbe_clear_vmdq_82598 - Disassociate a VMDq set index from an rx address
831 * @hw: pointer to hardware struct
832 * @rar: receive address register index to associate with a VMDq index
833 * @vmdq: VMDq clear index (not used in 82598, but elsewhere)
834 **/
835static s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
836{
837 u32 rar_high;
838 u32 rar_entries = hw->mac.num_rar_entries;
839
840 if (rar < rar_entries) {
841 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
842 if (rar_high & IXGBE_RAH_VIND_MASK) {
843 rar_high &= ~IXGBE_RAH_VIND_MASK;
844 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
845 }
846 } else {
847 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
848 }
849
850 return 0;
851}
852
853/**
854 * ixgbe_set_vfta_82598 - Set VLAN filter table
855 * @hw: pointer to hardware structure
856 * @vlan: VLAN id to write to VLAN filter
857 * @vind: VMDq output index that maps queue to VLAN id in VFTA
858 * @vlan_on: boolean flag to turn on/off VLAN in VFTA
859 *
860 * Turn on/off specified VLAN in the VLAN filter table.
861 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800862static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
863 bool vlan_on)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700864{
865 u32 regindex;
866 u32 bitindex;
867 u32 bits;
868 u32 vftabyte;
869
870 if (vlan > 4095)
871 return IXGBE_ERR_PARAM;
872
873 /* Determine 32-bit word position in array */
874 regindex = (vlan >> 5) & 0x7F; /* upper seven bits */
875
876 /* Determine the location of the (VMD) queue index */
877 vftabyte = ((vlan >> 3) & 0x03); /* bits (4:3) indicating byte array */
878 bitindex = (vlan & 0x7) << 2; /* lower 3 bits indicate nibble */
879
880 /* Set the nibble for VMD queue index */
881 bits = IXGBE_READ_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex));
882 bits &= (~(0x0F << bitindex));
883 bits |= (vind << bitindex);
884 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex), bits);
885
886 /* Determine the location of the bit for this VLAN id */
887 bitindex = vlan & 0x1F; /* lower five bits */
888
889 bits = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
890 if (vlan_on)
891 /* Turn on this VLAN id */
892 bits |= (1 << bitindex);
893 else
894 /* Turn off this VLAN id */
895 bits &= ~(1 << bitindex);
896 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), bits);
897
898 return 0;
899}
900
901/**
902 * ixgbe_clear_vfta_82598 - Clear VLAN filter table
903 * @hw: pointer to hardware structure
904 *
905 * Clears the VLAN filer table, and the VMDq index associated with the filter
906 **/
907static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw)
908{
909 u32 offset;
910 u32 vlanbyte;
911
912 for (offset = 0; offset < hw->mac.vft_size; offset++)
913 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
914
915 for (vlanbyte = 0; vlanbyte < 4; vlanbyte++)
916 for (offset = 0; offset < hw->mac.vft_size; offset++)
917 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vlanbyte, offset),
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700918 0);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700919
920 return 0;
921}
922
923/**
924 * ixgbe_blink_led_start_82598 - Blink LED based on index.
925 * @hw: pointer to hardware structure
926 * @index: led number to blink
927 **/
928static s32 ixgbe_blink_led_start_82598(struct ixgbe_hw *hw, u32 index)
929{
930 ixgbe_link_speed speed = 0;
931 bool link_up = 0;
932 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
933 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
934
935 /*
936 * Link must be up to auto-blink the LEDs on the 82598EB MAC;
937 * force it if link is down.
938 */
939 hw->mac.ops.check_link(hw, &speed, &link_up, false);
940
941 if (!link_up) {
942 autoc_reg |= IXGBE_AUTOC_FLU;
943 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
944 msleep(10);
945 }
946
947 led_reg &= ~IXGBE_LED_MODE_MASK(index);
948 led_reg |= IXGBE_LED_BLINK(index);
949 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
950 IXGBE_WRITE_FLUSH(hw);
951
952 return 0;
953}
954
955/**
956 * ixgbe_blink_led_stop_82598 - Stop blinking LED based on index.
957 * @hw: pointer to hardware structure
958 * @index: led number to stop blinking
959 **/
960static s32 ixgbe_blink_led_stop_82598(struct ixgbe_hw *hw, u32 index)
961{
962 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
963 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
964
965 autoc_reg &= ~IXGBE_AUTOC_FLU;
966 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
967 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
968
969 led_reg &= ~IXGBE_LED_MODE_MASK(index);
970 led_reg &= ~IXGBE_LED_BLINK(index);
971 led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index);
972 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
973 IXGBE_WRITE_FLUSH(hw);
974
975 return 0;
976}
977
978/**
979 * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register
980 * @hw: pointer to hardware structure
981 * @reg: analog register to read
982 * @val: read value
983 *
984 * Performs read operation to Atlas analog register specified.
985 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800986static s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700987{
988 u32 atlas_ctl;
989
990 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL,
991 IXGBE_ATLASCTL_WRITE_CMD | (reg << 8));
992 IXGBE_WRITE_FLUSH(hw);
993 udelay(10);
994 atlas_ctl = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
995 *val = (u8)atlas_ctl;
996
997 return 0;
998}
999
1000/**
1001 * ixgbe_write_analog_reg8_82598 - Writes 8 bit Atlas analog register
1002 * @hw: pointer to hardware structure
1003 * @reg: atlas register to write
1004 * @val: value to write
1005 *
1006 * Performs write operation to Atlas analog register specified.
1007 **/
Hannes Edere855aac2008-12-26 00:03:59 -08001008static s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001009{
1010 u32 atlas_ctl;
1011
1012 atlas_ctl = (reg << 8) | val;
1013 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL, atlas_ctl);
1014 IXGBE_WRITE_FLUSH(hw);
1015 udelay(10);
1016
1017 return 0;
1018}
1019
1020/**
Donald Skidmorec4900be2008-11-20 21:11:42 -08001021 * ixgbe_read_i2c_eeprom_82598 - Read 8 bit EEPROM word of an SFP+ module
1022 * over I2C interface through an intermediate phy.
1023 * @hw: pointer to hardware structure
1024 * @byte_offset: EEPROM byte offset to read
1025 * @eeprom_data: value read
1026 *
1027 * Performs byte read operation to SFP module's EEPROM over I2C interface.
1028 **/
Hannes Edere855aac2008-12-26 00:03:59 -08001029static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
1030 u8 *eeprom_data)
Donald Skidmorec4900be2008-11-20 21:11:42 -08001031{
1032 s32 status = 0;
1033 u16 sfp_addr = 0;
1034 u16 sfp_data = 0;
1035 u16 sfp_stat = 0;
1036 u32 i;
1037
1038 if (hw->phy.type == ixgbe_phy_nl) {
1039 /*
1040 * phy SDA/SCL registers are at addresses 0xC30A to
1041 * 0xC30D. These registers are used to talk to the SFP+
1042 * module's EEPROM through the SDA/SCL (I2C) interface.
1043 */
1044 sfp_addr = (IXGBE_I2C_EEPROM_DEV_ADDR << 8) + byte_offset;
1045 sfp_addr = (sfp_addr | IXGBE_I2C_EEPROM_READ_MASK);
1046 hw->phy.ops.write_reg(hw,
1047 IXGBE_MDIO_PMA_PMD_SDA_SCL_ADDR,
1048 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
1049 sfp_addr);
1050
1051 /* Poll status */
1052 for (i = 0; i < 100; i++) {
1053 hw->phy.ops.read_reg(hw,
1054 IXGBE_MDIO_PMA_PMD_SDA_SCL_STAT,
1055 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
1056 &sfp_stat);
1057 sfp_stat = sfp_stat & IXGBE_I2C_EEPROM_STATUS_MASK;
1058 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_IN_PROGRESS)
1059 break;
1060 msleep(10);
1061 }
1062
1063 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_PASS) {
1064 hw_dbg(hw, "EEPROM read did not pass.\n");
1065 status = IXGBE_ERR_SFP_NOT_PRESENT;
1066 goto out;
1067 }
1068
1069 /* Read data */
1070 hw->phy.ops.read_reg(hw, IXGBE_MDIO_PMA_PMD_SDA_SCL_DATA,
1071 IXGBE_MDIO_PMA_PMD_DEV_TYPE, &sfp_data);
1072
1073 *eeprom_data = (u8)(sfp_data >> 8);
1074 } else {
1075 status = IXGBE_ERR_PHY;
1076 goto out;
1077 }
1078
1079out:
1080 return status;
1081}
1082
1083/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001084 * ixgbe_get_supported_physical_layer_82598 - Returns physical layer type
1085 * @hw: pointer to hardware structure
1086 *
1087 * Determines physical layer capabilities of the current configuration.
1088 **/
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001089static u32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001090{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001091 u32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001092 u32 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
1093 u32 pma_pmd_10g = autoc & IXGBE_AUTOC_10G_PMA_PMD_MASK;
1094 u32 pma_pmd_1g = autoc & IXGBE_AUTOC_1G_PMA_PMD_MASK;
1095 u16 ext_ability = 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001096
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001097 hw->phy.ops.identify(hw);
1098
1099 /* Copper PHY must be checked before AUTOC LMS to determine correct
1100 * physical layer because 10GBase-T PHYs use LMS = KX4/KX */
1101 if (hw->phy.type == ixgbe_phy_tn ||
1102 hw->phy.type == ixgbe_phy_cu_unknown) {
1103 hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_EXT_ABILITY,
1104 IXGBE_MDIO_PMA_PMD_DEV_TYPE, &ext_ability);
1105 if (ext_ability & IXGBE_MDIO_PHY_10GBASET_ABILITY)
1106 physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_T;
1107 if (ext_ability & IXGBE_MDIO_PHY_1000BASET_ABILITY)
1108 physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_T;
1109 if (ext_ability & IXGBE_MDIO_PHY_100BASETX_ABILITY)
1110 physical_layer |= IXGBE_PHYSICAL_LAYER_100BASE_TX;
1111 goto out;
1112 }
1113
1114 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
1115 case IXGBE_AUTOC_LMS_1G_AN:
1116 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
1117 if (pma_pmd_1g == IXGBE_AUTOC_1G_KX)
1118 physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_KX;
1119 else
1120 physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_BX;
Don Skidmore1e336d02009-01-26 20:57:51 -08001121 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001122 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
1123 if (pma_pmd_10g == IXGBE_AUTOC_10G_CX4)
1124 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_CX4;
1125 else if (pma_pmd_10g == IXGBE_AUTOC_10G_KX4)
1126 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
1127 else /* XAUI */
1128 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001129 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001130 case IXGBE_AUTOC_LMS_KX4_AN:
1131 case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
1132 if (autoc & IXGBE_AUTOC_KX_SUPP)
1133 physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_KX;
1134 if (autoc & IXGBE_AUTOC_KX4_SUPP)
1135 physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001136 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001137 default:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001138 break;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001139 }
1140
1141 if (hw->phy.type == ixgbe_phy_nl) {
Donald Skidmorec4900be2008-11-20 21:11:42 -08001142 hw->phy.ops.identify_sfp(hw);
1143
1144 switch (hw->phy.sfp_type) {
1145 case ixgbe_sfp_type_da_cu:
1146 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1147 break;
1148 case ixgbe_sfp_type_sr:
1149 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1150 break;
1151 case ixgbe_sfp_type_lr:
1152 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1153 break;
1154 default:
1155 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
1156 break;
1157 }
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001158 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001159
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001160 switch (hw->device_id) {
1161 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
1162 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1163 break;
1164 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
1165 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
1166 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
1167 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1168 break;
1169 case IXGBE_DEV_ID_82598EB_XF_LR:
1170 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1171 break;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001172 default:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001173 break;
1174 }
1175
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001176out:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001177 return physical_layer;
1178}
1179
Auke Kok9a799d72007-09-15 14:07:45 -07001180static struct ixgbe_mac_operations mac_ops_82598 = {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001181 .init_hw = &ixgbe_init_hw_generic,
1182 .reset_hw = &ixgbe_reset_hw_82598,
1183 .start_hw = &ixgbe_start_hw_generic,
1184 .clear_hw_cntrs = &ixgbe_clear_hw_cntrs_generic,
Auke Kok9a799d72007-09-15 14:07:45 -07001185 .get_media_type = &ixgbe_get_media_type_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001186 .get_supported_physical_layer = &ixgbe_get_supported_physical_layer_82598,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001187 .enable_rx_dma = &ixgbe_enable_rx_dma_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001188 .get_mac_addr = &ixgbe_get_mac_addr_generic,
1189 .stop_adapter = &ixgbe_stop_adapter_generic,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001190 .get_bus_info = &ixgbe_get_bus_info_generic,
1191 .set_lan_id = &ixgbe_set_lan_id_multi_port_pcie,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001192 .read_analog_reg8 = &ixgbe_read_analog_reg8_82598,
1193 .write_analog_reg8 = &ixgbe_write_analog_reg8_82598,
Auke Kok3957d632007-10-31 15:22:10 -07001194 .setup_link = &ixgbe_setup_mac_link_82598,
Auke Kok3957d632007-10-31 15:22:10 -07001195 .setup_link_speed = &ixgbe_setup_mac_link_speed_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001196 .check_link = &ixgbe_check_mac_link_82598,
1197 .get_link_capabilities = &ixgbe_get_link_capabilities_82598,
1198 .led_on = &ixgbe_led_on_generic,
1199 .led_off = &ixgbe_led_off_generic,
1200 .blink_led_start = &ixgbe_blink_led_start_82598,
1201 .blink_led_stop = &ixgbe_blink_led_stop_82598,
1202 .set_rar = &ixgbe_set_rar_generic,
1203 .clear_rar = &ixgbe_clear_rar_generic,
1204 .set_vmdq = &ixgbe_set_vmdq_82598,
1205 .clear_vmdq = &ixgbe_clear_vmdq_82598,
1206 .init_rx_addrs = &ixgbe_init_rx_addrs_generic,
1207 .update_uc_addr_list = &ixgbe_update_uc_addr_list_generic,
1208 .update_mc_addr_list = &ixgbe_update_mc_addr_list_generic,
1209 .enable_mc = &ixgbe_enable_mc_generic,
1210 .disable_mc = &ixgbe_disable_mc_generic,
1211 .clear_vfta = &ixgbe_clear_vfta_82598,
1212 .set_vfta = &ixgbe_set_vfta_82598,
1213 .setup_fc = &ixgbe_setup_fc_82598,
1214};
1215
1216static struct ixgbe_eeprom_operations eeprom_ops_82598 = {
1217 .init_params = &ixgbe_init_eeprom_params_generic,
1218 .read = &ixgbe_read_eeprom_generic,
1219 .validate_checksum = &ixgbe_validate_eeprom_checksum_generic,
1220 .update_checksum = &ixgbe_update_eeprom_checksum_generic,
1221};
1222
1223static struct ixgbe_phy_operations phy_ops_82598 = {
1224 .identify = &ixgbe_identify_phy_generic,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001225 .identify_sfp = &ixgbe_identify_sfp_module_generic,
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00001226 .init = &ixgbe_init_phy_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001227 .reset = &ixgbe_reset_phy_generic,
1228 .read_reg = &ixgbe_read_phy_reg_generic,
1229 .write_reg = &ixgbe_write_phy_reg_generic,
1230 .setup_link = &ixgbe_setup_phy_link_generic,
1231 .setup_link_speed = &ixgbe_setup_phy_link_speed_generic,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001232 .read_i2c_eeprom = &ixgbe_read_i2c_eeprom_82598,
Auke Kok9a799d72007-09-15 14:07:45 -07001233};
1234
Auke Kok3957d632007-10-31 15:22:10 -07001235struct ixgbe_info ixgbe_82598_info = {
Auke Kok9a799d72007-09-15 14:07:45 -07001236 .mac = ixgbe_mac_82598EB,
1237 .get_invariants = &ixgbe_get_invariants_82598,
1238 .mac_ops = &mac_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001239 .eeprom_ops = &eeprom_ops_82598,
1240 .phy_ops = &phy_ops_82598,
Auke Kok9a799d72007-09-15 14:07:45 -07001241};
1242