4e065509e954548f899f0d179607f5215611f4ba
[dpdk.git] / lib / librte_pmd_ixgbe / ixgbe / ixgbe_82598.c
1 /*******************************************************************************
2
3 Copyright (c) 2001-2014, Intel Corporation
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8
9  1. Redistributions of source code must retain the above copyright notice,
10     this list of conditions and the following disclaimer.
11
12  2. Redistributions in binary form must reproduce the above copyright
13     notice, this list of conditions and the following disclaimer in the
14     documentation and/or other materials provided with the distribution.
15
16  3. Neither the name of the Intel Corporation nor the names of its
17     contributors may be used to endorse or promote products derived from
18     this software without specific prior written permission.
19
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
31
32 ***************************************************************************/
33
34 #include "ixgbe_type.h"
35 #include "ixgbe_82598.h"
36 #include "ixgbe_api.h"
37 #include "ixgbe_common.h"
38 #include "ixgbe_phy.h"
39
40 #define IXGBE_82598_MAX_TX_QUEUES 32
41 #define IXGBE_82598_MAX_RX_QUEUES 64
42 #define IXGBE_82598_RAR_ENTRIES   16
43 #define IXGBE_82598_MC_TBL_SIZE  128
44 #define IXGBE_82598_VFT_TBL_SIZE 128
45 #define IXGBE_82598_RX_PB_SIZE   512
46
47 STATIC s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
48                                              ixgbe_link_speed *speed,
49                                              bool *autoneg);
50 STATIC enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw);
51 STATIC s32 ixgbe_start_mac_link_82598(struct ixgbe_hw *hw,
52                                       bool autoneg_wait_to_complete);
53 STATIC s32 ixgbe_check_mac_link_82598(struct ixgbe_hw *hw,
54                                       ixgbe_link_speed *speed, bool *link_up,
55                                       bool link_up_wait_to_complete);
56 STATIC s32 ixgbe_setup_mac_link_82598(struct ixgbe_hw *hw,
57                                       ixgbe_link_speed speed,
58                                       bool autoneg_wait_to_complete);
59 STATIC s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw,
60                                          ixgbe_link_speed speed,
61                                          bool autoneg_wait_to_complete);
62 STATIC s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw);
63 STATIC s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq);
64 STATIC s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw);
65 STATIC void ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb,
66                                   u32 headroom, int strategy);
67 STATIC s32 ixgbe_read_i2c_sff8472_82598(struct ixgbe_hw *hw, u8 byte_offset,
68                                         u8 *sff8472_data);
69 /**
70  *  ixgbe_set_pcie_completion_timeout - set pci-e completion timeout
71  *  @hw: pointer to the HW structure
72  *
73  *  The defaults for 82598 should be in the range of 50us to 50ms,
74  *  however the hardware default for these parts is 500us to 1ms which is less
75  *  than the 10ms recommended by the pci-e spec.  To address this we need to
76  *  increase the value to either 10ms to 250ms for capability version 1 config,
77  *  or 16ms to 55ms for version 2.
78  **/
79 void ixgbe_set_pcie_completion_timeout(struct ixgbe_hw *hw)
80 {
81         u32 gcr = IXGBE_READ_REG(hw, IXGBE_GCR);
82         u16 pcie_devctl2;
83
84         /* only take action if timeout value is defaulted to 0 */
85         if (gcr & IXGBE_GCR_CMPL_TMOUT_MASK)
86                 goto out;
87
88         /*
89          * if capababilities version is type 1 we can write the
90          * timeout of 10ms to 250ms through the GCR register
91          */
92         if (!(gcr & IXGBE_GCR_CAP_VER2)) {
93                 gcr |= IXGBE_GCR_CMPL_TMOUT_10ms;
94                 goto out;
95         }
96
97         /*
98          * for version 2 capabilities we need to write the config space
99          * directly in order to set the completion timeout value for
100          * 16ms to 55ms
101          */
102         pcie_devctl2 = IXGBE_READ_PCIE_WORD(hw, IXGBE_PCI_DEVICE_CONTROL2);
103         pcie_devctl2 |= IXGBE_PCI_DEVICE_CONTROL2_16ms;
104         IXGBE_WRITE_PCIE_WORD(hw, IXGBE_PCI_DEVICE_CONTROL2, pcie_devctl2);
105 out:
106         /* disable completion timeout resend */
107         gcr &= ~IXGBE_GCR_CMPL_TMOUT_RESEND;
108         IXGBE_WRITE_REG(hw, IXGBE_GCR, gcr);
109 }
110
111 /**
112  *  ixgbe_init_ops_82598 - Inits func ptrs and MAC type
113  *  @hw: pointer to hardware structure
114  *
115  *  Initialize the function pointers and assign the MAC type for 82598.
116  *  Does not touch the hardware.
117  **/
118 s32 ixgbe_init_ops_82598(struct ixgbe_hw *hw)
119 {
120         struct ixgbe_mac_info *mac = &hw->mac;
121         struct ixgbe_phy_info *phy = &hw->phy;
122         s32 ret_val;
123
124         DEBUGFUNC("ixgbe_init_ops_82598");
125
126         ret_val = ixgbe_init_phy_ops_generic(hw);
127         ret_val = ixgbe_init_ops_generic(hw);
128
129         /* PHY */
130         phy->ops.init = ixgbe_init_phy_ops_82598;
131
132         /* MAC */
133         mac->ops.start_hw = ixgbe_start_hw_82598;
134         mac->ops.enable_relaxed_ordering = ixgbe_enable_relaxed_ordering_82598;
135         mac->ops.reset_hw = ixgbe_reset_hw_82598;
136         mac->ops.get_media_type = ixgbe_get_media_type_82598;
137         mac->ops.get_supported_physical_layer =
138                                 ixgbe_get_supported_physical_layer_82598;
139         mac->ops.read_analog_reg8 = ixgbe_read_analog_reg8_82598;
140         mac->ops.write_analog_reg8 = ixgbe_write_analog_reg8_82598;
141         mac->ops.set_lan_id = ixgbe_set_lan_id_multi_port_pcie_82598;
142         mac->ops.enable_rx_dma = ixgbe_enable_rx_dma_82598;
143
144         /* RAR, Multicast, VLAN */
145         mac->ops.set_vmdq = ixgbe_set_vmdq_82598;
146         mac->ops.clear_vmdq = ixgbe_clear_vmdq_82598;
147         mac->ops.set_vfta = ixgbe_set_vfta_82598;
148         mac->ops.set_vlvf = NULL;
149         mac->ops.clear_vfta = ixgbe_clear_vfta_82598;
150
151         /* Flow Control */
152         mac->ops.fc_enable = ixgbe_fc_enable_82598;
153
154         mac->mcft_size          = IXGBE_82598_MC_TBL_SIZE;
155         mac->vft_size           = IXGBE_82598_VFT_TBL_SIZE;
156         mac->num_rar_entries    = IXGBE_82598_RAR_ENTRIES;
157         mac->rx_pb_size         = IXGBE_82598_RX_PB_SIZE;
158         mac->max_rx_queues      = IXGBE_82598_MAX_RX_QUEUES;
159         mac->max_tx_queues      = IXGBE_82598_MAX_TX_QUEUES;
160         mac->max_msix_vectors   = ixgbe_get_pcie_msix_count_generic(hw);
161
162         /* SFP+ Module */
163         phy->ops.read_i2c_eeprom = ixgbe_read_i2c_eeprom_82598;
164         phy->ops.read_i2c_sff8472 = ixgbe_read_i2c_sff8472_82598;
165
166         /* Link */
167         mac->ops.check_link = ixgbe_check_mac_link_82598;
168         mac->ops.setup_link = ixgbe_setup_mac_link_82598;
169         mac->ops.flap_tx_laser = NULL;
170         mac->ops.get_link_capabilities = ixgbe_get_link_capabilities_82598;
171         mac->ops.setup_rxpba = ixgbe_set_rxpba_82598;
172
173         /* Manageability interface */
174         mac->ops.set_fw_drv_ver = NULL;
175
176         mac->ops.get_rtrup2tc = NULL;
177
178         return ret_val;
179 }
180
181 /**
182  *  ixgbe_init_phy_ops_82598 - PHY/SFP specific init
183  *  @hw: pointer to hardware structure
184  *
185  *  Initialize any function pointers that were not able to be
186  *  set during init_shared_code because the PHY/SFP type was
187  *  not known.  Perform the SFP init if necessary.
188  *
189  **/
190 s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw)
191 {
192         struct ixgbe_mac_info *mac = &hw->mac;
193         struct ixgbe_phy_info *phy = &hw->phy;
194         s32 ret_val = IXGBE_SUCCESS;
195         u16 list_offset, data_offset;
196
197         DEBUGFUNC("ixgbe_init_phy_ops_82598");
198
199         /* Identify the PHY */
200         phy->ops.identify(hw);
201
202         /* Overwrite the link function pointers if copper PHY */
203         if (mac->ops.get_media_type(hw) == ixgbe_media_type_copper) {
204                 mac->ops.setup_link = ixgbe_setup_copper_link_82598;
205                 mac->ops.get_link_capabilities =
206                                 ixgbe_get_copper_link_capabilities_generic;
207         }
208
209         switch (hw->phy.type) {
210         case ixgbe_phy_tn:
211                 phy->ops.setup_link = ixgbe_setup_phy_link_tnx;
212                 phy->ops.check_link = ixgbe_check_phy_link_tnx;
213                 phy->ops.get_firmware_version =
214                                         ixgbe_get_phy_firmware_version_tnx;
215                 break;
216         case ixgbe_phy_nl:
217                 phy->ops.reset = ixgbe_reset_phy_nl;
218
219                 /* Call SFP+ identify routine to get the SFP+ module type */
220                 ret_val = phy->ops.identify_sfp(hw);
221                 if (ret_val != IXGBE_SUCCESS)
222                         goto out;
223                 else if (hw->phy.sfp_type == ixgbe_sfp_type_unknown) {
224                         ret_val = IXGBE_ERR_SFP_NOT_SUPPORTED;
225                         goto out;
226                 }
227
228                 /* Check to see if SFP+ module is supported */
229                 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw,
230                                                               &list_offset,
231                                                               &data_offset);
232                 if (ret_val != IXGBE_SUCCESS) {
233                         ret_val = IXGBE_ERR_SFP_NOT_SUPPORTED;
234                         goto out;
235                 }
236                 break;
237         default:
238                 break;
239         }
240
241 out:
242         return ret_val;
243 }
244
245 /**
246  *  ixgbe_start_hw_82598 - Prepare hardware for Tx/Rx
247  *  @hw: pointer to hardware structure
248  *
249  *  Starts the hardware using the generic start_hw function.
250  *  Disables relaxed ordering Then set pcie completion timeout
251  *
252  **/
253 s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw)
254 {
255         u32 regval;
256         u32 i;
257         s32 ret_val = IXGBE_SUCCESS;
258
259         DEBUGFUNC("ixgbe_start_hw_82598");
260
261         ret_val = ixgbe_start_hw_generic(hw);
262
263         /* Disable relaxed ordering */
264         for (i = 0; ((i < hw->mac.max_tx_queues) &&
265              (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
266                 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i));
267                 regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
268                 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(i), regval);
269         }
270
271         for (i = 0; ((i < hw->mac.max_rx_queues) &&
272              (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
273                 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
274                 regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN |
275                             IXGBE_DCA_RXCTRL_HEAD_WRO_EN);
276                 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
277         }
278
279         /* set the completion timeout for interface */
280         if (ret_val == IXGBE_SUCCESS)
281                 ixgbe_set_pcie_completion_timeout(hw);
282
283         return ret_val;
284 }
285
286 /**
287  *  ixgbe_get_link_capabilities_82598 - Determines link capabilities
288  *  @hw: pointer to hardware structure
289  *  @speed: pointer to link speed
290  *  @autoneg: boolean auto-negotiation value
291  *
292  *  Determines the link capabilities by reading the AUTOC register.
293  **/
294 STATIC s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
295                                              ixgbe_link_speed *speed,
296                                              bool *autoneg)
297 {
298         s32 status = IXGBE_SUCCESS;
299         u32 autoc = 0;
300
301         DEBUGFUNC("ixgbe_get_link_capabilities_82598");
302
303         /*
304          * Determine link capabilities based on the stored value of AUTOC,
305          * which represents EEPROM defaults.  If AUTOC value has not been
306          * stored, use the current register value.
307          */
308         if (hw->mac.orig_link_settings_stored)
309                 autoc = hw->mac.orig_autoc;
310         else
311                 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
312
313         switch (autoc & IXGBE_AUTOC_LMS_MASK) {
314         case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
315                 *speed = IXGBE_LINK_SPEED_1GB_FULL;
316                 *autoneg = false;
317                 break;
318
319         case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
320                 *speed = IXGBE_LINK_SPEED_10GB_FULL;
321                 *autoneg = false;
322                 break;
323
324         case IXGBE_AUTOC_LMS_1G_AN:
325                 *speed = IXGBE_LINK_SPEED_1GB_FULL;
326                 *autoneg = true;
327                 break;
328
329         case IXGBE_AUTOC_LMS_KX4_AN:
330         case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
331                 *speed = IXGBE_LINK_SPEED_UNKNOWN;
332                 if (autoc & IXGBE_AUTOC_KX4_SUPP)
333                         *speed |= IXGBE_LINK_SPEED_10GB_FULL;
334                 if (autoc & IXGBE_AUTOC_KX_SUPP)
335                         *speed |= IXGBE_LINK_SPEED_1GB_FULL;
336                 *autoneg = true;
337                 break;
338
339         default:
340                 status = IXGBE_ERR_LINK_SETUP;
341                 break;
342         }
343
344         return status;
345 }
346
347 /**
348  *  ixgbe_get_media_type_82598 - Determines media type
349  *  @hw: pointer to hardware structure
350  *
351  *  Returns the media type (fiber, copper, backplane)
352  **/
353 STATIC enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
354 {
355         enum ixgbe_media_type media_type;
356
357         DEBUGFUNC("ixgbe_get_media_type_82598");
358
359         /* Detect if there is a copper PHY attached. */
360         switch (hw->phy.type) {
361         case ixgbe_phy_cu_unknown:
362         case ixgbe_phy_tn:
363                 media_type = ixgbe_media_type_copper;
364                 goto out;
365         default:
366                 break;
367         }
368
369         /* Media type for I82598 is based on device ID */
370         switch (hw->device_id) {
371         case IXGBE_DEV_ID_82598:
372         case IXGBE_DEV_ID_82598_BX:
373                 /* Default device ID is mezzanine card KX/KX4 */
374                 media_type = ixgbe_media_type_backplane;
375                 break;
376         case IXGBE_DEV_ID_82598AF_DUAL_PORT:
377         case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
378         case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
379         case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
380         case IXGBE_DEV_ID_82598EB_XF_LR:
381         case IXGBE_DEV_ID_82598EB_SFP_LOM:
382                 media_type = ixgbe_media_type_fiber;
383                 break;
384         case IXGBE_DEV_ID_82598EB_CX4:
385         case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
386                 media_type = ixgbe_media_type_cx4;
387                 break;
388         case IXGBE_DEV_ID_82598AT:
389         case IXGBE_DEV_ID_82598AT2:
390                 media_type = ixgbe_media_type_copper;
391                 break;
392         default:
393                 media_type = ixgbe_media_type_unknown;
394                 break;
395         }
396 out:
397         return media_type;
398 }
399
400 /**
401  *  ixgbe_fc_enable_82598 - Enable flow control
402  *  @hw: pointer to hardware structure
403  *
404  *  Enable flow control according to the current settings.
405  **/
406 s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw)
407 {
408         s32 ret_val = IXGBE_SUCCESS;
409         u32 fctrl_reg;
410         u32 rmcs_reg;
411         u32 reg;
412         u32 fcrtl, fcrth;
413         u32 link_speed = 0;
414         int i;
415         bool link_up;
416
417         DEBUGFUNC("ixgbe_fc_enable_82598");
418
419         /* Validate the water mark configuration */
420         if (!hw->fc.pause_time) {
421                 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
422                 goto out;
423         }
424
425         /* Low water mark of zero causes XOFF floods */
426         for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
427                 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
428                     hw->fc.high_water[i]) {
429                         if (!hw->fc.low_water[i] ||
430                             hw->fc.low_water[i] >= hw->fc.high_water[i]) {
431                                 DEBUGOUT("Invalid water mark configuration\n");
432                                 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
433                                 goto out;
434                         }
435                 }
436         }
437
438         /*
439          * On 82598 having Rx FC on causes resets while doing 1G
440          * so if it's on turn it off once we know link_speed. For
441          * more details see 82598 Specification update.
442          */
443         hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
444         if (link_up && link_speed == IXGBE_LINK_SPEED_1GB_FULL) {
445                 switch (hw->fc.requested_mode) {
446                 case ixgbe_fc_full:
447                         hw->fc.requested_mode = ixgbe_fc_tx_pause;
448                         break;
449                 case ixgbe_fc_rx_pause:
450                         hw->fc.requested_mode = ixgbe_fc_none;
451                         break;
452                 default:
453                         /* no change */
454                         break;
455                 }
456         }
457
458         /* Negotiate the fc mode to use */
459         ixgbe_fc_autoneg(hw);
460
461         /* Disable any previous flow control settings */
462         fctrl_reg = IXGBE_READ_REG(hw, IXGBE_FCTRL);
463         fctrl_reg &= ~(IXGBE_FCTRL_RFCE | IXGBE_FCTRL_RPFCE);
464
465         rmcs_reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
466         rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X);
467
468         /*
469          * The possible values of fc.current_mode are:
470          * 0: Flow control is completely disabled
471          * 1: Rx flow control is enabled (we can receive pause frames,
472          *    but not send pause frames).
473          * 2: Tx flow control is enabled (we can send pause frames but
474          *     we do not support receiving pause frames).
475          * 3: Both Rx and Tx flow control (symmetric) are enabled.
476          * other: Invalid.
477          */
478         switch (hw->fc.current_mode) {
479         case ixgbe_fc_none:
480                 /*
481                  * Flow control is disabled by software override or autoneg.
482                  * The code below will actually disable it in the HW.
483                  */
484                 break;
485         case ixgbe_fc_rx_pause:
486                 /*
487                  * Rx Flow control is enabled and Tx Flow control is
488                  * disabled by software override. Since there really
489                  * isn't a way to advertise that we are capable of RX
490                  * Pause ONLY, we will advertise that we support both
491                  * symmetric and asymmetric Rx PAUSE.  Later, we will
492                  * disable the adapter's ability to send PAUSE frames.
493                  */
494                 fctrl_reg |= IXGBE_FCTRL_RFCE;
495                 break;
496         case ixgbe_fc_tx_pause:
497                 /*
498                  * Tx Flow control is enabled, and Rx Flow control is
499                  * disabled by software override.
500                  */
501                 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
502                 break;
503         case ixgbe_fc_full:
504                 /* Flow control (both Rx and Tx) is enabled by SW override. */
505                 fctrl_reg |= IXGBE_FCTRL_RFCE;
506                 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
507                 break;
508         default:
509                 DEBUGOUT("Flow control param set incorrectly\n");
510                 ret_val = IXGBE_ERR_CONFIG;
511                 goto out;
512                 break;
513         }
514
515         /* Set 802.3x based flow control settings. */
516         fctrl_reg |= IXGBE_FCTRL_DPF;
517         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl_reg);
518         IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg);
519
520         /* Set up and enable Rx high/low water mark thresholds, enable XON. */
521         for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
522                 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
523                     hw->fc.high_water[i]) {
524                         fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
525                         fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
526                         IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), fcrtl);
527                         IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), fcrth);
528                 } else {
529                         IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), 0);
530                         IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), 0);
531                 }
532
533         }
534
535         /* Configure pause time (2 TCs per register) */
536         reg = hw->fc.pause_time * 0x00010001;
537         for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
538                 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
539
540         /* Configure flow control refresh threshold value */
541         IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
542
543 out:
544         return ret_val;
545 }
546
547 /**
548  *  ixgbe_start_mac_link_82598 - Configures MAC link settings
549  *  @hw: pointer to hardware structure
550  *
551  *  Configures link settings based on values in the ixgbe_hw struct.
552  *  Restarts the link.  Performs autonegotiation if needed.
553  **/
554 STATIC s32 ixgbe_start_mac_link_82598(struct ixgbe_hw *hw,
555                                       bool autoneg_wait_to_complete)
556 {
557         u32 autoc_reg;
558         u32 links_reg;
559         u32 i;
560         s32 status = IXGBE_SUCCESS;
561
562         DEBUGFUNC("ixgbe_start_mac_link_82598");
563
564         /* Restart link */
565         autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
566         autoc_reg |= IXGBE_AUTOC_AN_RESTART;
567         IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
568
569         /* Only poll for autoneg to complete if specified to do so */
570         if (autoneg_wait_to_complete) {
571                 if ((autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
572                      IXGBE_AUTOC_LMS_KX4_AN ||
573                     (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
574                      IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
575                         links_reg = 0; /* Just in case Autoneg time = 0 */
576                         for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
577                                 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
578                                 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
579                                         break;
580                                 msec_delay(100);
581                         }
582                         if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
583                                 status = IXGBE_ERR_AUTONEG_NOT_COMPLETE;
584                                 DEBUGOUT("Autonegotiation did not complete.\n");
585                         }
586                 }
587         }
588
589         /* Add delay to filter out noises during initial link setup */
590         msec_delay(50);
591
592         return status;
593 }
594
595 /**
596  *  ixgbe_validate_link_ready - Function looks for phy link
597  *  @hw: pointer to hardware structure
598  *
599  *  Function indicates success when phy link is available. If phy is not ready
600  *  within 5 seconds of MAC indicating link, the function returns error.
601  **/
602 STATIC s32 ixgbe_validate_link_ready(struct ixgbe_hw *hw)
603 {
604         u32 timeout;
605         u16 an_reg;
606
607         if (hw->device_id != IXGBE_DEV_ID_82598AT2)
608                 return IXGBE_SUCCESS;
609
610         for (timeout = 0;
611              timeout < IXGBE_VALIDATE_LINK_READY_TIMEOUT; timeout++) {
612                 hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_STATUS,
613                                      IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &an_reg);
614
615                 if ((an_reg & IXGBE_MII_AUTONEG_COMPLETE) &&
616                     (an_reg & IXGBE_MII_AUTONEG_LINK_UP))
617                         break;
618
619                 msec_delay(100);
620         }
621
622         if (timeout == IXGBE_VALIDATE_LINK_READY_TIMEOUT) {
623                 DEBUGOUT("Link was indicated but link is down\n");
624                 return IXGBE_ERR_LINK_SETUP;
625         }
626
627         return IXGBE_SUCCESS;
628 }
629
630 /**
631  *  ixgbe_check_mac_link_82598 - Get link/speed status
632  *  @hw: pointer to hardware structure
633  *  @speed: pointer to link speed
634  *  @link_up: true is link is up, false otherwise
635  *  @link_up_wait_to_complete: bool used to wait for link up or not
636  *
637  *  Reads the links register to determine if link is up and the current speed
638  **/
639 STATIC s32 ixgbe_check_mac_link_82598(struct ixgbe_hw *hw,
640                                       ixgbe_link_speed *speed, bool *link_up,
641                                       bool link_up_wait_to_complete)
642 {
643         u32 links_reg;
644         u32 i;
645         u16 link_reg, adapt_comp_reg;
646
647         DEBUGFUNC("ixgbe_check_mac_link_82598");
648
649         /*
650          * SERDES PHY requires us to read link status from undocumented
651          * register 0xC79F.  Bit 0 set indicates link is up/ready; clear
652          * indicates link down.  OxC00C is read to check that the XAUI lanes
653          * are active.  Bit 0 clear indicates active; set indicates inactive.
654          */
655         if (hw->phy.type == ixgbe_phy_nl) {
656                 hw->phy.ops.read_reg(hw, 0xC79F, IXGBE_TWINAX_DEV, &link_reg);
657                 hw->phy.ops.read_reg(hw, 0xC79F, IXGBE_TWINAX_DEV, &link_reg);
658                 hw->phy.ops.read_reg(hw, 0xC00C, IXGBE_TWINAX_DEV,
659                                      &adapt_comp_reg);
660                 if (link_up_wait_to_complete) {
661                         for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
662                                 if ((link_reg & 1) &&
663                                     ((adapt_comp_reg & 1) == 0)) {
664                                         *link_up = true;
665                                         break;
666                                 } else {
667                                         *link_up = false;
668                                 }
669                                 msec_delay(100);
670                                 hw->phy.ops.read_reg(hw, 0xC79F,
671                                                      IXGBE_TWINAX_DEV,
672                                                      &link_reg);
673                                 hw->phy.ops.read_reg(hw, 0xC00C,
674                                                      IXGBE_TWINAX_DEV,
675                                                      &adapt_comp_reg);
676                         }
677                 } else {
678                         if ((link_reg & 1) && ((adapt_comp_reg & 1) == 0))
679                                 *link_up = true;
680                         else
681                                 *link_up = false;
682                 }
683
684                 if (*link_up == false)
685                         goto out;
686         }
687
688         links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
689         if (link_up_wait_to_complete) {
690                 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
691                         if (links_reg & IXGBE_LINKS_UP) {
692                                 *link_up = true;
693                                 break;
694                         } else {
695                                 *link_up = false;
696                         }
697                         msec_delay(100);
698                         links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
699                 }
700         } else {
701                 if (links_reg & IXGBE_LINKS_UP)
702                         *link_up = true;
703                 else
704                         *link_up = false;
705         }
706
707         if (links_reg & IXGBE_LINKS_SPEED)
708                 *speed = IXGBE_LINK_SPEED_10GB_FULL;
709         else
710                 *speed = IXGBE_LINK_SPEED_1GB_FULL;
711
712         if ((hw->device_id == IXGBE_DEV_ID_82598AT2) && (*link_up == true) &&
713             (ixgbe_validate_link_ready(hw) != IXGBE_SUCCESS))
714                 *link_up = false;
715
716 out:
717         return IXGBE_SUCCESS;
718 }
719
720 /**
721  *  ixgbe_setup_mac_link_82598 - Set MAC link speed
722  *  @hw: pointer to hardware structure
723  *  @speed: new link speed
724  *  @autoneg_wait_to_complete: true when waiting for completion is needed
725  *
726  *  Set the link speed in the AUTOC register and restarts link.
727  **/
728 STATIC s32 ixgbe_setup_mac_link_82598(struct ixgbe_hw *hw,
729                                       ixgbe_link_speed speed,
730                                       bool autoneg_wait_to_complete)
731 {
732         bool autoneg = false;
733         s32 status = IXGBE_SUCCESS;
734         ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN;
735         u32 curr_autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
736         u32 autoc = curr_autoc;
737         u32 link_mode = autoc & IXGBE_AUTOC_LMS_MASK;
738
739         DEBUGFUNC("ixgbe_setup_mac_link_82598");
740
741         /* Check to see if speed passed in is supported. */
742         ixgbe_get_link_capabilities(hw, &link_capabilities, &autoneg);
743         speed &= link_capabilities;
744
745         if (speed == IXGBE_LINK_SPEED_UNKNOWN)
746                 status = IXGBE_ERR_LINK_SETUP;
747
748         /* Set KX4/KX support according to speed requested */
749         else if (link_mode == IXGBE_AUTOC_LMS_KX4_AN ||
750                  link_mode == IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
751                 autoc &= ~IXGBE_AUTOC_KX4_KX_SUPP_MASK;
752                 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
753                         autoc |= IXGBE_AUTOC_KX4_SUPP;
754                 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
755                         autoc |= IXGBE_AUTOC_KX_SUPP;
756                 if (autoc != curr_autoc)
757                         IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc);
758         }
759
760         if (status == IXGBE_SUCCESS) {
761                 /*
762                  * Setup and restart the link based on the new values in
763                  * ixgbe_hw This will write the AUTOC register based on the new
764                  * stored values
765                  */
766                 status = ixgbe_start_mac_link_82598(hw,
767                                                     autoneg_wait_to_complete);
768         }
769
770         return status;
771 }
772
773
774 /**
775  *  ixgbe_setup_copper_link_82598 - Set the PHY autoneg advertised field
776  *  @hw: pointer to hardware structure
777  *  @speed: new link speed
778  *  @autoneg_wait_to_complete: true if waiting is needed to complete
779  *
780  *  Sets the link speed in the AUTOC register in the MAC and restarts link.
781  **/
782 STATIC s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw,
783                                          ixgbe_link_speed speed,
784                                          bool autoneg_wait_to_complete)
785 {
786         s32 status;
787
788         DEBUGFUNC("ixgbe_setup_copper_link_82598");
789
790         /* Setup the PHY according to input speed */
791         status = hw->phy.ops.setup_link_speed(hw, speed,
792                                               autoneg_wait_to_complete);
793         /* Set up MAC */
794         ixgbe_start_mac_link_82598(hw, autoneg_wait_to_complete);
795
796         return status;
797 }
798
799 /**
800  *  ixgbe_reset_hw_82598 - Performs hardware reset
801  *  @hw: pointer to hardware structure
802  *
803  *  Resets the hardware by resetting the transmit and receive units, masks and
804  *  clears all interrupts, performing a PHY reset, and performing a link (MAC)
805  *  reset.
806  **/
807 STATIC s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
808 {
809         s32 status = IXGBE_SUCCESS;
810         s32 phy_status = IXGBE_SUCCESS;
811         u32 ctrl;
812         u32 gheccr;
813         u32 i;
814         u32 autoc;
815         u8  analog_val;
816
817         DEBUGFUNC("ixgbe_reset_hw_82598");
818
819         /* Call adapter stop to disable tx/rx and clear interrupts */
820         status = hw->mac.ops.stop_adapter(hw);
821         if (status != IXGBE_SUCCESS)
822                 goto reset_hw_out;
823
824         /*
825          * Power up the Atlas Tx lanes if they are currently powered down.
826          * Atlas Tx lanes are powered down for MAC loopback tests, but
827          * they are not automatically restored on reset.
828          */
829         hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &analog_val);
830         if (analog_val & IXGBE_ATLAS_PDN_TX_REG_EN) {
831                 /* Enable Tx Atlas so packets can be transmitted again */
832                 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
833                                              &analog_val);
834                 analog_val &= ~IXGBE_ATLAS_PDN_TX_REG_EN;
835                 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
836                                               analog_val);
837
838                 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
839                                              &analog_val);
840                 analog_val &= ~IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
841                 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
842                                               analog_val);
843
844                 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
845                                              &analog_val);
846                 analog_val &= ~IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
847                 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
848                                               analog_val);
849
850                 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
851                                              &analog_val);
852                 analog_val &= ~IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
853                 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
854                                               analog_val);
855         }
856
857         /* Reset PHY */
858         if (hw->phy.reset_disable == false) {
859                 /* PHY ops must be identified and initialized prior to reset */
860
861                 /* Init PHY and function pointers, perform SFP setup */
862                 phy_status = hw->phy.ops.init(hw);
863                 if (phy_status == IXGBE_ERR_SFP_NOT_SUPPORTED)
864                         goto reset_hw_out;
865                 if (phy_status == IXGBE_ERR_SFP_NOT_PRESENT)
866                         goto mac_reset_top;
867
868                 hw->phy.ops.reset(hw);
869         }
870
871 mac_reset_top:
872         /*
873          * Issue global reset to the MAC.  This needs to be a SW reset.
874          * If link reset is used, it might reset the MAC when mng is using it
875          */
876         ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL) | IXGBE_CTRL_RST;
877         IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
878         IXGBE_WRITE_FLUSH(hw);
879
880         /* Poll for reset bit to self-clear indicating reset is complete */
881         for (i = 0; i < 10; i++) {
882                 usec_delay(1);
883                 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
884                 if (!(ctrl & IXGBE_CTRL_RST))
885                         break;
886         }
887         if (ctrl & IXGBE_CTRL_RST) {
888                 status = IXGBE_ERR_RESET_FAILED;
889                 DEBUGOUT("Reset polling failed to complete.\n");
890         }
891
892         msec_delay(50);
893
894         /*
895          * Double resets are required for recovery from certain error
896          * conditions.  Between resets, it is necessary to stall to allow time
897          * for any pending HW events to complete.
898          */
899         if (hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED) {
900                 hw->mac.flags &= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
901                 goto mac_reset_top;
902         }
903
904         gheccr = IXGBE_READ_REG(hw, IXGBE_GHECCR);
905         gheccr &= ~((1 << 21) | (1 << 18) | (1 << 9) | (1 << 6));
906         IXGBE_WRITE_REG(hw, IXGBE_GHECCR, gheccr);
907
908         /*
909          * Store the original AUTOC value if it has not been
910          * stored off yet.  Otherwise restore the stored original
911          * AUTOC value since the reset operation sets back to deaults.
912          */
913         autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
914         if (hw->mac.orig_link_settings_stored == false) {
915                 hw->mac.orig_autoc = autoc;
916                 hw->mac.orig_link_settings_stored = true;
917         } else if (autoc != hw->mac.orig_autoc) {
918                 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, hw->mac.orig_autoc);
919         }
920
921         /* Store the permanent mac address */
922         hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
923
924         /*
925          * Store MAC address from RAR0, clear receive address registers, and
926          * clear the multicast table
927          */
928         hw->mac.ops.init_rx_addrs(hw);
929
930 reset_hw_out:
931         if (phy_status != IXGBE_SUCCESS)
932                 status = phy_status;
933
934         return status;
935 }
936
937 /**
938  *  ixgbe_set_vmdq_82598 - Associate a VMDq set index with a rx address
939  *  @hw: pointer to hardware struct
940  *  @rar: receive address register index to associate with a VMDq index
941  *  @vmdq: VMDq set index
942  **/
943 s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
944 {
945         u32 rar_high;
946         u32 rar_entries = hw->mac.num_rar_entries;
947
948         DEBUGFUNC("ixgbe_set_vmdq_82598");
949
950         /* Make sure we are using a valid rar index range */
951         if (rar >= rar_entries) {
952                 DEBUGOUT1("RAR index %d is out of range.\n", rar);
953                 return IXGBE_ERR_INVALID_ARGUMENT;
954         }
955
956         rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
957         rar_high &= ~IXGBE_RAH_VIND_MASK;
958         rar_high |= ((vmdq << IXGBE_RAH_VIND_SHIFT) & IXGBE_RAH_VIND_MASK);
959         IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
960         return IXGBE_SUCCESS;
961 }
962
963 /**
964  *  ixgbe_clear_vmdq_82598 - Disassociate a VMDq set index from an rx address
965  *  @hw: pointer to hardware struct
966  *  @rar: receive address register index to associate with a VMDq index
967  *  @vmdq: VMDq clear index (not used in 82598, but elsewhere)
968  **/
969 STATIC s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
970 {
971         u32 rar_high;
972         u32 rar_entries = hw->mac.num_rar_entries;
973
974         UNREFERENCED_1PARAMETER(vmdq);
975
976         /* Make sure we are using a valid rar index range */
977         if (rar >= rar_entries) {
978                 DEBUGOUT1("RAR index %d is out of range.\n", rar);
979                 return IXGBE_ERR_INVALID_ARGUMENT;
980         }
981
982         rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
983         if (rar_high & IXGBE_RAH_VIND_MASK) {
984                 rar_high &= ~IXGBE_RAH_VIND_MASK;
985                 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
986         }
987
988         return IXGBE_SUCCESS;
989 }
990
991 /**
992  *  ixgbe_set_vfta_82598 - Set VLAN filter table
993  *  @hw: pointer to hardware structure
994  *  @vlan: VLAN id to write to VLAN filter
995  *  @vind: VMDq output index that maps queue to VLAN id in VFTA
996  *  @vlan_on: boolean flag to turn on/off VLAN in VFTA
997  *
998  *  Turn on/off specified VLAN in the VLAN filter table.
999  **/
1000 s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
1001                          bool vlan_on)
1002 {
1003         u32 regindex;
1004         u32 bitindex;
1005         u32 bits;
1006         u32 vftabyte;
1007
1008         DEBUGFUNC("ixgbe_set_vfta_82598");
1009
1010         if (vlan > 4095)
1011                 return IXGBE_ERR_PARAM;
1012
1013         /* Determine 32-bit word position in array */
1014         regindex = (vlan >> 5) & 0x7F;   /* upper seven bits */
1015
1016         /* Determine the location of the (VMD) queue index */
1017         vftabyte =  ((vlan >> 3) & 0x03); /* bits (4:3) indicating byte array */
1018         bitindex = (vlan & 0x7) << 2;    /* lower 3 bits indicate nibble */
1019
1020         /* Set the nibble for VMD queue index */
1021         bits = IXGBE_READ_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex));
1022         bits &= (~(0x0F << bitindex));
1023         bits |= (vind << bitindex);
1024         IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex), bits);
1025
1026         /* Determine the location of the bit for this VLAN id */
1027         bitindex = vlan & 0x1F;   /* lower five bits */
1028
1029         bits = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
1030         if (vlan_on)
1031                 /* Turn on this VLAN id */
1032                 bits |= (1 << bitindex);
1033         else
1034                 /* Turn off this VLAN id */
1035                 bits &= ~(1 << bitindex);
1036         IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), bits);
1037
1038         return IXGBE_SUCCESS;
1039 }
1040
1041 /**
1042  *  ixgbe_clear_vfta_82598 - Clear VLAN filter table
1043  *  @hw: pointer to hardware structure
1044  *
1045  *  Clears the VLAN filer table, and the VMDq index associated with the filter
1046  **/
1047 STATIC s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw)
1048 {
1049         u32 offset;
1050         u32 vlanbyte;
1051
1052         DEBUGFUNC("ixgbe_clear_vfta_82598");
1053
1054         for (offset = 0; offset < hw->mac.vft_size; offset++)
1055                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
1056
1057         for (vlanbyte = 0; vlanbyte < 4; vlanbyte++)
1058                 for (offset = 0; offset < hw->mac.vft_size; offset++)
1059                         IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vlanbyte, offset),
1060                                         0);
1061
1062         return IXGBE_SUCCESS;
1063 }
1064
1065 /**
1066  *  ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register
1067  *  @hw: pointer to hardware structure
1068  *  @reg: analog register to read
1069  *  @val: read value
1070  *
1071  *  Performs read operation to Atlas analog register specified.
1072  **/
1073 s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
1074 {
1075         u32  atlas_ctl;
1076
1077         DEBUGFUNC("ixgbe_read_analog_reg8_82598");
1078
1079         IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL,
1080                         IXGBE_ATLASCTL_WRITE_CMD | (reg << 8));
1081         IXGBE_WRITE_FLUSH(hw);
1082         usec_delay(10);
1083         atlas_ctl = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
1084         *val = (u8)atlas_ctl;
1085
1086         return IXGBE_SUCCESS;
1087 }
1088
1089 /**
1090  *  ixgbe_write_analog_reg8_82598 - Writes 8 bit Atlas analog register
1091  *  @hw: pointer to hardware structure
1092  *  @reg: atlas register to write
1093  *  @val: value to write
1094  *
1095  *  Performs write operation to Atlas analog register specified.
1096  **/
1097 s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
1098 {
1099         u32  atlas_ctl;
1100
1101         DEBUGFUNC("ixgbe_write_analog_reg8_82598");
1102
1103         atlas_ctl = (reg << 8) | val;
1104         IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL, atlas_ctl);
1105         IXGBE_WRITE_FLUSH(hw);
1106         usec_delay(10);
1107
1108         return IXGBE_SUCCESS;
1109 }
1110
1111 /**
1112  *  ixgbe_read_i2c_phy_82598 - Reads 8 bit word over I2C interface.
1113  *  @hw: pointer to hardware structure
1114  *  @dev_addr: address to read from
1115  *  @byte_offset: byte offset to read from dev_addr
1116  *  @eeprom_data: value read
1117  *
1118  *  Performs 8 byte read operation to SFP module's EEPROM over I2C interface.
1119  **/
1120 STATIC s32 ixgbe_read_i2c_phy_82598(struct ixgbe_hw *hw, u8 dev_addr,
1121                                     u8 byte_offset, u8 *eeprom_data)
1122 {
1123         s32 status = IXGBE_SUCCESS;
1124         u16 sfp_addr = 0;
1125         u16 sfp_data = 0;
1126         u16 sfp_stat = 0;
1127         u16 gssr;
1128         u32 i;
1129
1130         DEBUGFUNC("ixgbe_read_i2c_phy_82598");
1131
1132         if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
1133                 gssr = IXGBE_GSSR_PHY1_SM;
1134         else
1135                 gssr = IXGBE_GSSR_PHY0_SM;
1136
1137         if (hw->mac.ops.acquire_swfw_sync(hw, gssr) != IXGBE_SUCCESS)
1138                 return IXGBE_ERR_SWFW_SYNC;
1139
1140         if (hw->phy.type == ixgbe_phy_nl) {
1141                 /*
1142                  * NetLogic phy SDA/SCL registers are at addresses 0xC30A to
1143                  * 0xC30D. These registers are used to talk to the SFP+
1144                  * module's EEPROM through the SDA/SCL (I2C) interface.
1145                  */
1146                 sfp_addr = (dev_addr << 8) + byte_offset;
1147                 sfp_addr = (sfp_addr | IXGBE_I2C_EEPROM_READ_MASK);
1148                 hw->phy.ops.write_reg_mdi(hw,
1149                                           IXGBE_MDIO_PMA_PMD_SDA_SCL_ADDR,
1150                                           IXGBE_MDIO_PMA_PMD_DEV_TYPE,
1151                                           sfp_addr);
1152
1153                 /* Poll status */
1154                 for (i = 0; i < 100; i++) {
1155                         hw->phy.ops.read_reg_mdi(hw,
1156                                                 IXGBE_MDIO_PMA_PMD_SDA_SCL_STAT,
1157                                                 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
1158                                                 &sfp_stat);
1159                         sfp_stat = sfp_stat & IXGBE_I2C_EEPROM_STATUS_MASK;
1160                         if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_IN_PROGRESS)
1161                                 break;
1162                         msec_delay(10);
1163                 }
1164
1165                 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_PASS) {
1166                         DEBUGOUT("EEPROM read did not pass.\n");
1167                         status = IXGBE_ERR_SFP_NOT_PRESENT;
1168                         goto out;
1169                 }
1170
1171                 /* Read data */
1172                 hw->phy.ops.read_reg_mdi(hw, IXGBE_MDIO_PMA_PMD_SDA_SCL_DATA,
1173                                         IXGBE_MDIO_PMA_PMD_DEV_TYPE, &sfp_data);
1174
1175                 *eeprom_data = (u8)(sfp_data >> 8);
1176         } else {
1177                 status = IXGBE_ERR_PHY;
1178         }
1179
1180 out:
1181         hw->mac.ops.release_swfw_sync(hw, gssr);
1182         return status;
1183 }
1184
1185 /**
1186  *  ixgbe_read_i2c_eeprom_82598 - Reads 8 bit word over I2C interface.
1187  *  @hw: pointer to hardware structure
1188  *  @byte_offset: EEPROM byte offset to read
1189  *  @eeprom_data: value read
1190  *
1191  *  Performs 8 byte read operation to SFP module's EEPROM over I2C interface.
1192  **/
1193 s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
1194                                 u8 *eeprom_data)
1195 {
1196         return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR,
1197                                         byte_offset, eeprom_data);
1198 }
1199
1200 /**
1201  *  ixgbe_read_i2c_sff8472_82598 - Reads 8 bit word over I2C interface.
1202  *  @hw: pointer to hardware structure
1203  *  @byte_offset: byte offset at address 0xA2
1204  *  @eeprom_data: value read
1205  *
1206  *  Performs 8 byte read operation to SFP module's SFF-8472 data over I2C
1207  **/
1208 STATIC s32 ixgbe_read_i2c_sff8472_82598(struct ixgbe_hw *hw, u8 byte_offset,
1209                                         u8 *sff8472_data)
1210 {
1211         return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR2,
1212                                         byte_offset, sff8472_data);
1213 }
1214
1215 /**
1216  *  ixgbe_get_supported_physical_layer_82598 - Returns physical layer type
1217  *  @hw: pointer to hardware structure
1218  *
1219  *  Determines physical layer capabilities of the current configuration.
1220  **/
1221 u32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
1222 {
1223         u32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
1224         u32 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
1225         u32 pma_pmd_10g = autoc & IXGBE_AUTOC_10G_PMA_PMD_MASK;
1226         u32 pma_pmd_1g = autoc & IXGBE_AUTOC_1G_PMA_PMD_MASK;
1227         u16 ext_ability = 0;
1228
1229         DEBUGFUNC("ixgbe_get_supported_physical_layer_82598");
1230
1231         hw->phy.ops.identify(hw);
1232
1233         /* Copper PHY must be checked before AUTOC LMS to determine correct
1234          * physical layer because 10GBase-T PHYs use LMS = KX4/KX */
1235         switch (hw->phy.type) {
1236         case ixgbe_phy_tn:
1237         case ixgbe_phy_cu_unknown:
1238                 hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_EXT_ABILITY,
1239                 IXGBE_MDIO_PMA_PMD_DEV_TYPE, &ext_ability);
1240                 if (ext_ability & IXGBE_MDIO_PHY_10GBASET_ABILITY)
1241                         physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_T;
1242                 if (ext_ability & IXGBE_MDIO_PHY_1000BASET_ABILITY)
1243                         physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_T;
1244                 if (ext_ability & IXGBE_MDIO_PHY_100BASETX_ABILITY)
1245                         physical_layer |= IXGBE_PHYSICAL_LAYER_100BASE_TX;
1246                 goto out;
1247         default:
1248                 break;
1249         }
1250
1251         switch (autoc & IXGBE_AUTOC_LMS_MASK) {
1252         case IXGBE_AUTOC_LMS_1G_AN:
1253         case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
1254                 if (pma_pmd_1g == IXGBE_AUTOC_1G_KX)
1255                         physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_KX;
1256                 else
1257                         physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_BX;
1258                 break;
1259         case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
1260                 if (pma_pmd_10g == IXGBE_AUTOC_10G_CX4)
1261                         physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_CX4;
1262                 else if (pma_pmd_10g == IXGBE_AUTOC_10G_KX4)
1263                         physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
1264                 else /* XAUI */
1265                         physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
1266                 break;
1267         case IXGBE_AUTOC_LMS_KX4_AN:
1268         case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
1269                 if (autoc & IXGBE_AUTOC_KX_SUPP)
1270                         physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_KX;
1271                 if (autoc & IXGBE_AUTOC_KX4_SUPP)
1272                         physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_KX4;
1273                 break;
1274         default:
1275                 break;
1276         }
1277
1278         if (hw->phy.type == ixgbe_phy_nl) {
1279                 hw->phy.ops.identify_sfp(hw);
1280
1281                 switch (hw->phy.sfp_type) {
1282                 case ixgbe_sfp_type_da_cu:
1283                         physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1284                         break;
1285                 case ixgbe_sfp_type_sr:
1286                         physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1287                         break;
1288                 case ixgbe_sfp_type_lr:
1289                         physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1290                         break;
1291                 default:
1292                         physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
1293                         break;
1294                 }
1295         }
1296
1297         switch (hw->device_id) {
1298         case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
1299                 physical_layer = IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU;
1300                 break;
1301         case IXGBE_DEV_ID_82598AF_DUAL_PORT:
1302         case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
1303         case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
1304                 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_SR;
1305                 break;
1306         case IXGBE_DEV_ID_82598EB_XF_LR:
1307                 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_LR;
1308                 break;
1309         default:
1310                 break;
1311         }
1312
1313 out:
1314         return physical_layer;
1315 }
1316
1317 /**
1318  *  ixgbe_set_lan_id_multi_port_pcie_82598 - Set LAN id for PCIe multiple
1319  *  port devices.
1320  *  @hw: pointer to the HW structure
1321  *
1322  *  Calls common function and corrects issue with some single port devices
1323  *  that enable LAN1 but not LAN0.
1324  **/
1325 void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw)
1326 {
1327         struct ixgbe_bus_info *bus = &hw->bus;
1328         u16 pci_gen = 0;
1329         u16 pci_ctrl2 = 0;
1330
1331         DEBUGFUNC("ixgbe_set_lan_id_multi_port_pcie_82598");
1332
1333         ixgbe_set_lan_id_multi_port_pcie(hw);
1334
1335         /* check if LAN0 is disabled */
1336         hw->eeprom.ops.read(hw, IXGBE_PCIE_GENERAL_PTR, &pci_gen);
1337         if ((pci_gen != 0) && (pci_gen != 0xFFFF)) {
1338
1339                 hw->eeprom.ops.read(hw, pci_gen + IXGBE_PCIE_CTRL2, &pci_ctrl2);
1340
1341                 /* if LAN0 is completely disabled force function to 0 */
1342                 if ((pci_ctrl2 & IXGBE_PCIE_CTRL2_LAN_DISABLE) &&
1343                     !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DISABLE_SELECT) &&
1344                     !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DUMMY_ENABLE)) {
1345
1346                         bus->func = 0;
1347                 }
1348         }
1349 }
1350
1351 /**
1352  *  ixgbe_enable_relaxed_ordering_82598 - enable relaxed ordering
1353  *  @hw: pointer to hardware structure
1354  *
1355  **/
1356 void ixgbe_enable_relaxed_ordering_82598(struct ixgbe_hw *hw)
1357 {
1358         u32 regval;
1359         u32 i;
1360
1361         DEBUGFUNC("ixgbe_enable_relaxed_ordering_82598");
1362
1363         /* Enable relaxed ordering */
1364         for (i = 0; ((i < hw->mac.max_tx_queues) &&
1365              (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
1366                 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i));
1367                 regval |= IXGBE_DCA_TXCTRL_DESC_WRO_EN;
1368                 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(i), regval);
1369         }
1370
1371         for (i = 0; ((i < hw->mac.max_rx_queues) &&
1372              (i < IXGBE_DCA_MAX_QUEUES_82598)); i++) {
1373                 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
1374                 regval |= IXGBE_DCA_RXCTRL_DATA_WRO_EN |
1375                           IXGBE_DCA_RXCTRL_HEAD_WRO_EN;
1376                 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
1377         }
1378
1379 }
1380
1381 /**
1382  * ixgbe_set_rxpba_82598 - Initialize RX packet buffer
1383  * @hw: pointer to hardware structure
1384  * @num_pb: number of packet buffers to allocate
1385  * @headroom: reserve n KB of headroom
1386  * @strategy: packet buffer allocation strategy
1387  **/
1388 STATIC void ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb,
1389                                   u32 headroom, int strategy)
1390 {
1391         u32 rxpktsize = IXGBE_RXPBSIZE_64KB;
1392         u8 i = 0;
1393         UNREFERENCED_1PARAMETER(headroom);
1394
1395         if (!num_pb)
1396                 return;
1397
1398         /* Setup Rx packet buffer sizes */
1399         switch (strategy) {
1400         case PBA_STRATEGY_WEIGHTED:
1401                 /* Setup the first four at 80KB */
1402                 rxpktsize = IXGBE_RXPBSIZE_80KB;
1403                 for (; i < 4; i++)
1404                         IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1405                 /* Setup the last four at 48KB...don't re-init i */
1406                 rxpktsize = IXGBE_RXPBSIZE_48KB;
1407                 /* Fall Through */
1408         case PBA_STRATEGY_EQUAL:
1409         default:
1410                 /* Divide the remaining Rx packet buffer evenly among the TCs */
1411                 for (; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1412                         IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1413                 break;
1414         }
1415
1416         /* Setup Tx packet buffer sizes */
1417         for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1418                 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), IXGBE_TXPBSIZE_40KB);
1419 }
1420
1421 /**
1422  *  ixgbe_enable_rx_dma_82598 - Enable the Rx DMA unit
1423  *  @hw: pointer to hardware structure
1424  *  @regval: register value to write to RXCTRL
1425  *
1426  *  Enables the Rx DMA unit
1427  **/
1428 s32 ixgbe_enable_rx_dma_82598(struct ixgbe_hw *hw, u32 regval)
1429 {
1430         DEBUGFUNC("ixgbe_enable_rx_dma_82598");
1431
1432         IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, regval);
1433
1434         return IXGBE_SUCCESS;
1435 }