blob: 39d7b64aced7bff18c6da94bf93af89189d34b2e [file] [log] [blame]
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2009 Intel Corporation.
5
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:
23 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
32#include "ixgbe.h"
33#include "ixgbe_phy.h"
34
35#define IXGBE_82599_MAX_TX_QUEUES 128
36#define IXGBE_82599_MAX_RX_QUEUES 128
37#define IXGBE_82599_RAR_ENTRIES 128
38#define IXGBE_82599_MC_TBL_SIZE 128
39#define IXGBE_82599_VFT_TBL_SIZE 128
40
41s32 ixgbe_get_link_capabilities_82599(struct ixgbe_hw *hw,
42 ixgbe_link_speed *speed,
43 bool *autoneg);
44enum ixgbe_media_type ixgbe_get_media_type_82599(struct ixgbe_hw *hw);
45s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw);
46s32 ixgbe_setup_mac_link_speed_multispeed_fiber(struct ixgbe_hw *hw,
47 ixgbe_link_speed speed, bool autoneg,
48 bool autoneg_wait_to_complete);
49s32 ixgbe_setup_mac_link_82599(struct ixgbe_hw *hw);
50s32 ixgbe_check_mac_link_82599(struct ixgbe_hw *hw,
51 ixgbe_link_speed *speed,
52 bool *link_up, bool link_up_wait_to_complete);
53s32 ixgbe_setup_mac_link_speed_82599(struct ixgbe_hw *hw,
54 ixgbe_link_speed speed,
55 bool autoneg,
56 bool autoneg_wait_to_complete);
57static s32 ixgbe_get_copper_link_capabilities_82599(struct ixgbe_hw *hw,
58 ixgbe_link_speed *speed,
59 bool *autoneg);
60static s32 ixgbe_setup_copper_link_82599(struct ixgbe_hw *hw);
61static s32 ixgbe_setup_copper_link_speed_82599(struct ixgbe_hw *hw,
62 ixgbe_link_speed speed,
63 bool autoneg,
64 bool autoneg_wait_to_complete);
65s32 ixgbe_reset_hw_82599(struct ixgbe_hw *hw);
66s32 ixgbe_set_vmdq_82599(struct ixgbe_hw *hw, u32 rar, u32 vmdq);
67s32 ixgbe_clear_vmdq_82599(struct ixgbe_hw *hw, u32 rar, u32 vmdq);
68s32 ixgbe_set_vfta_82599(struct ixgbe_hw *hw, u32 vlan,
69 u32 vind, bool vlan_on);
70s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000071s32 ixgbe_init_uta_tables_82599(struct ixgbe_hw *hw);
72s32 ixgbe_read_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 *val);
73s32 ixgbe_write_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 val);
74s32 ixgbe_start_hw_rev_0_82599(struct ixgbe_hw *hw);
75s32 ixgbe_identify_phy_82599(struct ixgbe_hw *hw);
76s32 ixgbe_start_hw_82599(struct ixgbe_hw *hw);
77u32 ixgbe_get_supported_physical_layer_82599(struct ixgbe_hw *hw);
78
79void ixgbe_init_mac_link_ops_82599(struct ixgbe_hw *hw)
80{
81 struct ixgbe_mac_info *mac = &hw->mac;
82 if (hw->phy.multispeed_fiber) {
83 /* Set up dual speed SFP+ support */
84 mac->ops.setup_link =
85 &ixgbe_setup_mac_link_multispeed_fiber;
86 mac->ops.setup_link_speed =
87 &ixgbe_setup_mac_link_speed_multispeed_fiber;
88 } else {
89 mac->ops.setup_link =
90 &ixgbe_setup_mac_link_82599;
91 mac->ops.setup_link_speed =
92 &ixgbe_setup_mac_link_speed_82599;
93 }
94}
95
96s32 ixgbe_setup_sfp_modules_82599(struct ixgbe_hw *hw)
97{
98 s32 ret_val = 0;
99 u16 list_offset, data_offset, data_value;
100
101 if (hw->phy.sfp_type != ixgbe_sfp_type_unknown) {
102 ixgbe_init_mac_link_ops_82599(hw);
PJ Waskiewicz553b4492009-04-09 22:28:15 +0000103
104 hw->phy.ops.reset = NULL;
105
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000106 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw, &list_offset,
107 &data_offset);
108
109 if (ret_val != 0)
110 goto setup_sfp_out;
111
112 hw->eeprom.ops.read(hw, ++data_offset, &data_value);
113 while (data_value != 0xffff) {
114 IXGBE_WRITE_REG(hw, IXGBE_CORECTL, data_value);
115 IXGBE_WRITE_FLUSH(hw);
116 hw->eeprom.ops.read(hw, ++data_offset, &data_value);
117 }
118 /* Now restart DSP */
119 IXGBE_WRITE_REG(hw, IXGBE_CORECTL, 0x00000102);
120 IXGBE_WRITE_REG(hw, IXGBE_CORECTL, 0x00000b1d);
121 IXGBE_WRITE_FLUSH(hw);
122 }
123
124setup_sfp_out:
125 return ret_val;
126}
127
128/**
129 * ixgbe_get_pcie_msix_count_82599 - Gets MSI-X vector count
130 * @hw: pointer to hardware structure
131 *
132 * Read PCIe configuration space, and get the MSI-X vector count from
133 * the capabilities table.
134 **/
135u32 ixgbe_get_pcie_msix_count_82599(struct ixgbe_hw *hw)
136{
137 struct ixgbe_adapter *adapter = hw->back;
138 u16 msix_count;
139 pci_read_config_word(adapter->pdev, IXGBE_PCIE_MSIX_82599_CAPS,
140 &msix_count);
141 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
142
143 /* MSI-X count is zero-based in HW, so increment to give proper value */
144 msix_count++;
145
146 return msix_count;
147}
148
149static s32 ixgbe_get_invariants_82599(struct ixgbe_hw *hw)
150{
151 struct ixgbe_mac_info *mac = &hw->mac;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000152
153 ixgbe_init_mac_link_ops_82599(hw);
154
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000155 mac->mcft_size = IXGBE_82599_MC_TBL_SIZE;
156 mac->vft_size = IXGBE_82599_VFT_TBL_SIZE;
157 mac->num_rar_entries = IXGBE_82599_RAR_ENTRIES;
158 mac->max_rx_queues = IXGBE_82599_MAX_RX_QUEUES;
159 mac->max_tx_queues = IXGBE_82599_MAX_TX_QUEUES;
160 mac->max_msix_vectors = ixgbe_get_pcie_msix_count_82599(hw);
161
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000162 return 0;
163}
164
165/**
166 * ixgbe_init_phy_ops_82599 - PHY/SFP specific init
167 * @hw: pointer to hardware structure
168 *
169 * Initialize any function pointers that were not able to be
170 * set during get_invariants because the PHY/SFP type was
171 * not known. Perform the SFP init if necessary.
172 *
173 **/
174s32 ixgbe_init_phy_ops_82599(struct ixgbe_hw *hw)
175{
176 struct ixgbe_mac_info *mac = &hw->mac;
177 struct ixgbe_phy_info *phy = &hw->phy;
178 s32 ret_val = 0;
179
180 /* Identify the PHY or SFP module */
181 ret_val = phy->ops.identify(hw);
182
183 /* Setup function pointers based on detected SFP module and speeds */
184 ixgbe_init_mac_link_ops_82599(hw);
185
186 /* If copper media, overwrite with copper function pointers */
187 if (mac->ops.get_media_type(hw) == ixgbe_media_type_copper) {
188 mac->ops.setup_link = &ixgbe_setup_copper_link_82599;
189 mac->ops.setup_link_speed =
190 &ixgbe_setup_copper_link_speed_82599;
191 mac->ops.get_link_capabilities =
192 &ixgbe_get_copper_link_capabilities_82599;
193 }
194
195 /* Set necessary function pointers based on phy type */
196 switch (hw->phy.type) {
197 case ixgbe_phy_tn:
198 phy->ops.check_link = &ixgbe_check_phy_link_tnx;
199 phy->ops.get_firmware_version =
200 &ixgbe_get_phy_firmware_version_tnx;
201 break;
202 default:
203 break;
204 }
205
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000206 return ret_val;
207}
208
209/**
210 * ixgbe_get_link_capabilities_82599 - Determines link capabilities
211 * @hw: pointer to hardware structure
212 * @speed: pointer to link speed
213 * @negotiation: true when autoneg or autotry is enabled
214 *
215 * Determines the link capabilities by reading the AUTOC register.
216 **/
217s32 ixgbe_get_link_capabilities_82599(struct ixgbe_hw *hw,
218 ixgbe_link_speed *speed,
219 bool *negotiation)
220{
221 s32 status = 0;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000222 u32 autoc = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000223
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000224 /*
225 * Determine link capabilities based on the stored value of AUTOC,
226 * which represents EEPROM defaults. If AUTOC value has not been
227 * stored, use the current register value.
228 */
229 if (hw->mac.orig_link_settings_stored)
230 autoc = hw->mac.orig_autoc;
231 else
232 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
233
234 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000235 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
236 *speed = IXGBE_LINK_SPEED_1GB_FULL;
237 *negotiation = false;
238 break;
239
240 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
241 *speed = IXGBE_LINK_SPEED_10GB_FULL;
242 *negotiation = false;
243 break;
244
245 case IXGBE_AUTOC_LMS_1G_AN:
246 *speed = IXGBE_LINK_SPEED_1GB_FULL;
247 *negotiation = true;
248 break;
249
250 case IXGBE_AUTOC_LMS_10G_SERIAL:
251 *speed = IXGBE_LINK_SPEED_10GB_FULL;
252 *negotiation = false;
253 break;
254
255 case IXGBE_AUTOC_LMS_KX4_KX_KR:
256 case IXGBE_AUTOC_LMS_KX4_KX_KR_1G_AN:
257 *speed = IXGBE_LINK_SPEED_UNKNOWN;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000258 if (autoc & IXGBE_AUTOC_KR_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000259 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000260 if (autoc & IXGBE_AUTOC_KX4_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000261 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000262 if (autoc & IXGBE_AUTOC_KX_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000263 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
264 *negotiation = true;
265 break;
266
267 case IXGBE_AUTOC_LMS_KX4_KX_KR_SGMII:
268 *speed = IXGBE_LINK_SPEED_100_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000269 if (autoc & IXGBE_AUTOC_KR_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000270 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000271 if (autoc & IXGBE_AUTOC_KX4_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000272 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000273 if (autoc & IXGBE_AUTOC_KX_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000274 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
275 *negotiation = true;
276 break;
277
278 case IXGBE_AUTOC_LMS_SGMII_1G_100M:
279 *speed = IXGBE_LINK_SPEED_1GB_FULL | IXGBE_LINK_SPEED_100_FULL;
280 *negotiation = false;
281 break;
282
283 default:
284 status = IXGBE_ERR_LINK_SETUP;
285 goto out;
286 break;
287 }
288
289 if (hw->phy.multispeed_fiber) {
290 *speed |= IXGBE_LINK_SPEED_10GB_FULL |
291 IXGBE_LINK_SPEED_1GB_FULL;
292 *negotiation = true;
293 }
294
295out:
296 return status;
297}
298
299/**
300 * ixgbe_get_copper_link_capabilities_82599 - Determines link capabilities
301 * @hw: pointer to hardware structure
302 * @speed: pointer to link speed
303 * @autoneg: boolean auto-negotiation value
304 *
305 * Determines the link capabilities by reading the AUTOC register.
306 **/
307static s32 ixgbe_get_copper_link_capabilities_82599(struct ixgbe_hw *hw,
308 ixgbe_link_speed *speed,
309 bool *autoneg)
310{
311 s32 status = IXGBE_ERR_LINK_SETUP;
312 u16 speed_ability;
313
314 *speed = 0;
315 *autoneg = true;
316
Ben Hutchings6b73e102009-04-29 08:08:58 +0000317 status = hw->phy.ops.read_reg(hw, MDIO_SPEED, MDIO_MMD_PMAPMD,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000318 &speed_ability);
319
320 if (status == 0) {
Ben Hutchings6b73e102009-04-29 08:08:58 +0000321 if (speed_ability & MDIO_SPEED_10G)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000322 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
Ben Hutchings6b73e102009-04-29 08:08:58 +0000323 if (speed_ability & MDIO_PMA_SPEED_1000)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000324 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
325 }
326
327 return status;
328}
329
330/**
331 * ixgbe_get_media_type_82599 - Get media type
332 * @hw: pointer to hardware structure
333 *
334 * Returns the media type (fiber, copper, backplane)
335 **/
336enum ixgbe_media_type ixgbe_get_media_type_82599(struct ixgbe_hw *hw)
337{
338 enum ixgbe_media_type media_type;
339
340 /* Detect if there is a copper PHY attached. */
341 if (hw->phy.type == ixgbe_phy_cu_unknown ||
342 hw->phy.type == ixgbe_phy_tn) {
343 media_type = ixgbe_media_type_copper;
344 goto out;
345 }
346
347 switch (hw->device_id) {
348 case IXGBE_DEV_ID_82599:
349 case IXGBE_DEV_ID_82599_KX4:
Peter P Waskiewicz Jr1fcf03e2009-05-17 20:58:04 +0000350 case IXGBE_DEV_ID_82599_XAUI_LOM:
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000351 /* Default device ID is mezzanine card KX/KX4 */
352 media_type = ixgbe_media_type_backplane;
353 break;
354 case IXGBE_DEV_ID_82599_SFP:
355 media_type = ixgbe_media_type_fiber;
356 break;
357 default:
358 media_type = ixgbe_media_type_unknown;
359 break;
360 }
361out:
362 return media_type;
363}
364
365/**
366 * ixgbe_setup_mac_link_82599 - Setup MAC link settings
367 * @hw: pointer to hardware structure
368 *
369 * Configures link settings based on values in the ixgbe_hw struct.
370 * Restarts the link. Performs autonegotiation if needed.
371 **/
372s32 ixgbe_setup_mac_link_82599(struct ixgbe_hw *hw)
373{
374 u32 autoc_reg;
375 u32 links_reg;
376 u32 i;
377 s32 status = 0;
378
379 /* Restart link */
380 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
381 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
382 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
383
384 /* Only poll for autoneg to complete if specified to do so */
385 if (hw->phy.autoneg_wait_to_complete) {
386 if ((autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
387 IXGBE_AUTOC_LMS_KX4_KX_KR ||
388 (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
389 IXGBE_AUTOC_LMS_KX4_KX_KR_1G_AN ||
390 (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
391 IXGBE_AUTOC_LMS_KX4_KX_KR_SGMII) {
392 links_reg = 0; /* Just in case Autoneg time = 0 */
393 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
394 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
395 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
396 break;
397 msleep(100);
398 }
399 if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
400 status = IXGBE_ERR_AUTONEG_NOT_COMPLETE;
401 hw_dbg(hw, "Autoneg did not complete.\n");
402 }
403 }
404 }
405
406 /* Set up flow control */
407 status = ixgbe_setup_fc_generic(hw, 0);
408
409 /* Add delay to filter out noises during initial link setup */
410 msleep(50);
411
412 return status;
413}
414
415/**
416 * ixgbe_setup_mac_link_multispeed_fiber - Setup MAC link settings
417 * @hw: pointer to hardware structure
418 *
419 * Configures link settings based on values in the ixgbe_hw struct.
420 * Restarts the link for multi-speed fiber at 1G speed, if link
421 * fails at 10G.
422 * Performs autonegotiation if needed.
423 **/
424s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw)
425{
426 s32 status = 0;
427 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_82599_AUTONEG;
Jesse Brandeburg4df10462009-03-13 22:15:31 +0000428 status = ixgbe_setup_mac_link_speed_multispeed_fiber(hw, link_speed,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000429 true, true);
430 return status;
431}
432
433/**
434 * ixgbe_setup_mac_link_speed_multispeed_fiber - Set MAC link speed
435 * @hw: pointer to hardware structure
436 * @speed: new link speed
437 * @autoneg: true if autonegotiation enabled
438 * @autoneg_wait_to_complete: true when waiting for completion is needed
439 *
440 * Set the link speed in the AUTOC register and restarts link.
441 **/
442s32 ixgbe_setup_mac_link_speed_multispeed_fiber(struct ixgbe_hw *hw,
443 ixgbe_link_speed speed,
444 bool autoneg,
445 bool autoneg_wait_to_complete)
446{
447 s32 status = 0;
448 ixgbe_link_speed phy_link_speed;
449 ixgbe_link_speed highest_link_speed = IXGBE_LINK_SPEED_UNKNOWN;
450 u32 speedcnt = 0;
451 u32 esdp_reg = IXGBE_READ_REG(hw, IXGBE_ESDP);
452 bool link_up = false;
453 bool negotiation;
454
455 /* Mask off requested but non-supported speeds */
456 hw->mac.ops.get_link_capabilities(hw, &phy_link_speed, &negotiation);
457 speed &= phy_link_speed;
458
459 /*
460 * Try each speed one by one, highest priority first. We do this in
461 * software because 10gb fiber doesn't support speed autonegotiation.
462 */
463 if (speed & IXGBE_LINK_SPEED_10GB_FULL) {
464 speedcnt++;
465 highest_link_speed = IXGBE_LINK_SPEED_10GB_FULL;
466
467 /* Set hardware SDP's */
468 esdp_reg |= (IXGBE_ESDP_SDP5_DIR | IXGBE_ESDP_SDP5);
469 IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp_reg);
470
471 ixgbe_setup_mac_link_speed_82599(hw,
472 IXGBE_LINK_SPEED_10GB_FULL,
473 autoneg,
474 autoneg_wait_to_complete);
475
476 msleep(50);
477
478 /* If we have link, just jump out */
479 hw->mac.ops.check_link(hw, &phy_link_speed, &link_up, false);
480 if (link_up)
481 goto out;
482 }
483
484 if (speed & IXGBE_LINK_SPEED_1GB_FULL) {
485 speedcnt++;
486 if (highest_link_speed == IXGBE_LINK_SPEED_UNKNOWN)
487 highest_link_speed = IXGBE_LINK_SPEED_1GB_FULL;
488
489 /* Set hardware SDP's */
490 esdp_reg &= ~IXGBE_ESDP_SDP5;
491 esdp_reg |= IXGBE_ESDP_SDP5_DIR;
492 IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp_reg);
493
494 ixgbe_setup_mac_link_speed_82599(
495 hw, IXGBE_LINK_SPEED_1GB_FULL, autoneg,
496 autoneg_wait_to_complete);
497
498 msleep(50);
499
500 /* If we have link, just jump out */
501 hw->mac.ops.check_link(hw, &phy_link_speed, &link_up, false);
502 if (link_up)
503 goto out;
504 }
505
506 /*
507 * We didn't get link. Configure back to the highest speed we tried,
508 * (if there was more than one). We call ourselves back with just the
509 * single highest speed that the user requested.
510 */
511 if (speedcnt > 1)
512 status = ixgbe_setup_mac_link_speed_multispeed_fiber(hw,
513 highest_link_speed,
514 autoneg,
515 autoneg_wait_to_complete);
516
517out:
518 return status;
519}
520
521/**
522 * ixgbe_check_mac_link_82599 - Determine link and speed status
523 * @hw: pointer to hardware structure
524 * @speed: pointer to link speed
525 * @link_up: true when link is up
526 * @link_up_wait_to_complete: bool used to wait for link up or not
527 *
528 * Reads the links register to determine if link is up and the current speed
529 **/
530s32 ixgbe_check_mac_link_82599(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
531 bool *link_up, bool link_up_wait_to_complete)
532{
533 u32 links_reg;
534 u32 i;
535
536 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
537 if (link_up_wait_to_complete) {
538 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
539 if (links_reg & IXGBE_LINKS_UP) {
540 *link_up = true;
541 break;
542 } else {
543 *link_up = false;
544 }
545 msleep(100);
546 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
547 }
548 } else {
549 if (links_reg & IXGBE_LINKS_UP)
550 *link_up = true;
551 else
552 *link_up = false;
553 }
554
555 if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
556 IXGBE_LINKS_SPEED_10G_82599)
557 *speed = IXGBE_LINK_SPEED_10GB_FULL;
558 else if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
559 IXGBE_LINKS_SPEED_1G_82599)
560 *speed = IXGBE_LINK_SPEED_1GB_FULL;
561 else
562 *speed = IXGBE_LINK_SPEED_100_FULL;
563
564
565 return 0;
566}
567
568/**
569 * ixgbe_setup_mac_link_speed_82599 - Set MAC link speed
570 * @hw: pointer to hardware structure
571 * @speed: new link speed
572 * @autoneg: true if autonegotiation enabled
573 * @autoneg_wait_to_complete: true when waiting for completion is needed
574 *
575 * Set the link speed in the AUTOC register and restarts link.
576 **/
577s32 ixgbe_setup_mac_link_speed_82599(struct ixgbe_hw *hw,
578 ixgbe_link_speed speed, bool autoneg,
579 bool autoneg_wait_to_complete)
580{
581 s32 status = 0;
582 u32 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
583 u32 autoc2 = IXGBE_READ_REG(hw, IXGBE_AUTOC2);
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000584 u32 orig_autoc = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000585 u32 link_mode = autoc & IXGBE_AUTOC_LMS_MASK;
586 u32 pma_pmd_1g = autoc & IXGBE_AUTOC_1G_PMA_PMD_MASK;
587 u32 pma_pmd_10g_serial = autoc2 & IXGBE_AUTOC2_10G_SERIAL_PMA_PMD_MASK;
588 u32 links_reg;
589 u32 i;
590 ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN;
591
592 /* Check to see if speed passed in is supported. */
593 hw->mac.ops.get_link_capabilities(hw, &link_capabilities, &autoneg);
594 speed &= link_capabilities;
595
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000596 /* Use stored value (EEPROM defaults) of AUTOC to find KR/KX4 support*/
597 if (hw->mac.orig_link_settings_stored)
598 orig_autoc = hw->mac.orig_autoc;
599 else
600 orig_autoc = autoc;
601
602
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000603 if (speed == IXGBE_LINK_SPEED_UNKNOWN) {
604 status = IXGBE_ERR_LINK_SETUP;
605 } else if (link_mode == IXGBE_AUTOC_LMS_KX4_KX_KR ||
606 link_mode == IXGBE_AUTOC_LMS_KX4_KX_KR_1G_AN ||
607 link_mode == IXGBE_AUTOC_LMS_KX4_KX_KR_SGMII) {
608 /* Set KX4/KX/KR support according to speed requested */
609 autoc &= ~(IXGBE_AUTOC_KX4_KX_SUPP_MASK | IXGBE_AUTOC_KR_SUPP);
610 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000611 if (orig_autoc & IXGBE_AUTOC_KX4_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000612 autoc |= IXGBE_AUTOC_KX4_SUPP;
PJ Waskiewicz1eb99d52009-04-09 22:28:33 +0000613 if (orig_autoc & IXGBE_AUTOC_KR_SUPP)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000614 autoc |= IXGBE_AUTOC_KR_SUPP;
615 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
616 autoc |= IXGBE_AUTOC_KX_SUPP;
617 } else if ((pma_pmd_1g == IXGBE_AUTOC_1G_SFI) &&
618 (link_mode == IXGBE_AUTOC_LMS_1G_LINK_NO_AN ||
619 link_mode == IXGBE_AUTOC_LMS_1G_AN)) {
620 /* Switch from 1G SFI to 10G SFI if requested */
621 if ((speed == IXGBE_LINK_SPEED_10GB_FULL) &&
622 (pma_pmd_10g_serial == IXGBE_AUTOC2_10G_SFI)) {
623 autoc &= ~IXGBE_AUTOC_LMS_MASK;
624 autoc |= IXGBE_AUTOC_LMS_10G_SERIAL;
625 }
626 } else if ((pma_pmd_10g_serial == IXGBE_AUTOC2_10G_SFI) &&
627 (link_mode == IXGBE_AUTOC_LMS_10G_SERIAL)) {
628 /* Switch from 10G SFI to 1G SFI if requested */
629 if ((speed == IXGBE_LINK_SPEED_1GB_FULL) &&
630 (pma_pmd_1g == IXGBE_AUTOC_1G_SFI)) {
631 autoc &= ~IXGBE_AUTOC_LMS_MASK;
632 if (autoneg)
633 autoc |= IXGBE_AUTOC_LMS_1G_AN;
634 else
635 autoc |= IXGBE_AUTOC_LMS_1G_LINK_NO_AN;
636 }
637 }
638
639 if (status == 0) {
640 /* Restart link */
641 autoc |= IXGBE_AUTOC_AN_RESTART;
642 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc);
643
644 /* Only poll for autoneg to complete if specified to do so */
645 if (autoneg_wait_to_complete) {
646 if (link_mode == IXGBE_AUTOC_LMS_KX4_KX_KR ||
647 link_mode == IXGBE_AUTOC_LMS_KX4_KX_KR_1G_AN ||
648 link_mode == IXGBE_AUTOC_LMS_KX4_KX_KR_SGMII) {
649 links_reg = 0; /*Just in case Autoneg time=0*/
650 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
651 links_reg =
652 IXGBE_READ_REG(hw, IXGBE_LINKS);
653 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
654 break;
655 msleep(100);
656 }
657 if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
658 status =
659 IXGBE_ERR_AUTONEG_NOT_COMPLETE;
660 hw_dbg(hw, "Autoneg did not "
661 "complete.\n");
662 }
663 }
664 }
665
666 /* Set up flow control */
667 status = ixgbe_setup_fc_generic(hw, 0);
668
669 /* Add delay to filter out noises during initial link setup */
670 msleep(50);
671 }
672
673 return status;
674}
675
676/**
677 * ixgbe_setup_copper_link_82599 - Setup copper link settings
678 * @hw: pointer to hardware structure
679 *
680 * Restarts the link on PHY and then MAC. Performs autonegotiation if needed.
681 **/
682static s32 ixgbe_setup_copper_link_82599(struct ixgbe_hw *hw)
683{
684 s32 status;
685
686 /* Restart autonegotiation on PHY */
687 status = hw->phy.ops.setup_link(hw);
688
689 /* Set up MAC */
690 ixgbe_setup_mac_link_82599(hw);
691
692 return status;
693}
694
695/**
696 * ixgbe_setup_copper_link_speed_82599 - Set the PHY autoneg advertised field
697 * @hw: pointer to hardware structure
698 * @speed: new link speed
699 * @autoneg: true if autonegotiation enabled
700 * @autoneg_wait_to_complete: true if waiting is needed to complete
701 *
702 * Restarts link on PHY and MAC based on settings passed in.
703 **/
704static s32 ixgbe_setup_copper_link_speed_82599(struct ixgbe_hw *hw,
705 ixgbe_link_speed speed,
706 bool autoneg,
707 bool autoneg_wait_to_complete)
708{
709 s32 status;
710
711 /* Setup the PHY according to input speed */
712 status = hw->phy.ops.setup_link_speed(hw, speed, autoneg,
713 autoneg_wait_to_complete);
714 /* Set up MAC */
715 ixgbe_setup_mac_link_82599(hw);
716
717 return status;
718}
719
720/**
721 * ixgbe_reset_hw_82599 - Perform hardware reset
722 * @hw: pointer to hardware structure
723 *
724 * Resets the hardware by resetting the transmit and receive units, masks
725 * and clears all interrupts, perform a PHY reset, and perform a link (MAC)
726 * reset.
727 **/
728s32 ixgbe_reset_hw_82599(struct ixgbe_hw *hw)
729{
730 s32 status = 0;
731 u32 ctrl, ctrl_ext;
732 u32 i;
733 u32 autoc;
734 u32 autoc2;
735
736 /* Call adapter stop to disable tx/rx and clear interrupts */
737 hw->mac.ops.stop_adapter(hw);
738
PJ Waskiewicz553b4492009-04-09 22:28:15 +0000739 /* PHY ops must be identified and initialized prior to reset */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000740
PJ Waskiewicz553b4492009-04-09 22:28:15 +0000741 /* Init PHY and function pointers, perform SFP setup */
742 status = hw->phy.ops.init(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000743
PJ Waskiewicz553b4492009-04-09 22:28:15 +0000744 if (status == IXGBE_ERR_SFP_NOT_SUPPORTED)
745 goto reset_hw_out;
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000746
PJ Waskiewicz553b4492009-04-09 22:28:15 +0000747 /* Setup SFP module if there is one present. */
748 if (hw->phy.sfp_setup_needed) {
749 status = hw->mac.ops.setup_sfp(hw);
750 hw->phy.sfp_setup_needed = false;
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000751 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000752
PJ Waskiewicz553b4492009-04-09 22:28:15 +0000753 /* Reset PHY */
754 if (hw->phy.reset_disable == false && hw->phy.ops.reset != NULL)
755 hw->phy.ops.reset(hw);
756
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000757 /*
758 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
759 * access and verify no pending requests before reset
760 */
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000761 status = ixgbe_disable_pcie_master(hw);
762 if (status != 0) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000763 status = IXGBE_ERR_MASTER_REQUESTS_PENDING;
764 hw_dbg(hw, "PCI-E Master disable polling has failed.\n");
765 }
766
767 /*
768 * Issue global reset to the MAC. This needs to be a SW reset.
769 * If link reset is used, it might reset the MAC when mng is using it
770 */
771 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
772 IXGBE_WRITE_REG(hw, IXGBE_CTRL, (ctrl | IXGBE_CTRL_RST));
773 IXGBE_WRITE_FLUSH(hw);
774
775 /* Poll for reset bit to self-clear indicating reset is complete */
776 for (i = 0; i < 10; i++) {
777 udelay(1);
778 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
779 if (!(ctrl & IXGBE_CTRL_RST))
780 break;
781 }
782 if (ctrl & IXGBE_CTRL_RST) {
783 status = IXGBE_ERR_RESET_FAILED;
784 hw_dbg(hw, "Reset polling failed to complete.\n");
785 }
786 /* Clear PF Reset Done bit so PF/VF Mail Ops can work */
787 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
788 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
789 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
790
791 msleep(50);
792
793
794
795 /*
796 * Store the original AUTOC/AUTOC2 values if they have not been
797 * stored off yet. Otherwise restore the stored original
798 * values since the reset operation sets back to defaults.
799 */
800 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
801 autoc2 = IXGBE_READ_REG(hw, IXGBE_AUTOC2);
802 if (hw->mac.orig_link_settings_stored == false) {
803 hw->mac.orig_autoc = autoc;
804 hw->mac.orig_autoc2 = autoc2;
805 hw->mac.orig_link_settings_stored = true;
Jesse Brandeburg4df10462009-03-13 22:15:31 +0000806 } else {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000807 if (autoc != hw->mac.orig_autoc)
808 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, (hw->mac.orig_autoc |
809 IXGBE_AUTOC_AN_RESTART));
810
811 if ((autoc2 & IXGBE_AUTOC2_UPPER_MASK) !=
812 (hw->mac.orig_autoc2 & IXGBE_AUTOC2_UPPER_MASK)) {
813 autoc2 &= ~IXGBE_AUTOC2_UPPER_MASK;
814 autoc2 |= (hw->mac.orig_autoc2 &
815 IXGBE_AUTOC2_UPPER_MASK);
816 IXGBE_WRITE_REG(hw, IXGBE_AUTOC2, autoc2);
817 }
818 }
819
Waskiewicz Jr, Peter Paca6bee2009-05-17 12:32:48 +0000820 /*
821 * Store MAC address from RAR0, clear receive address registers, and
822 * clear the multicast table. Also reset num_rar_entries to 128,
823 * since we modify this value when programming the SAN MAC address.
824 */
825 hw->mac.num_rar_entries = 128;
826 hw->mac.ops.init_rx_addrs(hw);
827
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000828 /* Store the permanent mac address */
829 hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
830
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +0000831 /* Store the permanent SAN mac address */
832 hw->mac.ops.get_san_mac_addr(hw, hw->mac.san_addr);
833
Waskiewicz Jr, Peter Paca6bee2009-05-17 12:32:48 +0000834 /* Add the SAN MAC address to the RAR only if it's a valid address */
835 if (ixgbe_validate_mac_addr(hw->mac.san_addr) == 0) {
836 hw->mac.ops.set_rar(hw, hw->mac.num_rar_entries - 1,
837 hw->mac.san_addr, 0, IXGBE_RAH_AV);
838
839 /* Reserve the last RAR for the SAN MAC address */
840 hw->mac.num_rar_entries--;
841 }
842
PJ Waskiewicz04f165e2009-04-09 22:27:57 +0000843reset_hw_out:
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000844 return status;
845}
846
847/**
848 * ixgbe_clear_vmdq_82599 - Disassociate a VMDq pool index from a rx address
849 * @hw: pointer to hardware struct
850 * @rar: receive address register index to disassociate
851 * @vmdq: VMDq pool index to remove from the rar
852 **/
853s32 ixgbe_clear_vmdq_82599(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
854{
855 u32 mpsar_lo, mpsar_hi;
856 u32 rar_entries = hw->mac.num_rar_entries;
857
858 if (rar < rar_entries) {
859 mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
860 mpsar_hi = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
861
862 if (!mpsar_lo && !mpsar_hi)
863 goto done;
864
865 if (vmdq == IXGBE_CLEAR_VMDQ_ALL) {
866 if (mpsar_lo) {
867 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
868 mpsar_lo = 0;
869 }
870 if (mpsar_hi) {
871 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
872 mpsar_hi = 0;
873 }
874 } else if (vmdq < 32) {
875 mpsar_lo &= ~(1 << vmdq);
876 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar_lo);
877 } else {
878 mpsar_hi &= ~(1 << (vmdq - 32));
879 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar_hi);
880 }
881
882 /* was that the last pool using this rar? */
883 if (mpsar_lo == 0 && mpsar_hi == 0 && rar != 0)
884 hw->mac.ops.clear_rar(hw, rar);
885 } else {
886 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
887 }
888
889done:
890 return 0;
891}
892
893/**
894 * ixgbe_set_vmdq_82599 - Associate a VMDq pool index with a rx address
895 * @hw: pointer to hardware struct
896 * @rar: receive address register index to associate with a VMDq index
897 * @vmdq: VMDq pool index
898 **/
899s32 ixgbe_set_vmdq_82599(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
900{
901 u32 mpsar;
902 u32 rar_entries = hw->mac.num_rar_entries;
903
904 if (rar < rar_entries) {
905 if (vmdq < 32) {
906 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
907 mpsar |= 1 << vmdq;
908 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar);
909 } else {
910 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
911 mpsar |= 1 << (vmdq - 32);
912 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar);
913 }
914 } else {
915 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
916 }
917 return 0;
918}
919
920/**
921 * ixgbe_set_vfta_82599 - Set VLAN filter table
922 * @hw: pointer to hardware structure
923 * @vlan: VLAN id to write to VLAN filter
924 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
925 * @vlan_on: boolean flag to turn on/off VLAN in VFVF
926 *
927 * Turn on/off specified VLAN in the VLAN filter table.
928 **/
929s32 ixgbe_set_vfta_82599(struct ixgbe_hw *hw, u32 vlan, u32 vind,
930 bool vlan_on)
931{
932 u32 regindex;
933 u32 bitindex;
934 u32 bits;
935 u32 first_empty_slot;
936
937 if (vlan > 4095)
938 return IXGBE_ERR_PARAM;
939
940 /*
941 * this is a 2 part operation - first the VFTA, then the
942 * VLVF and VLVFB if vind is set
943 */
944
945 /* Part 1
946 * The VFTA is a bitstring made up of 128 32-bit registers
947 * that enable the particular VLAN id, much like the MTA:
948 * bits[11-5]: which register
949 * bits[4-0]: which bit in the register
950 */
951 regindex = (vlan >> 5) & 0x7F;
952 bitindex = vlan & 0x1F;
953 bits = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
954 if (vlan_on)
955 bits |= (1 << bitindex);
956 else
957 bits &= ~(1 << bitindex);
958 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), bits);
959
960
961 /* Part 2
962 * If the vind is set
963 * Either vlan_on
964 * make sure the vlan is in VLVF
965 * set the vind bit in the matching VLVFB
966 * Or !vlan_on
967 * clear the pool bit and possibly the vind
968 */
969 if (vind) {
970 /* find the vlanid or the first empty slot */
971 first_empty_slot = 0;
972
973 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
974 bits = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
975 if (!bits && !first_empty_slot)
976 first_empty_slot = regindex;
977 else if ((bits & 0x0FFF) == vlan)
978 break;
979 }
980
981 if (regindex >= IXGBE_VLVF_ENTRIES) {
982 if (first_empty_slot)
983 regindex = first_empty_slot;
984 else {
985 hw_dbg(hw, "No space in VLVF.\n");
986 goto out;
987 }
988 }
989
990 if (vlan_on) {
991 /* set the pool bit */
992 if (vind < 32) {
993 bits = IXGBE_READ_REG(hw,
994 IXGBE_VLVFB(regindex * 2));
995 bits |= (1 << vind);
996 IXGBE_WRITE_REG(hw,
997 IXGBE_VLVFB(regindex * 2), bits);
998 } else {
999 bits = IXGBE_READ_REG(hw,
1000 IXGBE_VLVFB((regindex * 2) + 1));
1001 bits |= (1 << vind);
1002 IXGBE_WRITE_REG(hw,
1003 IXGBE_VLVFB((regindex * 2) + 1), bits);
1004 }
1005 } else {
1006 /* clear the pool bit */
1007 if (vind < 32) {
1008 bits = IXGBE_READ_REG(hw,
1009 IXGBE_VLVFB(regindex * 2));
1010 bits &= ~(1 << vind);
1011 IXGBE_WRITE_REG(hw,
1012 IXGBE_VLVFB(regindex * 2), bits);
1013 bits |= IXGBE_READ_REG(hw,
1014 IXGBE_VLVFB((regindex * 2) + 1));
1015 } else {
1016 bits = IXGBE_READ_REG(hw,
1017 IXGBE_VLVFB((regindex * 2) + 1));
1018 bits &= ~(1 << vind);
1019 IXGBE_WRITE_REG(hw,
1020 IXGBE_VLVFB((regindex * 2) + 1), bits);
1021 bits |= IXGBE_READ_REG(hw,
1022 IXGBE_VLVFB(regindex * 2));
1023 }
1024 }
1025
1026 if (bits)
1027 IXGBE_WRITE_REG(hw, IXGBE_VLVF(regindex),
1028 (IXGBE_VLVF_VIEN | vlan));
1029 else
1030 IXGBE_WRITE_REG(hw, IXGBE_VLVF(regindex), 0);
1031 }
1032
1033out:
1034 return 0;
1035}
1036
1037/**
1038 * ixgbe_clear_vfta_82599 - Clear VLAN filter table
1039 * @hw: pointer to hardware structure
1040 *
1041 * Clears the VLAN filer table, and the VMDq index associated with the filter
1042 **/
1043s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw)
1044{
1045 u32 offset;
1046
1047 for (offset = 0; offset < hw->mac.vft_size; offset++)
1048 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
1049
1050 for (offset = 0; offset < IXGBE_VLVF_ENTRIES; offset++) {
1051 IXGBE_WRITE_REG(hw, IXGBE_VLVF(offset), 0);
1052 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset * 2), 0);
1053 IXGBE_WRITE_REG(hw, IXGBE_VLVFB((offset * 2) + 1), 0);
1054 }
1055
1056 return 0;
1057}
1058
1059/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001060 * ixgbe_init_uta_tables_82599 - Initialize the Unicast Table Array
1061 * @hw: pointer to hardware structure
1062 **/
1063s32 ixgbe_init_uta_tables_82599(struct ixgbe_hw *hw)
1064{
1065 int i;
1066 hw_dbg(hw, " Clearing UTA\n");
1067
1068 for (i = 0; i < 128; i++)
1069 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
1070
1071 return 0;
1072}
1073
1074/**
1075 * ixgbe_read_analog_reg8_82599 - Reads 8 bit Omer analog register
1076 * @hw: pointer to hardware structure
1077 * @reg: analog register to read
1078 * @val: read value
1079 *
1080 * Performs read operation to Omer analog register specified.
1081 **/
1082s32 ixgbe_read_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 *val)
1083{
1084 u32 core_ctl;
1085
1086 IXGBE_WRITE_REG(hw, IXGBE_CORECTL, IXGBE_CORECTL_WRITE_CMD |
1087 (reg << 8));
1088 IXGBE_WRITE_FLUSH(hw);
1089 udelay(10);
1090 core_ctl = IXGBE_READ_REG(hw, IXGBE_CORECTL);
1091 *val = (u8)core_ctl;
1092
1093 return 0;
1094}
1095
1096/**
1097 * ixgbe_write_analog_reg8_82599 - Writes 8 bit Omer analog register
1098 * @hw: pointer to hardware structure
1099 * @reg: atlas register to write
1100 * @val: value to write
1101 *
1102 * Performs write operation to Omer analog register specified.
1103 **/
1104s32 ixgbe_write_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 val)
1105{
1106 u32 core_ctl;
1107
1108 core_ctl = (reg << 8) | val;
1109 IXGBE_WRITE_REG(hw, IXGBE_CORECTL, core_ctl);
1110 IXGBE_WRITE_FLUSH(hw);
1111 udelay(10);
1112
1113 return 0;
1114}
1115
1116/**
1117 * ixgbe_start_hw_82599 - Prepare hardware for Tx/Rx
1118 * @hw: pointer to hardware structure
1119 *
1120 * Starts the hardware using the generic start_hw function.
1121 * Then performs device-specific:
1122 * Clears the rate limiter registers.
1123 **/
1124s32 ixgbe_start_hw_82599(struct ixgbe_hw *hw)
1125{
1126 u32 q_num;
1127
1128 ixgbe_start_hw_generic(hw);
1129
1130 /* Clear the rate limiters */
1131 for (q_num = 0; q_num < hw->mac.max_tx_queues; q_num++) {
1132 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, q_num);
1133 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, 0);
1134 }
1135 IXGBE_WRITE_FLUSH(hw);
1136
1137 return 0;
1138}
1139
1140/**
1141 * ixgbe_identify_phy_82599 - Get physical layer module
1142 * @hw: pointer to hardware structure
1143 *
1144 * Determines the physical layer module found on the current adapter.
1145 **/
1146s32 ixgbe_identify_phy_82599(struct ixgbe_hw *hw)
1147{
1148 s32 status = IXGBE_ERR_PHY_ADDR_INVALID;
1149 status = ixgbe_identify_phy_generic(hw);
1150 if (status != 0)
1151 status = ixgbe_identify_sfp_module_generic(hw);
1152 return status;
1153}
1154
1155/**
1156 * ixgbe_get_supported_physical_layer_82599 - Returns physical layer type
1157 * @hw: pointer to hardware structure
1158 *
1159 * Determines physical layer capabilities of the current configuration.
1160 **/
1161u32 ixgbe_get_supported_physical_layer_82599(struct ixgbe_hw *hw)
1162{
1163 u32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001164 u32 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
1165 u32 autoc2 = IXGBE_READ_REG(hw, IXGBE_AUTOC2);
1166 u32 pma_pmd_10g_serial = autoc2 & IXGBE_AUTOC2_10G_SERIAL_PMA_PMD_MASK;
1167 u32 pma_pmd_10g_parallel = autoc & IXGBE_AUTOC_10G_PMA_PMD_MASK;
1168 u32 pma_pmd_1g = autoc & IXGBE_AUTOC_1G_PMA_PMD_MASK;
1169 u16 ext_ability = 0;
PJ Waskiewicz1339b9e2009-03-13 22:12:29 +00001170 u8 comp_codes_10g = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001171
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001172 hw->phy.ops.identify(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001173
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001174 if (hw->phy.type == ixgbe_phy_tn ||
1175 hw->phy.type == ixgbe_phy_cu_unknown) {
Ben Hutchings6b73e102009-04-29 08:08:58 +00001176 hw->phy.ops.read_reg(hw, MDIO_PMA_EXTABLE, MDIO_MMD_PMAPMD,
1177 &ext_ability);
1178 if (ext_ability & MDIO_PMA_EXTABLE_10GBT)
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001179 physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_T;
Ben Hutchings6b73e102009-04-29 08:08:58 +00001180 if (ext_ability & MDIO_PMA_EXTABLE_1000BT)
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001181 physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_T;
Ben Hutchings6b73e102009-04-29 08:08:58 +00001182 if (ext_ability & MDIO_PMA_EXTABLE_100BTX)
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001183 physical_layer |= IXGBE_PHYSICAL_LAYER_100BASE_TX;
1184 goto out;
1185 }
1186
1187 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
1188 case IXGBE_AUTOC_LMS_1G_AN:
1189 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
1190 if (pma_pmd_1g == IXGBE_AUTOC_1G_KX_BX) {
1191 physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_KX |
1192 IXGBE_PHYSICAL_LAYER_1000BASE_BX;
1193 goto out;
1194 } else
1195 /* SFI mode so read SFP module */
1196 goto sfp_check;
1197 break;
1198 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
1199 if (pma_pmd_10g_parallel == IXGBE_AUTOC_10G_CX4)
1200 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_CX4;
1201 else if (pma_pmd_10g_parallel == IXGBE_AUTOC_10G_KX4)
1202 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
Peter P Waskiewicz Jr1fcf03e2009-05-17 20:58:04 +00001203 else if (pma_pmd_10g_parallel == IXGBE_AUTOC_10G_XAUI)
1204 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_XAUI;
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001205 goto out;
1206 break;
1207 case IXGBE_AUTOC_LMS_10G_SERIAL:
1208 if (pma_pmd_10g_serial == IXGBE_AUTOC2_10G_KR) {
1209 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KR;
1210 goto out;
1211 } else if (pma_pmd_10g_serial == IXGBE_AUTOC2_10G_SFI)
1212 goto sfp_check;
1213 break;
1214 case IXGBE_AUTOC_LMS_KX4_KX_KR:
1215 case IXGBE_AUTOC_LMS_KX4_KX_KR_1G_AN:
1216 if (autoc & IXGBE_AUTOC_KX_SUPP)
1217 physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_KX;
1218 if (autoc & IXGBE_AUTOC_KX4_SUPP)
1219 physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
1220 if (autoc & IXGBE_AUTOC_KR_SUPP)
1221 physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_KR;
1222 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001223 break;
1224 default:
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001225 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001226 break;
1227 }
1228
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001229sfp_check:
1230 /* SFP check must be done last since DA modules are sometimes used to
1231 * test KR mode - we need to id KR mode correctly before SFP module.
1232 * Call identify_sfp because the pluggable module may have changed */
1233 hw->phy.ops.identify_sfp(hw);
1234 if (hw->phy.sfp_type == ixgbe_sfp_type_not_present)
1235 goto out;
1236
1237 switch (hw->phy.type) {
1238 case ixgbe_phy_tw_tyco:
1239 case ixgbe_phy_tw_unknown:
1240 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1241 break;
1242 case ixgbe_phy_sfp_avago:
1243 case ixgbe_phy_sfp_ftl:
1244 case ixgbe_phy_sfp_intel:
1245 case ixgbe_phy_sfp_unknown:
1246 hw->phy.ops.read_i2c_eeprom(hw,
1247 IXGBE_SFF_10GBE_COMP_CODES, &comp_codes_10g);
1248 if (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)
1249 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1250 else if (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE)
1251 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1252 break;
1253 default:
1254 break;
1255 }
1256
1257out:
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001258 return physical_layer;
1259}
1260
1261/**
1262 * ixgbe_enable_rx_dma_82599 - Enable the Rx DMA unit on 82599
1263 * @hw: pointer to hardware structure
1264 * @regval: register value to write to RXCTRL
1265 *
1266 * Enables the Rx DMA unit for 82599
1267 **/
1268s32 ixgbe_enable_rx_dma_82599(struct ixgbe_hw *hw, u32 regval)
1269{
1270#define IXGBE_MAX_SECRX_POLL 30
1271 int i;
1272 int secrxreg;
1273
1274 /*
1275 * Workaround for 82599 silicon errata when enabling the Rx datapath.
1276 * If traffic is incoming before we enable the Rx unit, it could hang
1277 * the Rx DMA unit. Therefore, make sure the security engine is
1278 * completely disabled prior to enabling the Rx unit.
1279 */
1280 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
1281 secrxreg |= IXGBE_SECRXCTRL_RX_DIS;
1282 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
1283 for (i = 0; i < IXGBE_MAX_SECRX_POLL; i++) {
1284 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXSTAT);
1285 if (secrxreg & IXGBE_SECRXSTAT_SECRX_RDY)
1286 break;
1287 else
1288 udelay(10);
1289 }
1290
1291 /* For informational purposes only */
1292 if (i >= IXGBE_MAX_SECRX_POLL)
1293 hw_dbg(hw, "Rx unit being enabled before security "
1294 "path fully disabled. Continuing with init.\n");
1295
1296 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, regval);
1297 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
1298 secrxreg &= ~IXGBE_SECRXCTRL_RX_DIS;
1299 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
1300 IXGBE_WRITE_FLUSH(hw);
1301
1302 return 0;
1303}
1304
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001305/**
1306 * ixgbe_get_device_caps_82599 - Get additional device capabilities
1307 * @hw: pointer to hardware structure
1308 * @device_caps: the EEPROM word with the extra device capabilities
1309 *
1310 * This function will read the EEPROM location for the device capabilities,
1311 * and return the word through device_caps.
1312 **/
1313s32 ixgbe_get_device_caps_82599(struct ixgbe_hw *hw, u16 *device_caps)
1314{
1315 hw->eeprom.ops.read(hw, IXGBE_DEVICE_CAPS, device_caps);
1316
1317 return 0;
1318}
1319
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00001320/**
1321 * ixgbe_get_san_mac_addr_offset_82599 - SAN MAC address offset for 82599
1322 * @hw: pointer to hardware structure
1323 * @san_mac_offset: SAN MAC address offset
1324 *
1325 * This function will read the EEPROM location for the SAN MAC address
1326 * pointer, and returns the value at that location. This is used in both
1327 * get and set mac_addr routines.
1328 **/
1329s32 ixgbe_get_san_mac_addr_offset_82599(struct ixgbe_hw *hw,
1330 u16 *san_mac_offset)
1331{
1332 /*
1333 * First read the EEPROM pointer to see if the MAC addresses are
1334 * available.
1335 */
1336 hw->eeprom.ops.read(hw, IXGBE_SAN_MAC_ADDR_PTR, san_mac_offset);
1337
1338 return 0;
1339}
1340
1341/**
1342 * ixgbe_get_san_mac_addr_82599 - SAN MAC address retrieval for 82599
1343 * @hw: pointer to hardware structure
1344 * @san_mac_addr: SAN MAC address
1345 *
1346 * Reads the SAN MAC address from the EEPROM, if it's available. This is
1347 * per-port, so set_lan_id() must be called before reading the addresses.
1348 * set_lan_id() is called by identify_sfp(), but this cannot be relied
1349 * upon for non-SFP connections, so we must call it here.
1350 **/
1351s32 ixgbe_get_san_mac_addr_82599(struct ixgbe_hw *hw, u8 *san_mac_addr)
1352{
1353 u16 san_mac_data, san_mac_offset;
1354 u8 i;
1355
1356 /*
1357 * First read the EEPROM pointer to see if the MAC addresses are
1358 * available. If they're not, no point in calling set_lan_id() here.
1359 */
1360 ixgbe_get_san_mac_addr_offset_82599(hw, &san_mac_offset);
1361
1362 if ((san_mac_offset == 0) || (san_mac_offset == 0xFFFF)) {
1363 /*
1364 * No addresses available in this EEPROM. It's not an
1365 * error though, so just wipe the local address and return.
1366 */
1367 for (i = 0; i < 6; i++)
1368 san_mac_addr[i] = 0xFF;
1369
1370 goto san_mac_addr_out;
1371 }
1372
1373 /* make sure we know which port we need to program */
1374 hw->mac.ops.set_lan_id(hw);
1375 /* apply the port offset to the address offset */
1376 (hw->bus.func) ? (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT1_OFFSET) :
1377 (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT0_OFFSET);
1378 for (i = 0; i < 3; i++) {
1379 hw->eeprom.ops.read(hw, san_mac_offset, &san_mac_data);
1380 san_mac_addr[i * 2] = (u8)(san_mac_data);
1381 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8);
1382 san_mac_offset++;
1383 }
1384
1385san_mac_addr_out:
1386 return 0;
1387}
1388
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001389static struct ixgbe_mac_operations mac_ops_82599 = {
1390 .init_hw = &ixgbe_init_hw_generic,
1391 .reset_hw = &ixgbe_reset_hw_82599,
1392 .start_hw = &ixgbe_start_hw_82599,
1393 .clear_hw_cntrs = &ixgbe_clear_hw_cntrs_generic,
1394 .get_media_type = &ixgbe_get_media_type_82599,
1395 .get_supported_physical_layer = &ixgbe_get_supported_physical_layer_82599,
1396 .enable_rx_dma = &ixgbe_enable_rx_dma_82599,
1397 .get_mac_addr = &ixgbe_get_mac_addr_generic,
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00001398 .get_san_mac_addr = &ixgbe_get_san_mac_addr_82599,
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001399 .get_device_caps = &ixgbe_get_device_caps_82599,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001400 .stop_adapter = &ixgbe_stop_adapter_generic,
1401 .get_bus_info = &ixgbe_get_bus_info_generic,
1402 .set_lan_id = &ixgbe_set_lan_id_multi_port_pcie,
1403 .read_analog_reg8 = &ixgbe_read_analog_reg8_82599,
1404 .write_analog_reg8 = &ixgbe_write_analog_reg8_82599,
1405 .setup_link = &ixgbe_setup_mac_link_82599,
1406 .setup_link_speed = &ixgbe_setup_mac_link_speed_82599,
1407 .check_link = &ixgbe_check_mac_link_82599,
1408 .get_link_capabilities = &ixgbe_get_link_capabilities_82599,
1409 .led_on = &ixgbe_led_on_generic,
1410 .led_off = &ixgbe_led_off_generic,
PJ Waskiewicz87c12012009-04-08 13:20:31 +00001411 .blink_led_start = &ixgbe_blink_led_start_generic,
1412 .blink_led_stop = &ixgbe_blink_led_stop_generic,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001413 .set_rar = &ixgbe_set_rar_generic,
1414 .clear_rar = &ixgbe_clear_rar_generic,
1415 .set_vmdq = &ixgbe_set_vmdq_82599,
1416 .clear_vmdq = &ixgbe_clear_vmdq_82599,
1417 .init_rx_addrs = &ixgbe_init_rx_addrs_generic,
1418 .update_uc_addr_list = &ixgbe_update_uc_addr_list_generic,
1419 .update_mc_addr_list = &ixgbe_update_mc_addr_list_generic,
1420 .enable_mc = &ixgbe_enable_mc_generic,
1421 .disable_mc = &ixgbe_disable_mc_generic,
1422 .clear_vfta = &ixgbe_clear_vfta_82599,
1423 .set_vfta = &ixgbe_set_vfta_82599,
1424 .setup_fc = &ixgbe_setup_fc_generic,
1425 .init_uta_tables = &ixgbe_init_uta_tables_82599,
1426 .setup_sfp = &ixgbe_setup_sfp_modules_82599,
1427};
1428
1429static struct ixgbe_eeprom_operations eeprom_ops_82599 = {
1430 .init_params = &ixgbe_init_eeprom_params_generic,
1431 .read = &ixgbe_read_eeprom_generic,
1432 .write = &ixgbe_write_eeprom_generic,
1433 .validate_checksum = &ixgbe_validate_eeprom_checksum_generic,
1434 .update_checksum = &ixgbe_update_eeprom_checksum_generic,
1435};
1436
1437static struct ixgbe_phy_operations phy_ops_82599 = {
1438 .identify = &ixgbe_identify_phy_82599,
1439 .identify_sfp = &ixgbe_identify_sfp_module_generic,
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00001440 .init = &ixgbe_init_phy_ops_82599,
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001441 .reset = &ixgbe_reset_phy_generic,
1442 .read_reg = &ixgbe_read_phy_reg_generic,
1443 .write_reg = &ixgbe_write_phy_reg_generic,
1444 .setup_link = &ixgbe_setup_phy_link_generic,
1445 .setup_link_speed = &ixgbe_setup_phy_link_speed_generic,
1446 .read_i2c_byte = &ixgbe_read_i2c_byte_generic,
1447 .write_i2c_byte = &ixgbe_write_i2c_byte_generic,
1448 .read_i2c_eeprom = &ixgbe_read_i2c_eeprom_generic,
1449 .write_i2c_eeprom = &ixgbe_write_i2c_eeprom_generic,
1450};
1451
1452struct ixgbe_info ixgbe_82599_info = {
1453 .mac = ixgbe_mac_82599EB,
1454 .get_invariants = &ixgbe_get_invariants_82599,
1455 .mac_ops = &mac_ops_82599,
1456 .eeprom_ops = &eeprom_ops_82599,
1457 .phy_ops = &phy_ops_82599,
1458};