blob: a8151f25a4d035680c5eb96be98c0943f057ee3e [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;
Auke Kok9a799d72007-09-15 14:07:45 -0700168
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800169 /*
170 * Determine link capabilities based on the stored value of AUTOC,
171 * which represents EEPROM defaults.
172 */
173 switch (hw->mac.orig_autoc & IXGBE_AUTOC_LMS_MASK) {
Auke Kok9a799d72007-09-15 14:07:45 -0700174 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
175 *speed = IXGBE_LINK_SPEED_1GB_FULL;
176 *autoneg = false;
177 break;
178
179 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
180 *speed = IXGBE_LINK_SPEED_10GB_FULL;
181 *autoneg = false;
182 break;
183
184 case IXGBE_AUTOC_LMS_1G_AN:
185 *speed = IXGBE_LINK_SPEED_1GB_FULL;
186 *autoneg = true;
187 break;
188
189 case IXGBE_AUTOC_LMS_KX4_AN:
190 case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
191 *speed = IXGBE_LINK_SPEED_UNKNOWN;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800192 if (hw->mac.orig_autoc & IXGBE_AUTOC_KX4_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700193 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800194 if (hw->mac.orig_autoc & IXGBE_AUTOC_KX_SUPP)
Auke Kok9a799d72007-09-15 14:07:45 -0700195 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
196 *autoneg = true;
197 break;
198
199 default:
200 status = IXGBE_ERR_LINK_SETUP;
201 break;
202 }
203
204 return status;
205}
206
207/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700208 * ixgbe_get_copper_link_capabilities_82598 - Determines link capabilities
Auke Kok9a799d72007-09-15 14:07:45 -0700209 * @hw: pointer to hardware structure
210 * @speed: pointer to link speed
211 * @autoneg: boolean auto-negotiation value
212 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700213 * Determines the link capabilities by reading the AUTOC register.
Auke Kok9a799d72007-09-15 14:07:45 -0700214 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800215static s32 ixgbe_get_copper_link_capabilities_82598(struct ixgbe_hw *hw,
216 ixgbe_link_speed *speed,
217 bool *autoneg)
Auke Kok9a799d72007-09-15 14:07:45 -0700218{
219 s32 status = IXGBE_ERR_LINK_SETUP;
220 u16 speed_ability;
221
222 *speed = 0;
223 *autoneg = true;
224
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700225 status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_SPEED_ABILITY,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700226 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
227 &speed_ability);
Auke Kok9a799d72007-09-15 14:07:45 -0700228
229 if (status == 0) {
230 if (speed_ability & IXGBE_MDIO_PHY_SPEED_10G)
231 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
232 if (speed_ability & IXGBE_MDIO_PHY_SPEED_1G)
233 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
234 }
235
236 return status;
237}
238
239/**
240 * ixgbe_get_media_type_82598 - Determines media type
241 * @hw: pointer to hardware structure
242 *
243 * Returns the media type (fiber, copper, backplane)
244 **/
245static enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
246{
247 enum ixgbe_media_type media_type;
248
249 /* Media type for I82598 is based on device ID */
250 switch (hw->device_id) {
Don Skidmore1e336d02009-01-26 20:57:51 -0800251 case IXGBE_DEV_ID_82598:
Don Skidmore2f21bdd2009-02-01 01:18:23 -0800252 case IXGBE_DEV_ID_82598_BX:
Don Skidmore1e336d02009-01-26 20:57:51 -0800253 media_type = ixgbe_media_type_backplane;
254 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700255 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
256 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
257 case IXGBE_DEV_ID_82598EB_CX4:
Jesse Brandeburg8d792cd2008-08-08 16:24:19 -0700258 case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800259 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
260 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -0700261 case IXGBE_DEV_ID_82598EB_XF_LR:
Donald Skidmorec4900be2008-11-20 21:11:42 -0800262 case IXGBE_DEV_ID_82598EB_SFP_LOM:
Auke Kok9a799d72007-09-15 14:07:45 -0700263 media_type = ixgbe_media_type_fiber;
264 break;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700265 case IXGBE_DEV_ID_82598AT:
266 media_type = ixgbe_media_type_copper;
267 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700268 default:
269 media_type = ixgbe_media_type_unknown;
270 break;
271 }
272
273 return media_type;
274}
275
276/**
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800277 * ixgbe_fc_enable_82598 - Enable flow control
278 * @hw: pointer to hardware structure
279 * @packetbuf_num: packet buffer number (0-7)
280 *
281 * Enable flow control according to the current settings.
282 **/
283static s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
284{
285 s32 ret_val = 0;
286 u32 fctrl_reg;
287 u32 rmcs_reg;
288 u32 reg;
289
290 fctrl_reg = IXGBE_READ_REG(hw, IXGBE_FCTRL);
291 fctrl_reg &= ~(IXGBE_FCTRL_RFCE | IXGBE_FCTRL_RPFCE);
292
293 rmcs_reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
294 rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X);
295
296 /*
297 * The possible values of fc.current_mode are:
298 * 0: Flow control is completely disabled
299 * 1: Rx flow control is enabled (we can receive pause frames,
300 * but not send pause frames).
301 * 2: Tx flow control is enabled (we can send pause frames but
302 * we do not support receiving pause frames).
303 * 3: Both Rx and Tx flow control (symmetric) are enabled.
304 * other: Invalid.
305 */
306 switch (hw->fc.current_mode) {
307 case ixgbe_fc_none:
308 /* Flow control completely disabled by software override. */
309 break;
310 case ixgbe_fc_rx_pause:
311 /*
312 * Rx Flow control is enabled and Tx Flow control is
313 * disabled by software override. Since there really
314 * isn't a way to advertise that we are capable of RX
315 * Pause ONLY, we will advertise that we support both
316 * symmetric and asymmetric Rx PAUSE. Later, we will
317 * disable the adapter's ability to send PAUSE frames.
318 */
319 fctrl_reg |= IXGBE_FCTRL_RFCE;
320 break;
321 case ixgbe_fc_tx_pause:
322 /*
323 * Tx Flow control is enabled, and Rx Flow control is
324 * disabled by software override.
325 */
326 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
327 break;
328 case ixgbe_fc_full:
329 /* Flow control (both Rx and Tx) is enabled by SW override. */
330 fctrl_reg |= IXGBE_FCTRL_RFCE;
331 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
332 break;
333 default:
334 hw_dbg(hw, "Flow control param set incorrectly\n");
335 ret_val = -IXGBE_ERR_CONFIG;
336 goto out;
337 break;
338 }
339
340 /* Enable 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +0000341 fctrl_reg |= IXGBE_FCTRL_DPF;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800342 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl_reg);
343 IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg);
344
345 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
346 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
347 if (hw->fc.send_xon) {
348 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(packetbuf_num),
349 (hw->fc.low_water | IXGBE_FCRTL_XONE));
350 } else {
351 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(packetbuf_num),
352 hw->fc.low_water);
353 }
354
355 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(packetbuf_num),
356 (hw->fc.high_water | IXGBE_FCRTH_FCEN));
357 }
358
359 /* Configure pause time (2 TCs per register) */
360 reg = IXGBE_READ_REG(hw, IXGBE_FCTTV(packetbuf_num));
361 if ((packetbuf_num & 1) == 0)
362 reg = (reg & 0xFFFF0000) | hw->fc.pause_time;
363 else
364 reg = (reg & 0x0000FFFF) | (hw->fc.pause_time << 16);
365 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(packetbuf_num / 2), reg);
366
367 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, (hw->fc.pause_time >> 1));
368
369out:
370 return ret_val;
371}
372
373/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700374 * ixgbe_setup_fc_82598 - Configure flow control settings
375 * @hw: pointer to hardware structure
376 * @packetbuf_num: packet buffer number (0-7)
377 *
378 * Configures the flow control settings based on SW configuration. This
379 * function is used for 802.3x flow control configuration only.
380 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800381static s32 ixgbe_setup_fc_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700382{
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800383 s32 ret_val = 0;
384 ixgbe_link_speed speed;
385 bool link_up;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700386
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800387 /* Validate the packetbuf configuration */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700388 if (packetbuf_num < 0 || packetbuf_num > 7) {
389 hw_dbg(hw, "Invalid packet buffer number [%d], expected range is"
390 " 0-7\n", packetbuf_num);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800391 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
392 goto out;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700393 }
394
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700395 /*
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800396 * Validate the water mark configuration. Zero water marks are invalid
397 * because it causes the controller to just blast out fc packets.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700398 */
399 if (!hw->fc.low_water || !hw->fc.high_water || !hw->fc.pause_time) {
PJ Waskiewiczd3e9c562009-04-09 22:27:39 +0000400 if (hw->fc.requested_mode != ixgbe_fc_none) {
401 hw_dbg(hw, "Invalid water mark configuration\n");
402 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
403 goto out;
404 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700405 }
406
407 /*
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800408 * Validate the requested mode. Strict IEEE mode does not allow
409 * ixgbe_fc_rx_pause because it will cause testing anomalies.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700410 */
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800411 if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
412 hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
413 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
414 goto out;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700415 }
416
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800417 /*
418 * 10gig parts do not have a word in the EEPROM to determine the
419 * default flow control setting, so we explicitly set it to full.
420 */
421 if (hw->fc.requested_mode == ixgbe_fc_default)
422 hw->fc.requested_mode = ixgbe_fc_full;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700423
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800424 /*
425 * Save off the requested flow control mode for use later. Depending
426 * on the link partner's capabilities, we may or may not use this mode.
427 */
428
429 hw->fc.current_mode = hw->fc.requested_mode;
430
431 /* Decide whether to use autoneg or not. */
432 hw->mac.ops.check_link(hw, &speed, &link_up, false);
Don Skidmore71fd5702009-03-31 21:35:05 +0000433 if (!hw->fc.disable_fc_autoneg && hw->phy.multispeed_fiber &&
434 (speed == IXGBE_LINK_SPEED_1GB_FULL))
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800435 ret_val = ixgbe_fc_autoneg(hw);
436
437 if (ret_val)
438 goto out;
439
440 ret_val = ixgbe_fc_enable_82598(hw, packetbuf_num);
441
442out:
443 return ret_val;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700444}
445
446/**
Auke Kok9a799d72007-09-15 14:07:45 -0700447 * ixgbe_setup_mac_link_82598 - Configures MAC link settings
448 * @hw: pointer to hardware structure
449 *
450 * Configures link settings based on values in the ixgbe_hw struct.
451 * Restarts the link. Performs autonegotiation if needed.
452 **/
453static s32 ixgbe_setup_mac_link_82598(struct ixgbe_hw *hw)
454{
455 u32 autoc_reg;
456 u32 links_reg;
457 u32 i;
458 s32 status = 0;
459
Auke Kok9a799d72007-09-15 14:07:45 -0700460 /* Restart link */
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800461 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Auke Kok9a799d72007-09-15 14:07:45 -0700462 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
463 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
464
465 /* Only poll for autoneg to complete if specified to do so */
466 if (hw->phy.autoneg_wait_to_complete) {
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800467 if ((autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
468 IXGBE_AUTOC_LMS_KX4_AN ||
469 (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
470 IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
Auke Kok9a799d72007-09-15 14:07:45 -0700471 links_reg = 0; /* Just in case Autoneg time = 0 */
472 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
473 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
474 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
475 break;
476 msleep(100);
477 }
478 if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
479 status = IXGBE_ERR_AUTONEG_NOT_COMPLETE;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700480 hw_dbg(hw, "Autonegotiation did not complete.\n");
Auke Kok9a799d72007-09-15 14:07:45 -0700481 }
482 }
483 }
484
485 /*
486 * We want to save off the original Flow Control configuration just in
487 * case we get disconnected and then reconnected into a different hub
488 * or switch with different Flow Control capabilities.
489 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700490 ixgbe_setup_fc_82598(hw, 0);
Auke Kok9a799d72007-09-15 14:07:45 -0700491
492 /* Add delay to filter out noises during initial link setup */
493 msleep(50);
494
495 return status;
496}
497
498/**
499 * ixgbe_check_mac_link_82598 - Get link/speed status
500 * @hw: pointer to hardware structure
501 * @speed: pointer to link speed
502 * @link_up: true is link is up, false otherwise
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700503 * @link_up_wait_to_complete: bool used to wait for link up or not
Auke Kok9a799d72007-09-15 14:07:45 -0700504 *
505 * Reads the links register to determine if link is up and the current speed
506 **/
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700507static s32 ixgbe_check_mac_link_82598(struct ixgbe_hw *hw,
508 ixgbe_link_speed *speed, bool *link_up,
509 bool link_up_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700510{
511 u32 links_reg;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700512 u32 i;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800513 u16 link_reg, adapt_comp_reg;
514
515 /*
516 * SERDES PHY requires us to read link status from register 0xC79F.
517 * Bit 0 set indicates link is up/ready; clear indicates link down.
518 * 0xC00C is read to check that the XAUI lanes are active. Bit 0
519 * clear indicates active; set indicates inactive.
520 */
521 if (hw->phy.type == ixgbe_phy_nl) {
522 hw->phy.ops.read_reg(hw, 0xC79F, IXGBE_TWINAX_DEV, &link_reg);
523 hw->phy.ops.read_reg(hw, 0xC79F, IXGBE_TWINAX_DEV, &link_reg);
524 hw->phy.ops.read_reg(hw, 0xC00C, IXGBE_TWINAX_DEV,
525 &adapt_comp_reg);
526 if (link_up_wait_to_complete) {
527 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
528 if ((link_reg & 1) &&
529 ((adapt_comp_reg & 1) == 0)) {
530 *link_up = true;
531 break;
532 } else {
533 *link_up = false;
534 }
535 msleep(100);
536 hw->phy.ops.read_reg(hw, 0xC79F,
537 IXGBE_TWINAX_DEV,
538 &link_reg);
539 hw->phy.ops.read_reg(hw, 0xC00C,
540 IXGBE_TWINAX_DEV,
541 &adapt_comp_reg);
542 }
543 } else {
544 if ((link_reg & 1) && ((adapt_comp_reg & 1) == 0))
545 *link_up = true;
546 else
547 *link_up = false;
548 }
549
550 if (*link_up == false)
551 goto out;
552 }
Auke Kok9a799d72007-09-15 14:07:45 -0700553
554 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -0700555 if (link_up_wait_to_complete) {
556 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
557 if (links_reg & IXGBE_LINKS_UP) {
558 *link_up = true;
559 break;
560 } else {
561 *link_up = false;
562 }
563 msleep(100);
564 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
565 }
566 } else {
567 if (links_reg & IXGBE_LINKS_UP)
568 *link_up = true;
569 else
570 *link_up = false;
571 }
Auke Kok9a799d72007-09-15 14:07:45 -0700572
573 if (links_reg & IXGBE_LINKS_SPEED)
574 *speed = IXGBE_LINK_SPEED_10GB_FULL;
575 else
576 *speed = IXGBE_LINK_SPEED_1GB_FULL;
577
Donald Skidmorec4900be2008-11-20 21:11:42 -0800578out:
Auke Kok9a799d72007-09-15 14:07:45 -0700579 return 0;
580}
581
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700582
Auke Kok9a799d72007-09-15 14:07:45 -0700583/**
584 * ixgbe_setup_mac_link_speed_82598 - Set MAC link speed
585 * @hw: pointer to hardware structure
586 * @speed: new link speed
587 * @autoneg: true if auto-negotiation enabled
588 * @autoneg_wait_to_complete: true if waiting is needed to complete
589 *
590 * Set the link speed in the AUTOC register and restarts link.
591 **/
592static s32 ixgbe_setup_mac_link_speed_82598(struct ixgbe_hw *hw,
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800593 ixgbe_link_speed speed, bool autoneg,
594 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700595{
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800596 s32 status = 0;
597 ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN;
598 u32 curr_autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
599 u32 autoc = curr_autoc;
600 u32 link_mode = autoc & IXGBE_AUTOC_LMS_MASK;
Auke Kok9a799d72007-09-15 14:07:45 -0700601
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800602 /* Check to see if speed passed in is supported. */
603 ixgbe_get_link_capabilities_82598(hw, &link_capabilities, &autoneg);
604 speed &= link_capabilities;
605
606 if (speed == IXGBE_LINK_SPEED_UNKNOWN)
Auke Kok9a799d72007-09-15 14:07:45 -0700607 status = IXGBE_ERR_LINK_SETUP;
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800608
609 /* Set KX4/KX support according to speed requested */
610 else if (link_mode == IXGBE_AUTOC_LMS_KX4_AN ||
611 link_mode == IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
612 autoc &= ~IXGBE_AUTOC_KX4_KX_SUPP_MASK;
613 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
614 autoc |= IXGBE_AUTOC_KX4_SUPP;
615 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
616 autoc |= IXGBE_AUTOC_KX_SUPP;
617 if (autoc != curr_autoc)
618 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700619 }
620
621 if (status == 0) {
622 hw->phy.autoneg_wait_to_complete = autoneg_wait_to_complete;
623
Auke Kok9a799d72007-09-15 14:07:45 -0700624 /*
625 * Setup and restart the link based on the new values in
626 * ixgbe_hw This will write the AUTOC register based on the new
627 * stored values
628 */
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800629 status = ixgbe_setup_mac_link_82598(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700630 }
631
632 return status;
633}
634
635
636/**
637 * ixgbe_setup_copper_link_82598 - Setup copper link settings
638 * @hw: pointer to hardware structure
639 *
640 * Configures link settings based on values in the ixgbe_hw struct.
641 * Restarts the link. Performs autonegotiation if needed. Restart
642 * phy and wait for autonegotiate to finish. Then synchronize the
643 * MAC and PHY.
644 **/
645static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw)
646{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700647 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700648
649 /* Restart autonegotiation on PHY */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700650 status = hw->phy.ops.setup_link(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700651
Auke Kok3957d632007-10-31 15:22:10 -0700652 /* Set up MAC */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700653 ixgbe_setup_mac_link_82598(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700654
655 return status;
656}
657
658/**
659 * ixgbe_setup_copper_link_speed_82598 - Set the PHY autoneg advertised field
660 * @hw: pointer to hardware structure
661 * @speed: new link speed
662 * @autoneg: true if autonegotiation enabled
663 * @autoneg_wait_to_complete: true if waiting is needed to complete
664 *
665 * Sets the link speed in the AUTOC register in the MAC and restarts link.
666 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700667static s32 ixgbe_setup_copper_link_speed_82598(struct ixgbe_hw *hw,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700668 ixgbe_link_speed speed,
669 bool autoneg,
670 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700671{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700672 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700673
674 /* Setup the PHY according to input speed */
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700675 status = hw->phy.ops.setup_link_speed(hw, speed, autoneg,
676 autoneg_wait_to_complete);
Auke Kok9a799d72007-09-15 14:07:45 -0700677
Auke Kok3957d632007-10-31 15:22:10 -0700678 /* Set up MAC */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700679 ixgbe_setup_mac_link_82598(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700680
681 return status;
682}
683
684/**
685 * ixgbe_reset_hw_82598 - Performs hardware reset
686 * @hw: pointer to hardware structure
687 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700688 * Resets the hardware by resetting the transmit and receive units, masks and
Auke Kok9a799d72007-09-15 14:07:45 -0700689 * clears all interrupts, performing a PHY reset, and performing a link (MAC)
690 * reset.
691 **/
692static s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
693{
694 s32 status = 0;
695 u32 ctrl;
696 u32 gheccr;
697 u32 i;
698 u32 autoc;
699 u8 analog_val;
700
701 /* Call adapter stop to disable tx/rx and clear interrupts */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700702 hw->mac.ops.stop_adapter(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700703
704 /*
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700705 * Power up the Atlas Tx lanes if they are currently powered down.
706 * Atlas Tx lanes are powered down for MAC loopback tests, but
Auke Kok9a799d72007-09-15 14:07:45 -0700707 * they are not automatically restored on reset.
708 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700709 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700710 if (analog_val & IXGBE_ATLAS_PDN_TX_REG_EN) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700711 /* Enable Tx Atlas so packets can be transmitted again */
712 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
713 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700714 analog_val &= ~IXGBE_ATLAS_PDN_TX_REG_EN;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700715 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
716 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700717
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700718 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
719 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700720 analog_val &= ~IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700721 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
722 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700723
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700724 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
725 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700726 analog_val &= ~IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700727 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
728 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700729
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700730 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
731 &analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700732 analog_val &= ~IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700733 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
734 analog_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700735 }
736
737 /* Reset PHY */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000738 if (hw->phy.reset_disable == false) {
739 /* PHY ops must be identified and initialized prior to reset */
740
741 /* Init PHY and function pointers, perform SFP setup */
742 status = hw->phy.ops.init(hw);
743 if (status == IXGBE_ERR_SFP_NOT_SUPPORTED)
744 goto reset_hw_out;
745
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700746 hw->phy.ops.reset(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000747 }
Auke Kok9a799d72007-09-15 14:07:45 -0700748
749 /*
750 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
751 * access and verify no pending requests before reset
752 */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000753 status = ixgbe_disable_pcie_master(hw);
754 if (status != 0) {
Auke Kok9a799d72007-09-15 14:07:45 -0700755 status = IXGBE_ERR_MASTER_REQUESTS_PENDING;
756 hw_dbg(hw, "PCI-E Master disable polling has failed.\n");
757 }
758
759 /*
760 * Issue global reset to the MAC. This needs to be a SW reset.
761 * If link reset is used, it might reset the MAC when mng is using it
762 */
763 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
764 IXGBE_WRITE_REG(hw, IXGBE_CTRL, (ctrl | IXGBE_CTRL_RST));
765 IXGBE_WRITE_FLUSH(hw);
766
767 /* Poll for reset bit to self-clear indicating reset is complete */
768 for (i = 0; i < 10; i++) {
769 udelay(1);
770 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
771 if (!(ctrl & IXGBE_CTRL_RST))
772 break;
773 }
774 if (ctrl & IXGBE_CTRL_RST) {
775 status = IXGBE_ERR_RESET_FAILED;
776 hw_dbg(hw, "Reset polling failed to complete.\n");
777 }
778
779 msleep(50);
780
781 gheccr = IXGBE_READ_REG(hw, IXGBE_GHECCR);
782 gheccr &= ~((1 << 21) | (1 << 18) | (1 << 9) | (1 << 6));
783 IXGBE_WRITE_REG(hw, IXGBE_GHECCR, gheccr);
784
785 /*
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800786 * Store the original AUTOC value if it has not been
787 * stored off yet. Otherwise restore the stored original
788 * AUTOC value since the reset operation sets back to deaults.
Auke Kok9a799d72007-09-15 14:07:45 -0700789 */
790 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
Peter P Waskiewicz Jr3201d312009-02-05 23:54:21 -0800791 if (hw->mac.orig_link_settings_stored == false) {
792 hw->mac.orig_autoc = autoc;
793 hw->mac.orig_link_settings_stored = true;
794 } else if (autoc != hw->mac.orig_autoc) {
795 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, hw->mac.orig_autoc);
Auke Kok9a799d72007-09-15 14:07:45 -0700796 }
797
798 /* Store the permanent mac address */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700799 hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
Auke Kok9a799d72007-09-15 14:07:45 -0700800
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000801reset_hw_out:
Auke Kok9a799d72007-09-15 14:07:45 -0700802 return status;
803}
804
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700805/**
806 * ixgbe_set_vmdq_82598 - Associate a VMDq set index with a rx address
807 * @hw: pointer to hardware struct
808 * @rar: receive address register index to associate with a VMDq index
809 * @vmdq: VMDq set index
810 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800811static s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700812{
813 u32 rar_high;
814
815 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
816 rar_high &= ~IXGBE_RAH_VIND_MASK;
817 rar_high |= ((vmdq << IXGBE_RAH_VIND_SHIFT) & IXGBE_RAH_VIND_MASK);
818 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
819 return 0;
820}
821
822/**
823 * ixgbe_clear_vmdq_82598 - Disassociate a VMDq set index from an rx address
824 * @hw: pointer to hardware struct
825 * @rar: receive address register index to associate with a VMDq index
826 * @vmdq: VMDq clear index (not used in 82598, but elsewhere)
827 **/
828static s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
829{
830 u32 rar_high;
831 u32 rar_entries = hw->mac.num_rar_entries;
832
833 if (rar < rar_entries) {
834 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
835 if (rar_high & IXGBE_RAH_VIND_MASK) {
836 rar_high &= ~IXGBE_RAH_VIND_MASK;
837 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
838 }
839 } else {
840 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
841 }
842
843 return 0;
844}
845
846/**
847 * ixgbe_set_vfta_82598 - Set VLAN filter table
848 * @hw: pointer to hardware structure
849 * @vlan: VLAN id to write to VLAN filter
850 * @vind: VMDq output index that maps queue to VLAN id in VFTA
851 * @vlan_on: boolean flag to turn on/off VLAN in VFTA
852 *
853 * Turn on/off specified VLAN in the VLAN filter table.
854 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800855static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
856 bool vlan_on)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700857{
858 u32 regindex;
859 u32 bitindex;
860 u32 bits;
861 u32 vftabyte;
862
863 if (vlan > 4095)
864 return IXGBE_ERR_PARAM;
865
866 /* Determine 32-bit word position in array */
867 regindex = (vlan >> 5) & 0x7F; /* upper seven bits */
868
869 /* Determine the location of the (VMD) queue index */
870 vftabyte = ((vlan >> 3) & 0x03); /* bits (4:3) indicating byte array */
871 bitindex = (vlan & 0x7) << 2; /* lower 3 bits indicate nibble */
872
873 /* Set the nibble for VMD queue index */
874 bits = IXGBE_READ_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex));
875 bits &= (~(0x0F << bitindex));
876 bits |= (vind << bitindex);
877 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex), bits);
878
879 /* Determine the location of the bit for this VLAN id */
880 bitindex = vlan & 0x1F; /* lower five bits */
881
882 bits = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
883 if (vlan_on)
884 /* Turn on this VLAN id */
885 bits |= (1 << bitindex);
886 else
887 /* Turn off this VLAN id */
888 bits &= ~(1 << bitindex);
889 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), bits);
890
891 return 0;
892}
893
894/**
895 * ixgbe_clear_vfta_82598 - Clear VLAN filter table
896 * @hw: pointer to hardware structure
897 *
898 * Clears the VLAN filer table, and the VMDq index associated with the filter
899 **/
900static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw)
901{
902 u32 offset;
903 u32 vlanbyte;
904
905 for (offset = 0; offset < hw->mac.vft_size; offset++)
906 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
907
908 for (vlanbyte = 0; vlanbyte < 4; vlanbyte++)
909 for (offset = 0; offset < hw->mac.vft_size; offset++)
910 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vlanbyte, offset),
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700911 0);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700912
913 return 0;
914}
915
916/**
917 * ixgbe_blink_led_start_82598 - Blink LED based on index.
918 * @hw: pointer to hardware structure
919 * @index: led number to blink
920 **/
921static s32 ixgbe_blink_led_start_82598(struct ixgbe_hw *hw, u32 index)
922{
923 ixgbe_link_speed speed = 0;
924 bool link_up = 0;
925 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
926 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
927
928 /*
929 * Link must be up to auto-blink the LEDs on the 82598EB MAC;
930 * force it if link is down.
931 */
932 hw->mac.ops.check_link(hw, &speed, &link_up, false);
933
934 if (!link_up) {
935 autoc_reg |= IXGBE_AUTOC_FLU;
936 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
937 msleep(10);
938 }
939
940 led_reg &= ~IXGBE_LED_MODE_MASK(index);
941 led_reg |= IXGBE_LED_BLINK(index);
942 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
943 IXGBE_WRITE_FLUSH(hw);
944
945 return 0;
946}
947
948/**
949 * ixgbe_blink_led_stop_82598 - Stop blinking LED based on index.
950 * @hw: pointer to hardware structure
951 * @index: led number to stop blinking
952 **/
953static s32 ixgbe_blink_led_stop_82598(struct ixgbe_hw *hw, u32 index)
954{
955 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
956 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
957
958 autoc_reg &= ~IXGBE_AUTOC_FLU;
959 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
960 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
961
962 led_reg &= ~IXGBE_LED_MODE_MASK(index);
963 led_reg &= ~IXGBE_LED_BLINK(index);
964 led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index);
965 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
966 IXGBE_WRITE_FLUSH(hw);
967
968 return 0;
969}
970
971/**
972 * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register
973 * @hw: pointer to hardware structure
974 * @reg: analog register to read
975 * @val: read value
976 *
977 * Performs read operation to Atlas analog register specified.
978 **/
Hannes Edere855aac2008-12-26 00:03:59 -0800979static s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700980{
981 u32 atlas_ctl;
982
983 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL,
984 IXGBE_ATLASCTL_WRITE_CMD | (reg << 8));
985 IXGBE_WRITE_FLUSH(hw);
986 udelay(10);
987 atlas_ctl = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
988 *val = (u8)atlas_ctl;
989
990 return 0;
991}
992
993/**
994 * ixgbe_write_analog_reg8_82598 - Writes 8 bit Atlas analog register
995 * @hw: pointer to hardware structure
996 * @reg: atlas register to write
997 * @val: value to write
998 *
999 * Performs write operation to Atlas analog register specified.
1000 **/
Hannes Edere855aac2008-12-26 00:03:59 -08001001static s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001002{
1003 u32 atlas_ctl;
1004
1005 atlas_ctl = (reg << 8) | val;
1006 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL, atlas_ctl);
1007 IXGBE_WRITE_FLUSH(hw);
1008 udelay(10);
1009
1010 return 0;
1011}
1012
1013/**
Donald Skidmorec4900be2008-11-20 21:11:42 -08001014 * ixgbe_read_i2c_eeprom_82598 - Read 8 bit EEPROM word of an SFP+ module
1015 * over I2C interface through an intermediate phy.
1016 * @hw: pointer to hardware structure
1017 * @byte_offset: EEPROM byte offset to read
1018 * @eeprom_data: value read
1019 *
1020 * Performs byte read operation to SFP module's EEPROM over I2C interface.
1021 **/
Hannes Edere855aac2008-12-26 00:03:59 -08001022static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
1023 u8 *eeprom_data)
Donald Skidmorec4900be2008-11-20 21:11:42 -08001024{
1025 s32 status = 0;
1026 u16 sfp_addr = 0;
1027 u16 sfp_data = 0;
1028 u16 sfp_stat = 0;
1029 u32 i;
1030
1031 if (hw->phy.type == ixgbe_phy_nl) {
1032 /*
1033 * phy SDA/SCL registers are at addresses 0xC30A to
1034 * 0xC30D. These registers are used to talk to the SFP+
1035 * module's EEPROM through the SDA/SCL (I2C) interface.
1036 */
1037 sfp_addr = (IXGBE_I2C_EEPROM_DEV_ADDR << 8) + byte_offset;
1038 sfp_addr = (sfp_addr | IXGBE_I2C_EEPROM_READ_MASK);
1039 hw->phy.ops.write_reg(hw,
1040 IXGBE_MDIO_PMA_PMD_SDA_SCL_ADDR,
1041 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
1042 sfp_addr);
1043
1044 /* Poll status */
1045 for (i = 0; i < 100; i++) {
1046 hw->phy.ops.read_reg(hw,
1047 IXGBE_MDIO_PMA_PMD_SDA_SCL_STAT,
1048 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
1049 &sfp_stat);
1050 sfp_stat = sfp_stat & IXGBE_I2C_EEPROM_STATUS_MASK;
1051 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_IN_PROGRESS)
1052 break;
1053 msleep(10);
1054 }
1055
1056 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_PASS) {
1057 hw_dbg(hw, "EEPROM read did not pass.\n");
1058 status = IXGBE_ERR_SFP_NOT_PRESENT;
1059 goto out;
1060 }
1061
1062 /* Read data */
1063 hw->phy.ops.read_reg(hw, IXGBE_MDIO_PMA_PMD_SDA_SCL_DATA,
1064 IXGBE_MDIO_PMA_PMD_DEV_TYPE, &sfp_data);
1065
1066 *eeprom_data = (u8)(sfp_data >> 8);
1067 } else {
1068 status = IXGBE_ERR_PHY;
1069 goto out;
1070 }
1071
1072out:
1073 return status;
1074}
1075
1076/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001077 * ixgbe_get_supported_physical_layer_82598 - Returns physical layer type
1078 * @hw: pointer to hardware structure
1079 *
1080 * Determines physical layer capabilities of the current configuration.
1081 **/
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001082static u32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001083{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001084 u32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001085
1086 switch (hw->device_id) {
Don Skidmore1e336d02009-01-26 20:57:51 -08001087 case IXGBE_DEV_ID_82598:
1088 /* Default device ID is mezzanine card KX/KX4 */
1089 physical_layer = (IXGBE_PHYSICAL_LAYER_10GBASE_KX4 |
1090 IXGBE_PHYSICAL_LAYER_1000BASE_KX);
1091 break;
Don Skidmore2f21bdd2009-02-01 01:18:23 -08001092 case IXGBE_DEV_ID_82598_BX:
1093 physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_BX;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001094 case IXGBE_DEV_ID_82598EB_CX4:
1095 case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
1096 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_CX4;
1097 break;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001098 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
1099 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1100 break;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001101 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
1102 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
Donald Skidmorec4900be2008-11-20 21:11:42 -08001103 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001104 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1105 break;
1106 case IXGBE_DEV_ID_82598EB_XF_LR:
1107 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1108 break;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001109 case IXGBE_DEV_ID_82598AT:
1110 physical_layer = (IXGBE_PHYSICAL_LAYER_10GBASE_T |
1111 IXGBE_PHYSICAL_LAYER_1000BASE_T);
1112 break;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001113 case IXGBE_DEV_ID_82598EB_SFP_LOM:
1114 hw->phy.ops.identify_sfp(hw);
1115
1116 switch (hw->phy.sfp_type) {
1117 case ixgbe_sfp_type_da_cu:
1118 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1119 break;
1120 case ixgbe_sfp_type_sr:
1121 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1122 break;
1123 case ixgbe_sfp_type_lr:
1124 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1125 break;
1126 default:
1127 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
1128 break;
1129 }
1130 break;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001131
1132 default:
1133 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
1134 break;
1135 }
1136
1137 return physical_layer;
1138}
1139
Auke Kok9a799d72007-09-15 14:07:45 -07001140static struct ixgbe_mac_operations mac_ops_82598 = {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001141 .init_hw = &ixgbe_init_hw_generic,
1142 .reset_hw = &ixgbe_reset_hw_82598,
1143 .start_hw = &ixgbe_start_hw_generic,
1144 .clear_hw_cntrs = &ixgbe_clear_hw_cntrs_generic,
Auke Kok9a799d72007-09-15 14:07:45 -07001145 .get_media_type = &ixgbe_get_media_type_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001146 .get_supported_physical_layer = &ixgbe_get_supported_physical_layer_82598,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001147 .enable_rx_dma = &ixgbe_enable_rx_dma_generic,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001148 .get_mac_addr = &ixgbe_get_mac_addr_generic,
1149 .stop_adapter = &ixgbe_stop_adapter_generic,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001150 .get_bus_info = &ixgbe_get_bus_info_generic,
1151 .set_lan_id = &ixgbe_set_lan_id_multi_port_pcie,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001152 .read_analog_reg8 = &ixgbe_read_analog_reg8_82598,
1153 .write_analog_reg8 = &ixgbe_write_analog_reg8_82598,
Auke Kok3957d632007-10-31 15:22:10 -07001154 .setup_link = &ixgbe_setup_mac_link_82598,
Auke Kok3957d632007-10-31 15:22:10 -07001155 .setup_link_speed = &ixgbe_setup_mac_link_speed_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001156 .check_link = &ixgbe_check_mac_link_82598,
1157 .get_link_capabilities = &ixgbe_get_link_capabilities_82598,
1158 .led_on = &ixgbe_led_on_generic,
1159 .led_off = &ixgbe_led_off_generic,
1160 .blink_led_start = &ixgbe_blink_led_start_82598,
1161 .blink_led_stop = &ixgbe_blink_led_stop_82598,
1162 .set_rar = &ixgbe_set_rar_generic,
1163 .clear_rar = &ixgbe_clear_rar_generic,
1164 .set_vmdq = &ixgbe_set_vmdq_82598,
1165 .clear_vmdq = &ixgbe_clear_vmdq_82598,
1166 .init_rx_addrs = &ixgbe_init_rx_addrs_generic,
1167 .update_uc_addr_list = &ixgbe_update_uc_addr_list_generic,
1168 .update_mc_addr_list = &ixgbe_update_mc_addr_list_generic,
1169 .enable_mc = &ixgbe_enable_mc_generic,
1170 .disable_mc = &ixgbe_disable_mc_generic,
1171 .clear_vfta = &ixgbe_clear_vfta_82598,
1172 .set_vfta = &ixgbe_set_vfta_82598,
1173 .setup_fc = &ixgbe_setup_fc_82598,
1174};
1175
1176static struct ixgbe_eeprom_operations eeprom_ops_82598 = {
1177 .init_params = &ixgbe_init_eeprom_params_generic,
1178 .read = &ixgbe_read_eeprom_generic,
1179 .validate_checksum = &ixgbe_validate_eeprom_checksum_generic,
1180 .update_checksum = &ixgbe_update_eeprom_checksum_generic,
1181};
1182
1183static struct ixgbe_phy_operations phy_ops_82598 = {
1184 .identify = &ixgbe_identify_phy_generic,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001185 .identify_sfp = &ixgbe_identify_sfp_module_generic,
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00001186 .init = &ixgbe_init_phy_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001187 .reset = &ixgbe_reset_phy_generic,
1188 .read_reg = &ixgbe_read_phy_reg_generic,
1189 .write_reg = &ixgbe_write_phy_reg_generic,
1190 .setup_link = &ixgbe_setup_phy_link_generic,
1191 .setup_link_speed = &ixgbe_setup_phy_link_speed_generic,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001192 .read_i2c_eeprom = &ixgbe_read_i2c_eeprom_82598,
Auke Kok9a799d72007-09-15 14:07:45 -07001193};
1194
Auke Kok3957d632007-10-31 15:22:10 -07001195struct ixgbe_info ixgbe_82598_info = {
Auke Kok9a799d72007-09-15 14:07:45 -07001196 .mac = ixgbe_mac_82598EB,
1197 .get_invariants = &ixgbe_get_invariants_82598,
1198 .mac_ops = &mac_ops_82598,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001199 .eeprom_ops = &eeprom_ops_82598,
1200 .phy_ops = &phy_ops_82598,
Auke Kok9a799d72007-09-15 14:07:45 -07001201};
1202