net/ixgbe/base: fix function comments about X550
[dpdk.git] / drivers / net / ixgbe / base / ixgbe_x550.c
1 /*******************************************************************************
2
3 Copyright (c) 2001-2015, 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_x550.h"
35 #include "ixgbe_x540.h"
36 #include "ixgbe_type.h"
37 #include "ixgbe_api.h"
38 #include "ixgbe_common.h"
39 #include "ixgbe_phy.h"
40
41 STATIC s32 ixgbe_setup_ixfi_x550em(struct ixgbe_hw *hw, ixgbe_link_speed *speed);
42 STATIC s32 ixgbe_acquire_swfw_sync_X550a(struct ixgbe_hw *, u32 mask);
43 STATIC void ixgbe_release_swfw_sync_X550a(struct ixgbe_hw *, u32 mask);
44
45 /**
46  *  ixgbe_init_ops_X550 - Inits func ptrs and MAC type
47  *  @hw: pointer to hardware structure
48  *
49  *  Initialize the function pointers and assign the MAC type for X550.
50  *  Does not touch the hardware.
51  **/
52 s32 ixgbe_init_ops_X550(struct ixgbe_hw *hw)
53 {
54         struct ixgbe_mac_info *mac = &hw->mac;
55         struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
56         s32 ret_val;
57
58         DEBUGFUNC("ixgbe_init_ops_X550");
59
60         ret_val = ixgbe_init_ops_X540(hw);
61         mac->ops.dmac_config = ixgbe_dmac_config_X550;
62         mac->ops.dmac_config_tcs = ixgbe_dmac_config_tcs_X550;
63         mac->ops.dmac_update_tcs = ixgbe_dmac_update_tcs_X550;
64         mac->ops.setup_eee = ixgbe_setup_eee_X550;
65         mac->ops.set_source_address_pruning =
66                         ixgbe_set_source_address_pruning_X550;
67         mac->ops.set_ethertype_anti_spoofing =
68                         ixgbe_set_ethertype_anti_spoofing_X550;
69
70         mac->ops.get_rtrup2tc = ixgbe_dcb_get_rtrup2tc_generic;
71         eeprom->ops.init_params = ixgbe_init_eeprom_params_X550;
72         eeprom->ops.calc_checksum = ixgbe_calc_eeprom_checksum_X550;
73         eeprom->ops.read = ixgbe_read_ee_hostif_X550;
74         eeprom->ops.read_buffer = ixgbe_read_ee_hostif_buffer_X550;
75         eeprom->ops.write = ixgbe_write_ee_hostif_X550;
76         eeprom->ops.write_buffer = ixgbe_write_ee_hostif_buffer_X550;
77         eeprom->ops.update_checksum = ixgbe_update_eeprom_checksum_X550;
78         eeprom->ops.validate_checksum = ixgbe_validate_eeprom_checksum_X550;
79
80         mac->ops.disable_mdd = ixgbe_disable_mdd_X550;
81         mac->ops.enable_mdd = ixgbe_enable_mdd_X550;
82         mac->ops.mdd_event = ixgbe_mdd_event_X550;
83         mac->ops.restore_mdd_vf = ixgbe_restore_mdd_vf_X550;
84         mac->ops.disable_rx = ixgbe_disable_rx_x550;
85         switch (hw->device_id) {
86         case IXGBE_DEV_ID_X550EM_X_10G_T:
87         case IXGBE_DEV_ID_X550EM_A_10G_T:
88                 hw->mac.ops.led_on = ixgbe_led_on_t_X550em;
89                 hw->mac.ops.led_off = ixgbe_led_off_t_X550em;
90                 break;
91         default:
92                 break;
93         }
94         return ret_val;
95 }
96
97 /**
98  * ixgbe_read_cs4227 - Read CS4227 register
99  * @hw: pointer to hardware structure
100  * @reg: register number to write
101  * @value: pointer to receive value read
102  *
103  * Returns status code
104  **/
105 STATIC s32 ixgbe_read_cs4227(struct ixgbe_hw *hw, u16 reg, u16 *value)
106 {
107         return hw->link.ops.read_link_unlocked(hw, hw->link.addr, reg, value);
108 }
109
110 /**
111  * ixgbe_write_cs4227 - Write CS4227 register
112  * @hw: pointer to hardware structure
113  * @reg: register number to write
114  * @value: value to write to register
115  *
116  * Returns status code
117  **/
118 STATIC s32 ixgbe_write_cs4227(struct ixgbe_hw *hw, u16 reg, u16 value)
119 {
120         return hw->link.ops.write_link_unlocked(hw, hw->link.addr, reg, value);
121 }
122
123 /**
124  * ixgbe_read_pe - Read register from port expander
125  * @hw: pointer to hardware structure
126  * @reg: register number to read
127  * @value: pointer to receive read value
128  *
129  * Returns status code
130  **/
131 STATIC s32 ixgbe_read_pe(struct ixgbe_hw *hw, u8 reg, u8 *value)
132 {
133         s32 status;
134
135         status = ixgbe_read_i2c_byte_unlocked(hw, reg, IXGBE_PE, value);
136         if (status != IXGBE_SUCCESS)
137                 ERROR_REPORT2(IXGBE_ERROR_CAUTION,
138                               "port expander access failed with %d\n", status);
139         return status;
140 }
141
142 /**
143  * ixgbe_write_pe - Write register to port expander
144  * @hw: pointer to hardware structure
145  * @reg: register number to write
146  * @value: value to write
147  *
148  * Returns status code
149  **/
150 STATIC s32 ixgbe_write_pe(struct ixgbe_hw *hw, u8 reg, u8 value)
151 {
152         s32 status;
153
154         status = ixgbe_write_i2c_byte_unlocked(hw, reg, IXGBE_PE, value);
155         if (status != IXGBE_SUCCESS)
156                 ERROR_REPORT2(IXGBE_ERROR_CAUTION,
157                               "port expander access failed with %d\n", status);
158         return status;
159 }
160
161 /**
162  * ixgbe_reset_cs4227 - Reset CS4227 using port expander
163  * @hw: pointer to hardware structure
164  *
165  * This function assumes that the caller has acquired the proper semaphore.
166  * Returns error code
167  **/
168 STATIC s32 ixgbe_reset_cs4227(struct ixgbe_hw *hw)
169 {
170         s32 status;
171         u32 retry;
172         u16 value;
173         u8 reg;
174
175         /* Trigger hard reset. */
176         status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
177         if (status != IXGBE_SUCCESS)
178                 return status;
179         reg |= IXGBE_PE_BIT1;
180         status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
181         if (status != IXGBE_SUCCESS)
182                 return status;
183
184         status = ixgbe_read_pe(hw, IXGBE_PE_CONFIG, &reg);
185         if (status != IXGBE_SUCCESS)
186                 return status;
187         reg &= ~IXGBE_PE_BIT1;
188         status = ixgbe_write_pe(hw, IXGBE_PE_CONFIG, reg);
189         if (status != IXGBE_SUCCESS)
190                 return status;
191
192         status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
193         if (status != IXGBE_SUCCESS)
194                 return status;
195         reg &= ~IXGBE_PE_BIT1;
196         status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
197         if (status != IXGBE_SUCCESS)
198                 return status;
199
200         usec_delay(IXGBE_CS4227_RESET_HOLD);
201
202         status = ixgbe_read_pe(hw, IXGBE_PE_OUTPUT, &reg);
203         if (status != IXGBE_SUCCESS)
204                 return status;
205         reg |= IXGBE_PE_BIT1;
206         status = ixgbe_write_pe(hw, IXGBE_PE_OUTPUT, reg);
207         if (status != IXGBE_SUCCESS)
208                 return status;
209
210         /* Wait for the reset to complete. */
211         msec_delay(IXGBE_CS4227_RESET_DELAY);
212         for (retry = 0; retry < IXGBE_CS4227_RETRIES; retry++) {
213                 status = ixgbe_read_cs4227(hw, IXGBE_CS4227_EFUSE_STATUS,
214                                            &value);
215                 if (status == IXGBE_SUCCESS &&
216                     value == IXGBE_CS4227_EEPROM_LOAD_OK)
217                         break;
218                 msec_delay(IXGBE_CS4227_CHECK_DELAY);
219         }
220         if (retry == IXGBE_CS4227_RETRIES) {
221                 ERROR_REPORT1(IXGBE_ERROR_INVALID_STATE,
222                         "CS4227 reset did not complete.");
223                 return IXGBE_ERR_PHY;
224         }
225
226         status = ixgbe_read_cs4227(hw, IXGBE_CS4227_EEPROM_STATUS, &value);
227         if (status != IXGBE_SUCCESS ||
228             !(value & IXGBE_CS4227_EEPROM_LOAD_OK)) {
229                 ERROR_REPORT1(IXGBE_ERROR_INVALID_STATE,
230                         "CS4227 EEPROM did not load successfully.");
231                 return IXGBE_ERR_PHY;
232         }
233
234         return IXGBE_SUCCESS;
235 }
236
237 /**
238  * ixgbe_check_cs4227 - Check CS4227 and reset as needed
239  * @hw: pointer to hardware structure
240  **/
241 STATIC void ixgbe_check_cs4227(struct ixgbe_hw *hw)
242 {
243         s32 status = IXGBE_SUCCESS;
244         u32 swfw_mask = hw->phy.phy_semaphore_mask;
245         u16 value = 0;
246         u8 retry;
247
248         for (retry = 0; retry < IXGBE_CS4227_RETRIES; retry++) {
249                 status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
250                 if (status != IXGBE_SUCCESS) {
251                         ERROR_REPORT2(IXGBE_ERROR_CAUTION,
252                                 "semaphore failed with %d", status);
253                         msec_delay(IXGBE_CS4227_CHECK_DELAY);
254                         continue;
255                 }
256
257                 /* Get status of reset flow. */
258                 status = ixgbe_read_cs4227(hw, IXGBE_CS4227_SCRATCH, &value);
259
260                 if (status == IXGBE_SUCCESS &&
261                     value == IXGBE_CS4227_RESET_COMPLETE)
262                         goto out;
263
264                 if (status != IXGBE_SUCCESS ||
265                     value != IXGBE_CS4227_RESET_PENDING)
266                         break;
267
268                 /* Reset is pending. Wait and check again. */
269                 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
270                 msec_delay(IXGBE_CS4227_CHECK_DELAY);
271         }
272
273         /* If still pending, assume other instance failed. */
274         if (retry == IXGBE_CS4227_RETRIES) {
275                 status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
276                 if (status != IXGBE_SUCCESS) {
277                         ERROR_REPORT2(IXGBE_ERROR_CAUTION,
278                                       "semaphore failed with %d", status);
279                         return;
280                 }
281         }
282
283         /* Reset the CS4227. */
284         status = ixgbe_reset_cs4227(hw);
285         if (status != IXGBE_SUCCESS) {
286                 ERROR_REPORT2(IXGBE_ERROR_INVALID_STATE,
287                         "CS4227 reset failed: %d", status);
288                 goto out;
289         }
290
291         /* Reset takes so long, temporarily release semaphore in case the
292          * other driver instance is waiting for the reset indication.
293          */
294         ixgbe_write_cs4227(hw, IXGBE_CS4227_SCRATCH,
295                            IXGBE_CS4227_RESET_PENDING);
296         hw->mac.ops.release_swfw_sync(hw, swfw_mask);
297         msec_delay(10);
298         status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
299         if (status != IXGBE_SUCCESS) {
300                 ERROR_REPORT2(IXGBE_ERROR_CAUTION,
301                         "semaphore failed with %d", status);
302                 return;
303         }
304
305         /* Record completion for next time. */
306         status = ixgbe_write_cs4227(hw, IXGBE_CS4227_SCRATCH,
307                 IXGBE_CS4227_RESET_COMPLETE);
308
309 out:
310         hw->mac.ops.release_swfw_sync(hw, swfw_mask);
311         msec_delay(hw->eeprom.semaphore_delay);
312 }
313
314 /**
315  * ixgbe_setup_mux_ctl - Setup ESDP register for I2C mux control
316  * @hw: pointer to hardware structure
317  **/
318 STATIC void ixgbe_setup_mux_ctl(struct ixgbe_hw *hw)
319 {
320         u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
321
322         if (hw->bus.lan_id) {
323                 esdp &= ~(IXGBE_ESDP_SDP1_NATIVE | IXGBE_ESDP_SDP1);
324                 esdp |= IXGBE_ESDP_SDP1_DIR;
325         }
326         esdp &= ~(IXGBE_ESDP_SDP0_NATIVE | IXGBE_ESDP_SDP0_DIR);
327         IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp);
328         IXGBE_WRITE_FLUSH(hw);
329 }
330
331 /**
332  * ixgbe_read_phy_reg_mdi_22 - Read from a clause 22 PHY register without lock
333  * @hw: pointer to hardware structure
334  * @reg_addr: 32 bit address of PHY register to read
335  * @dev_type: always unused
336  * @phy_data: Pointer to read data from PHY register
337  */
338 STATIC s32 ixgbe_read_phy_reg_mdi_22(struct ixgbe_hw *hw, u32 reg_addr,
339                                      u32 dev_type, u16 *phy_data)
340 {
341         u32 i, data, command;
342         UNREFERENCED_1PARAMETER(dev_type);
343
344         /* Setup and write the read command */
345         command = (reg_addr << IXGBE_MSCA_DEV_TYPE_SHIFT) |
346                   (hw->phy.addr << IXGBE_MSCA_PHY_ADDR_SHIFT) |
347                   IXGBE_MSCA_OLD_PROTOCOL | IXGBE_MSCA_READ_AUTOINC |
348                   IXGBE_MSCA_MDI_COMMAND;
349
350         IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
351
352         /* Check every 10 usec to see if the access completed.
353          * The MDI Command bit will clear when the operation is
354          * complete
355          */
356         for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
357                 usec_delay(10);
358
359                 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
360                 if (!(command & IXGBE_MSCA_MDI_COMMAND))
361                         break;
362         }
363
364         if (command & IXGBE_MSCA_MDI_COMMAND) {
365                 ERROR_REPORT1(IXGBE_ERROR_POLLING,
366                               "PHY read command did not complete.\n");
367                 return IXGBE_ERR_PHY;
368         }
369
370         /* Read operation is complete.  Get the data from MSRWD */
371         data = IXGBE_READ_REG(hw, IXGBE_MSRWD);
372         data >>= IXGBE_MSRWD_READ_DATA_SHIFT;
373         *phy_data = (u16)data;
374
375         return IXGBE_SUCCESS;
376 }
377
378 /**
379  * ixgbe_write_phy_reg_mdi_22 - Write to a clause 22 PHY register without lock
380  * @hw: pointer to hardware structure
381  * @reg_addr: 32 bit PHY register to write
382  * @dev_type: always unused
383  * @phy_data: Data to write to the PHY register
384  */
385 STATIC s32 ixgbe_write_phy_reg_mdi_22(struct ixgbe_hw *hw, u32 reg_addr,
386                                       u32 dev_type, u16 phy_data)
387 {
388         u32 i, command;
389         UNREFERENCED_1PARAMETER(dev_type);
390
391         /* Put the data in the MDI single read and write data register*/
392         IXGBE_WRITE_REG(hw, IXGBE_MSRWD, (u32)phy_data);
393
394         /* Setup and write the write command */
395         command = (reg_addr << IXGBE_MSCA_DEV_TYPE_SHIFT) |
396                   (hw->phy.addr << IXGBE_MSCA_PHY_ADDR_SHIFT) |
397                   IXGBE_MSCA_OLD_PROTOCOL | IXGBE_MSCA_WRITE |
398                   IXGBE_MSCA_MDI_COMMAND;
399
400         IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
401
402         /* Check every 10 usec to see if the access completed.
403          * The MDI Command bit will clear when the operation is
404          * complete
405          */
406         for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
407                 usec_delay(10);
408
409                 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
410                 if (!(command & IXGBE_MSCA_MDI_COMMAND))
411                         break;
412         }
413
414         if (command & IXGBE_MSCA_MDI_COMMAND) {
415                 ERROR_REPORT1(IXGBE_ERROR_POLLING,
416                               "PHY write cmd didn't complete\n");
417                 return IXGBE_ERR_PHY;
418         }
419
420         return IXGBE_SUCCESS;
421 }
422
423 /**
424  * ixgbe_identify_phy_x550em - Get PHY type based on device id
425  * @hw: pointer to hardware structure
426  *
427  * Returns error code
428  */
429 STATIC s32 ixgbe_identify_phy_x550em(struct ixgbe_hw *hw)
430 {
431         switch (hw->device_id) {
432         case IXGBE_DEV_ID_X550EM_A_SFP:
433                 hw->phy.ops.read_reg = ixgbe_read_phy_reg_x550a;
434                 hw->phy.ops.write_reg = ixgbe_write_phy_reg_x550a;
435                 if (hw->bus.lan_id)
436                         hw->phy.phy_semaphore_mask |= IXGBE_GSSR_PHY1_SM;
437                 else
438                         hw->phy.phy_semaphore_mask |= IXGBE_GSSR_PHY0_SM;
439                 return ixgbe_identify_module_generic(hw);
440         case IXGBE_DEV_ID_X550EM_X_SFP:
441                 /* set up for CS4227 usage */
442                 hw->phy.phy_semaphore_mask = IXGBE_GSSR_SHARED_I2C_SM;
443                 ixgbe_setup_mux_ctl(hw);
444                 ixgbe_check_cs4227(hw);
445                 /* Fallthrough */
446
447         case IXGBE_DEV_ID_X550EM_A_SFP_N:
448                 return ixgbe_identify_module_generic(hw);
449                 break;
450         case IXGBE_DEV_ID_X550EM_X_KX4:
451                 hw->phy.type = ixgbe_phy_x550em_kx4;
452                 break;
453         case IXGBE_DEV_ID_X550EM_X_KR:
454         case IXGBE_DEV_ID_X550EM_A_KR:
455         case IXGBE_DEV_ID_X550EM_A_KR_L:
456                 hw->phy.type = ixgbe_phy_x550em_kr;
457                 break;
458         case IXGBE_DEV_ID_X550EM_A_10G_T:
459                 hw->phy.ops.read_reg = ixgbe_read_phy_reg_x550a;
460                 hw->phy.ops.write_reg = ixgbe_write_phy_reg_x550a;
461        /* Fallthrough to ixgbe_identify_phy_generic */
462         case IXGBE_DEV_ID_X550EM_A_1G_T:
463         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
464         case IXGBE_DEV_ID_X550EM_X_1G_T:
465         case IXGBE_DEV_ID_X550EM_X_10G_T:
466                 return ixgbe_identify_phy_generic(hw);
467         default:
468                 break;
469         }
470         return IXGBE_SUCCESS;
471 }
472
473 STATIC s32 ixgbe_read_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr,
474                                      u32 device_type, u16 *phy_data)
475 {
476         UNREFERENCED_4PARAMETER(*hw, reg_addr, device_type, *phy_data);
477         return IXGBE_NOT_IMPLEMENTED;
478 }
479
480 STATIC s32 ixgbe_write_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr,
481                                       u32 device_type, u16 phy_data)
482 {
483         UNREFERENCED_4PARAMETER(*hw, reg_addr, device_type, phy_data);
484         return IXGBE_NOT_IMPLEMENTED;
485 }
486
487 /**
488  * ixgbe_read_i2c_combined_generic - Perform I2C read combined operation
489  * @hw: pointer to the hardware structure
490  * @addr: I2C bus address to read from
491  * @reg: I2C device register to read from
492  * @val: pointer to location to receive read value
493  *
494  * Returns an error code on error.
495  **/
496 STATIC s32 ixgbe_read_i2c_combined_generic(struct ixgbe_hw *hw, u8 addr,
497                                            u16 reg, u16 *val)
498 {
499         return ixgbe_read_i2c_combined_generic_int(hw, addr, reg, val, true);
500 }
501
502 /**
503  * ixgbe_read_i2c_combined_generic_unlocked - Do I2C read combined operation
504  * @hw: pointer to the hardware structure
505  * @addr: I2C bus address to read from
506  * @reg: I2C device register to read from
507  * @val: pointer to location to receive read value
508  *
509  * Returns an error code on error.
510  **/
511 STATIC s32
512 ixgbe_read_i2c_combined_generic_unlocked(struct ixgbe_hw *hw, u8 addr,
513                                          u16 reg, u16 *val)
514 {
515         return ixgbe_read_i2c_combined_generic_int(hw, addr, reg, val, false);
516 }
517
518 /**
519  * ixgbe_write_i2c_combined_generic - Perform I2C write combined operation
520  * @hw: pointer to the hardware structure
521  * @addr: I2C bus address to write to
522  * @reg: I2C device register to write to
523  * @val: value to write
524  *
525  * Returns an error code on error.
526  **/
527 STATIC s32 ixgbe_write_i2c_combined_generic(struct ixgbe_hw *hw,
528                                             u8 addr, u16 reg, u16 val)
529 {
530         return ixgbe_write_i2c_combined_generic_int(hw, addr, reg, val, true);
531 }
532
533 /**
534  * ixgbe_write_i2c_combined_generic_unlocked - Do I2C write combined operation
535  * @hw: pointer to the hardware structure
536  * @addr: I2C bus address to write to
537  * @reg: I2C device register to write to
538  * @val: value to write
539  *
540  * Returns an error code on error.
541  **/
542 STATIC s32
543 ixgbe_write_i2c_combined_generic_unlocked(struct ixgbe_hw *hw,
544                                           u8 addr, u16 reg, u16 val)
545 {
546         return ixgbe_write_i2c_combined_generic_int(hw, addr, reg, val, false);
547 }
548
549 /**
550 *  ixgbe_init_ops_X550EM - Inits func ptrs and MAC type
551 *  @hw: pointer to hardware structure
552 *
553 *  Initialize the function pointers and for MAC type X550EM.
554 *  Does not touch the hardware.
555 **/
556 s32 ixgbe_init_ops_X550EM(struct ixgbe_hw *hw)
557 {
558         struct ixgbe_mac_info *mac = &hw->mac;
559         struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
560         struct ixgbe_phy_info *phy = &hw->phy;
561         s32 ret_val;
562
563         DEBUGFUNC("ixgbe_init_ops_X550EM");
564
565         /* Similar to X550 so start there. */
566         ret_val = ixgbe_init_ops_X550(hw);
567
568         /* Since this function eventually calls
569          * ixgbe_init_ops_540 by design, we are setting
570          * the pointers to NULL explicitly here to overwrite
571          * the values being set in the x540 function.
572          */
573         /* Thermal sensor not supported in x550EM */
574         mac->ops.get_thermal_sensor_data = NULL;
575         mac->ops.init_thermal_sensor_thresh = NULL;
576         mac->thermal_sensor_enabled = false;
577
578         /* FCOE not supported in x550EM */
579         mac->ops.get_san_mac_addr = NULL;
580         mac->ops.set_san_mac_addr = NULL;
581         mac->ops.get_wwn_prefix = NULL;
582         mac->ops.get_fcoe_boot_status = NULL;
583
584         /* IPsec not supported in x550EM */
585         mac->ops.disable_sec_rx_path = NULL;
586         mac->ops.enable_sec_rx_path = NULL;
587
588         /* AUTOC register is not present in x550EM. */
589         mac->ops.prot_autoc_read = NULL;
590         mac->ops.prot_autoc_write = NULL;
591
592         /* X550EM bus type is internal*/
593         hw->bus.type = ixgbe_bus_type_internal;
594         mac->ops.get_bus_info = ixgbe_get_bus_info_X550em;
595
596
597         mac->ops.get_media_type = ixgbe_get_media_type_X550em;
598         mac->ops.setup_sfp = ixgbe_setup_sfp_modules_X550em;
599         mac->ops.get_link_capabilities = ixgbe_get_link_capabilities_X550em;
600         mac->ops.reset_hw = ixgbe_reset_hw_X550em;
601         mac->ops.get_supported_physical_layer =
602                                     ixgbe_get_supported_physical_layer_X550em;
603
604         if (mac->ops.get_media_type(hw) == ixgbe_media_type_copper)
605                 mac->ops.setup_fc = ixgbe_setup_fc_generic;
606         else
607                 mac->ops.setup_fc = ixgbe_setup_fc_X550em;
608
609         switch (hw->device_id) {
610         case IXGBE_DEV_ID_X550EM_X_KR:
611         case IXGBE_DEV_ID_X550EM_A_KR:
612         case IXGBE_DEV_ID_X550EM_A_KR_L:
613                 break;
614         default:
615                 mac->ops.setup_eee = NULL;
616         }
617
618         /* PHY */
619         phy->ops.init = ixgbe_init_phy_ops_X550em;
620         phy->ops.identify = ixgbe_identify_phy_x550em;
621         if (mac->ops.get_media_type(hw) != ixgbe_media_type_copper)
622                 phy->ops.set_phy_power = NULL;
623
624
625         /* EEPROM */
626         eeprom->ops.init_params = ixgbe_init_eeprom_params_X540;
627         eeprom->ops.read = ixgbe_read_ee_hostif_X550;
628         eeprom->ops.read_buffer = ixgbe_read_ee_hostif_buffer_X550;
629         eeprom->ops.write = ixgbe_write_ee_hostif_X550;
630         eeprom->ops.write_buffer = ixgbe_write_ee_hostif_buffer_X550;
631         eeprom->ops.update_checksum = ixgbe_update_eeprom_checksum_X550;
632         eeprom->ops.validate_checksum = ixgbe_validate_eeprom_checksum_X550;
633         eeprom->ops.calc_checksum = ixgbe_calc_eeprom_checksum_X550;
634
635         return ret_val;
636 }
637
638 /**
639 *  ixgbe_init_ops_X550EM_a - Inits func ptrs and MAC type
640 *  @hw: pointer to hardware structure
641 *
642 *  Initialize the function pointers and for MAC type X550EM_a.
643 *  Does not touch the hardware.
644 **/
645 s32 ixgbe_init_ops_X550EM_a(struct ixgbe_hw *hw)
646 {
647         struct ixgbe_mac_info *mac = &hw->mac;
648         s32 ret_val;
649
650         DEBUGFUNC("ixgbe_init_ops_X550EM_a");
651
652         /* Start with generic X550EM init */
653         ret_val = ixgbe_init_ops_X550EM(hw);
654
655         mac->ops.read_iosf_sb_reg = ixgbe_read_iosf_sb_reg_x550;
656         mac->ops.write_iosf_sb_reg = ixgbe_write_iosf_sb_reg_x550;
657         mac->ops.acquire_swfw_sync = ixgbe_acquire_swfw_sync_X550a;
658         mac->ops.release_swfw_sync = ixgbe_release_swfw_sync_X550a;
659
660         switch (mac->ops.get_media_type(hw)) {
661         case ixgbe_media_type_fiber:
662                 mac->ops.setup_fc = ixgbe_setup_fc_fiber_x550em_a;
663                 mac->ops.fc_autoneg = ixgbe_fc_autoneg_fiber_x550em_a;
664                 break;
665         case ixgbe_media_type_backplane:
666                 mac->ops.fc_autoneg = ixgbe_fc_autoneg_backplane_x550em_a;
667                 mac->ops.setup_fc = ixgbe_setup_fc_backplane_x550em_a;
668                 break;
669         default:
670                 break;
671         }
672
673         return ret_val;
674 }
675
676 /**
677 *  ixgbe_init_ops_X550EM_x - Inits func ptrs and MAC type
678 *  @hw: pointer to hardware structure
679 *
680 *  Initialize the function pointers and for MAC type X550EM_x.
681 *  Does not touch the hardware.
682 **/
683 s32 ixgbe_init_ops_X550EM_x(struct ixgbe_hw *hw)
684 {
685         struct ixgbe_mac_info *mac = &hw->mac;
686         struct ixgbe_link_info *link = &hw->link;
687         s32 ret_val;
688
689         DEBUGFUNC("ixgbe_init_ops_X550EM_x");
690
691         /* Start with generic X550EM init */
692         ret_val = ixgbe_init_ops_X550EM(hw);
693
694         mac->ops.read_iosf_sb_reg = ixgbe_read_iosf_sb_reg_x550;
695         mac->ops.write_iosf_sb_reg = ixgbe_write_iosf_sb_reg_x550;
696         mac->ops.acquire_swfw_sync = ixgbe_acquire_swfw_sync_X550em;
697         mac->ops.release_swfw_sync = ixgbe_release_swfw_sync_X550em;
698         link->ops.read_link = ixgbe_read_i2c_combined_generic;
699         link->ops.read_link_unlocked = ixgbe_read_i2c_combined_generic_unlocked;
700         link->ops.write_link = ixgbe_write_i2c_combined_generic;
701         link->ops.write_link_unlocked =
702                                       ixgbe_write_i2c_combined_generic_unlocked;
703         link->addr = IXGBE_CS4227;
704
705         return ret_val;
706 }
707
708 /**
709  *  ixgbe_dmac_config_X550
710  *  @hw: pointer to hardware structure
711  *
712  *  Configure DMA coalescing. If enabling dmac, dmac is activated.
713  *  When disabling dmac, dmac enable dmac bit is cleared.
714  **/
715 s32 ixgbe_dmac_config_X550(struct ixgbe_hw *hw)
716 {
717         u32 reg, high_pri_tc;
718
719         DEBUGFUNC("ixgbe_dmac_config_X550");
720
721         /* Disable DMA coalescing before configuring */
722         reg = IXGBE_READ_REG(hw, IXGBE_DMACR);
723         reg &= ~IXGBE_DMACR_DMAC_EN;
724         IXGBE_WRITE_REG(hw, IXGBE_DMACR, reg);
725
726         /* Disable DMA Coalescing if the watchdog timer is 0 */
727         if (!hw->mac.dmac_config.watchdog_timer)
728                 goto out;
729
730         ixgbe_dmac_config_tcs_X550(hw);
731
732         /* Configure DMA Coalescing Control Register */
733         reg = IXGBE_READ_REG(hw, IXGBE_DMACR);
734
735         /* Set the watchdog timer in units of 40.96 usec */
736         reg &= ~IXGBE_DMACR_DMACWT_MASK;
737         reg |= (hw->mac.dmac_config.watchdog_timer * 100) / 4096;
738
739         reg &= ~IXGBE_DMACR_HIGH_PRI_TC_MASK;
740         /* If fcoe is enabled, set high priority traffic class */
741         if (hw->mac.dmac_config.fcoe_en) {
742                 high_pri_tc = 1 << hw->mac.dmac_config.fcoe_tc;
743                 reg |= ((high_pri_tc << IXGBE_DMACR_HIGH_PRI_TC_SHIFT) &
744                         IXGBE_DMACR_HIGH_PRI_TC_MASK);
745         }
746         reg |= IXGBE_DMACR_EN_MNG_IND;
747
748         /* Enable DMA coalescing after configuration */
749         reg |= IXGBE_DMACR_DMAC_EN;
750         IXGBE_WRITE_REG(hw, IXGBE_DMACR, reg);
751
752 out:
753         return IXGBE_SUCCESS;
754 }
755
756 /**
757  *  ixgbe_dmac_config_tcs_X550
758  *  @hw: pointer to hardware structure
759  *
760  *  Configure DMA coalescing threshold per TC. The dmac enable bit must
761  *  be cleared before configuring.
762  **/
763 s32 ixgbe_dmac_config_tcs_X550(struct ixgbe_hw *hw)
764 {
765         u32 tc, reg, pb_headroom, rx_pb_size, maxframe_size_kb;
766
767         DEBUGFUNC("ixgbe_dmac_config_tcs_X550");
768
769         /* Configure DMA coalescing enabled */
770         switch (hw->mac.dmac_config.link_speed) {
771         case IXGBE_LINK_SPEED_10_FULL:
772         case IXGBE_LINK_SPEED_100_FULL:
773                 pb_headroom = IXGBE_DMACRXT_100M;
774                 break;
775         case IXGBE_LINK_SPEED_1GB_FULL:
776                 pb_headroom = IXGBE_DMACRXT_1G;
777                 break;
778         default:
779                 pb_headroom = IXGBE_DMACRXT_10G;
780                 break;
781         }
782
783         maxframe_size_kb = ((IXGBE_READ_REG(hw, IXGBE_MAXFRS) >>
784                              IXGBE_MHADD_MFS_SHIFT) / 1024);
785
786         /* Set the per Rx packet buffer receive threshold */
787         for (tc = 0; tc < IXGBE_DCB_MAX_TRAFFIC_CLASS; tc++) {
788                 reg = IXGBE_READ_REG(hw, IXGBE_DMCTH(tc));
789                 reg &= ~IXGBE_DMCTH_DMACRXT_MASK;
790
791                 if (tc < hw->mac.dmac_config.num_tcs) {
792                         /* Get Rx PB size */
793                         rx_pb_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc));
794                         rx_pb_size = (rx_pb_size & IXGBE_RXPBSIZE_MASK) >>
795                                 IXGBE_RXPBSIZE_SHIFT;
796
797                         /* Calculate receive buffer threshold in kilobytes */
798                         if (rx_pb_size > pb_headroom)
799                                 rx_pb_size = rx_pb_size - pb_headroom;
800                         else
801                                 rx_pb_size = 0;
802
803                         /* Minimum of MFS shall be set for DMCTH */
804                         reg |= (rx_pb_size > maxframe_size_kb) ?
805                                 rx_pb_size : maxframe_size_kb;
806                 }
807                 IXGBE_WRITE_REG(hw, IXGBE_DMCTH(tc), reg);
808         }
809         return IXGBE_SUCCESS;
810 }
811
812 /**
813  *  ixgbe_dmac_update_tcs_X550
814  *  @hw: pointer to hardware structure
815  *
816  *  Disables dmac, updates per TC settings, and then enables dmac.
817  **/
818 s32 ixgbe_dmac_update_tcs_X550(struct ixgbe_hw *hw)
819 {
820         u32 reg;
821
822         DEBUGFUNC("ixgbe_dmac_update_tcs_X550");
823
824         /* Disable DMA coalescing before configuring */
825         reg = IXGBE_READ_REG(hw, IXGBE_DMACR);
826         reg &= ~IXGBE_DMACR_DMAC_EN;
827         IXGBE_WRITE_REG(hw, IXGBE_DMACR, reg);
828
829         ixgbe_dmac_config_tcs_X550(hw);
830
831         /* Enable DMA coalescing after configuration */
832         reg = IXGBE_READ_REG(hw, IXGBE_DMACR);
833         reg |= IXGBE_DMACR_DMAC_EN;
834         IXGBE_WRITE_REG(hw, IXGBE_DMACR, reg);
835
836         return IXGBE_SUCCESS;
837 }
838
839 /**
840  *  ixgbe_init_eeprom_params_X550 - Initialize EEPROM params
841  *  @hw: pointer to hardware structure
842  *
843  *  Initializes the EEPROM parameters ixgbe_eeprom_info within the
844  *  ixgbe_hw struct in order to set up EEPROM access.
845  **/
846 s32 ixgbe_init_eeprom_params_X550(struct ixgbe_hw *hw)
847 {
848         struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
849         u32 eec;
850         u16 eeprom_size;
851
852         DEBUGFUNC("ixgbe_init_eeprom_params_X550");
853
854         if (eeprom->type == ixgbe_eeprom_uninitialized) {
855                 eeprom->semaphore_delay = 10;
856                 eeprom->type = ixgbe_flash;
857
858                 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
859                 eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
860                                     IXGBE_EEC_SIZE_SHIFT);
861                 eeprom->word_size = 1 << (eeprom_size +
862                                           IXGBE_EEPROM_WORD_SIZE_SHIFT);
863
864                 DEBUGOUT2("Eeprom params: type = %d, size = %d\n",
865                           eeprom->type, eeprom->word_size);
866         }
867
868         return IXGBE_SUCCESS;
869 }
870
871 /**
872  * ixgbe_enable_eee_x550 - Enable EEE support
873  * @hw: pointer to hardware structure
874  */
875 STATIC s32 ixgbe_enable_eee_x550(struct ixgbe_hw *hw)
876 {
877         u16 autoneg_eee_reg;
878         u32 link_reg;
879         s32 status;
880
881         if (hw->mac.type == ixgbe_mac_X550) {
882                 /* Advertise EEE capability */
883                 hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
884                                      IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
885                                      &autoneg_eee_reg);
886
887                 autoneg_eee_reg |= (IXGBE_AUTO_NEG_10GBASE_EEE_ADVT |
888                                     IXGBE_AUTO_NEG_1000BASE_EEE_ADVT |
889                                     IXGBE_AUTO_NEG_100BASE_EEE_ADVT);
890
891                 hw->phy.ops.write_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
892                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
893                                       autoneg_eee_reg);
894                 return IXGBE_SUCCESS;
895         }
896
897         switch (hw->device_id) {
898         case IXGBE_DEV_ID_X550EM_X_KR:
899         case IXGBE_DEV_ID_X550EM_A_KR:
900         case IXGBE_DEV_ID_X550EM_A_KR_L:
901                 status = hw->mac.ops.read_iosf_sb_reg(hw,
902                                      IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
903                                      IXGBE_SB_IOSF_TARGET_KR_PHY, &link_reg);
904                 if (status != IXGBE_SUCCESS)
905                         return status;
906
907                 link_reg |= IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KR |
908                         IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KX;
909
910                 /* Don't advertise FEC capability when EEE enabled. */
911                 link_reg &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_FEC;
912
913                 status = hw->mac.ops.write_iosf_sb_reg(hw,
914                                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
915                                       IXGBE_SB_IOSF_TARGET_KR_PHY, link_reg);
916                 if (status != IXGBE_SUCCESS)
917                         return status;
918                 break;
919         default:
920                 break;
921         }
922
923         return IXGBE_SUCCESS;
924 }
925
926 /**
927  * ixgbe_disable_eee_x550 - Disable EEE support
928  * @hw: pointer to hardware structure
929  */
930 STATIC s32 ixgbe_disable_eee_x550(struct ixgbe_hw *hw)
931 {
932         u16 autoneg_eee_reg;
933         u32 link_reg;
934         s32 status;
935
936         if (hw->mac.type == ixgbe_mac_X550) {
937                 /* Disable advertised EEE capability */
938                 hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
939                                      IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
940                                      &autoneg_eee_reg);
941
942                 autoneg_eee_reg &= ~(IXGBE_AUTO_NEG_10GBASE_EEE_ADVT |
943                                      IXGBE_AUTO_NEG_1000BASE_EEE_ADVT |
944                                      IXGBE_AUTO_NEG_100BASE_EEE_ADVT);
945
946                 hw->phy.ops.write_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
947                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
948                                       autoneg_eee_reg);
949                 return IXGBE_SUCCESS;
950         }
951
952         switch (hw->device_id) {
953         case IXGBE_DEV_ID_X550EM_X_KR:
954         case IXGBE_DEV_ID_X550EM_A_KR:
955         case IXGBE_DEV_ID_X550EM_A_KR_L:
956                 status = hw->mac.ops.read_iosf_sb_reg(hw,
957                                      IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
958                                      IXGBE_SB_IOSF_TARGET_KR_PHY, &link_reg);
959                 if (status != IXGBE_SUCCESS)
960                         return status;
961
962                 link_reg &= ~(IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KR |
963                               IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KX);
964
965                 /* Advertise FEC capability when EEE is disabled. */
966                 link_reg |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_FEC;
967
968                 status = hw->mac.ops.write_iosf_sb_reg(hw,
969                                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
970                                       IXGBE_SB_IOSF_TARGET_KR_PHY, link_reg);
971                 if (status != IXGBE_SUCCESS)
972                         return status;
973                 break;
974         default:
975                 break;
976         }
977
978         return IXGBE_SUCCESS;
979 }
980
981 /**
982  *  ixgbe_setup_eee_X550 - Enable/disable EEE support
983  *  @hw: pointer to the HW structure
984  *  @enable_eee: boolean flag to enable EEE
985  *
986  *  Enable/disable EEE based on enable_eee flag.
987  *  Auto-negotiation must be started after BASE-T EEE bits in PHY register 7.3C
988  *  are modified.
989  *
990  **/
991 s32 ixgbe_setup_eee_X550(struct ixgbe_hw *hw, bool enable_eee)
992 {
993         s32 status;
994         u32 eeer;
995
996         DEBUGFUNC("ixgbe_setup_eee_X550");
997
998         eeer = IXGBE_READ_REG(hw, IXGBE_EEER);
999         /* Enable or disable EEE per flag */
1000         if (enable_eee) {
1001                 eeer |= (IXGBE_EEER_TX_LPI_EN | IXGBE_EEER_RX_LPI_EN);
1002
1003                 /* Not supported on first revision of X550EM_x. */
1004                 if ((hw->mac.type == ixgbe_mac_X550EM_x) &&
1005                     !(IXGBE_FUSES0_REV_MASK &
1006                       IXGBE_READ_REG(hw, IXGBE_FUSES0_GROUP(0))))
1007                         return IXGBE_SUCCESS;
1008                 status = ixgbe_enable_eee_x550(hw);
1009                 if (status)
1010                         return status;
1011         } else {
1012                 eeer &= ~(IXGBE_EEER_TX_LPI_EN | IXGBE_EEER_RX_LPI_EN);
1013
1014                 status = ixgbe_disable_eee_x550(hw);
1015                 if (status)
1016                         return status;
1017         }
1018         IXGBE_WRITE_REG(hw, IXGBE_EEER, eeer);
1019
1020         return IXGBE_SUCCESS;
1021 }
1022
1023 /**
1024  * ixgbe_set_source_address_pruning_X550 - Enable/Disbale source address pruning
1025  * @hw: pointer to hardware structure
1026  * @enable: enable or disable source address pruning
1027  * @pool: Rx pool to set source address pruning for
1028  **/
1029 void ixgbe_set_source_address_pruning_X550(struct ixgbe_hw *hw, bool enable,
1030                                            unsigned int pool)
1031 {
1032         u64 pfflp;
1033
1034         /* max rx pool is 63 */
1035         if (pool > 63)
1036                 return;
1037
1038         pfflp = (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPL);
1039         pfflp |= (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPH) << 32;
1040
1041         if (enable)
1042                 pfflp |= (1ULL << pool);
1043         else
1044                 pfflp &= ~(1ULL << pool);
1045
1046         IXGBE_WRITE_REG(hw, IXGBE_PFFLPL, (u32)pfflp);
1047         IXGBE_WRITE_REG(hw, IXGBE_PFFLPH, (u32)(pfflp >> 32));
1048 }
1049
1050 /**
1051  *  ixgbe_set_ethertype_anti_spoofing_X550 - Enable/Disable Ethertype anti-spoofing
1052  *  @hw: pointer to hardware structure
1053  *  @enable: enable or disable switch for Ethertype anti-spoofing
1054  *  @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
1055  *
1056  **/
1057 void ixgbe_set_ethertype_anti_spoofing_X550(struct ixgbe_hw *hw,
1058                 bool enable, int vf)
1059 {
1060         int vf_target_reg = vf >> 3;
1061         int vf_target_shift = vf % 8 + IXGBE_SPOOF_ETHERTYPEAS_SHIFT;
1062         u32 pfvfspoof;
1063
1064         DEBUGFUNC("ixgbe_set_ethertype_anti_spoofing_X550");
1065
1066         pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1067         if (enable)
1068                 pfvfspoof |= (1 << vf_target_shift);
1069         else
1070                 pfvfspoof &= ~(1 << vf_target_shift);
1071
1072         IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
1073 }
1074
1075 /**
1076  * ixgbe_iosf_wait - Wait for IOSF command completion
1077  * @hw: pointer to hardware structure
1078  * @ctrl: pointer to location to receive final IOSF control value
1079  *
1080  * Returns failing status on timeout
1081  *
1082  * Note: ctrl can be NULL if the IOSF control register value is not needed
1083  **/
1084 STATIC s32 ixgbe_iosf_wait(struct ixgbe_hw *hw, u32 *ctrl)
1085 {
1086         u32 i, command = 0;
1087
1088         /* Check every 10 usec to see if the address cycle completed.
1089          * The SB IOSF BUSY bit will clear when the operation is
1090          * complete
1091          */
1092         for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
1093                 command = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL);
1094                 if ((command & IXGBE_SB_IOSF_CTRL_BUSY) == 0)
1095                         break;
1096                 usec_delay(10);
1097         }
1098         if (ctrl)
1099                 *ctrl = command;
1100         if (i == IXGBE_MDIO_COMMAND_TIMEOUT) {
1101                 ERROR_REPORT1(IXGBE_ERROR_POLLING, "Wait timed out\n");
1102                 return IXGBE_ERR_PHY;
1103         }
1104
1105         return IXGBE_SUCCESS;
1106 }
1107
1108 /**
1109  *  ixgbe_write_iosf_sb_reg_x550 - Writes a value to specified register
1110  *  of the IOSF device
1111  *  @hw: pointer to hardware structure
1112  *  @reg_addr: 32 bit PHY register to write
1113  *  @device_type: 3 bit device type
1114  *  @data: Data to write to the register
1115  **/
1116 s32 ixgbe_write_iosf_sb_reg_x550(struct ixgbe_hw *hw, u32 reg_addr,
1117                             u32 device_type, u32 data)
1118 {
1119         u32 gssr = IXGBE_GSSR_PHY1_SM | IXGBE_GSSR_PHY0_SM;
1120         u32 command, error;
1121         s32 ret;
1122
1123         ret = ixgbe_acquire_swfw_semaphore(hw, gssr);
1124         if (ret != IXGBE_SUCCESS)
1125                 return ret;
1126
1127         ret = ixgbe_iosf_wait(hw, NULL);
1128         if (ret != IXGBE_SUCCESS)
1129                 goto out;
1130
1131         command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
1132                    (device_type << IXGBE_SB_IOSF_CTRL_TARGET_SELECT_SHIFT));
1133
1134         /* Write IOSF control register */
1135         IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
1136
1137         /* Write IOSF data register */
1138         IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_DATA, data);
1139
1140         ret = ixgbe_iosf_wait(hw, &command);
1141
1142         if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
1143                 error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >>
1144                          IXGBE_SB_IOSF_CTRL_CMPL_ERR_SHIFT;
1145                 ERROR_REPORT2(IXGBE_ERROR_POLLING,
1146                               "Failed to write, error %x\n", error);
1147                 ret = IXGBE_ERR_PHY;
1148         }
1149
1150 out:
1151         ixgbe_release_swfw_semaphore(hw, gssr);
1152         return ret;
1153 }
1154
1155 /**
1156  *  ixgbe_read_iosf_sb_reg_x550 - Reads specified register of the IOSF device
1157  *  @hw: pointer to hardware structure
1158  *  @reg_addr: 32 bit PHY register to write
1159  *  @device_type: 3 bit device type
1160  *  @data: Pointer to read data from the register
1161  **/
1162 s32 ixgbe_read_iosf_sb_reg_x550(struct ixgbe_hw *hw, u32 reg_addr,
1163                            u32 device_type, u32 *data)
1164 {
1165         u32 gssr = IXGBE_GSSR_PHY1_SM | IXGBE_GSSR_PHY0_SM;
1166         u32 command, error;
1167         s32 ret;
1168
1169         ret = ixgbe_acquire_swfw_semaphore(hw, gssr);
1170         if (ret != IXGBE_SUCCESS)
1171                 return ret;
1172
1173         ret = ixgbe_iosf_wait(hw, NULL);
1174         if (ret != IXGBE_SUCCESS)
1175                 goto out;
1176
1177         command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
1178                    (device_type << IXGBE_SB_IOSF_CTRL_TARGET_SELECT_SHIFT));
1179
1180         /* Write IOSF control register */
1181         IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
1182
1183         ret = ixgbe_iosf_wait(hw, &command);
1184
1185         if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
1186                 error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >>
1187                          IXGBE_SB_IOSF_CTRL_CMPL_ERR_SHIFT;
1188                 ERROR_REPORT2(IXGBE_ERROR_POLLING,
1189                                 "Failed to read, error %x\n", error);
1190                 ret = IXGBE_ERR_PHY;
1191         }
1192
1193         if (ret == IXGBE_SUCCESS)
1194                 *data = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_DATA);
1195
1196 out:
1197         ixgbe_release_swfw_semaphore(hw, gssr);
1198         return ret;
1199 }
1200
1201 /**
1202  * ixgbe_get_phy_token - Get the token for shared phy access
1203  * @hw: Pointer to hardware structure
1204  */
1205
1206 s32 ixgbe_get_phy_token(struct ixgbe_hw *hw)
1207 {
1208         struct ixgbe_hic_phy_token_req token_cmd;
1209         s32 status;
1210
1211         token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
1212         token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
1213         token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
1214         token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1215         token_cmd.port_number = hw->bus.lan_id;
1216         token_cmd.command_type = FW_PHY_TOKEN_REQ;
1217         token_cmd.pad = 0;
1218         status = ixgbe_host_interface_command(hw, (u32 *)&token_cmd,
1219                                               sizeof(token_cmd),
1220                                               IXGBE_HI_COMMAND_TIMEOUT,
1221                                               true);
1222         if (status)
1223                 return status;
1224         if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
1225                 return IXGBE_SUCCESS;
1226         if (token_cmd.hdr.cmd_or_resp.ret_status != FW_PHY_TOKEN_RETRY)
1227                 return IXGBE_ERR_FW_RESP_INVALID;
1228
1229         return IXGBE_ERR_TOKEN_RETRY;
1230 }
1231
1232 /**
1233  * ixgbe_put_phy_token - Put the token for shared phy access
1234  * @hw: Pointer to hardware structure
1235  */
1236
1237 s32 ixgbe_put_phy_token(struct ixgbe_hw *hw)
1238 {
1239         struct ixgbe_hic_phy_token_req token_cmd;
1240         s32 status;
1241
1242         token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
1243         token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
1244         token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
1245         token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1246         token_cmd.port_number = hw->bus.lan_id;
1247         token_cmd.command_type = FW_PHY_TOKEN_REL;
1248         token_cmd.pad = 0;
1249         status = ixgbe_host_interface_command(hw, (u32 *)&token_cmd,
1250                                               sizeof(token_cmd),
1251                                               IXGBE_HI_COMMAND_TIMEOUT,
1252                                               true);
1253         if (status)
1254                 return status;
1255         if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
1256                 return IXGBE_SUCCESS;
1257
1258         DEBUGOUT("Put PHY Token host interface command failed");
1259         return IXGBE_ERR_FW_RESP_INVALID;
1260 }
1261
1262 /**
1263  *  ixgbe_write_iosf_sb_reg_x550a - Writes a value to specified register
1264  *  of the IOSF device
1265  *  @hw: pointer to hardware structure
1266  *  @reg_addr: 32 bit PHY register to write
1267  *  @device_type: 3 bit device type
1268  *  @data: Data to write to the register
1269  **/
1270 s32 ixgbe_write_iosf_sb_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
1271                                   u32 device_type, u32 data)
1272 {
1273         struct ixgbe_hic_internal_phy_req write_cmd;
1274         s32 status;
1275         UNREFERENCED_1PARAMETER(device_type);
1276
1277         memset(&write_cmd, 0, sizeof(write_cmd));
1278         write_cmd.hdr.cmd = FW_INT_PHY_REQ_CMD;
1279         write_cmd.hdr.buf_len = FW_INT_PHY_REQ_LEN;
1280         write_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1281         write_cmd.port_number = hw->bus.lan_id;
1282         write_cmd.command_type = FW_INT_PHY_REQ_WRITE;
1283         write_cmd.address = IXGBE_CPU_TO_BE16(reg_addr);
1284         write_cmd.write_data = IXGBE_CPU_TO_BE32(data);
1285
1286         status = ixgbe_host_interface_command(hw, (u32 *)&write_cmd,
1287                                               sizeof(write_cmd),
1288                                               IXGBE_HI_COMMAND_TIMEOUT, false);
1289
1290         return status;
1291 }
1292
1293 /**
1294  *  ixgbe_read_iosf_sb_reg_x550a - Reads specified register of the IOSF device
1295  *  @hw: pointer to hardware structure
1296  *  @reg_addr: 32 bit PHY register to write
1297  *  @device_type: 3 bit device type
1298  *  @data: Pointer to read data from the register
1299  **/
1300 s32 ixgbe_read_iosf_sb_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
1301                                  u32 device_type, u32 *data)
1302 {
1303         union {
1304                 struct ixgbe_hic_internal_phy_req cmd;
1305                 struct ixgbe_hic_internal_phy_resp rsp;
1306         } hic;
1307         s32 status;
1308         UNREFERENCED_1PARAMETER(device_type);
1309
1310         memset(&hic, 0, sizeof(hic));
1311         hic.cmd.hdr.cmd = FW_INT_PHY_REQ_CMD;
1312         hic.cmd.hdr.buf_len = FW_INT_PHY_REQ_LEN;
1313         hic.cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1314         hic.cmd.port_number = hw->bus.lan_id;
1315         hic.cmd.command_type = FW_INT_PHY_REQ_READ;
1316         hic.cmd.address = IXGBE_CPU_TO_BE16(reg_addr);
1317
1318         status = ixgbe_host_interface_command(hw, (u32 *)&hic.cmd,
1319                                               sizeof(hic.cmd),
1320                                               IXGBE_HI_COMMAND_TIMEOUT, true);
1321
1322         /* Extract the register value from the response. */
1323         *data = IXGBE_BE32_TO_CPU(hic.rsp.read_data);
1324
1325         return status;
1326 }
1327
1328 /**
1329  *  ixgbe_disable_mdd_X550
1330  *  @hw: pointer to hardware structure
1331  *
1332  *  Disable malicious driver detection
1333  **/
1334 void ixgbe_disable_mdd_X550(struct ixgbe_hw *hw)
1335 {
1336         u32 reg;
1337
1338         DEBUGFUNC("ixgbe_disable_mdd_X550");
1339
1340         /* Disable MDD for TX DMA and interrupt */
1341         reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1342         reg &= ~(IXGBE_DMATXCTL_MDP_EN | IXGBE_DMATXCTL_MBINTEN);
1343         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1344
1345         /* Disable MDD for RX and interrupt */
1346         reg = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
1347         reg &= ~(IXGBE_RDRXCTL_MDP_EN | IXGBE_RDRXCTL_MBINTEN);
1348         IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, reg);
1349 }
1350
1351 /**
1352  *  ixgbe_enable_mdd_X550
1353  *  @hw: pointer to hardware structure
1354  *
1355  *  Enable malicious driver detection
1356  **/
1357 void ixgbe_enable_mdd_X550(struct ixgbe_hw *hw)
1358 {
1359         u32 reg;
1360
1361         DEBUGFUNC("ixgbe_enable_mdd_X550");
1362
1363         /* Enable MDD for TX DMA and interrupt */
1364         reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1365         reg |= (IXGBE_DMATXCTL_MDP_EN | IXGBE_DMATXCTL_MBINTEN);
1366         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1367
1368         /* Enable MDD for RX and interrupt */
1369         reg = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
1370         reg |= (IXGBE_RDRXCTL_MDP_EN | IXGBE_RDRXCTL_MBINTEN);
1371         IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, reg);
1372 }
1373
1374 /**
1375  *  ixgbe_restore_mdd_vf_X550
1376  *  @hw: pointer to hardware structure
1377  *  @vf: vf index
1378  *
1379  *  Restore VF that was disabled during malicious driver detection event
1380  **/
1381 void ixgbe_restore_mdd_vf_X550(struct ixgbe_hw *hw, u32 vf)
1382 {
1383         u32 idx, reg, num_qs, start_q, bitmask;
1384
1385         DEBUGFUNC("ixgbe_restore_mdd_vf_X550");
1386
1387         /* Map VF to queues */
1388         reg = IXGBE_READ_REG(hw, IXGBE_MRQC);
1389         switch (reg & IXGBE_MRQC_MRQE_MASK) {
1390         case IXGBE_MRQC_VMDQRT8TCEN:
1391                 num_qs = 8;  /* 16 VFs / pools */
1392                 bitmask = 0x000000FF;
1393                 break;
1394         case IXGBE_MRQC_VMDQRSS32EN:
1395         case IXGBE_MRQC_VMDQRT4TCEN:
1396                 num_qs = 4;  /* 32 VFs / pools */
1397                 bitmask = 0x0000000F;
1398                 break;
1399         default:            /* 64 VFs / pools */
1400                 num_qs = 2;
1401                 bitmask = 0x00000003;
1402                 break;
1403         }
1404         start_q = vf * num_qs;
1405
1406         /* Release vf's queues by clearing WQBR_TX and WQBR_RX (RW1C) */
1407         idx = start_q / 32;
1408         reg = 0;
1409         reg |= (bitmask << (start_q % 32));
1410         IXGBE_WRITE_REG(hw, IXGBE_WQBR_TX(idx), reg);
1411         IXGBE_WRITE_REG(hw, IXGBE_WQBR_RX(idx), reg);
1412 }
1413
1414 /**
1415  *  ixgbe_mdd_event_X550
1416  *  @hw: pointer to hardware structure
1417  *  @vf_bitmap: vf bitmap of malicious vfs
1418  *
1419  *  Handle malicious driver detection event.
1420  **/
1421 void ixgbe_mdd_event_X550(struct ixgbe_hw *hw, u32 *vf_bitmap)
1422 {
1423         u32 wqbr;
1424         u32 i, j, reg, q, shift, vf, idx;
1425
1426         DEBUGFUNC("ixgbe_mdd_event_X550");
1427
1428         /* figure out pool size for mapping to vf's */
1429         reg = IXGBE_READ_REG(hw, IXGBE_MRQC);
1430         switch (reg & IXGBE_MRQC_MRQE_MASK) {
1431         case IXGBE_MRQC_VMDQRT8TCEN:
1432                 shift = 3;  /* 16 VFs / pools */
1433                 break;
1434         case IXGBE_MRQC_VMDQRSS32EN:
1435         case IXGBE_MRQC_VMDQRT4TCEN:
1436                 shift = 2;  /* 32 VFs / pools */
1437                 break;
1438         default:
1439                 shift = 1;  /* 64 VFs / pools */
1440                 break;
1441         }
1442
1443         /* Read WQBR_TX and WQBR_RX and check for malicious queues */
1444         for (i = 0; i < 4; i++) {
1445                 wqbr = IXGBE_READ_REG(hw, IXGBE_WQBR_TX(i));
1446                 wqbr |= IXGBE_READ_REG(hw, IXGBE_WQBR_RX(i));
1447
1448                 if (!wqbr)
1449                         continue;
1450
1451                 /* Get malicious queue */
1452                 for (j = 0; j < 32 && wqbr; j++) {
1453
1454                         if (!(wqbr & (1 << j)))
1455                                 continue;
1456
1457                         /* Get queue from bitmask */
1458                         q = j + (i * 32);
1459
1460                         /* Map queue to vf */
1461                         vf = (q >> shift);
1462
1463                         /* Set vf bit in vf_bitmap */
1464                         idx = vf / 32;
1465                         vf_bitmap[idx] |= (1 << (vf % 32));
1466                         wqbr &= ~(1 << j);
1467                 }
1468         }
1469 }
1470
1471 /**
1472  *  ixgbe_get_media_type_X550em - Get media type
1473  *  @hw: pointer to hardware structure
1474  *
1475  *  Returns the media type (fiber, copper, backplane)
1476  */
1477 enum ixgbe_media_type ixgbe_get_media_type_X550em(struct ixgbe_hw *hw)
1478 {
1479         enum ixgbe_media_type media_type;
1480
1481         DEBUGFUNC("ixgbe_get_media_type_X550em");
1482
1483         /* Detect if there is a copper PHY attached. */
1484         switch (hw->device_id) {
1485         case IXGBE_DEV_ID_X550EM_X_KR:
1486         case IXGBE_DEV_ID_X550EM_X_KX4:
1487         case IXGBE_DEV_ID_X550EM_A_KR:
1488         case IXGBE_DEV_ID_X550EM_A_KR_L:
1489                 media_type = ixgbe_media_type_backplane;
1490                 break;
1491         case IXGBE_DEV_ID_X550EM_X_SFP:
1492         case IXGBE_DEV_ID_X550EM_A_SFP:
1493         case IXGBE_DEV_ID_X550EM_A_SFP_N:
1494         case IXGBE_DEV_ID_X550EM_A_QSFP:
1495         case IXGBE_DEV_ID_X550EM_A_QSFP_N:
1496                 media_type = ixgbe_media_type_fiber;
1497                 break;
1498         case IXGBE_DEV_ID_X550EM_X_1G_T:
1499         case IXGBE_DEV_ID_X550EM_X_10G_T:
1500         case IXGBE_DEV_ID_X550EM_A_10G_T:
1501                 media_type = ixgbe_media_type_copper;
1502                 break;
1503         case IXGBE_DEV_ID_X550EM_A_SGMII:
1504         case IXGBE_DEV_ID_X550EM_A_SGMII_L:
1505                 media_type = ixgbe_media_type_backplane;
1506                 hw->phy.type = ixgbe_phy_sgmii;
1507                 break;
1508         case IXGBE_DEV_ID_X550EM_A_1G_T:
1509         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
1510                 media_type = ixgbe_media_type_copper;
1511                 break;
1512         default:
1513                 media_type = ixgbe_media_type_unknown;
1514                 break;
1515         }
1516         return media_type;
1517 }
1518
1519 /**
1520  *  ixgbe_supported_sfp_modules_X550em - Check if SFP module type is supported
1521  *  @hw: pointer to hardware structure
1522  *  @linear: true if SFP module is linear
1523  */
1524 STATIC s32 ixgbe_supported_sfp_modules_X550em(struct ixgbe_hw *hw, bool *linear)
1525 {
1526         DEBUGFUNC("ixgbe_supported_sfp_modules_X550em");
1527
1528         switch (hw->phy.sfp_type) {
1529         case ixgbe_sfp_type_not_present:
1530                 return IXGBE_ERR_SFP_NOT_PRESENT;
1531         case ixgbe_sfp_type_da_cu_core0:
1532         case ixgbe_sfp_type_da_cu_core1:
1533                 *linear = true;
1534                 break;
1535         case ixgbe_sfp_type_srlr_core0:
1536         case ixgbe_sfp_type_srlr_core1:
1537         case ixgbe_sfp_type_da_act_lmt_core0:
1538         case ixgbe_sfp_type_da_act_lmt_core1:
1539         case ixgbe_sfp_type_1g_sx_core0:
1540         case ixgbe_sfp_type_1g_sx_core1:
1541         case ixgbe_sfp_type_1g_lx_core0:
1542         case ixgbe_sfp_type_1g_lx_core1:
1543                 *linear = false;
1544                 break;
1545         case ixgbe_sfp_type_unknown:
1546         case ixgbe_sfp_type_1g_cu_core0:
1547         case ixgbe_sfp_type_1g_cu_core1:
1548         default:
1549                 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1550         }
1551
1552         return IXGBE_SUCCESS;
1553 }
1554
1555 /**
1556  *  ixgbe_identify_sfp_module_X550em - Identifies SFP modules
1557  *  @hw: pointer to hardware structure
1558  *
1559  *  Searches for and identifies the SFP module and assigns appropriate PHY type.
1560  **/
1561 s32 ixgbe_identify_sfp_module_X550em(struct ixgbe_hw *hw)
1562 {
1563         s32 status;
1564         bool linear;
1565
1566         DEBUGFUNC("ixgbe_identify_sfp_module_X550em");
1567
1568         status = ixgbe_identify_module_generic(hw);
1569
1570         if (status != IXGBE_SUCCESS)
1571                 return status;
1572
1573         /* Check if SFP module is supported */
1574         status = ixgbe_supported_sfp_modules_X550em(hw, &linear);
1575
1576         return status;
1577 }
1578
1579 /**
1580  *  ixgbe_setup_sfp_modules_X550em - Setup MAC link ops
1581  *  @hw: pointer to hardware structure
1582  */
1583 s32 ixgbe_setup_sfp_modules_X550em(struct ixgbe_hw *hw)
1584 {
1585         s32 status;
1586         bool linear;
1587
1588         DEBUGFUNC("ixgbe_setup_sfp_modules_X550em");
1589
1590         /* Check if SFP module is supported */
1591         status = ixgbe_supported_sfp_modules_X550em(hw, &linear);
1592
1593         if (status != IXGBE_SUCCESS)
1594                 return status;
1595
1596         ixgbe_init_mac_link_ops_X550em(hw);
1597         hw->phy.ops.reset = NULL;
1598
1599         return IXGBE_SUCCESS;
1600 }
1601
1602 /**
1603  * ixgbe_setup_sgmii - Set up link for sgmii
1604  * @hw: pointer to hardware structure
1605  */
1606 STATIC s32 ixgbe_setup_sgmii(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1607                              bool autoneg_wait)
1608 {
1609         struct ixgbe_mac_info *mac = &hw->mac;
1610         u32 lval, sval;
1611         s32 rc;
1612
1613         rc = mac->ops.read_iosf_sb_reg(hw,
1614                                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1615                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
1616         if (rc)
1617                 return rc;
1618
1619         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1620         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1621         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
1622         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
1623         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1624         rc = mac->ops.write_iosf_sb_reg(hw,
1625                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1626                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1627         if (rc)
1628                 return rc;
1629
1630         rc = mac->ops.read_iosf_sb_reg(hw,
1631                                        IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1632                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
1633         if (rc)
1634                 return rc;
1635
1636         sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
1637         sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
1638         rc = mac->ops.write_iosf_sb_reg(hw,
1639                                         IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1640                                         IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
1641         if (rc)
1642                 return rc;
1643
1644         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
1645         rc = mac->ops.write_iosf_sb_reg(hw,
1646                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1647                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1648         if (rc)
1649                 return rc;
1650
1651         return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
1652 }
1653
1654  /**
1655  * ixgbe_setup_sgmii_m88 - Set up link for sgmii with Marvell PHYs
1656  * @hw: pointer to hardware structure
1657  */
1658 STATIC s32 ixgbe_setup_sgmii_m88(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1659                                  bool autoneg_wait)
1660 {
1661         struct ixgbe_mac_info *mac = &hw->mac;
1662         u32 lval, sval;
1663         s32 rc;
1664
1665         rc = mac->ops.read_iosf_sb_reg(hw,
1666                                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1667                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
1668         if (rc)
1669                 return rc;
1670
1671         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1672         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1673         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
1674         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
1675         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1676         rc = mac->ops.write_iosf_sb_reg(hw,
1677                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1678                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1679         if (rc)
1680                 return rc;
1681
1682         rc = mac->ops.read_iosf_sb_reg(hw,
1683                                        IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1684                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
1685         if (rc)
1686                 return rc;
1687
1688         sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
1689         sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
1690         rc = mac->ops.write_iosf_sb_reg(hw,
1691                                         IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1692                                         IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
1693         if (rc)
1694                 return rc;
1695
1696         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
1697         rc = mac->ops.write_iosf_sb_reg(hw,
1698                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1699                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1700         if (rc)
1701                 return rc;
1702
1703         return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
1704 }
1705
1706 /**
1707  * ixgbe_check_link_m88 - Poll PHY for link
1708  * @hw: pointer to hardware structure
1709  * @speed: pointer to link speed
1710  * @link_up: true when link is up
1711  * @link_up_wait: bool indicating whether to wait for link
1712  *
1713  * Check that both the MAC and PHY have link.
1714  */
1715 static s32
1716 ixgbe_check_link_m88(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
1717                      bool *link_up, bool link_up_wait)
1718 {
1719         u16 reg;
1720         s32 rc;
1721         u32 i;
1722
1723         rc = ixgbe_check_mac_link_generic(hw, speed, link_up, link_up_wait);
1724         if (rc || !*link_up)
1725                 return rc;
1726
1727         rc = hw->phy.ops.read_reg(hw, IXGBE_M88E1500_PHY_SPEC_STATUS, 0, &reg);
1728
1729         /* MAC link is up, so check external PHY link */
1730         *link_up = !!(reg & IXGBE_M88E1500_PHY_SPEC_STATUS_LINK);
1731
1732         if (link_up_wait) {
1733                 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
1734                         if (!rc &&
1735                             (reg & IXGBE_M88E1500_PHY_SPEC_STATUS_LINK)) {
1736                                 *link_up = true;
1737                                 break;
1738                         }
1739                         *link_up = false;
1740                         msec_delay(100);
1741                         rc = hw->phy.ops.read_reg(hw,
1742                                                  IXGBE_M88E1500_PHY_SPEC_STATUS,
1743                                                  0, &reg);
1744                 }
1745         }
1746
1747 #define M88_SPEED(x) (IXGBE_M88E1500_PHY_SPEC_STATUS_RESOLVED  | \
1748                       IXGBE_M88E1500_PHY_SPEC_STATUS_DUPLEX     | \
1749                       ((IXGBE_M88E1500_PHY_SPEC_STATUS_SPEED_##x) <<\
1750                         IXGBE_M88E1500_PHY_SPEC_STATUS_SPEED_SHIFT))
1751
1752         reg &= M88_SPEED(MASK);
1753         switch (reg) {
1754         case M88_SPEED(10):
1755                 *speed = IXGBE_LINK_SPEED_10_FULL;
1756                 break;
1757         case M88_SPEED(100):
1758                 *speed = IXGBE_LINK_SPEED_100_FULL;
1759                 break;
1760         case M88_SPEED(1000):
1761                 *speed = IXGBE_LINK_SPEED_1GB_FULL;
1762                 break;
1763         default:
1764                 *speed = IXGBE_LINK_SPEED_UNKNOWN;
1765                 break;
1766         }
1767 #undef M88_SPEED
1768
1769         return rc;
1770 }
1771
1772 /**
1773  *  ixgbe_init_mac_link_ops_X550em - init mac link function pointers
1774  *  @hw: pointer to hardware structure
1775  */
1776 void ixgbe_init_mac_link_ops_X550em(struct ixgbe_hw *hw)
1777 {
1778         struct ixgbe_mac_info *mac = &hw->mac;
1779
1780         DEBUGFUNC("ixgbe_init_mac_link_ops_X550em");
1781
1782         switch (hw->mac.ops.get_media_type(hw)) {
1783         case ixgbe_media_type_fiber:
1784                 /* CS4227 does not support autoneg, so disable the laser control
1785                  * functions for SFP+ fiber
1786                  */
1787                 mac->ops.disable_tx_laser = NULL;
1788                 mac->ops.enable_tx_laser = NULL;
1789                 mac->ops.flap_tx_laser = NULL;
1790                 mac->ops.setup_link = ixgbe_setup_mac_link_multispeed_fiber;
1791                 mac->ops.set_rate_select_speed =
1792                                         ixgbe_set_soft_rate_select_speed;
1793                 if ((hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP_N) ||
1794                     (hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP))
1795                         mac->ops.setup_mac_link =
1796                                 ixgbe_setup_mac_link_sfp_x550a;
1797                 else
1798                         mac->ops.setup_mac_link =
1799                                 ixgbe_setup_mac_link_sfp_x550em;
1800                 break;
1801         case ixgbe_media_type_copper:
1802                 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
1803                     hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L) {
1804                         mac->ops.setup_link = ixgbe_setup_sgmii_m88;
1805                         mac->ops.check_link = ixgbe_check_link_m88;
1806                 } else {
1807                         mac->ops.setup_link = ixgbe_setup_mac_link_t_X550em;
1808                         mac->ops.check_link = ixgbe_check_link_t_X550em;
1809                 }
1810                 break;
1811         case ixgbe_media_type_backplane:
1812                 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII ||
1813                     hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII_L)
1814                         mac->ops.setup_link = ixgbe_setup_sgmii;
1815                 break;
1816         default:
1817                 break;
1818         }
1819 }
1820
1821 /**
1822  *  ixgbe_get_link_capabilities_x550em - Determines link capabilities
1823  *  @hw: pointer to hardware structure
1824  *  @speed: pointer to link speed
1825  *  @autoneg: true when autoneg or autotry is enabled
1826  */
1827 s32 ixgbe_get_link_capabilities_X550em(struct ixgbe_hw *hw,
1828                                        ixgbe_link_speed *speed,
1829                                        bool *autoneg)
1830 {
1831         DEBUGFUNC("ixgbe_get_link_capabilities_X550em");
1832
1833         /* SFP */
1834         if (hw->phy.media_type == ixgbe_media_type_fiber) {
1835
1836                 /* CS4227 SFP must not enable auto-negotiation */
1837                 *autoneg = false;
1838
1839                 /* Check if 1G SFP module. */
1840                 if (hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
1841                     hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1
1842                     || hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
1843                     hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1) {
1844                         *speed = IXGBE_LINK_SPEED_1GB_FULL;
1845                         return IXGBE_SUCCESS;
1846                 }
1847
1848                 /* Link capabilities are based on SFP */
1849                 if (hw->phy.multispeed_fiber)
1850                         *speed = IXGBE_LINK_SPEED_10GB_FULL |
1851                                  IXGBE_LINK_SPEED_1GB_FULL;
1852                 else
1853                         *speed = IXGBE_LINK_SPEED_10GB_FULL;
1854         } else {
1855                 switch (hw->phy.type) {
1856                 case ixgbe_phy_m88:
1857                         *speed = IXGBE_LINK_SPEED_1GB_FULL |
1858                                  IXGBE_LINK_SPEED_100_FULL |
1859                                  IXGBE_LINK_SPEED_10_FULL;
1860                         break;
1861                 case ixgbe_phy_sgmii:
1862                         *speed = IXGBE_LINK_SPEED_1GB_FULL;
1863                         break;
1864                 default:
1865                         *speed = IXGBE_LINK_SPEED_10GB_FULL |
1866                                  IXGBE_LINK_SPEED_1GB_FULL;
1867                         break;
1868                 }
1869                 *autoneg = true;
1870         }
1871
1872         return IXGBE_SUCCESS;
1873 }
1874
1875 /**
1876  * ixgbe_get_lasi_ext_t_x550em - Determime external Base T PHY interrupt cause
1877  * @hw: pointer to hardware structure
1878  * @lsc: pointer to boolean flag which indicates whether external Base T
1879  *       PHY interrupt is lsc
1880  *
1881  * Determime if external Base T PHY interrupt cause is high temperature
1882  * failure alarm or link status change.
1883  *
1884  * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature
1885  * failure alarm, else return PHY access status.
1886  */
1887 STATIC s32 ixgbe_get_lasi_ext_t_x550em(struct ixgbe_hw *hw, bool *lsc)
1888 {
1889         u32 status;
1890         u16 reg;
1891
1892         *lsc = false;
1893
1894         /* Vendor alarm triggered */
1895         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
1896                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1897                                       &reg);
1898
1899         if (status != IXGBE_SUCCESS ||
1900             !(reg & IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN))
1901                 return status;
1902
1903         /* Vendor Auto-Neg alarm triggered or Global alarm 1 triggered */
1904         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_FLAG,
1905                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1906                                       &reg);
1907
1908         if (status != IXGBE_SUCCESS ||
1909             !(reg & (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
1910             IXGBE_MDIO_GLOBAL_ALARM_1_INT)))
1911                 return status;
1912
1913         /* Global alarm triggered */
1914         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_ALARM_1,
1915                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1916                                       &reg);
1917
1918         if (status != IXGBE_SUCCESS)
1919                 return status;
1920
1921         /* If high temperature failure, then return over temp error and exit */
1922         if (reg & IXGBE_MDIO_GLOBAL_ALM_1_HI_TMP_FAIL) {
1923                 /* power down the PHY in case the PHY FW didn't already */
1924                 ixgbe_set_copper_phy_power(hw, false);
1925                 return IXGBE_ERR_OVERTEMP;
1926         } else if (reg & IXGBE_MDIO_GLOBAL_ALM_1_DEV_FAULT) {
1927                 /*  device fault alarm triggered */
1928                 status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_FAULT_MSG,
1929                                           IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1930                                           &reg);
1931
1932                 if (status != IXGBE_SUCCESS)
1933                         return status;
1934
1935                 /* if device fault was due to high temp alarm handle and exit */
1936                 if (reg == IXGBE_MDIO_GLOBAL_FAULT_MSG_HI_TMP) {
1937                         /* power down the PHY in case the PHY FW didn't */
1938                         ixgbe_set_copper_phy_power(hw, false);
1939                         return IXGBE_ERR_OVERTEMP;
1940                 }
1941         }
1942
1943         /* Vendor alarm 2 triggered */
1944         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
1945                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &reg);
1946
1947         if (status != IXGBE_SUCCESS ||
1948             !(reg & IXGBE_MDIO_GLOBAL_STD_ALM2_INT))
1949                 return status;
1950
1951         /* link connect/disconnect event occurred */
1952         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_TX_ALARM2,
1953                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &reg);
1954
1955         if (status != IXGBE_SUCCESS)
1956                 return status;
1957
1958         /* Indicate LSC */
1959         if (reg & IXGBE_MDIO_AUTO_NEG_VEN_LSC)
1960                 *lsc = true;
1961
1962         return IXGBE_SUCCESS;
1963 }
1964
1965 /**
1966  * ixgbe_enable_lasi_ext_t_x550em - Enable external Base T PHY interrupts
1967  * @hw: pointer to hardware structure
1968  *
1969  * Enable link status change and temperature failure alarm for the external
1970  * Base T PHY
1971  *
1972  * Returns PHY access status
1973  */
1974 STATIC s32 ixgbe_enable_lasi_ext_t_x550em(struct ixgbe_hw *hw)
1975 {
1976         u32 status;
1977         u16 reg;
1978         bool lsc;
1979
1980         /* Clear interrupt flags */
1981         status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc);
1982
1983         /* Enable link status change alarm */
1984         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
1985                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &reg);
1986
1987         if (status != IXGBE_SUCCESS)
1988                 return status;
1989
1990         reg |= IXGBE_MDIO_PMA_TX_VEN_LASI_INT_EN;
1991
1992         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
1993                                        IXGBE_MDIO_AUTO_NEG_DEV_TYPE, reg);
1994
1995         if (status != IXGBE_SUCCESS)
1996                 return status;
1997
1998         /* Enable high temperature failure and global fault alarms */
1999         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2000                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2001                                       &reg);
2002
2003         if (status != IXGBE_SUCCESS)
2004                 return status;
2005
2006         reg |= (IXGBE_MDIO_GLOBAL_INT_HI_TEMP_EN |
2007                 IXGBE_MDIO_GLOBAL_INT_DEV_FAULT_EN);
2008
2009         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2010                                        IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2011                                        reg);
2012
2013         if (status != IXGBE_SUCCESS)
2014                 return status;
2015
2016         /* Enable vendor Auto-Neg alarm and Global Interrupt Mask 1 alarm */
2017         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2018                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2019                                       &reg);
2020
2021         if (status != IXGBE_SUCCESS)
2022                 return status;
2023
2024         reg |= (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
2025                 IXGBE_MDIO_GLOBAL_ALARM_1_INT);
2026
2027         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2028                                        IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2029                                        reg);
2030
2031         if (status != IXGBE_SUCCESS)
2032                 return status;
2033
2034         /* Enable chip-wide vendor alarm */
2035         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2036                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2037                                       &reg);
2038
2039         if (status != IXGBE_SUCCESS)
2040                 return status;
2041
2042         reg |= IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN;
2043
2044         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2045                                        IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2046                                        reg);
2047
2048         return status;
2049 }
2050
2051 /**
2052  *  ixgbe_setup_kr_speed_x550em - Configure the KR PHY for link speed.
2053  *  @hw: pointer to hardware structure
2054  *  @speed: link speed
2055  *
2056  *  Configures the integrated KR PHY.
2057  **/
2058 STATIC s32 ixgbe_setup_kr_speed_x550em(struct ixgbe_hw *hw,
2059                                        ixgbe_link_speed speed)
2060 {
2061         s32 status;
2062         u32 reg_val;
2063
2064         status = hw->mac.ops.read_iosf_sb_reg(hw,
2065                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2066                       IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2067         if (status)
2068                 return status;
2069
2070         reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
2071         reg_val &= ~(IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR |
2072                      IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX);
2073
2074         /* Advertise 10G support. */
2075         if (speed & IXGBE_LINK_SPEED_10GB_FULL)
2076                 reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR;
2077
2078         /* Advertise 1G support. */
2079         if (speed & IXGBE_LINK_SPEED_1GB_FULL)
2080                 reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX;
2081
2082         /* Restart auto-negotiation. */
2083         reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
2084         status = hw->mac.ops.write_iosf_sb_reg(hw,
2085                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2086                        IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2087
2088         return status;
2089 }
2090
2091 /**
2092  * ixgbe_setup_m88 - setup m88 PHY
2093  * @hw: pointer to hardware structure
2094  */
2095 STATIC s32 ixgbe_setup_m88(struct ixgbe_hw *hw)
2096 {
2097         u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
2098         u16 reg;
2099         s32 rc;
2100
2101         if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
2102                 return IXGBE_SUCCESS;
2103
2104         rc = hw->mac.ops.acquire_swfw_sync(hw, mask);
2105         if (rc)
2106                 return rc;
2107
2108         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2109         if (rc)
2110                 goto out;
2111         if (reg & IXGBE_M88E1500_COPPER_CTRL_POWER_DOWN) {
2112                 reg &= ~IXGBE_M88E1500_COPPER_CTRL_POWER_DOWN;
2113                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2114                                           reg);
2115         }
2116
2117         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_MAC_CTRL_1, 0, &reg);
2118         if (rc)
2119                 goto out;
2120         if (reg & IXGBE_M88E1500_MAC_CTRL_1_POWER_DOWN) {
2121                 reg &= ~IXGBE_M88E1500_MAC_CTRL_1_POWER_DOWN;
2122                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_MAC_CTRL_1, 0,
2123                                           reg);
2124         }
2125
2126         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 2);
2127         if (rc)
2128                 goto out;
2129
2130         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_MAC_SPEC_CTRL, 0,
2131                                       &reg);
2132         if (rc)
2133                 goto out;
2134         if (reg & IXGBE_M88E1500_MAC_SPEC_CTRL_POWER_DOWN) {
2135                 reg &= ~IXGBE_M88E1500_MAC_SPEC_CTRL_POWER_DOWN;
2136                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_MAC_SPEC_CTRL, 0,
2137                                           reg);
2138                 rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0,
2139                                                0);
2140                 if (rc)
2141                         goto out;
2142                 rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2143                                               &reg);
2144                 if (rc)
2145                         goto out;
2146                 reg |= IXGBE_M88E1500_COPPER_CTRL_RESET;
2147                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2148                                           reg);
2149                 usec_delay(50);
2150         } else {
2151                 rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0,
2152                                                0);
2153                 if (rc)
2154                         goto out;
2155         }
2156
2157         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2158         if (rc)
2159                 goto out;
2160
2161         if (!(reg & IXGBE_M88E1500_COPPER_CTRL_AN_EN)) {
2162                 reg |= IXGBE_M88E1500_COPPER_CTRL_AN_EN;
2163                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2164                                           reg);
2165         }
2166
2167         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_1000T_CTRL, 0, &reg);
2168         if (rc)
2169                 goto out;
2170         reg &= ~IXGBE_M88E1500_1000T_CTRL_HALF_DUPLEX;
2171         reg &= ~IXGBE_M88E1500_1000T_CTRL_FULL_DUPLEX;
2172         if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL)
2173                 reg |= IXGBE_M88E1500_1000T_CTRL_FULL_DUPLEX;
2174         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_1000T_CTRL, 0, reg);
2175
2176         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_AN, 0, &reg);
2177         if (rc)
2178                 goto out;
2179         reg &= ~IXGBE_M88E1500_COPPER_AN_AS_PAUSE;
2180         reg &= ~IXGBE_M88E1500_COPPER_AN_PAUSE;
2181         reg &= ~IXGBE_M88E1500_COPPER_AN_T4;
2182         reg &= ~IXGBE_M88E1500_COPPER_AN_100TX_FD;
2183         reg &= ~IXGBE_M88E1500_COPPER_AN_100TX_HD;
2184         reg &= ~IXGBE_M88E1500_COPPER_AN_10TX_FD;
2185         reg &= ~IXGBE_M88E1500_COPPER_AN_10TX_HD;
2186         switch (hw->fc.current_mode) {
2187         case ixgbe_fc_full:
2188                 reg |= IXGBE_M88E1500_COPPER_AN_PAUSE;
2189                 break;
2190         case ixgbe_fc_rx_pause:
2191                 reg |= IXGBE_M88E1500_COPPER_AN_PAUSE;
2192                 reg |= IXGBE_M88E1500_COPPER_AN_AS_PAUSE;
2193                 break;
2194         case ixgbe_fc_tx_pause:
2195                 reg |= IXGBE_M88E1500_COPPER_AN_AS_PAUSE;
2196                 break;
2197         default:
2198                 break;
2199         }
2200
2201         if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
2202                 reg |= IXGBE_M88E1500_COPPER_AN_100TX_FD;
2203         if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10_FULL)
2204                 reg |= IXGBE_M88E1500_COPPER_AN_10TX_FD;
2205         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_AN, 0, reg);
2206
2207         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2208         if (rc)
2209                 goto out;
2210         reg |= IXGBE_M88E1500_COPPER_CTRL_RESTART_AN;
2211         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, reg);
2212
2213
2214         hw->mac.ops.release_swfw_sync(hw, mask);
2215         return rc;
2216
2217 out:
2218         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2219         hw->mac.ops.release_swfw_sync(hw, mask);
2220         return rc;
2221 }
2222
2223 /**
2224  * ixgbe_reset_phy_m88e1500 - Reset m88e1500 PHY
2225  * @hw: pointer to hardware structure
2226  *
2227  * The PHY token must be held when calling this function.
2228  */
2229 static s32 ixgbe_reset_phy_m88e1500(struct ixgbe_hw *hw)
2230 {
2231         u16 reg;
2232         s32 rc;
2233
2234         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2235         if (rc)
2236                 return rc;
2237
2238         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2239         if (rc)
2240                 return rc;
2241
2242         reg |= IXGBE_M88E1500_COPPER_CTRL_RESET;
2243         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, reg);
2244
2245         usec_delay(10);
2246
2247         return rc;
2248 }
2249
2250 /**
2251  * ixgbe_reset_phy_m88e1543 - Reset m88e1543 PHY
2252  * @hw: pointer to hardware structure
2253  *
2254  * The PHY token must be held when calling this function.
2255  */
2256 static s32 ixgbe_reset_phy_m88e1543(struct ixgbe_hw *hw)
2257 {
2258         return hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2259 }
2260
2261 /**
2262  * ixgbe_reset_phy_m88 - Reset m88 PHY
2263  * @hw: pointer to hardware structure
2264  */
2265 STATIC s32 ixgbe_reset_phy_m88(struct ixgbe_hw *hw)
2266 {
2267         u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
2268         u16 reg;
2269         s32 rc;
2270
2271         if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
2272                 return IXGBE_SUCCESS;
2273
2274         rc = hw->mac.ops.acquire_swfw_sync(hw, mask);
2275         if (rc)
2276                 return rc;
2277
2278         switch (hw->phy.id) {
2279         case IXGBE_M88E1500_E_PHY_ID:
2280                 rc = ixgbe_reset_phy_m88e1500(hw);
2281                 break;
2282         case IXGBE_M88E1543_E_PHY_ID:
2283                 rc = ixgbe_reset_phy_m88e1543(hw);
2284                 break;
2285         default:
2286                 rc = IXGBE_ERR_PHY;
2287                 break;
2288         }
2289
2290         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 1);
2291         if (rc)
2292                 goto out;
2293
2294         reg = IXGBE_M88E1500_FIBER_CTRL_RESET |
2295               IXGBE_M88E1500_FIBER_CTRL_DUPLEX_FULL |
2296               IXGBE_M88E1500_FIBER_CTRL_SPEED_MSB;
2297         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_FIBER_CTRL, 0, reg);
2298         if (rc)
2299                 goto out;
2300
2301         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 18);
2302         if (rc)
2303                 goto out;
2304
2305         reg = IXGBE_M88E1500_GEN_CTRL_RESET |
2306               IXGBE_M88E1500_GEN_CTRL_MODE_SGMII_COPPER;
2307         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_GEN_CTRL, 0, reg);
2308         if (rc)
2309                 goto out;
2310
2311         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 1);
2312         if (rc)
2313                 goto out;
2314
2315         reg = IXGBE_M88E1500_FIBER_CTRL_RESET |
2316               IXGBE_M88E1500_FIBER_CTRL_AN_EN |
2317               IXGBE_M88E1500_FIBER_CTRL_DUPLEX_FULL |
2318               IXGBE_M88E1500_FIBER_CTRL_SPEED_MSB;
2319         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_FIBER_CTRL, 0, reg);
2320         if (rc)
2321                 goto out;
2322
2323         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2324         if (rc)
2325                 goto out;
2326
2327         reg = (IXGBE_M88E1500_MAC_CTRL_1_DWN_4X <<
2328                IXGBE_M88E1500_MAC_CTRL_1_DWN_SHIFT) |
2329               (IXGBE_M88E1500_MAC_CTRL_1_ED_TM <<
2330                IXGBE_M88E1500_MAC_CTRL_1_ED_SHIFT) |
2331               (IXGBE_M88E1500_MAC_CTRL_1_MDIX_AUTO <<
2332                IXGBE_M88E1500_MAC_CTRL_1_MDIX_SHIFT);
2333         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_MAC_CTRL_1, 0, reg);
2334         if (rc)
2335                 goto out;
2336
2337         reg = IXGBE_M88E1500_COPPER_CTRL_RESET |
2338               IXGBE_M88E1500_COPPER_CTRL_AN_EN |
2339               IXGBE_M88E1500_COPPER_CTRL_RESTART_AN |
2340               IXGBE_M88E1500_COPPER_CTRL_FULL_DUPLEX |
2341               IXGBE_M88E1500_COPPER_CTRL_SPEED_MSB;
2342         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, reg);
2343         if (rc)
2344                 goto out;
2345
2346         hw->mac.ops.release_swfw_sync(hw, mask);
2347
2348         return ixgbe_setup_m88(hw);
2349
2350 out:
2351         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2352         hw->mac.ops.release_swfw_sync(hw, mask);
2353         return rc;
2354 }
2355
2356 /**
2357  *  ixgbe_read_mng_if_sel_x550em - Read NW_MNG_IF_SEL register
2358  *  @hw: pointer to hardware structure
2359  *
2360  *  Read NW_MNG_IF_SEL register and save field values, and check for valid field
2361  *  values.
2362  **/
2363 STATIC s32 ixgbe_read_mng_if_sel_x550em(struct ixgbe_hw *hw)
2364 {
2365         /* Save NW management interface connected on board. This is used
2366          * to determine internal PHY mode.
2367          */
2368         hw->phy.nw_mng_if_sel = IXGBE_READ_REG(hw, IXGBE_NW_MNG_IF_SEL);
2369
2370         /* If X552 (X550EM_a) and MDIO is connected to external PHY, then set
2371          * PHY address. This register field was has only been used for X552.
2372          */
2373         if (hw->mac.type == ixgbe_mac_X550EM_a &&
2374             hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_MDIO_ACT) {
2375                 hw->phy.addr = (hw->phy.nw_mng_if_sel &
2376                                 IXGBE_NW_MNG_IF_SEL_MDIO_PHY_ADD) >>
2377                                 IXGBE_NW_MNG_IF_SEL_MDIO_PHY_ADD_SHIFT;
2378         }
2379
2380         return IXGBE_SUCCESS;
2381 }
2382
2383 /**
2384  *  ixgbe_init_phy_ops_X550em - PHY/SFP specific init
2385  *  @hw: pointer to hardware structure
2386  *
2387  *  Initialize any function pointers that were not able to be
2388  *  set during init_shared_code because the PHY/SFP type was
2389  *  not known.  Perform the SFP init if necessary.
2390  */
2391 s32 ixgbe_init_phy_ops_X550em(struct ixgbe_hw *hw)
2392 {
2393         struct ixgbe_phy_info *phy = &hw->phy;
2394         s32 ret_val;
2395
2396         DEBUGFUNC("ixgbe_init_phy_ops_X550em");
2397
2398         hw->mac.ops.set_lan_id(hw);
2399
2400         ixgbe_read_mng_if_sel_x550em(hw);
2401
2402         if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) {
2403                 phy->phy_semaphore_mask = IXGBE_GSSR_SHARED_I2C_SM;
2404                 ixgbe_setup_mux_ctl(hw);
2405                 phy->ops.identify_sfp = ixgbe_identify_sfp_module_X550em;
2406         }
2407
2408         switch (hw->device_id) {
2409         case IXGBE_DEV_ID_X550EM_A_1G_T:
2410         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
2411                 phy->ops.read_reg_mdi = ixgbe_read_phy_reg_mdi_22;
2412                 phy->ops.write_reg_mdi = ixgbe_write_phy_reg_mdi_22;
2413                 break;
2414         default:
2415                 break;
2416         }
2417
2418         /* Identify the PHY or SFP module */
2419         ret_val = phy->ops.identify(hw);
2420         if (ret_val == IXGBE_ERR_SFP_NOT_SUPPORTED)
2421                 return ret_val;
2422
2423         /* Setup function pointers based on detected hardware */
2424         ixgbe_init_mac_link_ops_X550em(hw);
2425         if (phy->sfp_type != ixgbe_sfp_type_unknown)
2426                 phy->ops.reset = NULL;
2427
2428         /* Set functions pointers based on phy type */
2429         switch (hw->phy.type) {
2430         case ixgbe_phy_x550em_kx4:
2431                 phy->ops.setup_link = NULL;
2432                 phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
2433                 phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
2434                 break;
2435         case ixgbe_phy_x550em_kr:
2436                 phy->ops.setup_link = ixgbe_setup_kr_x550em;
2437                 phy->ops.read_reg = ixgbe_read_phy_reg_x550em;
2438                 phy->ops.write_reg = ixgbe_write_phy_reg_x550em;
2439                 break;
2440         case ixgbe_phy_x550em_ext_t:
2441                 /* If internal link mode is XFI, then setup iXFI internal link,
2442                  * else setup KR now.
2443                  */
2444                 phy->ops.setup_internal_link =
2445                                               ixgbe_setup_internal_phy_t_x550em;
2446
2447                 /* setup SW LPLU only for first revision of X550EM_x */
2448                 if ((hw->mac.type == ixgbe_mac_X550EM_x) &&
2449                     !(IXGBE_FUSES0_REV_MASK &
2450                       IXGBE_READ_REG(hw, IXGBE_FUSES0_GROUP(0))))
2451                         phy->ops.enter_lplu = ixgbe_enter_lplu_t_x550em;
2452
2453                 phy->ops.handle_lasi = ixgbe_handle_lasi_ext_t_x550em;
2454                 phy->ops.reset = ixgbe_reset_phy_t_X550em;
2455                 break;
2456         case ixgbe_phy_sgmii:
2457                 phy->ops.setup_link = NULL;
2458                 break;
2459         case ixgbe_phy_m88:
2460                 phy->ops.setup_link = ixgbe_setup_m88;
2461                 phy->ops.reset = ixgbe_reset_phy_m88;
2462                 break;
2463         default:
2464                 break;
2465         }
2466         return ret_val;
2467 }
2468
2469 /**
2470  * ixgbe_set_mdio_speed - Set MDIO clock speed
2471  *  @hw: pointer to hardware structure
2472  */
2473 STATIC void ixgbe_set_mdio_speed(struct ixgbe_hw *hw)
2474 {
2475         u32 hlreg0;
2476
2477         switch (hw->device_id) {
2478         case IXGBE_DEV_ID_X550EM_X_10G_T:
2479         case IXGBE_DEV_ID_X550EM_A_SGMII:
2480         case IXGBE_DEV_ID_X550EM_A_SGMII_L:
2481         case IXGBE_DEV_ID_X550EM_A_1G_T:
2482         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
2483         case IXGBE_DEV_ID_X550EM_A_10G_T:
2484         case IXGBE_DEV_ID_X550EM_A_SFP:
2485         case IXGBE_DEV_ID_X550EM_A_QSFP:
2486                 /* Config MDIO clock speed before the first MDIO PHY access */
2487                 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
2488                 hlreg0 &= ~IXGBE_HLREG0_MDCSPD;
2489                 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
2490                 break;
2491         default:
2492                 break;
2493         }
2494 }
2495
2496 /**
2497  *  ixgbe_reset_hw_X550em - Perform hardware reset
2498  *  @hw: pointer to hardware structure
2499  *
2500  *  Resets the hardware by resetting the transmit and receive units, masks
2501  *  and clears all interrupts, perform a PHY reset, and perform a link (MAC)
2502  *  reset.
2503  */
2504 s32 ixgbe_reset_hw_X550em(struct ixgbe_hw *hw)
2505 {
2506         ixgbe_link_speed link_speed;
2507         s32 status;
2508         u32 ctrl = 0;
2509         u32 i;
2510         bool link_up = false;
2511
2512         DEBUGFUNC("ixgbe_reset_hw_X550em");
2513
2514         /* Call adapter stop to disable Tx/Rx and clear interrupts */
2515         status = hw->mac.ops.stop_adapter(hw);
2516         if (status != IXGBE_SUCCESS)
2517                 return status;
2518
2519         /* flush pending Tx transactions */
2520         ixgbe_clear_tx_pending(hw);
2521
2522         ixgbe_set_mdio_speed(hw);
2523
2524         /* PHY ops must be identified and initialized prior to reset */
2525         status = hw->phy.ops.init(hw);
2526
2527         if (status == IXGBE_ERR_SFP_NOT_SUPPORTED)
2528                 return status;
2529
2530         /* start the external PHY */
2531         if (hw->phy.type == ixgbe_phy_x550em_ext_t) {
2532                 status = ixgbe_init_ext_t_x550em(hw);
2533                 if (status)
2534                         return status;
2535         }
2536
2537         /* Setup SFP module if there is one present. */
2538         if (hw->phy.sfp_setup_needed) {
2539                 status = hw->mac.ops.setup_sfp(hw);
2540                 hw->phy.sfp_setup_needed = false;
2541         }
2542
2543         if (status == IXGBE_ERR_SFP_NOT_SUPPORTED)
2544                 return status;
2545
2546         /* Reset PHY */
2547         if (!hw->phy.reset_disable && hw->phy.ops.reset)
2548                 hw->phy.ops.reset(hw);
2549
2550 mac_reset_top:
2551         /* Issue global reset to the MAC.  Needs to be SW reset if link is up.
2552          * If link reset is used when link is up, it might reset the PHY when
2553          * mng is using it.  If link is down or the flag to force full link
2554          * reset is set, then perform link reset.
2555          */
2556         ctrl = IXGBE_CTRL_LNK_RST;
2557         if (!hw->force_full_reset) {
2558                 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
2559                 if (link_up)
2560                         ctrl = IXGBE_CTRL_RST;
2561         }
2562
2563         ctrl |= IXGBE_READ_REG(hw, IXGBE_CTRL);
2564         IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
2565         IXGBE_WRITE_FLUSH(hw);
2566
2567         /* Poll for reset bit to self-clear meaning reset is complete */
2568         for (i = 0; i < 10; i++) {
2569                 usec_delay(1);
2570                 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
2571                 if (!(ctrl & IXGBE_CTRL_RST_MASK))
2572                         break;
2573         }
2574
2575         if (ctrl & IXGBE_CTRL_RST_MASK) {
2576                 status = IXGBE_ERR_RESET_FAILED;
2577                 DEBUGOUT("Reset polling failed to complete.\n");
2578         }
2579
2580         msec_delay(50);
2581
2582         /* Double resets are required for recovery from certain error
2583          * conditions.  Between resets, it is necessary to stall to
2584          * allow time for any pending HW events to complete.
2585          */
2586         if (hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED) {
2587                 hw->mac.flags &= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
2588                 goto mac_reset_top;
2589         }
2590
2591         /* Store the permanent mac address */
2592         hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
2593
2594         /* Store MAC address from RAR0, clear receive address registers, and
2595          * clear the multicast table.  Also reset num_rar_entries to 128,
2596          * since we modify this value when programming the SAN MAC address.
2597          */
2598         hw->mac.num_rar_entries = 128;
2599         hw->mac.ops.init_rx_addrs(hw);
2600
2601         ixgbe_set_mdio_speed(hw);
2602
2603         if (hw->device_id == IXGBE_DEV_ID_X550EM_X_SFP)
2604                 ixgbe_setup_mux_ctl(hw);
2605
2606         return status;
2607 }
2608
2609 /**
2610  * ixgbe_init_ext_t_x550em - Start (unstall) the external Base T PHY.
2611  * @hw: pointer to hardware structure
2612  */
2613 s32 ixgbe_init_ext_t_x550em(struct ixgbe_hw *hw)
2614 {
2615         u32 status;
2616         u16 reg;
2617
2618         status = hw->phy.ops.read_reg(hw,
2619                                       IXGBE_MDIO_TX_VENDOR_ALARMS_3,
2620                                       IXGBE_MDIO_PMA_PMD_DEV_TYPE,
2621                                       &reg);
2622
2623         if (status != IXGBE_SUCCESS)
2624                 return status;
2625
2626         /* If PHY FW reset completed bit is set then this is the first
2627          * SW instance after a power on so the PHY FW must be un-stalled.
2628          */
2629         if (reg & IXGBE_MDIO_TX_VENDOR_ALARMS_3_RST_MASK) {
2630                 status = hw->phy.ops.read_reg(hw,
2631                                         IXGBE_MDIO_GLOBAL_RES_PR_10,
2632                                         IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2633                                         &reg);
2634
2635                 if (status != IXGBE_SUCCESS)
2636                         return status;
2637
2638                 reg &= ~IXGBE_MDIO_POWER_UP_STALL;
2639
2640                 status = hw->phy.ops.write_reg(hw,
2641                                         IXGBE_MDIO_GLOBAL_RES_PR_10,
2642                                         IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2643                                         reg);
2644
2645                 if (status != IXGBE_SUCCESS)
2646                         return status;
2647         }
2648
2649         return status;
2650 }
2651
2652 /**
2653  *  ixgbe_setup_kr_x550em - Configure the KR PHY.
2654  *  @hw: pointer to hardware structure
2655  *
2656  *  Configures the integrated KR PHY for X550EM_x.
2657  **/
2658 s32 ixgbe_setup_kr_x550em(struct ixgbe_hw *hw)
2659 {
2660         if (hw->mac.type != ixgbe_mac_X550EM_x)
2661                 return IXGBE_SUCCESS;
2662
2663         return ixgbe_setup_kr_speed_x550em(hw, hw->phy.autoneg_advertised);
2664 }
2665
2666 /**
2667  *  ixgbe_setup_mac_link_sfp_x550em - Setup internal/external the PHY for SFP
2668  *  @hw: pointer to hardware structure
2669  *
2670  *  Configure the external PHY and the integrated KR PHY for SFP support.
2671  **/
2672 s32 ixgbe_setup_mac_link_sfp_x550em(struct ixgbe_hw *hw,
2673                                     ixgbe_link_speed speed,
2674                                     bool autoneg_wait_to_complete)
2675 {
2676         s32 ret_val;
2677         u16 reg_slice, reg_val;
2678         bool setup_linear = false;
2679         UNREFERENCED_1PARAMETER(autoneg_wait_to_complete);
2680
2681         /* Check if SFP module is supported and linear */
2682         ret_val = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
2683
2684         /* If no SFP module present, then return success. Return success since
2685          * there is no reason to configure CS4227 and SFP not present error is
2686          * not excepted in the setup MAC link flow.
2687          */
2688         if (ret_val == IXGBE_ERR_SFP_NOT_PRESENT)
2689                 return IXGBE_SUCCESS;
2690
2691         if (ret_val != IXGBE_SUCCESS)
2692                 return ret_val;
2693
2694         /* Configure internal PHY for KR/KX. */
2695         ixgbe_setup_kr_speed_x550em(hw, speed);
2696
2697         /* Configure CS4227 LINE side to proper mode. */
2698         reg_slice = IXGBE_CS4227_LINE_SPARE24_LSB +
2699                     (hw->bus.lan_id << 12);
2700         if (setup_linear)
2701                 reg_val = (IXGBE_CS4227_EDC_MODE_CX1 << 1) | 0x1;
2702         else
2703                 reg_val = (IXGBE_CS4227_EDC_MODE_SR << 1) | 0x1;
2704         ret_val = hw->link.ops.write_link(hw, hw->link.addr, reg_slice,
2705                                           reg_val);
2706         return ret_val;
2707 }
2708
2709 /**
2710  *  ixgbe_setup_mac_link_sfp_x550a - Setup internal PHY for SFP
2711  *  @hw: pointer to hardware structure
2712  *
2713  *  Configure the the integrated PHY for SFP support.
2714  **/
2715 s32 ixgbe_setup_mac_link_sfp_x550a(struct ixgbe_hw *hw,
2716                                    ixgbe_link_speed speed,
2717                                    bool autoneg_wait_to_complete)
2718 {
2719         s32 ret_val;
2720         u16 reg_phy_ext;
2721         bool setup_linear = false;
2722         u32 reg_slice, reg_phy_int, slice_offset;
2723
2724         UNREFERENCED_1PARAMETER(autoneg_wait_to_complete);
2725
2726         /* Check if SFP module is supported and linear */
2727         ret_val = ixgbe_supported_sfp_modules_X550em(hw, &setup_linear);
2728
2729         /* If no SFP module present, then return success. Return success since
2730          * SFP not present error is not excepted in the setup MAC link flow.
2731          */
2732         if (ret_val == IXGBE_ERR_SFP_NOT_PRESENT)
2733                 return IXGBE_SUCCESS;
2734
2735         if (ret_val != IXGBE_SUCCESS)
2736                 return ret_val;
2737
2738         if (hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP_N) {
2739                 /* Configure internal PHY for native SFI */
2740                 ret_val = hw->mac.ops.read_iosf_sb_reg(hw,
2741                                IXGBE_KRM_AN_CNTL_8(hw->bus.lan_id),
2742                                IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_phy_int);
2743
2744                 if (ret_val != IXGBE_SUCCESS)
2745                         return ret_val;
2746
2747                 if (setup_linear) {
2748                         reg_phy_int &= ~IXGBE_KRM_AN_CNTL_8_LIMITING;
2749                         reg_phy_int |= IXGBE_KRM_AN_CNTL_8_LINEAR;
2750                 } else {
2751                         reg_phy_int |= IXGBE_KRM_AN_CNTL_8_LIMITING;
2752                         reg_phy_int &= ~IXGBE_KRM_AN_CNTL_8_LINEAR;
2753                 }
2754
2755                 ret_val = hw->mac.ops.write_iosf_sb_reg(hw,
2756                                 IXGBE_KRM_AN_CNTL_8(hw->bus.lan_id),
2757                                 IXGBE_SB_IOSF_TARGET_KR_PHY, reg_phy_int);
2758
2759                 if (ret_val != IXGBE_SUCCESS)
2760                         return ret_val;
2761
2762                 /* Setup XFI/SFI internal link. */
2763                 ret_val = ixgbe_setup_ixfi_x550em(hw, &speed);
2764         } else {
2765                 /* Configure internal PHY for KR/KX. */
2766                 ixgbe_setup_kr_speed_x550em(hw, speed);
2767
2768                 if (hw->phy.addr == 0x0 || hw->phy.addr == 0xFFFF) {
2769                         /* Find Address */
2770                         DEBUGOUT("Invalid NW_MNG_IF_SEL.MDIO_PHY_ADD value\n");
2771                         return IXGBE_ERR_PHY_ADDR_INVALID;
2772                 }
2773
2774                 /* Get external PHY device id */
2775                 ret_val = hw->phy.ops.read_reg(hw, IXGBE_CS4227_GLOBAL_ID_MSB,
2776                                        IXGBE_MDIO_ZERO_DEV_TYPE, &reg_phy_ext);
2777
2778                 if (ret_val != IXGBE_SUCCESS)
2779                         return ret_val;
2780
2781                 /* When configuring quad port CS4223, the MAC instance is part
2782                  * of the slice offset.
2783                  */
2784                 if (reg_phy_ext == IXGBE_CS4223_PHY_ID)
2785                         slice_offset = (hw->bus.lan_id +
2786                                         (hw->bus.instance_id << 1)) << 12;
2787                 else
2788                         slice_offset = hw->bus.lan_id << 12;
2789
2790                 /* Configure CS4227/CS4223 LINE side to proper mode. */
2791                 reg_slice = IXGBE_CS4227_LINE_SPARE24_LSB + slice_offset;
2792                 if (setup_linear)
2793                         reg_phy_ext = (IXGBE_CS4227_EDC_MODE_CX1 << 1) | 0x1;
2794                 else
2795                         reg_phy_ext = (IXGBE_CS4227_EDC_MODE_SR << 1) | 0x1;
2796                 ret_val = hw->phy.ops.write_reg(hw, reg_slice,
2797                                         IXGBE_MDIO_ZERO_DEV_TYPE, reg_phy_ext);
2798         }
2799         return ret_val;
2800 }
2801
2802 /**
2803  *  ixgbe_setup_ixfi_x550em_x - MAC specific iXFI configuration
2804  *  @hw: pointer to hardware structure
2805  *
2806  *  iXfI configuration needed for ixgbe_mac_X550EM_x devices.
2807  **/
2808 STATIC s32 ixgbe_setup_ixfi_x550em_x(struct ixgbe_hw *hw)
2809 {
2810         s32 status;
2811         u32 reg_val;
2812
2813         /* Disable training protocol FSM. */
2814         status = ixgbe_read_iosf_sb_reg_x550(hw,
2815                                 IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
2816                                 IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2817         if (status != IXGBE_SUCCESS)
2818                 return status;
2819         reg_val |= IXGBE_KRM_RX_TRN_LINKUP_CTRL_CONV_WO_PROTOCOL;
2820         status = ixgbe_write_iosf_sb_reg_x550(hw,
2821                                 IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
2822                                 IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2823         if (status != IXGBE_SUCCESS)
2824                 return status;
2825
2826         /* Disable Flex from training TXFFE. */
2827         status = ixgbe_read_iosf_sb_reg_x550(hw,
2828                                 IXGBE_KRM_DSP_TXFFE_STATE_4(hw->bus.lan_id),
2829                                 IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2830         if (status != IXGBE_SUCCESS)
2831                 return status;
2832         reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_C0_EN;
2833         reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CP1_CN1_EN;
2834         reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CO_ADAPT_EN;
2835         status = ixgbe_write_iosf_sb_reg_x550(hw,
2836                                 IXGBE_KRM_DSP_TXFFE_STATE_4(hw->bus.lan_id),
2837                                 IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2838         if (status != IXGBE_SUCCESS)
2839                 return status;
2840         status = ixgbe_read_iosf_sb_reg_x550(hw,
2841                                 IXGBE_KRM_DSP_TXFFE_STATE_5(hw->bus.lan_id),
2842                                 IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2843         if (status != IXGBE_SUCCESS)
2844                 return status;
2845         reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_C0_EN;
2846         reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CP1_CN1_EN;
2847         reg_val &= ~IXGBE_KRM_DSP_TXFFE_STATE_CO_ADAPT_EN;
2848         status = ixgbe_write_iosf_sb_reg_x550(hw,
2849                                 IXGBE_KRM_DSP_TXFFE_STATE_5(hw->bus.lan_id),
2850                                 IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2851         if (status != IXGBE_SUCCESS)
2852                 return status;
2853
2854         /* Enable override for coefficients. */
2855         status = ixgbe_read_iosf_sb_reg_x550(hw,
2856                                 IXGBE_KRM_TX_COEFF_CTRL_1(hw->bus.lan_id),
2857                                 IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2858         if (status != IXGBE_SUCCESS)
2859                 return status;
2860         reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_OVRRD_EN;
2861         reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CZERO_EN;
2862         reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CPLUS1_OVRRD_EN;
2863         reg_val |= IXGBE_KRM_TX_COEFF_CTRL_1_CMINUS1_OVRRD_EN;
2864         status = ixgbe_write_iosf_sb_reg_x550(hw,
2865                                 IXGBE_KRM_TX_COEFF_CTRL_1(hw->bus.lan_id),
2866                                 IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2867         return status;
2868 }
2869
2870 /**
2871  *  ixgbe_setup_ixfi_x550em - Configure the KR PHY for iXFI mode.
2872  *  @hw: pointer to hardware structure
2873  *  @speed: the link speed to force
2874  *
2875  *  Configures the integrated KR PHY to use iXFI mode. Used to connect an
2876  *  internal and external PHY at a specific speed, without autonegotiation.
2877  **/
2878 STATIC s32 ixgbe_setup_ixfi_x550em(struct ixgbe_hw *hw, ixgbe_link_speed *speed)
2879 {
2880         s32 status;
2881         u32 reg_val;
2882
2883         /* Disable AN and force speed to 10G Serial. */
2884         status = ixgbe_read_iosf_sb_reg_x550(hw,
2885                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2886                                         IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2887         if (status != IXGBE_SUCCESS)
2888                 return status;
2889
2890         reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
2891         reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
2892
2893         /* Select forced link speed for internal PHY. */
2894         switch (*speed) {
2895         case IXGBE_LINK_SPEED_10GB_FULL:
2896                 reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_10G;
2897                 break;
2898         case IXGBE_LINK_SPEED_1GB_FULL:
2899                 reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
2900                 break;
2901         default:
2902                 /* Other link speeds are not supported by internal KR PHY. */
2903                 return IXGBE_ERR_LINK_SETUP;
2904         }
2905
2906         status = ixgbe_write_iosf_sb_reg_x550(hw,
2907                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2908                                         IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2909         if (status != IXGBE_SUCCESS)
2910                 return status;
2911
2912         /* Additional configuration needed for x550em_x */
2913         if (hw->mac.type == ixgbe_mac_X550EM_x) {
2914                 status = ixgbe_setup_ixfi_x550em_x(hw);
2915                 if (status != IXGBE_SUCCESS)
2916                         return status;
2917         }
2918
2919         /* Toggle port SW reset by AN reset. */
2920         status = ixgbe_read_iosf_sb_reg_x550(hw,
2921                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2922                                         IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2923         if (status != IXGBE_SUCCESS)
2924                 return status;
2925         reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
2926         status = ixgbe_write_iosf_sb_reg_x550(hw,
2927                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2928                                         IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2929
2930         return status;
2931 }
2932
2933 /**
2934  * ixgbe_ext_phy_t_x550em_get_link - Get ext phy link status
2935  * @hw: address of hardware structure
2936  * @link_up: address of boolean to indicate link status
2937  *
2938  * Returns error code if unable to get link status.
2939  */
2940 STATIC s32 ixgbe_ext_phy_t_x550em_get_link(struct ixgbe_hw *hw, bool *link_up)
2941 {
2942         u32 ret;
2943         u16 autoneg_status;
2944
2945         *link_up = false;
2946
2947         /* read this twice back to back to indicate current status */
2948         ret = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_STATUS,
2949                                    IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
2950                                    &autoneg_status);
2951         if (ret != IXGBE_SUCCESS)
2952                 return ret;
2953
2954         ret = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_STATUS,
2955                                    IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
2956                                    &autoneg_status);
2957         if (ret != IXGBE_SUCCESS)
2958                 return ret;
2959
2960         *link_up = !!(autoneg_status & IXGBE_MDIO_AUTO_NEG_LINK_STATUS);
2961
2962         return IXGBE_SUCCESS;
2963 }
2964
2965 /**
2966  * ixgbe_setup_internal_phy_t_x550em - Configure KR PHY to X557 link
2967  * @hw: point to hardware structure
2968  *
2969  * Configures the link between the integrated KR PHY and the external X557 PHY
2970  * The driver will call this function when it gets a link status change
2971  * interrupt from the X557 PHY. This function configures the link speed
2972  * between the PHYs to match the link speed of the BASE-T link.
2973  *
2974  * A return of a non-zero value indicates an error, and the base driver should
2975  * not report link up.
2976  */
2977 s32 ixgbe_setup_internal_phy_t_x550em(struct ixgbe_hw *hw)
2978 {
2979         ixgbe_link_speed force_speed;
2980         bool link_up;
2981         u32 status;
2982         u16 speed;
2983
2984         if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper)
2985                 return IXGBE_ERR_CONFIG;
2986
2987         if (!(hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_INT_PHY_MODE)) {
2988                 /* If link is down, there is no setup necessary so return  */
2989                 status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
2990                 if (status != IXGBE_SUCCESS)
2991                         return status;
2992
2993                 if (!link_up)
2994                         return IXGBE_SUCCESS;
2995
2996                 status = hw->phy.ops.read_reg(hw,
2997                                               IXGBE_MDIO_AUTO_NEG_VENDOR_STAT,
2998                                               IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
2999                                               &speed);
3000                 if (status != IXGBE_SUCCESS)
3001                         return status;
3002
3003                 /* If link is still down - no setup is required so return */
3004                 status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
3005                 if (status != IXGBE_SUCCESS)
3006                         return status;
3007                 if (!link_up)
3008                         return IXGBE_SUCCESS;
3009
3010                 /* clear everything but the speed and duplex bits */
3011                 speed &= IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_MASK;
3012
3013                 switch (speed) {
3014                 case IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_10GB_FULL:
3015                         force_speed = IXGBE_LINK_SPEED_10GB_FULL;
3016                         break;
3017                 case IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_1GB_FULL:
3018                         force_speed = IXGBE_LINK_SPEED_1GB_FULL;
3019                         break;
3020                 default:
3021                         /* Internal PHY does not support anything else */
3022                         return IXGBE_ERR_INVALID_LINK_SETTINGS;
3023                 }
3024
3025                 return ixgbe_setup_ixfi_x550em(hw, &force_speed);
3026         } else {
3027                 speed = IXGBE_LINK_SPEED_10GB_FULL |
3028                         IXGBE_LINK_SPEED_1GB_FULL;
3029                 return ixgbe_setup_kr_speed_x550em(hw, speed);
3030         }
3031 }
3032
3033 /**
3034  *  ixgbe_setup_phy_loopback_x550em - Configure the KR PHY for loopback.
3035  *  @hw: pointer to hardware structure
3036  *
3037  *  Configures the integrated KR PHY to use internal loopback mode.
3038  **/
3039 s32 ixgbe_setup_phy_loopback_x550em(struct ixgbe_hw *hw)
3040 {
3041         s32 status;
3042         u32 reg_val;
3043
3044         /* Disable AN and force speed to 10G Serial. */
3045         status = hw->mac.ops.read_iosf_sb_reg(hw,
3046                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
3047                       IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
3048         if (status != IXGBE_SUCCESS)
3049                 return status;
3050         reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
3051         reg_val &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
3052         reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_10G;
3053         status = hw->mac.ops.write_iosf_sb_reg(hw,
3054                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
3055                        IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
3056         if (status != IXGBE_SUCCESS)
3057                 return status;
3058
3059         /* Set near-end loopback clocks. */
3060         status = hw->mac.ops.read_iosf_sb_reg(hw,
3061                       IXGBE_KRM_PORT_CAR_GEN_CTRL(hw->bus.lan_id),
3062                       IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
3063         if (status != IXGBE_SUCCESS)
3064                 return status;
3065         reg_val |= IXGBE_KRM_PORT_CAR_GEN_CTRL_NELB_32B;
3066         reg_val |= IXGBE_KRM_PORT_CAR_GEN_CTRL_NELB_KRPCS;
3067         status = hw->mac.ops.write_iosf_sb_reg(hw,
3068                        IXGBE_KRM_PORT_CAR_GEN_CTRL(hw->bus.lan_id),
3069                        IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
3070         if (status != IXGBE_SUCCESS)
3071                 return status;
3072
3073         /* Set loopback enable. */
3074         status = hw->mac.ops.read_iosf_sb_reg(hw,
3075                       IXGBE_KRM_PMD_DFX_BURNIN(hw->bus.lan_id),
3076                       IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
3077         if (status != IXGBE_SUCCESS)
3078                 return status;
3079         reg_val |= IXGBE_KRM_PMD_DFX_BURNIN_TX_RX_KR_LB_MASK;
3080         status = hw->mac.ops.write_iosf_sb_reg(hw,
3081                        IXGBE_KRM_PMD_DFX_BURNIN(hw->bus.lan_id),
3082                        IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
3083         if (status != IXGBE_SUCCESS)
3084                 return status;
3085
3086         /* Training bypass. */
3087         status = hw->mac.ops.read_iosf_sb_reg(hw,
3088                       IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
3089                       IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
3090         if (status != IXGBE_SUCCESS)
3091                 return status;
3092         reg_val |= IXGBE_KRM_RX_TRN_LINKUP_CTRL_PROTOCOL_BYPASS;
3093         status = hw->mac.ops.write_iosf_sb_reg(hw,
3094                        IXGBE_KRM_RX_TRN_LINKUP_CTRL(hw->bus.lan_id),
3095                        IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
3096
3097         return status;
3098 }
3099
3100 /**
3101  *  ixgbe_read_ee_hostif_X550 - Read EEPROM word using a host interface command
3102  *  assuming that the semaphore is already obtained.
3103  *  @hw: pointer to hardware structure
3104  *  @offset: offset of  word in the EEPROM to read
3105  *  @data: word read from the EEPROM
3106  *
3107  *  Reads a 16 bit word from the EEPROM using the hostif.
3108  **/
3109 s32 ixgbe_read_ee_hostif_data_X550(struct ixgbe_hw *hw, u16 offset,
3110                                    u16 *data)
3111 {
3112         s32 status;
3113         struct ixgbe_hic_read_shadow_ram buffer;
3114
3115         DEBUGFUNC("ixgbe_read_ee_hostif_data_X550");
3116         buffer.hdr.req.cmd = FW_READ_SHADOW_RAM_CMD;
3117         buffer.hdr.req.buf_lenh = 0;
3118         buffer.hdr.req.buf_lenl = FW_READ_SHADOW_RAM_LEN;
3119         buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
3120
3121         /* convert offset from words to bytes */
3122         buffer.address = IXGBE_CPU_TO_BE32(offset * 2);
3123         /* one word */
3124         buffer.length = IXGBE_CPU_TO_BE16(sizeof(u16));
3125
3126         status = ixgbe_host_interface_command(hw, (u32 *)&buffer,
3127                                               sizeof(buffer),
3128                                               IXGBE_HI_COMMAND_TIMEOUT, false);
3129
3130         if (status)
3131                 return status;
3132
3133         *data = (u16)IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG,
3134                                           FW_NVM_DATA_OFFSET);
3135
3136         return 0;
3137 }
3138
3139 /**
3140  *  ixgbe_read_ee_hostif_X550 - Read EEPROM word using a host interface command
3141  *  @hw: pointer to hardware structure
3142  *  @offset: offset of  word in the EEPROM to read
3143  *  @data: word read from the EEPROM
3144  *
3145  *  Reads a 16 bit word from the EEPROM using the hostif.
3146  **/
3147 s32 ixgbe_read_ee_hostif_X550(struct ixgbe_hw *hw, u16 offset,
3148                               u16 *data)
3149 {
3150         s32 status = IXGBE_SUCCESS;
3151
3152         DEBUGFUNC("ixgbe_read_ee_hostif_X550");
3153
3154         if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) ==
3155             IXGBE_SUCCESS) {
3156                 status = ixgbe_read_ee_hostif_data_X550(hw, offset, data);
3157                 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
3158         } else {
3159                 status = IXGBE_ERR_SWFW_SYNC;
3160         }
3161
3162         return status;
3163 }
3164
3165 /**
3166  *  ixgbe_read_ee_hostif_buffer_X550- Read EEPROM word(s) using hostif
3167  *  @hw: pointer to hardware structure
3168  *  @offset: offset of  word in the EEPROM to read
3169  *  @words: number of words
3170  *  @data: word(s) read from the EEPROM
3171  *
3172  *  Reads a 16 bit word(s) from the EEPROM using the hostif.
3173  **/
3174 s32 ixgbe_read_ee_hostif_buffer_X550(struct ixgbe_hw *hw,
3175                                      u16 offset, u16 words, u16 *data)
3176 {
3177         struct ixgbe_hic_read_shadow_ram buffer;
3178         u32 current_word = 0;
3179         u16 words_to_read;
3180         s32 status;
3181         u32 i;
3182
3183         DEBUGFUNC("ixgbe_read_ee_hostif_buffer_X550");
3184
3185         /* Take semaphore for the entire operation. */
3186         status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
3187         if (status) {
3188                 DEBUGOUT("EEPROM read buffer - semaphore failed\n");
3189                 return status;
3190         }
3191         while (words) {
3192                 if (words > FW_MAX_READ_BUFFER_SIZE / 2)
3193                         words_to_read = FW_MAX_READ_BUFFER_SIZE / 2;
3194                 else
3195                         words_to_read = words;
3196
3197                 buffer.hdr.req.cmd = FW_READ_SHADOW_RAM_CMD;
3198                 buffer.hdr.req.buf_lenh = 0;
3199                 buffer.hdr.req.buf_lenl = FW_READ_SHADOW_RAM_LEN;
3200                 buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
3201
3202                 /* convert offset from words to bytes */
3203                 buffer.address = IXGBE_CPU_TO_BE32((offset + current_word) * 2);
3204                 buffer.length = IXGBE_CPU_TO_BE16(words_to_read * 2);
3205
3206                 status = ixgbe_host_interface_command(hw, (u32 *)&buffer,
3207                                                       sizeof(buffer),
3208                                                       IXGBE_HI_COMMAND_TIMEOUT,
3209                                                       false);
3210
3211                 if (status) {
3212                         DEBUGOUT("Host interface command failed\n");
3213                         goto out;
3214                 }
3215
3216                 for (i = 0; i < words_to_read; i++) {
3217                         u32 reg = IXGBE_FLEX_MNG + (FW_NVM_DATA_OFFSET << 2) +
3218                                   2 * i;
3219                         u32 value = IXGBE_READ_REG(hw, reg);
3220
3221                         data[current_word] = (u16)(value & 0xffff);
3222                         current_word++;
3223                         i++;
3224                         if (i < words_to_read) {
3225                                 value >>= 16;
3226                                 data[current_word] = (u16)(value & 0xffff);
3227                                 current_word++;
3228                         }
3229                 }
3230                 words -= words_to_read;
3231         }
3232
3233 out:
3234         hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
3235         return status;
3236 }
3237
3238 /**
3239  *  ixgbe_write_ee_hostif_X550 - Write EEPROM word using hostif
3240  *  @hw: pointer to hardware structure
3241  *  @offset: offset of  word in the EEPROM to write
3242  *  @data: word write to the EEPROM
3243  *
3244  *  Write a 16 bit word to the EEPROM using the hostif.
3245  **/
3246 s32 ixgbe_write_ee_hostif_data_X550(struct ixgbe_hw *hw, u16 offset,
3247                                     u16 data)
3248 {
3249         s32 status;
3250         struct ixgbe_hic_write_shadow_ram buffer;
3251
3252         DEBUGFUNC("ixgbe_write_ee_hostif_data_X550");
3253
3254         buffer.hdr.req.cmd = FW_WRITE_SHADOW_RAM_CMD;
3255         buffer.hdr.req.buf_lenh = 0;
3256         buffer.hdr.req.buf_lenl = FW_WRITE_SHADOW_RAM_LEN;
3257         buffer.hdr.req.checksum = FW_DEFAULT_CHECKSUM;
3258
3259          /* one word */
3260         buffer.length = IXGBE_CPU_TO_BE16(sizeof(u16));
3261         buffer.data = data;
3262         buffer.address = IXGBE_CPU_TO_BE32(offset * 2);
3263
3264         status = ixgbe_host_interface_command(hw, (u32 *)&buffer,
3265                                               sizeof(buffer),
3266                                               IXGBE_HI_COMMAND_TIMEOUT, false);
3267
3268         return status;
3269 }
3270
3271 /**
3272  *  ixgbe_write_ee_hostif_X550 - Write EEPROM word using hostif
3273  *  @hw: pointer to hardware structure
3274  *  @offset: offset of  word in the EEPROM to write
3275  *  @data: word write to the EEPROM
3276  *
3277  *  Write a 16 bit word to the EEPROM using the hostif.
3278  **/
3279 s32 ixgbe_write_ee_hostif_X550(struct ixgbe_hw *hw, u16 offset,
3280                                u16 data)
3281 {
3282         s32 status = IXGBE_SUCCESS;
3283
3284         DEBUGFUNC("ixgbe_write_ee_hostif_X550");
3285
3286         if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) ==
3287             IXGBE_SUCCESS) {
3288                 status = ixgbe_write_ee_hostif_data_X550(hw, offset, data);
3289                 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
3290         } else {
3291                 DEBUGOUT("write ee hostif failed to get semaphore");
3292                 status = IXGBE_ERR_SWFW_SYNC;
3293         }
3294
3295         return status;
3296 }
3297
3298 /**
3299  *  ixgbe_write_ee_hostif_buffer_X550 - Write EEPROM word(s) using hostif
3300  *  @hw: pointer to hardware structure
3301  *  @offset: offset of  word in the EEPROM to write
3302  *  @words: number of words
3303  *  @data: word(s) write to the EEPROM
3304  *
3305  *  Write a 16 bit word(s) to the EEPROM using the hostif.
3306  **/
3307 s32 ixgbe_write_ee_hostif_buffer_X550(struct ixgbe_hw *hw,
3308                                       u16 offset, u16 words, u16 *data)
3309 {
3310         s32 status = IXGBE_SUCCESS;
3311         u32 i = 0;
3312
3313         DEBUGFUNC("ixgbe_write_ee_hostif_buffer_X550");
3314
3315         /* Take semaphore for the entire operation. */
3316         status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
3317         if (status != IXGBE_SUCCESS) {
3318                 DEBUGOUT("EEPROM write buffer - semaphore failed\n");
3319                 goto out;
3320         }
3321
3322         for (i = 0; i < words; i++) {
3323                 status = ixgbe_write_ee_hostif_data_X550(hw, offset + i,
3324                                                          data[i]);
3325
3326                 if (status != IXGBE_SUCCESS) {
3327                         DEBUGOUT("Eeprom buffered write failed\n");
3328                         break;
3329                 }
3330         }
3331
3332         hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
3333 out:
3334
3335         return status;
3336 }
3337
3338 /**
3339  * ixgbe_checksum_ptr_x550 - Checksum one pointer region
3340  * @hw: pointer to hardware structure
3341  * @ptr: pointer offset in eeprom
3342  * @size: size of section pointed by ptr, if 0 first word will be used as size
3343  * @csum: address of checksum to update
3344  *
3345  * Returns error status for any failure
3346  */
3347 STATIC s32 ixgbe_checksum_ptr_x550(struct ixgbe_hw *hw, u16 ptr,
3348                                    u16 size, u16 *csum, u16 *buffer,
3349                                    u32 buffer_size)
3350 {
3351         u16 buf[256];
3352         s32 status;
3353         u16 length, bufsz, i, start;
3354         u16 *local_buffer;
3355
3356         bufsz = sizeof(buf) / sizeof(buf[0]);
3357
3358         /* Read a chunk at the pointer location */
3359         if (!buffer) {
3360                 status = ixgbe_read_ee_hostif_buffer_X550(hw, ptr, bufsz, buf);
3361                 if (status) {
3362                         DEBUGOUT("Failed to read EEPROM image\n");
3363                         return status;
3364                 }
3365                 local_buffer = buf;
3366         } else {
3367                 if (buffer_size < ptr)
3368                         return  IXGBE_ERR_PARAM;
3369                 local_buffer = &buffer[ptr];
3370         }
3371
3372         if (size) {
3373                 start = 0;
3374                 length = size;
3375         } else {
3376                 start = 1;
3377                 length = local_buffer[0];
3378
3379                 /* Skip pointer section if length is invalid. */
3380                 if (length == 0xFFFF || length == 0 ||
3381                     (ptr + length) >= hw->eeprom.word_size)
3382                         return IXGBE_SUCCESS;
3383         }
3384
3385         if (buffer && ((u32)start + (u32)length > buffer_size))
3386                 return IXGBE_ERR_PARAM;
3387
3388         for (i = start; length; i++, length--) {
3389                 if (i == bufsz && !buffer) {
3390                         ptr += bufsz;
3391                         i = 0;
3392                         if (length < bufsz)
3393                                 bufsz = length;
3394
3395                         /* Read a chunk at the pointer location */
3396                         status = ixgbe_read_ee_hostif_buffer_X550(hw, ptr,
3397                                                                   bufsz, buf);
3398                         if (status) {
3399                                 DEBUGOUT("Failed to read EEPROM image\n");
3400                                 return status;
3401                         }
3402                 }
3403                 *csum += local_buffer[i];
3404         }
3405         return IXGBE_SUCCESS;
3406 }
3407
3408 /**
3409  *  ixgbe_calc_checksum_X550 - Calculates and returns the checksum
3410  *  @hw: pointer to hardware structure
3411  *  @buffer: pointer to buffer containing calculated checksum
3412  *  @buffer_size: size of buffer
3413  *
3414  *  Returns a negative error code on error, or the 16-bit checksum
3415  **/
3416 s32 ixgbe_calc_checksum_X550(struct ixgbe_hw *hw, u16 *buffer, u32 buffer_size)
3417 {
3418         u16 eeprom_ptrs[IXGBE_EEPROM_LAST_WORD + 1];
3419         u16 *local_buffer;
3420         s32 status;
3421         u16 checksum = 0;
3422         u16 pointer, i, size;
3423
3424         DEBUGFUNC("ixgbe_calc_eeprom_checksum_X550");
3425
3426         hw->eeprom.ops.init_params(hw);
3427
3428         if (!buffer) {
3429                 /* Read pointer area */
3430                 status = ixgbe_read_ee_hostif_buffer_X550(hw, 0,
3431                                                      IXGBE_EEPROM_LAST_WORD + 1,
3432                                                      eeprom_ptrs);
3433                 if (status) {
3434                         DEBUGOUT("Failed to read EEPROM image\n");
3435                         return status;
3436                 }
3437                 local_buffer = eeprom_ptrs;
3438         } else {
3439                 if (buffer_size < IXGBE_EEPROM_LAST_WORD)
3440                         return IXGBE_ERR_PARAM;
3441                 local_buffer = buffer;
3442         }
3443
3444         /*
3445          * For X550 hardware include 0x0-0x41 in the checksum, skip the
3446          * checksum word itself
3447          */
3448         for (i = 0; i <= IXGBE_EEPROM_LAST_WORD; i++)
3449                 if (i != IXGBE_EEPROM_CHECKSUM)
3450                         checksum += local_buffer[i];
3451
3452         /*
3453          * Include all data from pointers 0x3, 0x6-0xE.  This excludes the
3454          * FW, PHY module, and PCIe Expansion/Option ROM pointers.
3455          */
3456         for (i = IXGBE_PCIE_ANALOG_PTR_X550; i < IXGBE_FW_PTR; i++) {
3457                 if (i == IXGBE_PHY_PTR || i == IXGBE_OPTION_ROM_PTR)
3458                         continue;
3459
3460                 pointer = local_buffer[i];
3461
3462                 /* Skip pointer section if the pointer is invalid. */
3463                 if (pointer == 0xFFFF || pointer == 0 ||
3464                     pointer >= hw->eeprom.word_size)
3465                         continue;
3466
3467                 switch (i) {
3468                 case IXGBE_PCIE_GENERAL_PTR:
3469                         size = IXGBE_IXGBE_PCIE_GENERAL_SIZE;
3470                         break;
3471                 case IXGBE_PCIE_CONFIG0_PTR:
3472                 case IXGBE_PCIE_CONFIG1_PTR:
3473                         size = IXGBE_PCIE_CONFIG_SIZE;
3474                         break;
3475                 default:
3476                         size = 0;
3477                         break;
3478                 }
3479
3480                 status = ixgbe_checksum_ptr_x550(hw, pointer, size, &checksum,
3481                                                 buffer, buffer_size);
3482                 if (status)
3483                         return status;
3484         }
3485
3486         checksum = (u16)IXGBE_EEPROM_SUM - checksum;
3487
3488         return (s32)checksum;
3489 }
3490
3491 /**
3492  *  ixgbe_calc_eeprom_checksum_X550 - Calculates and returns the checksum
3493  *  @hw: pointer to hardware structure
3494  *
3495  *  Returns a negative error code on error, or the 16-bit checksum
3496  **/
3497 s32 ixgbe_calc_eeprom_checksum_X550(struct ixgbe_hw *hw)
3498 {
3499         return ixgbe_calc_checksum_X550(hw, NULL, 0);
3500 }
3501
3502 /**
3503  *  ixgbe_validate_eeprom_checksum_X550 - Validate EEPROM checksum
3504  *  @hw: pointer to hardware structure
3505  *  @checksum_val: calculated checksum
3506  *
3507  *  Performs checksum calculation and validates the EEPROM checksum.  If the
3508  *  caller does not need checksum_val, the value can be NULL.
3509  **/
3510 s32 ixgbe_validate_eeprom_checksum_X550(struct ixgbe_hw *hw, u16 *checksum_val)
3511 {
3512         s32 status;
3513         u16 checksum;
3514         u16 read_checksum = 0;
3515
3516         DEBUGFUNC("ixgbe_validate_eeprom_checksum_X550");
3517
3518         /* Read the first word from the EEPROM. If this times out or fails, do
3519          * not continue or we could be in for a very long wait while every
3520          * EEPROM read fails
3521          */
3522         status = hw->eeprom.ops.read(hw, 0, &checksum);
3523         if (status) {
3524                 DEBUGOUT("EEPROM read failed\n");
3525                 return status;
3526         }
3527
3528         status = hw->eeprom.ops.calc_checksum(hw);
3529         if (status < 0)
3530                 return status;
3531
3532         checksum = (u16)(status & 0xffff);
3533
3534         status = ixgbe_read_ee_hostif_X550(hw, IXGBE_EEPROM_CHECKSUM,
3535                                            &read_checksum);
3536         if (status)
3537                 return status;
3538
3539         /* Verify read checksum from EEPROM is the same as
3540          * calculated checksum
3541          */
3542         if (read_checksum != checksum) {
3543                 status = IXGBE_ERR_EEPROM_CHECKSUM;
3544                 ERROR_REPORT1(IXGBE_ERROR_INVALID_STATE,
3545                              "Invalid EEPROM checksum");
3546         }
3547
3548         /* If the user cares, return the calculated checksum */
3549         if (checksum_val)
3550                 *checksum_val = checksum;
3551
3552         return status;
3553 }
3554
3555 /**
3556  * ixgbe_update_eeprom_checksum_X550 - Updates the EEPROM checksum and flash
3557  * @hw: pointer to hardware structure
3558  *
3559  * After writing EEPROM to shadow RAM using EEWR register, software calculates
3560  * checksum and updates the EEPROM and instructs the hardware to update
3561  * the flash.
3562  **/
3563 s32 ixgbe_update_eeprom_checksum_X550(struct ixgbe_hw *hw)
3564 {
3565         s32 status;
3566         u16 checksum = 0;
3567
3568         DEBUGFUNC("ixgbe_update_eeprom_checksum_X550");
3569
3570         /* Read the first word from the EEPROM. If this times out or fails, do
3571          * not continue or we could be in for a very long wait while every
3572          * EEPROM read fails
3573          */
3574         status = ixgbe_read_ee_hostif_X550(hw, 0, &checksum);
3575         if (status) {
3576                 DEBUGOUT("EEPROM read failed\n");
3577                 return status;
3578         }
3579
3580         status = ixgbe_calc_eeprom_checksum_X550(hw);
3581         if (status < 0)
3582                 return status;
3583
3584         checksum = (u16)(status & 0xffff);
3585
3586         status = ixgbe_write_ee_hostif_X550(hw, IXGBE_EEPROM_CHECKSUM,
3587                                             checksum);
3588         if (status)
3589                 return status;
3590
3591         status = ixgbe_update_flash_X550(hw);
3592
3593         return status;
3594 }
3595
3596 /**
3597  *  ixgbe_update_flash_X550 - Instruct HW to copy EEPROM to Flash device
3598  *  @hw: pointer to hardware structure
3599  *
3600  *  Issue a shadow RAM dump to FW to copy EEPROM from shadow RAM to the flash.
3601  **/
3602 s32 ixgbe_update_flash_X550(struct ixgbe_hw *hw)
3603 {
3604         s32 status = IXGBE_SUCCESS;
3605         union ixgbe_hic_hdr2 buffer;
3606
3607         DEBUGFUNC("ixgbe_update_flash_X550");
3608
3609         buffer.req.cmd = FW_SHADOW_RAM_DUMP_CMD;
3610         buffer.req.buf_lenh = 0;
3611         buffer.req.buf_lenl = FW_SHADOW_RAM_DUMP_LEN;
3612         buffer.req.checksum = FW_DEFAULT_CHECKSUM;
3613
3614         status = ixgbe_host_interface_command(hw, (u32 *)&buffer,
3615                                               sizeof(buffer),
3616                                               IXGBE_HI_COMMAND_TIMEOUT, false);
3617
3618         return status;
3619 }
3620
3621 /**
3622  *  ixgbe_get_supported_physical_layer_X550em - Returns physical layer type
3623  *  @hw: pointer to hardware structure
3624  *
3625  *  Determines physical layer capabilities of the current configuration.
3626  **/
3627 u32 ixgbe_get_supported_physical_layer_X550em(struct ixgbe_hw *hw)
3628 {
3629         u32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
3630         u16 ext_ability = 0;
3631
3632         DEBUGFUNC("ixgbe_get_supported_physical_layer_X550em");
3633
3634         hw->phy.ops.identify(hw);
3635
3636         switch (hw->phy.type) {
3637         case ixgbe_phy_x550em_kr:
3638                 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KR |
3639                                  IXGBE_PHYSICAL_LAYER_1000BASE_KX;
3640                 break;
3641         case ixgbe_phy_x550em_kx4:
3642                 physical_layer = IXGBE_PHYSICAL_LAYER_10GBASE_KX4 |
3643                                  IXGBE_PHYSICAL_LAYER_1000BASE_KX;
3644                 break;
3645         case ixgbe_phy_x550em_ext_t:
3646                 hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_EXT_ABILITY,
3647                                      IXGBE_MDIO_PMA_PMD_DEV_TYPE,
3648                                      &ext_ability);
3649                 if (ext_ability & IXGBE_MDIO_PHY_10GBASET_ABILITY)
3650                         physical_layer |= IXGBE_PHYSICAL_LAYER_10GBASE_T;
3651                 if (ext_ability & IXGBE_MDIO_PHY_1000BASET_ABILITY)
3652                         physical_layer |= IXGBE_PHYSICAL_LAYER_1000BASE_T;
3653                 break;
3654         default:
3655                 break;
3656         }
3657
3658         if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber)
3659                 physical_layer = ixgbe_get_supported_phy_sfp_layer_generic(hw);
3660
3661         return physical_layer;
3662 }
3663
3664 /**
3665  * ixgbe_get_bus_info_x550em - Set PCI bus info
3666  * @hw: pointer to hardware structure
3667  *
3668  * Sets bus link width and speed to unknown because X550em is
3669  * not a PCI device.
3670  **/
3671 s32 ixgbe_get_bus_info_X550em(struct ixgbe_hw *hw)
3672 {
3673
3674         DEBUGFUNC("ixgbe_get_bus_info_x550em");
3675
3676         hw->bus.width = ixgbe_bus_width_unknown;
3677         hw->bus.speed = ixgbe_bus_speed_unknown;
3678
3679         hw->mac.ops.set_lan_id(hw);
3680
3681         return IXGBE_SUCCESS;
3682 }
3683
3684 /**
3685  * ixgbe_disable_rx_x550 - Disable RX unit
3686  *
3687  * Enables the Rx DMA unit for x550
3688  **/
3689 void ixgbe_disable_rx_x550(struct ixgbe_hw *hw)
3690 {
3691         u32 rxctrl, pfdtxgswc;
3692         s32 status;
3693         struct ixgbe_hic_disable_rxen fw_cmd;
3694
3695         DEBUGFUNC("ixgbe_enable_rx_dma_x550");
3696
3697         rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3698         if (rxctrl & IXGBE_RXCTRL_RXEN) {
3699                 pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
3700                 if (pfdtxgswc & IXGBE_PFDTXGSWC_VT_LBEN) {
3701                         pfdtxgswc &= ~IXGBE_PFDTXGSWC_VT_LBEN;
3702                         IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc);
3703                         hw->mac.set_lben = true;
3704                 } else {
3705                         hw->mac.set_lben = false;
3706                 }
3707
3708                 fw_cmd.hdr.cmd = FW_DISABLE_RXEN_CMD;
3709                 fw_cmd.hdr.buf_len = FW_DISABLE_RXEN_LEN;
3710                 fw_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
3711                 fw_cmd.port_number = (u8)hw->bus.lan_id;
3712
3713                 status = ixgbe_host_interface_command(hw, (u32 *)&fw_cmd,
3714                                         sizeof(struct ixgbe_hic_disable_rxen),
3715                                         IXGBE_HI_COMMAND_TIMEOUT, true);
3716
3717                 /* If we fail - disable RX using register write */
3718                 if (status) {
3719                         rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3720                         if (rxctrl & IXGBE_RXCTRL_RXEN) {
3721                                 rxctrl &= ~IXGBE_RXCTRL_RXEN;
3722                                 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl);
3723                         }
3724                 }
3725         }
3726 }
3727
3728 /**
3729  * ixgbe_enter_lplu_x550em - Transition to low power states
3730  *  @hw: pointer to hardware structure
3731  *
3732  * Configures Low Power Link Up on transition to low power states
3733  * (from D0 to non-D0). Link is required to enter LPLU so avoid resetting the
3734  * X557 PHY immediately prior to entering LPLU.
3735  **/
3736 s32 ixgbe_enter_lplu_t_x550em(struct ixgbe_hw *hw)
3737 {
3738         u16 an_10g_cntl_reg, autoneg_reg, speed;
3739         s32 status;
3740         ixgbe_link_speed lcd_speed;
3741         u32 save_autoneg;
3742         bool link_up;
3743
3744         /* SW LPLU not required on later HW revisions. */
3745         if ((hw->mac.type == ixgbe_mac_X550EM_x) &&
3746             (IXGBE_FUSES0_REV_MASK &
3747              IXGBE_READ_REG(hw, IXGBE_FUSES0_GROUP(0))))
3748                 return IXGBE_SUCCESS;
3749
3750         /* If blocked by MNG FW, then don't restart AN */
3751         if (ixgbe_check_reset_blocked(hw))
3752                 return IXGBE_SUCCESS;
3753
3754         status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
3755         if (status != IXGBE_SUCCESS)
3756                 return status;
3757
3758         status = ixgbe_read_eeprom(hw, NVM_INIT_CTRL_3, &hw->eeprom.ctrl_word_3);
3759
3760         if (status != IXGBE_SUCCESS)
3761                 return status;
3762
3763         /* If link is down, LPLU disabled in NVM, WoL disabled, or manageability
3764          * disabled, then force link down by entering low power mode.
3765          */
3766         if (!link_up || !(hw->eeprom.ctrl_word_3 & NVM_INIT_CTRL_3_LPLU) ||
3767             !(hw->wol_enabled || ixgbe_mng_present(hw)))
3768                 return ixgbe_set_copper_phy_power(hw, FALSE);
3769
3770         /* Determine LCD */
3771         status = ixgbe_get_lcd_t_x550em(hw, &lcd_speed);
3772
3773         if (status != IXGBE_SUCCESS)
3774                 return status;
3775
3776         /* If no valid LCD link speed, then force link down and exit. */
3777         if (lcd_speed == IXGBE_LINK_SPEED_UNKNOWN)
3778                 return ixgbe_set_copper_phy_power(hw, FALSE);
3779
3780         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_STAT,
3781                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
3782                                       &speed);
3783
3784         if (status != IXGBE_SUCCESS)
3785                 return status;
3786
3787         /* If no link now, speed is invalid so take link down */
3788         status = ixgbe_ext_phy_t_x550em_get_link(hw, &link_up);
3789         if (status != IXGBE_SUCCESS)
3790                 return ixgbe_set_copper_phy_power(hw, false);
3791
3792         /* clear everything but the speed bits */
3793         speed &= IXGBE_MDIO_AUTO_NEG_VEN_STAT_SPEED_MASK;
3794
3795         /* If current speed is already LCD, then exit. */
3796         if (((speed == IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_1GB) &&
3797              (lcd_speed == IXGBE_LINK_SPEED_1GB_FULL)) ||
3798             ((speed == IXGBE_MDIO_AUTO_NEG_VENDOR_STATUS_10GB) &&
3799              (lcd_speed == IXGBE_LINK_SPEED_10GB_FULL)))
3800                 return status;
3801
3802         /* Clear AN completed indication */
3803         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_TX_ALARM,
3804                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
3805                                       &autoneg_reg);
3806
3807         if (status != IXGBE_SUCCESS)
3808                 return status;
3809
3810         status = hw->phy.ops.read_reg(hw, IXGBE_MII_10GBASE_T_AUTONEG_CTRL_REG,
3811                              IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
3812                              &an_10g_cntl_reg);
3813
3814         if (status != IXGBE_SUCCESS)
3815                 return status;
3816
3817         status = hw->phy.ops.read_reg(hw,
3818                              IXGBE_MII_AUTONEG_VENDOR_PROVISION_1_REG,
3819                              IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
3820                              &autoneg_reg);
3821
3822         if (status != IXGBE_SUCCESS)
3823                 return status;
3824
3825         save_autoneg = hw->phy.autoneg_advertised;
3826
3827         /* Setup link at least common link speed */
3828         status = hw->mac.ops.setup_link(hw, lcd_speed, false);
3829
3830         /* restore autoneg from before setting lplu speed */
3831         hw->phy.autoneg_advertised = save_autoneg;
3832
3833         return status;
3834 }
3835
3836 /**
3837  * ixgbe_get_lcd_x550em - Determine lowest common denominator
3838  *  @hw: pointer to hardware structure
3839  *  @lcd_speed: pointer to lowest common link speed
3840  *
3841  * Determine lowest common link speed with link partner.
3842  **/
3843 s32 ixgbe_get_lcd_t_x550em(struct ixgbe_hw *hw, ixgbe_link_speed *lcd_speed)
3844 {
3845         u16 an_lp_status;
3846         s32 status;
3847         u16 word = hw->eeprom.ctrl_word_3;
3848
3849         *lcd_speed = IXGBE_LINK_SPEED_UNKNOWN;
3850
3851         status = hw->phy.ops.read_reg(hw, IXGBE_AUTO_NEG_LP_STATUS,
3852                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
3853                                       &an_lp_status);
3854
3855         if (status != IXGBE_SUCCESS)
3856                 return status;
3857
3858         /* If link partner advertised 1G, return 1G */
3859         if (an_lp_status & IXGBE_AUTO_NEG_LP_1000BASE_CAP) {
3860                 *lcd_speed = IXGBE_LINK_SPEED_1GB_FULL;
3861                 return status;
3862         }
3863
3864         /* If 10G disabled for LPLU via NVM D10GMP, then return no valid LCD */
3865         if ((hw->bus.lan_id && (word & NVM_INIT_CTRL_3_D10GMP_PORT1)) ||
3866             (word & NVM_INIT_CTRL_3_D10GMP_PORT0))
3867                 return status;
3868
3869         /* Link partner not capable of lower speeds, return 10G */
3870         *lcd_speed = IXGBE_LINK_SPEED_10GB_FULL;
3871         return status;
3872 }
3873
3874 /**
3875  *  ixgbe_setup_fc_X550em - Set up flow control
3876  *  @hw: pointer to hardware structure
3877  *
3878  *  Called at init time to set up flow control.
3879  **/
3880 s32 ixgbe_setup_fc_X550em(struct ixgbe_hw *hw)
3881 {
3882         s32 ret_val = IXGBE_SUCCESS;
3883         u32 pause, asm_dir, reg_val;
3884
3885         DEBUGFUNC("ixgbe_setup_fc_X550em");
3886
3887         /* Validate the requested mode */
3888         if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
3889                 ERROR_REPORT1(IXGBE_ERROR_UNSUPPORTED,
3890                         "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
3891                 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
3892                 goto out;
3893         }
3894
3895         /* 10gig parts do not have a word in the EEPROM to determine the
3896          * default flow control setting, so we explicitly set it to full.
3897          */
3898         if (hw->fc.requested_mode == ixgbe_fc_default)
3899                 hw->fc.requested_mode = ixgbe_fc_full;
3900
3901         /* Determine PAUSE and ASM_DIR bits. */
3902         switch (hw->fc.requested_mode) {
3903         case ixgbe_fc_none:
3904                 pause = 0;
3905                 asm_dir = 0;
3906                 break;
3907         case ixgbe_fc_tx_pause:
3908                 pause = 0;
3909                 asm_dir = 1;
3910                 break;
3911         case ixgbe_fc_rx_pause:
3912                 /* Rx Flow control is enabled and Tx Flow control is
3913                  * disabled by software override. Since there really
3914                  * isn't a way to advertise that we are capable of RX
3915                  * Pause ONLY, we will advertise that we support both
3916                  * symmetric and asymmetric Rx PAUSE, as such we fall
3917                  * through to the fc_full statement.  Later, we will
3918                  * disable the adapter's ability to send PAUSE frames.
3919                  */
3920         case ixgbe_fc_full:
3921                 pause = 1;
3922                 asm_dir = 1;
3923                 break;
3924         default:
3925                 ERROR_REPORT1(IXGBE_ERROR_ARGUMENT,
3926                         "Flow control param set incorrectly\n");
3927                 ret_val = IXGBE_ERR_CONFIG;
3928                 goto out;
3929         }
3930
3931         switch (hw->device_id) {
3932         case IXGBE_DEV_ID_X550EM_X_KR:
3933         case IXGBE_DEV_ID_X550EM_A_KR:
3934         case IXGBE_DEV_ID_X550EM_A_KR_L:
3935                 ret_val = hw->mac.ops.read_iosf_sb_reg(hw,
3936                                       IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
3937                                       IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
3938                 if (ret_val != IXGBE_SUCCESS)
3939                         goto out;
3940                 reg_val &= ~(IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
3941                              IXGBE_KRM_AN_CNTL_1_ASM_PAUSE);
3942                 if (pause)
3943                         reg_val |= IXGBE_KRM_AN_CNTL_1_SYM_PAUSE;
3944                 if (asm_dir)
3945                         reg_val |= IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
3946                 ret_val = hw->mac.ops.write_iosf_sb_reg(hw,
3947                                        IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
3948                                        IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
3949
3950                 /* This device does not fully support AN. */
3951                 hw->fc.disable_fc_autoneg = true;
3952                 break;
3953         default:
3954                 break;
3955         }
3956
3957 out:
3958         return ret_val;
3959 }
3960
3961 /**
3962  *  ixgbe_fc_autoneg_backplane_x550em_a - Enable flow control IEEE clause 37
3963  *  @hw: pointer to hardware structure
3964  *
3965  *  Enable flow control according to IEEE clause 37.
3966  **/
3967 void ixgbe_fc_autoneg_backplane_x550em_a(struct ixgbe_hw *hw)
3968 {
3969         u32 link_s1, lp_an_page_low, an_cntl_1;
3970         s32 status = IXGBE_ERR_FC_NOT_NEGOTIATED;
3971         ixgbe_link_speed speed;
3972         bool link_up;
3973
3974         /* AN should have completed when the cable was plugged in.
3975          * Look for reasons to bail out.  Bail out if:
3976          * - FC autoneg is disabled, or if
3977          * - link is not up.
3978          */
3979         if (hw->fc.disable_fc_autoneg) {
3980                 ERROR_REPORT1(IXGBE_ERROR_UNSUPPORTED,
3981                               "Flow control autoneg is disabled");
3982                 goto out;
3983         }
3984
3985         hw->mac.ops.check_link(hw, &speed, &link_up, false);
3986         if (!link_up) {
3987                 ERROR_REPORT1(IXGBE_ERROR_SOFTWARE, "The link is down");
3988                 goto out;
3989         }
3990
3991         /* Check at auto-negotiation has completed */
3992         status = hw->mac.ops.read_iosf_sb_reg(hw,
3993                                       IXGBE_KRM_LINK_S1(hw->bus.lan_id),
3994                                       IXGBE_SB_IOSF_TARGET_KR_PHY, &link_s1);
3995
3996         if (status != IXGBE_SUCCESS ||
3997             (link_s1 & IXGBE_KRM_LINK_S1_MAC_AN_COMPLETE) == 0) {
3998                 DEBUGOUT("Auto-Negotiation did not complete\n");
3999                 status = IXGBE_ERR_FC_NOT_NEGOTIATED;
4000                 goto out;
4001         }
4002
4003         /* Read the 10g AN autoc and LP ability registers and resolve
4004          * local flow control settings accordingly
4005          */
4006         status = hw->mac.ops.read_iosf_sb_reg(hw,
4007                                       IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
4008                                       IXGBE_SB_IOSF_TARGET_KR_PHY, &an_cntl_1);
4009
4010         if (status != IXGBE_SUCCESS) {
4011                 DEBUGOUT("Auto-Negotiation did not complete\n");
4012                 goto out;
4013         }
4014
4015         status = hw->mac.ops.read_iosf_sb_reg(hw,
4016                               IXGBE_KRM_LP_BASE_PAGE_HIGH(hw->bus.lan_id),
4017                               IXGBE_SB_IOSF_TARGET_KR_PHY, &lp_an_page_low);
4018
4019         if (status != IXGBE_SUCCESS) {
4020                 DEBUGOUT("Auto-Negotiation did not complete\n");
4021                 goto out;
4022         }
4023
4024         status = ixgbe_negotiate_fc(hw, an_cntl_1, lp_an_page_low,
4025                                     IXGBE_KRM_AN_CNTL_1_SYM_PAUSE,
4026                                     IXGBE_KRM_AN_CNTL_1_ASM_PAUSE,
4027                                     IXGBE_KRM_LP_BASE_PAGE_HIGH_SYM_PAUSE,
4028                                     IXGBE_KRM_LP_BASE_PAGE_HIGH_ASM_PAUSE);
4029
4030 out:
4031         if (status == IXGBE_SUCCESS) {
4032                 hw->fc.fc_was_autonegged = true;
4033         } else {
4034                 hw->fc.fc_was_autonegged = false;
4035                 hw->fc.current_mode = hw->fc.requested_mode;
4036         }
4037 }
4038
4039 /**
4040  *  ixgbe_fc_autoneg_fiber_x550em_a - Enable flow control IEEE clause 37
4041  *  @hw: pointer to hardware structure
4042  *
4043  *  Enable flow control according to IEEE clause 37.
4044  **/
4045 void ixgbe_fc_autoneg_fiber_x550em_a(struct ixgbe_hw *hw)
4046 {
4047         u32 link_s1, pcs_an_lp, pcs_an;
4048         s32 status = IXGBE_ERR_FC_NOT_NEGOTIATED;
4049         ixgbe_link_speed speed;
4050         bool link_up;
4051
4052         /* AN should have completed when the cable was plugged in.
4053          * Look for reasons to bail out.  Bail out if:
4054          * - FC autoneg is disabled, or if
4055          * - link is not up.
4056          */
4057         if (hw->fc.disable_fc_autoneg) {
4058                 ERROR_REPORT1(IXGBE_ERROR_UNSUPPORTED,
4059                              "Flow control autoneg is disabled");
4060                 goto out;
4061         }
4062
4063         hw->mac.ops.check_link(hw, &speed, &link_up, false);
4064         if (!link_up) {
4065                 ERROR_REPORT1(IXGBE_ERROR_SOFTWARE, "The link is down");
4066                 goto out;
4067         }
4068
4069         /* Check if auto-negotiation has completed */
4070         status = hw->mac.ops.read_iosf_sb_reg(hw,
4071                                          IXGBE_KRM_LINK_S1(hw->bus.lan_id),
4072                                          IXGBE_SB_IOSF_TARGET_KR_PHY, &link_s1);
4073
4074         if (status != IXGBE_SUCCESS ||
4075             (link_s1 & IXGBE_KRM_LINK_S1_MAC_AN_COMPLETE) == 0) {
4076                 DEBUGOUT("Auto-Negotiation did not complete\n");
4077                 status = IXGBE_ERR_FC_NOT_NEGOTIATED;
4078                 goto out;
4079         }
4080
4081         /* Determine advertised flow control */
4082         status = hw->mac.ops.read_iosf_sb_reg(hw,
4083                                           IXGBE_KRM_PCS_KX_AN(hw->bus.lan_id),
4084                                           IXGBE_SB_IOSF_TARGET_KR_PHY, &pcs_an);
4085
4086         if (status != IXGBE_SUCCESS) {
4087                 DEBUGOUT("Auto-Negotiation did not complete\n");
4088                 goto out;
4089         }
4090
4091         /* Determine link parter flow control */
4092         status = hw->mac.ops.read_iosf_sb_reg(hw,
4093                                   IXGBE_KRM_PCS_KX_AN_LP(hw->bus.lan_id),
4094                                   IXGBE_SB_IOSF_TARGET_KR_PHY, &pcs_an_lp);
4095
4096         if (status != IXGBE_SUCCESS) {
4097                 DEBUGOUT("Auto-Negotiation did not complete\n");
4098                 goto out;
4099         }
4100
4101         status = ixgbe_negotiate_fc(hw, pcs_an, pcs_an_lp,
4102                                     IXGBE_KRM_PCS_KX_AN_SYM_PAUSE,
4103                                     IXGBE_KRM_PCS_KX_AN_ASM_PAUSE,
4104                                     IXGBE_KRM_PCS_KX_AN_LP_SYM_PAUSE,
4105                                     IXGBE_KRM_PCS_KX_AN_LP_ASM_PAUSE);
4106
4107 out:
4108         if (status == IXGBE_SUCCESS) {
4109                 hw->fc.fc_was_autonegged = true;
4110         } else {
4111                 hw->fc.fc_was_autonegged = false;
4112                 hw->fc.current_mode = hw->fc.requested_mode;
4113         }
4114 }
4115
4116 /**
4117  *  ixgbe_setup_fc_backplane_x550em_a - Set up flow control
4118  *  @hw: pointer to hardware structure
4119  *
4120  *  Called at init time to set up flow control.
4121  **/
4122 s32 ixgbe_setup_fc_backplane_x550em_a(struct ixgbe_hw *hw)
4123 {
4124         s32 status = IXGBE_SUCCESS;
4125         u32 an_cntl, link_ctrl = 0;
4126
4127         DEBUGFUNC("ixgbe_setup_fc_backplane_x550em_a");
4128
4129         /* Validate the requested mode */
4130         if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
4131                 ERROR_REPORT1(IXGBE_ERROR_UNSUPPORTED,
4132                       "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
4133                 return IXGBE_ERR_INVALID_LINK_SETTINGS;
4134         }
4135
4136         if (hw->fc.requested_mode == ixgbe_fc_default)
4137                 hw->fc.requested_mode = ixgbe_fc_full;
4138
4139         /* Set up the 1G and 10G flow control advertisement registers so the
4140          * HW will be able to do FC autoneg once the cable is plugged in.  If
4141          * we link at 10G, the 1G advertisement is harmless and vice versa.
4142          */
4143         status = hw->mac.ops.read_iosf_sb_reg(hw,
4144                                       IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
4145                                       IXGBE_SB_IOSF_TARGET_KR_PHY, &an_cntl);
4146
4147         if (status != IXGBE_SUCCESS) {
4148                 DEBUGOUT("Auto-Negotiation did not complete\n");
4149                 return status;
4150         }
4151
4152         /* The possible values of fc.requested_mode are:
4153          * 0: Flow control is completely disabled
4154          * 1: Rx flow control is enabled (we can receive pause frames,
4155          *    but not send pause frames).
4156          * 2: Tx flow control is enabled (we can send pause frames but
4157          *    we do not support receiving pause frames).
4158          * 3: Both Rx and Tx flow control (symmetric) are enabled.
4159          * other: Invalid.
4160          */
4161         switch (hw->fc.requested_mode) {
4162         case ixgbe_fc_none:
4163                 /* Flow control completely disabled by software override. */
4164                 an_cntl &= ~(IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
4165                              IXGBE_KRM_AN_CNTL_1_ASM_PAUSE);
4166                 break;
4167         case ixgbe_fc_tx_pause:
4168                 /* Tx Flow control is enabled, and Rx Flow control is
4169                  * disabled by software override.
4170                  */
4171                 an_cntl |= IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
4172                 an_cntl &= ~IXGBE_KRM_AN_CNTL_1_SYM_PAUSE;
4173                 break;
4174         case ixgbe_fc_rx_pause:
4175                 /* Rx Flow control is enabled and Tx Flow control is
4176                  * disabled by software override. Since there really
4177                  * isn't a way to advertise that we are capable of RX
4178                  * Pause ONLY, we will advertise that we support both
4179                  * symmetric and asymmetric Rx PAUSE, as such we fall
4180                  * through to the fc_full statement.  Later, we will
4181                  * disable the adapter's ability to send PAUSE frames.
4182                  */
4183         case ixgbe_fc_full:
4184                 /* Flow control (both Rx and Tx) is enabled by SW override. */
4185                 an_cntl |= IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
4186                         IXGBE_KRM_AN_CNTL_1_ASM_PAUSE;
4187                 break;
4188         default:
4189                 ERROR_REPORT1(IXGBE_ERROR_ARGUMENT,
4190                               "Flow control param set incorrectly\n");
4191                 return IXGBE_ERR_CONFIG;
4192         }
4193
4194         status = hw->mac.ops.write_iosf_sb_reg(hw,
4195                                        IXGBE_KRM_AN_CNTL_1(hw->bus.lan_id),
4196                                        IXGBE_SB_IOSF_TARGET_KR_PHY, an_cntl);
4197
4198         /* Restart auto-negotiation. */
4199         status = hw->mac.ops.read_iosf_sb_reg(hw,
4200                                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
4201                                       IXGBE_SB_IOSF_TARGET_KR_PHY, &link_ctrl);
4202
4203         if (status != IXGBE_SUCCESS) {
4204                 DEBUGOUT("Auto-Negotiation did not complete\n");
4205                 return status;
4206         }
4207
4208         link_ctrl |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
4209         status = hw->mac.ops.write_iosf_sb_reg(hw,
4210                                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
4211                                        IXGBE_SB_IOSF_TARGET_KR_PHY, link_ctrl);
4212
4213         return status;
4214 }
4215
4216 /**
4217  *  ixgbe_setup_fc_fiber_x550em_a - Set up flow control
4218  *  @hw: pointer to hardware structure
4219  *
4220  *  Called at init time to set up flow control.
4221  **/
4222 s32 ixgbe_setup_fc_fiber_x550em_a(struct ixgbe_hw *hw)
4223 {
4224         struct ixgbe_mac_info *mac = &hw->mac;
4225         s32 rc = IXGBE_SUCCESS;
4226         u32 an_cntl4, lctrl, pcs_an;
4227
4228         DEBUGFUNC("ixgbe_setup_fc_fiber_x550em_a");
4229
4230         /* Validate the requested mode */
4231         if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
4232                 ERROR_REPORT1(IXGBE_ERROR_UNSUPPORTED,
4233                               "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
4234                 return IXGBE_ERR_INVALID_LINK_SETTINGS;
4235         }
4236
4237         /* Enable clause 37 auto-negotiation in KRM_LINK_CTRL_1 */
4238         if (hw->fc.requested_mode == ixgbe_fc_default)
4239                 hw->fc.requested_mode = ixgbe_fc_full;
4240
4241         rc = mac->ops.read_iosf_sb_reg(hw,
4242                                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
4243                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &lctrl);
4244         if (rc)
4245                 return rc;
4246
4247         lctrl |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
4248         lctrl |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
4249
4250         rc = mac->ops.write_iosf_sb_reg(hw,
4251                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
4252                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lctrl);
4253         if (rc)
4254                 return rc;
4255
4256         /* Enable clause 37 over 73 in KRM_AN_CNTL_4 */
4257         rc = mac->ops.read_iosf_sb_reg(hw,
4258                                        IXGBE_KRM_AN_CNTL_4(hw->bus.lan_id),
4259                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &an_cntl4);
4260         if (rc)
4261                 return rc;
4262
4263         an_cntl4 |= IXGBE_KRM_AN_CNTL_4_ECSR_AN37_OVER_73;
4264
4265         rc = mac->ops.write_iosf_sb_reg(hw,
4266                                         IXGBE_KRM_AN_CNTL_4(hw->bus.lan_id),
4267                                         IXGBE_SB_IOSF_TARGET_KR_PHY, an_cntl4);
4268         if (rc)
4269                 return rc;
4270
4271         rc = hw->mac.ops.read_iosf_sb_reg(hw,
4272                                           IXGBE_KRM_PCS_KX_AN(hw->bus.lan_id),
4273                                           IXGBE_SB_IOSF_TARGET_KR_PHY, &pcs_an);
4274
4275         if (rc)
4276                 return rc;
4277
4278         /* The possible values of fc.requested_mode are:
4279          * 0: Flow control is completely disabled
4280          * 1: Rx flow control is enabled (we can receive pause frames,
4281          *    but not send pause frames).
4282          * 2: Tx flow control is enabled (we can send pause frames but
4283          *    we do not support receiving pause frames).
4284          * 3: Both Rx and Tx flow control (symmetric) are enabled.
4285          * other: Invalid.
4286          */
4287         switch (hw->fc.requested_mode) {
4288         case ixgbe_fc_none:
4289                 /* Flow control completely disabled by software override. */
4290                 pcs_an &= ~(IXGBE_KRM_AN_CNTL_1_SYM_PAUSE |
4291                             IXGBE_KRM_AN_CNTL_1_ASM_PAUSE);
4292                 break;
4293         case ixgbe_fc_tx_pause:
4294                 /* Tx Flow control is enabled, and Rx Flow control is
4295                  * disabled by software override.
4296                  */
4297                 pcs_an |= IXGBE_KRM_PCS_KX_AN_ASM_PAUSE;
4298                 pcs_an &= ~IXGBE_KRM_PCS_KX_AN_SYM_PAUSE;
4299                 break;
4300         case ixgbe_fc_rx_pause:
4301                 /* Rx Flow control is enabled and Tx Flow control is
4302                  * disabled by software override. Since there really
4303                  * isn't a way to advertise that we are capable of RX
4304                  * Pause ONLY, we will advertise that we support both
4305                  * symmetric and asymmetric Rx PAUSE, as such we fall
4306                  * through to the fc_full statement.  Later, we will
4307                  * disable the adapter's ability to send PAUSE frames.
4308                  */
4309         case ixgbe_fc_full:
4310                 /* Flow control (both Rx and Tx) is enabled by SW override. */
4311                 pcs_an |= IXGBE_KRM_PCS_KX_AN_SYM_PAUSE |
4312                            IXGBE_KRM_PCS_KX_AN_ASM_PAUSE;
4313                 break;
4314         default:
4315                 ERROR_REPORT1(IXGBE_ERROR_ARGUMENT,
4316                               "Flow control param set incorrectly\n");
4317                 return IXGBE_ERR_CONFIG;
4318         }
4319
4320         rc = hw->mac.ops.write_iosf_sb_reg(hw,
4321                                            IXGBE_KRM_PCS_KX_AN(hw->bus.lan_id),
4322                                            IXGBE_SB_IOSF_TARGET_KR_PHY, pcs_an);
4323
4324         /* Restart auto-negotiation. */
4325         rc = hw->mac.ops.read_iosf_sb_reg(hw,
4326                                           IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
4327                                           IXGBE_SB_IOSF_TARGET_KR_PHY, &lctrl);
4328
4329         if (rc) {
4330                 DEBUGOUT("Auto-Negotiation did not complete\n");
4331                 return rc;
4332         }
4333
4334         lctrl |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
4335         rc = hw->mac.ops.write_iosf_sb_reg(hw,
4336                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
4337                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lctrl);
4338
4339         return rc;
4340 }
4341
4342 /**
4343  * ixgbe_set_mux - Set mux for port 1 access with CS4227
4344  * @hw: pointer to hardware structure
4345  * @state: set mux if 1, clear if 0
4346  */
4347 STATIC void ixgbe_set_mux(struct ixgbe_hw *hw, u8 state)
4348 {
4349         u32 esdp;
4350
4351         if (!hw->bus.lan_id)
4352                 return;
4353         esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4354         if (state)
4355                 esdp |= IXGBE_ESDP_SDP1;
4356         else
4357                 esdp &= ~IXGBE_ESDP_SDP1;
4358         IXGBE_WRITE_REG(hw, IXGBE_ESDP, esdp);
4359         IXGBE_WRITE_FLUSH(hw);
4360 }
4361
4362 /**
4363  *  ixgbe_acquire_swfw_sync_X550em - Acquire SWFW semaphore
4364  *  @hw: pointer to hardware structure
4365  *  @mask: Mask to specify which semaphore to acquire
4366  *
4367  *  Acquires the SWFW semaphore and sets the I2C MUX
4368  **/
4369 s32 ixgbe_acquire_swfw_sync_X550em(struct ixgbe_hw *hw, u32 mask)
4370 {
4371         s32 status;
4372
4373         DEBUGFUNC("ixgbe_acquire_swfw_sync_X550em");
4374
4375         status = ixgbe_acquire_swfw_sync_X540(hw, mask);
4376         if (status)
4377                 return status;
4378
4379         if (mask & IXGBE_GSSR_I2C_MASK)
4380                 ixgbe_set_mux(hw, 1);
4381
4382         return IXGBE_SUCCESS;
4383 }
4384
4385 /**
4386  *  ixgbe_release_swfw_sync_X550em - Release SWFW semaphore
4387  *  @hw: pointer to hardware structure
4388  *  @mask: Mask to specify which semaphore to release
4389  *
4390  *  Releases the SWFW semaphore and sets the I2C MUX
4391  **/
4392 void ixgbe_release_swfw_sync_X550em(struct ixgbe_hw *hw, u32 mask)
4393 {
4394         DEBUGFUNC("ixgbe_release_swfw_sync_X550em");
4395
4396         if (mask & IXGBE_GSSR_I2C_MASK)
4397                 ixgbe_set_mux(hw, 0);
4398
4399         ixgbe_release_swfw_sync_X540(hw, mask);
4400 }
4401
4402 /**
4403  *  ixgbe_acquire_swfw_sync_X550a - Acquire SWFW semaphore
4404  *  @hw: pointer to hardware structure
4405  *  @mask: Mask to specify which semaphore to acquire
4406  *
4407  *  Acquires the SWFW semaphore and get the shared phy token as needed
4408  */
4409 STATIC s32 ixgbe_acquire_swfw_sync_X550a(struct ixgbe_hw *hw, u32 mask)
4410 {
4411         u32 hmask = mask & ~IXGBE_GSSR_TOKEN_SM;
4412         int retries = FW_PHY_TOKEN_RETRIES;
4413         s32 status = IXGBE_SUCCESS;
4414
4415         DEBUGFUNC("ixgbe_acquire_swfw_sync_X550a");
4416
4417         while (--retries) {
4418                 status = IXGBE_SUCCESS;
4419                 if (hmask)
4420                         status = ixgbe_acquire_swfw_sync_X540(hw, hmask);
4421                 if (status)
4422                         return status;
4423                 if (!(mask & IXGBE_GSSR_TOKEN_SM))
4424                         return IXGBE_SUCCESS;
4425
4426                 status = ixgbe_get_phy_token(hw);
4427                 if (status == IXGBE_SUCCESS)
4428                         return IXGBE_SUCCESS;
4429
4430                 if (hmask)
4431                         ixgbe_release_swfw_sync_X540(hw, hmask);
4432                 if (status != IXGBE_ERR_TOKEN_RETRY)
4433                         return status;
4434                 msec_delay(FW_PHY_TOKEN_DELAY);
4435         }
4436
4437         return status;
4438 }
4439
4440 /**
4441  *  ixgbe_release_swfw_sync_X550a - Release SWFW semaphore
4442  *  @hw: pointer to hardware structure
4443  *  @mask: Mask to specify which semaphore to release
4444  *
4445  *  Releases the SWFW semaphore and puts the shared phy token as needed
4446  */
4447 STATIC void ixgbe_release_swfw_sync_X550a(struct ixgbe_hw *hw, u32 mask)
4448 {
4449         u32 hmask = mask & ~IXGBE_GSSR_TOKEN_SM;
4450
4451         DEBUGFUNC("ixgbe_release_swfw_sync_X550a");
4452
4453         if (mask & IXGBE_GSSR_TOKEN_SM)
4454                 ixgbe_put_phy_token(hw);
4455
4456         if (hmask)
4457                 ixgbe_release_swfw_sync_X540(hw, hmask);
4458 }
4459
4460 /**
4461  *  ixgbe_read_phy_reg_x550a  - Reads specified PHY register
4462  *  @hw: pointer to hardware structure
4463  *  @reg_addr: 32 bit address of PHY register to read
4464  *  @phy_data: Pointer to read data from PHY register
4465  *
4466  *  Reads a value from a specified PHY register using the SWFW lock and PHY
4467  *  Token. The PHY Token is needed since the MDIO is shared between to MAC
4468  *  instances.
4469  **/
4470 s32 ixgbe_read_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
4471                              u32 device_type, u16 *phy_data)
4472 {
4473         s32 status;
4474         u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
4475
4476         DEBUGFUNC("ixgbe_read_phy_reg_x550a");
4477
4478         if (hw->mac.ops.acquire_swfw_sync(hw, mask))
4479                 return IXGBE_ERR_SWFW_SYNC;
4480
4481         status = hw->phy.ops.read_reg_mdi(hw, reg_addr, device_type, phy_data);
4482
4483         hw->mac.ops.release_swfw_sync(hw, mask);
4484
4485         return status;
4486 }
4487
4488 /**
4489  *  ixgbe_write_phy_reg_x550a - Writes specified PHY register
4490  *  @hw: pointer to hardware structure
4491  *  @reg_addr: 32 bit PHY register to write
4492  *  @device_type: 5 bit device type
4493  *  @phy_data: Data to write to the PHY register
4494  *
4495  *  Writes a value to specified PHY register using the SWFW lock and PHY Token.
4496  *  The PHY Token is needed since the MDIO is shared between to MAC instances.
4497  **/
4498 s32 ixgbe_write_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
4499                               u32 device_type, u16 phy_data)
4500 {
4501         s32 status;
4502         u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
4503
4504         DEBUGFUNC("ixgbe_write_phy_reg_x550a");
4505
4506         if (hw->mac.ops.acquire_swfw_sync(hw, mask) == IXGBE_SUCCESS) {
4507                 status = ixgbe_write_phy_reg_mdi(hw, reg_addr, device_type,
4508                                                  phy_data);
4509                 hw->mac.ops.release_swfw_sync(hw, mask);
4510         } else {
4511                 status = IXGBE_ERR_SWFW_SYNC;
4512         }
4513
4514         return status;
4515 }
4516
4517 /**
4518  * ixgbe_handle_lasi_ext_t_x550em - Handle external Base T PHY interrupt
4519  * @hw: pointer to hardware structure
4520  *
4521  * Handle external Base T PHY interrupt. If high temperature
4522  * failure alarm then return error, else if link status change
4523  * then setup internal/external PHY link
4524  *
4525  * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature
4526  * failure alarm, else return PHY access status.
4527  */
4528 s32 ixgbe_handle_lasi_ext_t_x550em(struct ixgbe_hw *hw)
4529 {
4530         bool lsc;
4531         u32 status;
4532
4533         status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc);
4534
4535         if (status != IXGBE_SUCCESS)
4536                 return status;
4537
4538         if (lsc)
4539                 return ixgbe_setup_internal_phy(hw);
4540
4541         return IXGBE_SUCCESS;
4542 }
4543
4544 /**
4545  * ixgbe_setup_mac_link_t_X550em - Sets the auto advertised link speed
4546  * @hw: pointer to hardware structure
4547  * @speed: new link speed
4548  * @autoneg_wait_to_complete: true when waiting for completion is needed
4549  *
4550  * Setup internal/external PHY link speed based on link speed, then set
4551  * external PHY auto advertised link speed.
4552  *
4553  * Returns error status for any failure
4554  **/
4555 s32 ixgbe_setup_mac_link_t_X550em(struct ixgbe_hw *hw,
4556                                   ixgbe_link_speed speed,
4557                                   bool autoneg_wait_to_complete)
4558 {
4559         s32 status;
4560         ixgbe_link_speed force_speed;
4561
4562         DEBUGFUNC("ixgbe_setup_mac_link_t_X550em");
4563
4564         /* Setup internal/external PHY link speed to iXFI (10G), unless
4565          * only 1G is auto advertised then setup KX link.
4566          */
4567         if (speed & IXGBE_LINK_SPEED_10GB_FULL)
4568                 force_speed = IXGBE_LINK_SPEED_10GB_FULL;
4569         else
4570                 force_speed = IXGBE_LINK_SPEED_1GB_FULL;
4571
4572         /* If internal link mode is XFI, then setup XFI internal link. */
4573         if (!(hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_INT_PHY_MODE)) {
4574                 status = ixgbe_setup_ixfi_x550em(hw, &force_speed);
4575
4576                 if (status != IXGBE_SUCCESS)
4577                         return status;
4578         }
4579
4580         return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait_to_complete);
4581 }
4582
4583 /**
4584  * ixgbe_check_link_t_X550em - Determine link and speed status
4585  * @hw: pointer to hardware structure
4586  * @speed: pointer to link speed
4587  * @link_up: true when link is up
4588  * @link_up_wait_to_complete: bool used to wait for link up or not
4589  *
4590  * Check that both the MAC and X557 external PHY have link.
4591  **/
4592 s32 ixgbe_check_link_t_X550em(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
4593                               bool *link_up, bool link_up_wait_to_complete)
4594 {
4595         u32 status;
4596         u16 autoneg_status;
4597
4598         if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper)
4599                 return IXGBE_ERR_CONFIG;
4600
4601         status = ixgbe_check_mac_link_generic(hw, speed, link_up,
4602                                               link_up_wait_to_complete);
4603
4604         /* If check link fails or MAC link is not up, then return */
4605         if (status != IXGBE_SUCCESS || !(*link_up))
4606                 return status;
4607
4608         /* MAC link is up, so check external PHY link.
4609          * Read this twice back to back to indicate current status.
4610          */
4611         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_STATUS,
4612                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
4613                                       &autoneg_status);
4614
4615         if (status != IXGBE_SUCCESS)
4616                 return status;
4617
4618         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_STATUS,
4619                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
4620                                       &autoneg_status);
4621
4622         if (status != IXGBE_SUCCESS)
4623                 return status;
4624
4625         /* If external PHY link is not up, then indicate link not up */
4626         if (!(autoneg_status & IXGBE_MDIO_AUTO_NEG_LINK_STATUS))
4627                 *link_up = false;
4628
4629         return IXGBE_SUCCESS;
4630 }
4631
4632 /**
4633  *  ixgbe_reset_phy_t_X550em - Performs X557 PHY reset and enables LASI
4634  *  @hw: pointer to hardware structure
4635  **/
4636 s32 ixgbe_reset_phy_t_X550em(struct ixgbe_hw *hw)
4637 {
4638         s32 status;
4639
4640         status = ixgbe_reset_phy_generic(hw);
4641
4642         if (status != IXGBE_SUCCESS)
4643                 return status;
4644
4645         /* Configure Link Status Alarm and Temperature Threshold interrupts */
4646         return ixgbe_enable_lasi_ext_t_x550em(hw);
4647 }
4648
4649 /**
4650  *  ixgbe_led_on_t_X550em - Turns on the software controllable LEDs.
4651  *  @hw: pointer to hardware structure
4652  *  @led_idx: led number to turn on
4653  **/
4654 s32 ixgbe_led_on_t_X550em(struct ixgbe_hw *hw, u32 led_idx)
4655 {
4656         u16 phy_data;
4657
4658         DEBUGFUNC("ixgbe_led_on_t_X550em");
4659
4660         if (led_idx >= IXGBE_X557_MAX_LED_INDEX)
4661                 return IXGBE_ERR_PARAM;
4662
4663         /* To turn on the LED, set mode to ON. */
4664         ixgbe_read_phy_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
4665                            IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, &phy_data);
4666         phy_data |= IXGBE_X557_LED_MANUAL_SET_MASK;
4667         ixgbe_write_phy_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
4668                             IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, phy_data);
4669
4670         return IXGBE_SUCCESS;
4671 }
4672
4673 /**
4674  *  ixgbe_led_off_t_X550em - Turns off the software controllable LEDs.
4675  *  @hw: pointer to hardware structure
4676  *  @led_idx: led number to turn off
4677  **/
4678 s32 ixgbe_led_off_t_X550em(struct ixgbe_hw *hw, u32 led_idx)
4679 {
4680         u16 phy_data;
4681
4682         DEBUGFUNC("ixgbe_led_off_t_X550em");
4683
4684         if (led_idx >= IXGBE_X557_MAX_LED_INDEX)
4685                 return IXGBE_ERR_PARAM;
4686
4687         /* To turn on the LED, set mode to ON. */
4688         ixgbe_read_phy_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
4689                            IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, &phy_data);
4690         phy_data &= ~IXGBE_X557_LED_MANUAL_SET_MASK;
4691         ixgbe_write_phy_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx,
4692                             IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, phy_data);
4693
4694         return IXGBE_SUCCESS;
4695 }
4696