net/ixgbe/base: add flow control autoneg for X550em_a fiber
[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_100_FULL:
772                 pb_headroom = IXGBE_DMACRXT_100M;
773                 break;
774         case IXGBE_LINK_SPEED_1GB_FULL:
775                 pb_headroom = IXGBE_DMACRXT_1G;
776                 break;
777         default:
778                 pb_headroom = IXGBE_DMACRXT_10G;
779                 break;
780         }
781
782         maxframe_size_kb = ((IXGBE_READ_REG(hw, IXGBE_MAXFRS) >>
783                              IXGBE_MHADD_MFS_SHIFT) / 1024);
784
785         /* Set the per Rx packet buffer receive threshold */
786         for (tc = 0; tc < IXGBE_DCB_MAX_TRAFFIC_CLASS; tc++) {
787                 reg = IXGBE_READ_REG(hw, IXGBE_DMCTH(tc));
788                 reg &= ~IXGBE_DMCTH_DMACRXT_MASK;
789
790                 if (tc < hw->mac.dmac_config.num_tcs) {
791                         /* Get Rx PB size */
792                         rx_pb_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc));
793                         rx_pb_size = (rx_pb_size & IXGBE_RXPBSIZE_MASK) >>
794                                 IXGBE_RXPBSIZE_SHIFT;
795
796                         /* Calculate receive buffer threshold in kilobytes */
797                         if (rx_pb_size > pb_headroom)
798                                 rx_pb_size = rx_pb_size - pb_headroom;
799                         else
800                                 rx_pb_size = 0;
801
802                         /* Minimum of MFS shall be set for DMCTH */
803                         reg |= (rx_pb_size > maxframe_size_kb) ?
804                                 rx_pb_size : maxframe_size_kb;
805                 }
806                 IXGBE_WRITE_REG(hw, IXGBE_DMCTH(tc), reg);
807         }
808         return IXGBE_SUCCESS;
809 }
810
811 /**
812  *  ixgbe_dmac_update_tcs_X550
813  *  @hw: pointer to hardware structure
814  *
815  *  Disables dmac, updates per TC settings, and then enables dmac.
816  **/
817 s32 ixgbe_dmac_update_tcs_X550(struct ixgbe_hw *hw)
818 {
819         u32 reg;
820
821         DEBUGFUNC("ixgbe_dmac_update_tcs_X550");
822
823         /* Disable DMA coalescing before configuring */
824         reg = IXGBE_READ_REG(hw, IXGBE_DMACR);
825         reg &= ~IXGBE_DMACR_DMAC_EN;
826         IXGBE_WRITE_REG(hw, IXGBE_DMACR, reg);
827
828         ixgbe_dmac_config_tcs_X550(hw);
829
830         /* Enable DMA coalescing after configuration */
831         reg = IXGBE_READ_REG(hw, IXGBE_DMACR);
832         reg |= IXGBE_DMACR_DMAC_EN;
833         IXGBE_WRITE_REG(hw, IXGBE_DMACR, reg);
834
835         return IXGBE_SUCCESS;
836 }
837
838 /**
839  *  ixgbe_init_eeprom_params_X550 - Initialize EEPROM params
840  *  @hw: pointer to hardware structure
841  *
842  *  Initializes the EEPROM parameters ixgbe_eeprom_info within the
843  *  ixgbe_hw struct in order to set up EEPROM access.
844  **/
845 s32 ixgbe_init_eeprom_params_X550(struct ixgbe_hw *hw)
846 {
847         struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
848         u32 eec;
849         u16 eeprom_size;
850
851         DEBUGFUNC("ixgbe_init_eeprom_params_X550");
852
853         if (eeprom->type == ixgbe_eeprom_uninitialized) {
854                 eeprom->semaphore_delay = 10;
855                 eeprom->type = ixgbe_flash;
856
857                 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
858                 eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
859                                     IXGBE_EEC_SIZE_SHIFT);
860                 eeprom->word_size = 1 << (eeprom_size +
861                                           IXGBE_EEPROM_WORD_SIZE_SHIFT);
862
863                 DEBUGOUT2("Eeprom params: type = %d, size = %d\n",
864                           eeprom->type, eeprom->word_size);
865         }
866
867         return IXGBE_SUCCESS;
868 }
869
870 /**
871  * ixgbe_enable_eee_x550 - Enable EEE support
872  * @hw: pointer to hardware structure
873  */
874 STATIC s32 ixgbe_enable_eee_x550(struct ixgbe_hw *hw)
875 {
876         u16 autoneg_eee_reg;
877         u32 link_reg;
878         s32 status;
879
880         if (hw->mac.type == ixgbe_mac_X550) {
881                 /* Advertise EEE capability */
882                 hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
883                                      IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
884                                      &autoneg_eee_reg);
885
886                 autoneg_eee_reg |= (IXGBE_AUTO_NEG_10GBASE_EEE_ADVT |
887                                     IXGBE_AUTO_NEG_1000BASE_EEE_ADVT |
888                                     IXGBE_AUTO_NEG_100BASE_EEE_ADVT);
889
890                 hw->phy.ops.write_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
891                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
892                                       autoneg_eee_reg);
893                 return IXGBE_SUCCESS;
894         }
895
896         switch (hw->device_id) {
897         case IXGBE_DEV_ID_X550EM_X_KR:
898         case IXGBE_DEV_ID_X550EM_A_KR:
899         case IXGBE_DEV_ID_X550EM_A_KR_L:
900                 status = hw->mac.ops.read_iosf_sb_reg(hw,
901                                      IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
902                                      IXGBE_SB_IOSF_TARGET_KR_PHY, &link_reg);
903                 if (status != IXGBE_SUCCESS)
904                         return status;
905
906                 link_reg |= IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KR |
907                         IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KX;
908
909                 /* Don't advertise FEC capability when EEE enabled. */
910                 link_reg &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_FEC;
911
912                 status = hw->mac.ops.write_iosf_sb_reg(hw,
913                                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
914                                       IXGBE_SB_IOSF_TARGET_KR_PHY, link_reg);
915                 if (status != IXGBE_SUCCESS)
916                         return status;
917                 break;
918         default:
919                 break;
920         }
921
922         return IXGBE_SUCCESS;
923 }
924
925 /**
926  * ixgbe_disable_eee_x550 - Disable EEE support
927  * @hw: pointer to hardware structure
928  */
929 STATIC s32 ixgbe_disable_eee_x550(struct ixgbe_hw *hw)
930 {
931         u16 autoneg_eee_reg;
932         u32 link_reg;
933         s32 status;
934
935         if (hw->mac.type == ixgbe_mac_X550) {
936                 /* Disable advertised EEE capability */
937                 hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
938                                      IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
939                                      &autoneg_eee_reg);
940
941                 autoneg_eee_reg &= ~(IXGBE_AUTO_NEG_10GBASE_EEE_ADVT |
942                                      IXGBE_AUTO_NEG_1000BASE_EEE_ADVT |
943                                      IXGBE_AUTO_NEG_100BASE_EEE_ADVT);
944
945                 hw->phy.ops.write_reg(hw, IXGBE_MDIO_AUTO_NEG_EEE_ADVT,
946                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
947                                       autoneg_eee_reg);
948                 return IXGBE_SUCCESS;
949         }
950
951         switch (hw->device_id) {
952         case IXGBE_DEV_ID_X550EM_X_KR:
953         case IXGBE_DEV_ID_X550EM_A_KR:
954         case IXGBE_DEV_ID_X550EM_A_KR_L:
955                 status = hw->mac.ops.read_iosf_sb_reg(hw,
956                                      IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
957                                      IXGBE_SB_IOSF_TARGET_KR_PHY, &link_reg);
958                 if (status != IXGBE_SUCCESS)
959                         return status;
960
961                 link_reg &= ~(IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KR |
962                               IXGBE_KRM_LINK_CTRL_1_TETH_EEE_CAP_KX);
963
964                 /* Advertise FEC capability when EEE is disabled. */
965                 link_reg |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_FEC;
966
967                 status = hw->mac.ops.write_iosf_sb_reg(hw,
968                                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
969                                       IXGBE_SB_IOSF_TARGET_KR_PHY, link_reg);
970                 if (status != IXGBE_SUCCESS)
971                         return status;
972                 break;
973         default:
974                 break;
975         }
976
977         return IXGBE_SUCCESS;
978 }
979
980 /**
981  *  ixgbe_setup_eee_X550 - Enable/disable EEE support
982  *  @hw: pointer to the HW structure
983  *  @enable_eee: boolean flag to enable EEE
984  *
985  *  Enable/disable EEE based on enable_eee flag.
986  *  Auto-negotiation must be started after BASE-T EEE bits in PHY register 7.3C
987  *  are modified.
988  *
989  **/
990 s32 ixgbe_setup_eee_X550(struct ixgbe_hw *hw, bool enable_eee)
991 {
992         s32 status;
993         u32 eeer;
994
995         DEBUGFUNC("ixgbe_setup_eee_X550");
996
997         eeer = IXGBE_READ_REG(hw, IXGBE_EEER);
998         /* Enable or disable EEE per flag */
999         if (enable_eee) {
1000                 eeer |= (IXGBE_EEER_TX_LPI_EN | IXGBE_EEER_RX_LPI_EN);
1001
1002                 /* Not supported on first revision of X550EM_x. */
1003                 if ((hw->mac.type == ixgbe_mac_X550EM_x) &&
1004                     !(IXGBE_FUSES0_REV_MASK &
1005                       IXGBE_READ_REG(hw, IXGBE_FUSES0_GROUP(0))))
1006                         return IXGBE_SUCCESS;
1007                 status = ixgbe_enable_eee_x550(hw);
1008                 if (status)
1009                         return status;
1010         } else {
1011                 eeer &= ~(IXGBE_EEER_TX_LPI_EN | IXGBE_EEER_RX_LPI_EN);
1012
1013                 status = ixgbe_disable_eee_x550(hw);
1014                 if (status)
1015                         return status;
1016         }
1017         IXGBE_WRITE_REG(hw, IXGBE_EEER, eeer);
1018
1019         return IXGBE_SUCCESS;
1020 }
1021
1022 /**
1023  * ixgbe_set_source_address_pruning_X550 - Enable/Disbale source address pruning
1024  * @hw: pointer to hardware structure
1025  * @enable: enable or disable source address pruning
1026  * @pool: Rx pool to set source address pruning for
1027  **/
1028 void ixgbe_set_source_address_pruning_X550(struct ixgbe_hw *hw, bool enable,
1029                                            unsigned int pool)
1030 {
1031         u64 pfflp;
1032
1033         /* max rx pool is 63 */
1034         if (pool > 63)
1035                 return;
1036
1037         pfflp = (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPL);
1038         pfflp |= (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPH) << 32;
1039
1040         if (enable)
1041                 pfflp |= (1ULL << pool);
1042         else
1043                 pfflp &= ~(1ULL << pool);
1044
1045         IXGBE_WRITE_REG(hw, IXGBE_PFFLPL, (u32)pfflp);
1046         IXGBE_WRITE_REG(hw, IXGBE_PFFLPH, (u32)(pfflp >> 32));
1047 }
1048
1049 /**
1050  *  ixgbe_set_ethertype_anti_spoofing_X550 - Enable/Disable Ethertype anti-spoofing
1051  *  @hw: pointer to hardware structure
1052  *  @enable: enable or disable switch for Ethertype anti-spoofing
1053  *  @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
1054  *
1055  **/
1056 void ixgbe_set_ethertype_anti_spoofing_X550(struct ixgbe_hw *hw,
1057                 bool enable, int vf)
1058 {
1059         int vf_target_reg = vf >> 3;
1060         int vf_target_shift = vf % 8 + IXGBE_SPOOF_ETHERTYPEAS_SHIFT;
1061         u32 pfvfspoof;
1062
1063         DEBUGFUNC("ixgbe_set_ethertype_anti_spoofing_X550");
1064
1065         pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1066         if (enable)
1067                 pfvfspoof |= (1 << vf_target_shift);
1068         else
1069                 pfvfspoof &= ~(1 << vf_target_shift);
1070
1071         IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
1072 }
1073
1074 /**
1075  * ixgbe_iosf_wait - Wait for IOSF command completion
1076  * @hw: pointer to hardware structure
1077  * @ctrl: pointer to location to receive final IOSF control value
1078  *
1079  * Returns failing status on timeout
1080  *
1081  * Note: ctrl can be NULL if the IOSF control register value is not needed
1082  **/
1083 STATIC s32 ixgbe_iosf_wait(struct ixgbe_hw *hw, u32 *ctrl)
1084 {
1085         u32 i, command = 0;
1086
1087         /* Check every 10 usec to see if the address cycle completed.
1088          * The SB IOSF BUSY bit will clear when the operation is
1089          * complete
1090          */
1091         for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
1092                 command = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL);
1093                 if ((command & IXGBE_SB_IOSF_CTRL_BUSY) == 0)
1094                         break;
1095                 usec_delay(10);
1096         }
1097         if (ctrl)
1098                 *ctrl = command;
1099         if (i == IXGBE_MDIO_COMMAND_TIMEOUT) {
1100                 ERROR_REPORT1(IXGBE_ERROR_POLLING, "Wait timed out\n");
1101                 return IXGBE_ERR_PHY;
1102         }
1103
1104         return IXGBE_SUCCESS;
1105 }
1106
1107 /**
1108  *  ixgbe_write_iosf_sb_reg_x550 - Writes a value to specified register of the IOSF
1109  *  device
1110  *  @hw: pointer to hardware structure
1111  *  @reg_addr: 32 bit PHY register to write
1112  *  @device_type: 3 bit device type
1113  *  @data: Data to write to the register
1114  **/
1115 s32 ixgbe_write_iosf_sb_reg_x550(struct ixgbe_hw *hw, u32 reg_addr,
1116                             u32 device_type, u32 data)
1117 {
1118         u32 gssr = IXGBE_GSSR_PHY1_SM | IXGBE_GSSR_PHY0_SM;
1119         u32 command, error;
1120         s32 ret;
1121
1122         ret = ixgbe_acquire_swfw_semaphore(hw, gssr);
1123         if (ret != IXGBE_SUCCESS)
1124                 return ret;
1125
1126         ret = ixgbe_iosf_wait(hw, NULL);
1127         if (ret != IXGBE_SUCCESS)
1128                 goto out;
1129
1130         command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
1131                    (device_type << IXGBE_SB_IOSF_CTRL_TARGET_SELECT_SHIFT));
1132
1133         /* Write IOSF control register */
1134         IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
1135
1136         /* Write IOSF data register */
1137         IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_DATA, data);
1138
1139         ret = ixgbe_iosf_wait(hw, &command);
1140
1141         if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
1142                 error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >>
1143                          IXGBE_SB_IOSF_CTRL_CMPL_ERR_SHIFT;
1144                 ERROR_REPORT2(IXGBE_ERROR_POLLING,
1145                               "Failed to write, error %x\n", error);
1146                 ret = IXGBE_ERR_PHY;
1147         }
1148
1149 out:
1150         ixgbe_release_swfw_semaphore(hw, gssr);
1151         return ret;
1152 }
1153
1154 /**
1155  *  ixgbe_read_iosf_sb_reg_x550 - Writes a value to specified register of the IOSF
1156  *  device
1157  *  @hw: pointer to hardware structure
1158  *  @reg_addr: 32 bit PHY register to write
1159  *  @device_type: 3 bit device type
1160  *  @phy_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 - Writes a value to specified register
1295  *  of the IOSF device.
1296  *  @hw: pointer to hardware structure
1297  *  @reg_addr: 32 bit PHY register to write
1298  *  @device_type: 3 bit device type
1299  *  @data: Pointer to read data from the register
1300  **/
1301 s32 ixgbe_read_iosf_sb_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr,
1302                                  u32 device_type, u32 *data)
1303 {
1304         union {
1305                 struct ixgbe_hic_internal_phy_req cmd;
1306                 struct ixgbe_hic_internal_phy_resp rsp;
1307         } hic;
1308         s32 status;
1309         UNREFERENCED_1PARAMETER(device_type);
1310
1311         memset(&hic, 0, sizeof(hic));
1312         hic.cmd.hdr.cmd = FW_INT_PHY_REQ_CMD;
1313         hic.cmd.hdr.buf_len = FW_INT_PHY_REQ_LEN;
1314         hic.cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1315         hic.cmd.port_number = hw->bus.lan_id;
1316         hic.cmd.command_type = FW_INT_PHY_REQ_READ;
1317         hic.cmd.address = IXGBE_CPU_TO_BE16(reg_addr);
1318
1319         status = ixgbe_host_interface_command(hw, (u32 *)&hic.cmd,
1320                                               sizeof(hic.cmd),
1321                                               IXGBE_HI_COMMAND_TIMEOUT, true);
1322
1323         /* Extract the register value from the response. */
1324         *data = IXGBE_BE32_TO_CPU(hic.rsp.read_data);
1325
1326         return status;
1327 }
1328
1329 /**
1330  *  ixgbe_disable_mdd_X550
1331  *  @hw: pointer to hardware structure
1332  *
1333  *  Disable malicious driver detection
1334  **/
1335 void ixgbe_disable_mdd_X550(struct ixgbe_hw *hw)
1336 {
1337         u32 reg;
1338
1339         DEBUGFUNC("ixgbe_disable_mdd_X550");
1340
1341         /* Disable MDD for TX DMA and interrupt */
1342         reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1343         reg &= ~(IXGBE_DMATXCTL_MDP_EN | IXGBE_DMATXCTL_MBINTEN);
1344         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1345
1346         /* Disable MDD for RX and interrupt */
1347         reg = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
1348         reg &= ~(IXGBE_RDRXCTL_MDP_EN | IXGBE_RDRXCTL_MBINTEN);
1349         IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, reg);
1350 }
1351
1352 /**
1353  *  ixgbe_enable_mdd_X550
1354  *  @hw: pointer to hardware structure
1355  *
1356  *  Enable malicious driver detection
1357  **/
1358 void ixgbe_enable_mdd_X550(struct ixgbe_hw *hw)
1359 {
1360         u32 reg;
1361
1362         DEBUGFUNC("ixgbe_enable_mdd_X550");
1363
1364         /* Enable MDD for TX DMA and interrupt */
1365         reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1366         reg |= (IXGBE_DMATXCTL_MDP_EN | IXGBE_DMATXCTL_MBINTEN);
1367         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1368
1369         /* Enable MDD for RX and interrupt */
1370         reg = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
1371         reg |= (IXGBE_RDRXCTL_MDP_EN | IXGBE_RDRXCTL_MBINTEN);
1372         IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, reg);
1373 }
1374
1375 /**
1376  *  ixgbe_restore_mdd_vf_X550
1377  *  @hw: pointer to hardware structure
1378  *  @vf: vf index
1379  *
1380  *  Restore VF that was disabled during malicious driver detection event
1381  **/
1382 void ixgbe_restore_mdd_vf_X550(struct ixgbe_hw *hw, u32 vf)
1383 {
1384         u32 idx, reg, num_qs, start_q, bitmask;
1385
1386         DEBUGFUNC("ixgbe_restore_mdd_vf_X550");
1387
1388         /* Map VF to queues */
1389         reg = IXGBE_READ_REG(hw, IXGBE_MRQC);
1390         switch (reg & IXGBE_MRQC_MRQE_MASK) {
1391         case IXGBE_MRQC_VMDQRT8TCEN:
1392                 num_qs = 8;  /* 16 VFs / pools */
1393                 bitmask = 0x000000FF;
1394                 break;
1395         case IXGBE_MRQC_VMDQRSS32EN:
1396         case IXGBE_MRQC_VMDQRT4TCEN:
1397                 num_qs = 4;  /* 32 VFs / pools */
1398                 bitmask = 0x0000000F;
1399                 break;
1400         default:            /* 64 VFs / pools */
1401                 num_qs = 2;
1402                 bitmask = 0x00000003;
1403                 break;
1404         }
1405         start_q = vf * num_qs;
1406
1407         /* Release vf's queues by clearing WQBR_TX and WQBR_RX (RW1C) */
1408         idx = start_q / 32;
1409         reg = 0;
1410         reg |= (bitmask << (start_q % 32));
1411         IXGBE_WRITE_REG(hw, IXGBE_WQBR_TX(idx), reg);
1412         IXGBE_WRITE_REG(hw, IXGBE_WQBR_RX(idx), reg);
1413 }
1414
1415 /**
1416  *  ixgbe_mdd_event_X550
1417  *  @hw: pointer to hardware structure
1418  *  @vf_bitmap: vf bitmap of malicious vfs
1419  *
1420  *  Handle malicious driver detection event.
1421  **/
1422 void ixgbe_mdd_event_X550(struct ixgbe_hw *hw, u32 *vf_bitmap)
1423 {
1424         u32 wqbr;
1425         u32 i, j, reg, q, shift, vf, idx;
1426
1427         DEBUGFUNC("ixgbe_mdd_event_X550");
1428
1429         /* figure out pool size for mapping to vf's */
1430         reg = IXGBE_READ_REG(hw, IXGBE_MRQC);
1431         switch (reg & IXGBE_MRQC_MRQE_MASK) {
1432         case IXGBE_MRQC_VMDQRT8TCEN:
1433                 shift = 3;  /* 16 VFs / pools */
1434                 break;
1435         case IXGBE_MRQC_VMDQRSS32EN:
1436         case IXGBE_MRQC_VMDQRT4TCEN:
1437                 shift = 2;  /* 32 VFs / pools */
1438                 break;
1439         default:
1440                 shift = 1;  /* 64 VFs / pools */
1441                 break;
1442         }
1443
1444         /* Read WQBR_TX and WQBR_RX and check for malicious queues */
1445         for (i = 0; i < 4; i++) {
1446                 wqbr = IXGBE_READ_REG(hw, IXGBE_WQBR_TX(i));
1447                 wqbr |= IXGBE_READ_REG(hw, IXGBE_WQBR_RX(i));
1448
1449                 if (!wqbr)
1450                         continue;
1451
1452                 /* Get malicious queue */
1453                 for (j = 0; j < 32 && wqbr; j++) {
1454
1455                         if (!(wqbr & (1 << j)))
1456                                 continue;
1457
1458                         /* Get queue from bitmask */
1459                         q = j + (i * 32);
1460
1461                         /* Map queue to vf */
1462                         vf = (q >> shift);
1463
1464                         /* Set vf bit in vf_bitmap */
1465                         idx = vf / 32;
1466                         vf_bitmap[idx] |= (1 << (vf % 32));
1467                         wqbr &= ~(1 << j);
1468                 }
1469         }
1470 }
1471
1472 /**
1473  *  ixgbe_get_media_type_X550em - Get media type
1474  *  @hw: pointer to hardware structure
1475  *
1476  *  Returns the media type (fiber, copper, backplane)
1477  */
1478 enum ixgbe_media_type ixgbe_get_media_type_X550em(struct ixgbe_hw *hw)
1479 {
1480         enum ixgbe_media_type media_type;
1481
1482         DEBUGFUNC("ixgbe_get_media_type_X550em");
1483
1484         /* Detect if there is a copper PHY attached. */
1485         switch (hw->device_id) {
1486         case IXGBE_DEV_ID_X550EM_X_KR:
1487         case IXGBE_DEV_ID_X550EM_X_KX4:
1488         case IXGBE_DEV_ID_X550EM_A_KR:
1489         case IXGBE_DEV_ID_X550EM_A_KR_L:
1490                 media_type = ixgbe_media_type_backplane;
1491                 break;
1492         case IXGBE_DEV_ID_X550EM_X_SFP:
1493         case IXGBE_DEV_ID_X550EM_A_SFP:
1494         case IXGBE_DEV_ID_X550EM_A_SFP_N:
1495         case IXGBE_DEV_ID_X550EM_A_QSFP:
1496         case IXGBE_DEV_ID_X550EM_A_QSFP_N:
1497                 media_type = ixgbe_media_type_fiber;
1498                 break;
1499         case IXGBE_DEV_ID_X550EM_X_1G_T:
1500         case IXGBE_DEV_ID_X550EM_X_10G_T:
1501         case IXGBE_DEV_ID_X550EM_A_10G_T:
1502                 media_type = ixgbe_media_type_copper;
1503                 break;
1504         case IXGBE_DEV_ID_X550EM_A_SGMII:
1505         case IXGBE_DEV_ID_X550EM_A_SGMII_L:
1506                 media_type = ixgbe_media_type_backplane;
1507                 hw->phy.type = ixgbe_phy_sgmii;
1508                 break;
1509         case IXGBE_DEV_ID_X550EM_A_1G_T:
1510         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
1511                 media_type = ixgbe_media_type_copper;
1512                 break;
1513         default:
1514                 media_type = ixgbe_media_type_unknown;
1515                 break;
1516         }
1517         return media_type;
1518 }
1519
1520 /**
1521  *  ixgbe_supported_sfp_modules_X550em - Check if SFP module type is supported
1522  *  @hw: pointer to hardware structure
1523  *  @linear: true if SFP module is linear
1524  */
1525 STATIC s32 ixgbe_supported_sfp_modules_X550em(struct ixgbe_hw *hw, bool *linear)
1526 {
1527         DEBUGFUNC("ixgbe_supported_sfp_modules_X550em");
1528
1529         switch (hw->phy.sfp_type) {
1530         case ixgbe_sfp_type_not_present:
1531                 return IXGBE_ERR_SFP_NOT_PRESENT;
1532         case ixgbe_sfp_type_da_cu_core0:
1533         case ixgbe_sfp_type_da_cu_core1:
1534                 *linear = true;
1535                 break;
1536         case ixgbe_sfp_type_srlr_core0:
1537         case ixgbe_sfp_type_srlr_core1:
1538         case ixgbe_sfp_type_da_act_lmt_core0:
1539         case ixgbe_sfp_type_da_act_lmt_core1:
1540         case ixgbe_sfp_type_1g_sx_core0:
1541         case ixgbe_sfp_type_1g_sx_core1:
1542         case ixgbe_sfp_type_1g_lx_core0:
1543         case ixgbe_sfp_type_1g_lx_core1:
1544                 *linear = false;
1545                 break;
1546         case ixgbe_sfp_type_unknown:
1547         case ixgbe_sfp_type_1g_cu_core0:
1548         case ixgbe_sfp_type_1g_cu_core1:
1549         default:
1550                 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1551         }
1552
1553         return IXGBE_SUCCESS;
1554 }
1555
1556 /**
1557  *  ixgbe_identify_sfp_module_X550em - Identifies SFP modules
1558  *  @hw: pointer to hardware structure
1559  *
1560  *  Searches for and identifies the SFP module and assigns appropriate PHY type.
1561  **/
1562 s32 ixgbe_identify_sfp_module_X550em(struct ixgbe_hw *hw)
1563 {
1564         s32 status;
1565         bool linear;
1566
1567         DEBUGFUNC("ixgbe_identify_sfp_module_X550em");
1568
1569         status = ixgbe_identify_module_generic(hw);
1570
1571         if (status != IXGBE_SUCCESS)
1572                 return status;
1573
1574         /* Check if SFP module is supported */
1575         status = ixgbe_supported_sfp_modules_X550em(hw, &linear);
1576
1577         return status;
1578 }
1579
1580 /**
1581  *  ixgbe_setup_sfp_modules_X550em - Setup MAC link ops
1582  *  @hw: pointer to hardware structure
1583  */
1584 s32 ixgbe_setup_sfp_modules_X550em(struct ixgbe_hw *hw)
1585 {
1586         s32 status;
1587         bool linear;
1588
1589         DEBUGFUNC("ixgbe_setup_sfp_modules_X550em");
1590
1591         /* Check if SFP module is supported */
1592         status = ixgbe_supported_sfp_modules_X550em(hw, &linear);
1593
1594         if (status != IXGBE_SUCCESS)
1595                 return status;
1596
1597         ixgbe_init_mac_link_ops_X550em(hw);
1598         hw->phy.ops.reset = NULL;
1599
1600         return IXGBE_SUCCESS;
1601 }
1602
1603 /**
1604  * ixgbe_setup_sgmii - Set up link for sgmii
1605  * @hw: pointer to hardware structure
1606  */
1607 STATIC s32 ixgbe_setup_sgmii(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1608                              bool autoneg_wait)
1609 {
1610         struct ixgbe_mac_info *mac = &hw->mac;
1611         u32 lval, sval;
1612         s32 rc;
1613
1614         rc = mac->ops.read_iosf_sb_reg(hw,
1615                                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1616                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
1617         if (rc)
1618                 return rc;
1619
1620         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1621         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1622         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
1623         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
1624         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1625         rc = mac->ops.write_iosf_sb_reg(hw,
1626                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1627                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1628         if (rc)
1629                 return rc;
1630
1631         rc = mac->ops.read_iosf_sb_reg(hw,
1632                                        IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1633                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
1634         if (rc)
1635                 return rc;
1636
1637         sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
1638         sval |= IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
1639         rc = mac->ops.write_iosf_sb_reg(hw,
1640                                         IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1641                                         IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
1642         if (rc)
1643                 return rc;
1644
1645         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
1646         rc = mac->ops.write_iosf_sb_reg(hw,
1647                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1648                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1649         if (rc)
1650                 return rc;
1651
1652         return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
1653 }
1654
1655  /**
1656  * ixgbe_setup_sgmii_m88 - Set up link for sgmii with Marvell PHYs
1657  * @hw: pointer to hardware structure
1658  */
1659 STATIC s32 ixgbe_setup_sgmii_m88(struct ixgbe_hw *hw, ixgbe_link_speed speed,
1660                                  bool autoneg_wait)
1661 {
1662         struct ixgbe_mac_info *mac = &hw->mac;
1663         u32 lval, sval;
1664         s32 rc;
1665
1666         rc = mac->ops.read_iosf_sb_reg(hw,
1667                                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1668                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &lval);
1669         if (rc)
1670                 return rc;
1671
1672         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
1673         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_MASK;
1674         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_SGMII_EN;
1675         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CLAUSE_37_EN;
1676         lval &= ~IXGBE_KRM_LINK_CTRL_1_TETH_FORCE_SPEED_1G;
1677         rc = mac->ops.write_iosf_sb_reg(hw,
1678                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1679                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1680         if (rc)
1681                 return rc;
1682
1683         rc = mac->ops.read_iosf_sb_reg(hw,
1684                                        IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1685                                        IXGBE_SB_IOSF_TARGET_KR_PHY, &sval);
1686         if (rc)
1687                 return rc;
1688
1689         sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_10_D;
1690         sval &= ~IXGBE_KRM_SGMII_CTRL_MAC_TAR_FORCE_100_D;
1691         rc = mac->ops.write_iosf_sb_reg(hw,
1692                                         IXGBE_KRM_SGMII_CTRL(hw->bus.lan_id),
1693                                         IXGBE_SB_IOSF_TARGET_KR_PHY, sval);
1694         if (rc)
1695                 return rc;
1696
1697         lval |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
1698         rc = mac->ops.write_iosf_sb_reg(hw,
1699                                         IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
1700                                         IXGBE_SB_IOSF_TARGET_KR_PHY, lval);
1701         if (rc)
1702                 return rc;
1703
1704         return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait);
1705 }
1706
1707 /**
1708  * ixgbe_check_link_m88 - Poll PHY for link
1709  * @hw: pointer to hardware structure
1710  * @speed: pointer to link speed
1711  * @link_up: true when link is up
1712  * @link_up_wait: bool indicating whether to wait for link
1713  *
1714  * Check that both the MAC and PHY have link.
1715  */
1716 static s32
1717 ixgbe_check_link_m88(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
1718                      bool *link_up, bool link_up_wait)
1719 {
1720         u16 reg;
1721         s32 rc;
1722         u32 i;
1723
1724         rc = ixgbe_check_mac_link_generic(hw, speed, link_up, link_up_wait);
1725         if (rc || !*link_up)
1726                 return rc;
1727
1728         rc = hw->phy.ops.read_reg(hw, IXGBE_M88E1500_PHY_SPEC_STATUS, 0, &reg);
1729
1730         /* MAC link is up, so check external PHY link */
1731         *link_up = !!(reg & IXGBE_M88E1500_PHY_SPEC_STATUS_LINK);
1732
1733         if (link_up_wait) {
1734                 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
1735                         if (!rc &&
1736                             (reg & IXGBE_M88E1500_PHY_SPEC_STATUS_LINK)) {
1737                                 *link_up = true;
1738                                 break;
1739                         }
1740                         *link_up = false;
1741                         msec_delay(100);
1742                         rc = hw->phy.ops.read_reg(hw,
1743                                                  IXGBE_M88E1500_PHY_SPEC_STATUS,
1744                                                  0, &reg);
1745                 }
1746         }
1747
1748 #define M88_SPEED(x) (IXGBE_M88E1500_PHY_SPEC_STATUS_RESOLVED  | \
1749                       IXGBE_M88E1500_PHY_SPEC_STATUS_DUPLEX     | \
1750                       ((IXGBE_M88E1500_PHY_SPEC_STATUS_SPEED_##x) <<\
1751                         IXGBE_M88E1500_PHY_SPEC_STATUS_SPEED_SHIFT))
1752
1753         reg &= M88_SPEED(MASK);
1754         switch (reg) {
1755         case M88_SPEED(10):
1756                 *speed = IXGBE_LINK_SPEED_10_FULL;
1757                 break;
1758         case M88_SPEED(100):
1759                 *speed = IXGBE_LINK_SPEED_100_FULL;
1760                 break;
1761         case M88_SPEED(1000):
1762                 *speed = IXGBE_LINK_SPEED_1GB_FULL;
1763                 break;
1764         default:
1765                 *speed = IXGBE_LINK_SPEED_UNKNOWN;
1766                 break;
1767         }
1768 #undef M88_SPEED
1769
1770         return rc;
1771 }
1772
1773 /**
1774  *  ixgbe_init_mac_link_ops_X550em - init mac link function pointers
1775  *  @hw: pointer to hardware structure
1776  */
1777 void ixgbe_init_mac_link_ops_X550em(struct ixgbe_hw *hw)
1778 {
1779         struct ixgbe_mac_info *mac = &hw->mac;
1780
1781         DEBUGFUNC("ixgbe_init_mac_link_ops_X550em");
1782
1783         switch (hw->mac.ops.get_media_type(hw)) {
1784         case ixgbe_media_type_fiber:
1785                 /* CS4227 does not support autoneg, so disable the laser control
1786                  * functions for SFP+ fiber
1787                  */
1788                 mac->ops.disable_tx_laser = NULL;
1789                 mac->ops.enable_tx_laser = NULL;
1790                 mac->ops.flap_tx_laser = NULL;
1791                 mac->ops.setup_link = ixgbe_setup_mac_link_multispeed_fiber;
1792                 mac->ops.set_rate_select_speed =
1793                                         ixgbe_set_soft_rate_select_speed;
1794                 if ((hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP_N) ||
1795                     (hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP))
1796                         mac->ops.setup_mac_link =
1797                                 ixgbe_setup_mac_link_sfp_x550a;
1798                 else
1799                         mac->ops.setup_mac_link =
1800                                 ixgbe_setup_mac_link_sfp_x550em;
1801                 break;
1802         case ixgbe_media_type_copper:
1803                 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
1804                     hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L) {
1805                         mac->ops.setup_link = ixgbe_setup_sgmii_m88;
1806                         mac->ops.check_link = ixgbe_check_link_m88;
1807                 } else {
1808                         mac->ops.setup_link = ixgbe_setup_mac_link_t_X550em;
1809                         mac->ops.check_link = ixgbe_check_link_t_X550em;
1810                 }
1811                 break;
1812         case ixgbe_media_type_backplane:
1813                 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII ||
1814                     hw->device_id == IXGBE_DEV_ID_X550EM_A_SGMII_L)
1815                         mac->ops.setup_link = ixgbe_setup_sgmii;
1816                 break;
1817         default:
1818                 break;
1819         }
1820 }
1821
1822 /**
1823  *  ixgbe_get_link_capabilities_x550em - Determines link capabilities
1824  *  @hw: pointer to hardware structure
1825  *  @speed: pointer to link speed
1826  *  @autoneg: true when autoneg or autotry is enabled
1827  */
1828 s32 ixgbe_get_link_capabilities_X550em(struct ixgbe_hw *hw,
1829                                        ixgbe_link_speed *speed,
1830                                        bool *autoneg)
1831 {
1832         DEBUGFUNC("ixgbe_get_link_capabilities_X550em");
1833
1834         /* SFP */
1835         if (hw->phy.media_type == ixgbe_media_type_fiber) {
1836
1837                 /* CS4227 SFP must not enable auto-negotiation */
1838                 *autoneg = false;
1839
1840                 /* Check if 1G SFP module. */
1841                 if (hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
1842                     hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1
1843                     || hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
1844                     hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1) {
1845                         *speed = IXGBE_LINK_SPEED_1GB_FULL;
1846                         return IXGBE_SUCCESS;
1847                 }
1848
1849                 /* Link capabilities are based on SFP */
1850                 if (hw->phy.multispeed_fiber)
1851                         *speed = IXGBE_LINK_SPEED_10GB_FULL |
1852                                  IXGBE_LINK_SPEED_1GB_FULL;
1853                 else
1854                         *speed = IXGBE_LINK_SPEED_10GB_FULL;
1855         } else {
1856                 switch (hw->phy.type) {
1857                 case ixgbe_phy_m88:
1858                         *speed = IXGBE_LINK_SPEED_1GB_FULL |
1859                                  IXGBE_LINK_SPEED_100_FULL |
1860                                  IXGBE_LINK_SPEED_10_FULL;
1861                         break;
1862                 case ixgbe_phy_sgmii:
1863                         *speed = IXGBE_LINK_SPEED_1GB_FULL;
1864                         break;
1865                 default:
1866                         *speed = IXGBE_LINK_SPEED_10GB_FULL |
1867                                  IXGBE_LINK_SPEED_1GB_FULL;
1868                         break;
1869                 }
1870                 *autoneg = true;
1871         }
1872
1873         return IXGBE_SUCCESS;
1874 }
1875
1876 /**
1877  * ixgbe_get_lasi_ext_t_x550em - Determime external Base T PHY interrupt cause
1878  * @hw: pointer to hardware structure
1879  * @lsc: pointer to boolean flag which indicates whether external Base T
1880  *       PHY interrupt is lsc
1881  *
1882  * Determime if external Base T PHY interrupt cause is high temperature
1883  * failure alarm or link status change.
1884  *
1885  * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature
1886  * failure alarm, else return PHY access status.
1887  */
1888 STATIC s32 ixgbe_get_lasi_ext_t_x550em(struct ixgbe_hw *hw, bool *lsc)
1889 {
1890         u32 status;
1891         u16 reg;
1892
1893         *lsc = false;
1894
1895         /* Vendor alarm triggered */
1896         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
1897                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1898                                       &reg);
1899
1900         if (status != IXGBE_SUCCESS ||
1901             !(reg & IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN))
1902                 return status;
1903
1904         /* Vendor Auto-Neg alarm triggered or Global alarm 1 triggered */
1905         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_FLAG,
1906                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1907                                       &reg);
1908
1909         if (status != IXGBE_SUCCESS ||
1910             !(reg & (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
1911             IXGBE_MDIO_GLOBAL_ALARM_1_INT)))
1912                 return status;
1913
1914         /* Global alarm triggered */
1915         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_ALARM_1,
1916                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1917                                       &reg);
1918
1919         if (status != IXGBE_SUCCESS)
1920                 return status;
1921
1922         /* If high temperature failure, then return over temp error and exit */
1923         if (reg & IXGBE_MDIO_GLOBAL_ALM_1_HI_TMP_FAIL) {
1924                 /* power down the PHY in case the PHY FW didn't already */
1925                 ixgbe_set_copper_phy_power(hw, false);
1926                 return IXGBE_ERR_OVERTEMP;
1927         } else if (reg & IXGBE_MDIO_GLOBAL_ALM_1_DEV_FAULT) {
1928                 /*  device fault alarm triggered */
1929                 status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_FAULT_MSG,
1930                                           IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
1931                                           &reg);
1932
1933                 if (status != IXGBE_SUCCESS)
1934                         return status;
1935
1936                 /* if device fault was due to high temp alarm handle and exit */
1937                 if (reg == IXGBE_MDIO_GLOBAL_FAULT_MSG_HI_TMP) {
1938                         /* power down the PHY in case the PHY FW didn't */
1939                         ixgbe_set_copper_phy_power(hw, false);
1940                         return IXGBE_ERR_OVERTEMP;
1941                 }
1942         }
1943
1944         /* Vendor alarm 2 triggered */
1945         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_CHIP_STD_INT_FLAG,
1946                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &reg);
1947
1948         if (status != IXGBE_SUCCESS ||
1949             !(reg & IXGBE_MDIO_GLOBAL_STD_ALM2_INT))
1950                 return status;
1951
1952         /* link connect/disconnect event occurred */
1953         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_VENDOR_TX_ALARM2,
1954                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &reg);
1955
1956         if (status != IXGBE_SUCCESS)
1957                 return status;
1958
1959         /* Indicate LSC */
1960         if (reg & IXGBE_MDIO_AUTO_NEG_VEN_LSC)
1961                 *lsc = true;
1962
1963         return IXGBE_SUCCESS;
1964 }
1965
1966 /**
1967  * ixgbe_enable_lasi_ext_t_x550em - Enable external Base T PHY interrupts
1968  * @hw: pointer to hardware structure
1969  *
1970  * Enable link status change and temperature failure alarm for the external
1971  * Base T PHY
1972  *
1973  * Returns PHY access status
1974  */
1975 STATIC s32 ixgbe_enable_lasi_ext_t_x550em(struct ixgbe_hw *hw)
1976 {
1977         u32 status;
1978         u16 reg;
1979         bool lsc;
1980
1981         /* Clear interrupt flags */
1982         status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc);
1983
1984         /* Enable link status change alarm */
1985         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
1986                                       IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &reg);
1987
1988         if (status != IXGBE_SUCCESS)
1989                 return status;
1990
1991         reg |= IXGBE_MDIO_PMA_TX_VEN_LASI_INT_EN;
1992
1993         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_PMA_TX_VEN_LASI_INT_MASK,
1994                                        IXGBE_MDIO_AUTO_NEG_DEV_TYPE, reg);
1995
1996         if (status != IXGBE_SUCCESS)
1997                 return status;
1998
1999         /* Enable high temperature failure and global fault alarms */
2000         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2001                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2002                                       &reg);
2003
2004         if (status != IXGBE_SUCCESS)
2005                 return status;
2006
2007         reg |= (IXGBE_MDIO_GLOBAL_INT_HI_TEMP_EN |
2008                 IXGBE_MDIO_GLOBAL_INT_DEV_FAULT_EN);
2009
2010         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_MASK,
2011                                        IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2012                                        reg);
2013
2014         if (status != IXGBE_SUCCESS)
2015                 return status;
2016
2017         /* Enable vendor Auto-Neg alarm and Global Interrupt Mask 1 alarm */
2018         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2019                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2020                                       &reg);
2021
2022         if (status != IXGBE_SUCCESS)
2023                 return status;
2024
2025         reg |= (IXGBE_MDIO_GLOBAL_AN_VEN_ALM_INT_EN |
2026                 IXGBE_MDIO_GLOBAL_ALARM_1_INT);
2027
2028         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_VEN_MASK,
2029                                        IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2030                                        reg);
2031
2032         if (status != IXGBE_SUCCESS)
2033                 return status;
2034
2035         /* Enable chip-wide vendor alarm */
2036         status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2037                                       IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2038                                       &reg);
2039
2040         if (status != IXGBE_SUCCESS)
2041                 return status;
2042
2043         reg |= IXGBE_MDIO_GLOBAL_VEN_ALM_INT_EN;
2044
2045         status = hw->phy.ops.write_reg(hw, IXGBE_MDIO_GLOBAL_INT_CHIP_STD_MASK,
2046                                        IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE,
2047                                        reg);
2048
2049         return status;
2050 }
2051
2052 /**
2053  *  ixgbe_setup_kr_speed_x550em - Configure the KR PHY for link speed.
2054  *  @hw: pointer to hardware structure
2055  *  @speed: link speed
2056  *
2057  *  Configures the integrated KR PHY.
2058  **/
2059 STATIC s32 ixgbe_setup_kr_speed_x550em(struct ixgbe_hw *hw,
2060                                        ixgbe_link_speed speed)
2061 {
2062         s32 status;
2063         u32 reg_val;
2064
2065         status = hw->mac.ops.read_iosf_sb_reg(hw,
2066                       IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2067                       IXGBE_SB_IOSF_TARGET_KR_PHY, &reg_val);
2068         if (status)
2069                 return status;
2070
2071         reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_ENABLE;
2072         reg_val &= ~(IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR |
2073                      IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX);
2074
2075         /* Advertise 10G support. */
2076         if (speed & IXGBE_LINK_SPEED_10GB_FULL)
2077                 reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KR;
2078
2079         /* Advertise 1G support. */
2080         if (speed & IXGBE_LINK_SPEED_1GB_FULL)
2081                 reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_CAP_KX;
2082
2083         /* Restart auto-negotiation. */
2084         reg_val |= IXGBE_KRM_LINK_CTRL_1_TETH_AN_RESTART;
2085         status = hw->mac.ops.write_iosf_sb_reg(hw,
2086                        IXGBE_KRM_LINK_CTRL_1(hw->bus.lan_id),
2087                        IXGBE_SB_IOSF_TARGET_KR_PHY, reg_val);
2088
2089         return status;
2090 }
2091
2092 /**
2093  * ixgbe_setup_m88 - setup m88 PHY
2094  * @hw: pointer to hardware structure
2095  */
2096 STATIC s32 ixgbe_setup_m88(struct ixgbe_hw *hw)
2097 {
2098         u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
2099         u16 reg;
2100         s32 rc;
2101
2102         if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
2103                 return IXGBE_SUCCESS;
2104
2105         rc = hw->mac.ops.acquire_swfw_sync(hw, mask);
2106         if (rc)
2107                 return rc;
2108
2109         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2110         if (rc)
2111                 goto out;
2112         if (reg & IXGBE_M88E1500_COPPER_CTRL_POWER_DOWN) {
2113                 reg &= ~IXGBE_M88E1500_COPPER_CTRL_POWER_DOWN;
2114                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2115                                           reg);
2116         }
2117
2118         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_MAC_CTRL_1, 0, &reg);
2119         if (rc)
2120                 goto out;
2121         if (reg & IXGBE_M88E1500_MAC_CTRL_1_POWER_DOWN) {
2122                 reg &= ~IXGBE_M88E1500_MAC_CTRL_1_POWER_DOWN;
2123                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_MAC_CTRL_1, 0,
2124                                           reg);
2125         }
2126
2127         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 2);
2128         if (rc)
2129                 goto out;
2130
2131         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_MAC_SPEC_CTRL, 0,
2132                                       &reg);
2133         if (rc)
2134                 goto out;
2135         if (reg & IXGBE_M88E1500_MAC_SPEC_CTRL_POWER_DOWN) {
2136                 reg &= ~IXGBE_M88E1500_MAC_SPEC_CTRL_POWER_DOWN;
2137                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_MAC_SPEC_CTRL, 0,
2138                                           reg);
2139                 rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0,
2140                                                0);
2141                 if (rc)
2142                         goto out;
2143                 rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2144                                               &reg);
2145                 if (rc)
2146                         goto out;
2147                 reg |= IXGBE_M88E1500_COPPER_CTRL_RESET;
2148                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2149                                           reg);
2150                 usec_delay(50);
2151         } else {
2152                 rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0,
2153                                                0);
2154                 if (rc)
2155                         goto out;
2156         }
2157
2158         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2159         if (rc)
2160                 goto out;
2161
2162         if (!(reg & IXGBE_M88E1500_COPPER_CTRL_AN_EN)) {
2163                 reg |= IXGBE_M88E1500_COPPER_CTRL_AN_EN;
2164                 hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0,
2165                                           reg);
2166         }
2167
2168         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_1000T_CTRL, 0, &reg);
2169         if (rc)
2170                 goto out;
2171         reg &= ~IXGBE_M88E1500_1000T_CTRL_HALF_DUPLEX;
2172         reg &= ~IXGBE_M88E1500_1000T_CTRL_FULL_DUPLEX;
2173         if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL)
2174                 reg |= IXGBE_M88E1500_1000T_CTRL_FULL_DUPLEX;
2175         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_1000T_CTRL, 0, reg);
2176
2177         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_AN, 0, &reg);
2178         if (rc)
2179                 goto out;
2180         reg &= ~IXGBE_M88E1500_COPPER_AN_AS_PAUSE;
2181         reg &= ~IXGBE_M88E1500_COPPER_AN_PAUSE;
2182         reg &= ~IXGBE_M88E1500_COPPER_AN_T4;
2183         reg &= ~IXGBE_M88E1500_COPPER_AN_100TX_FD;
2184         reg &= ~IXGBE_M88E1500_COPPER_AN_100TX_HD;
2185         reg &= ~IXGBE_M88E1500_COPPER_AN_10TX_FD;
2186         reg &= ~IXGBE_M88E1500_COPPER_AN_10TX_HD;
2187         switch (hw->fc.current_mode) {
2188         case ixgbe_fc_full:
2189                 reg |= IXGBE_M88E1500_COPPER_AN_PAUSE;
2190                 break;
2191         case ixgbe_fc_rx_pause:
2192                 reg |= IXGBE_M88E1500_COPPER_AN_PAUSE;
2193                 reg |= IXGBE_M88E1500_COPPER_AN_AS_PAUSE;
2194                 break;
2195         case ixgbe_fc_tx_pause:
2196                 reg |= IXGBE_M88E1500_COPPER_AN_AS_PAUSE;
2197                 break;
2198         default:
2199                 break;
2200         }
2201
2202         if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
2203                 reg |= IXGBE_M88E1500_COPPER_AN_100TX_FD;
2204         if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10_FULL)
2205                 reg |= IXGBE_M88E1500_COPPER_AN_10TX_FD;
2206         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_AN, 0, reg);
2207
2208         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2209         if (rc)
2210                 goto out;
2211         reg |= IXGBE_M88E1500_COPPER_CTRL_RESTART_AN;
2212         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, reg);
2213
2214
2215         hw->mac.ops.release_swfw_sync(hw, mask);
2216         return rc;
2217
2218 out:
2219         hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2220         hw->mac.ops.release_swfw_sync(hw, mask);
2221         return rc;
2222 }
2223
2224 /**
2225  * ixgbe_reset_phy_m88e1500 - Reset m88e1500 PHY
2226  * @hw: pointer to hardware structure
2227  *
2228  * The PHY token must be held when calling this function.
2229  */
2230 static s32 ixgbe_reset_phy_m88e1500(struct ixgbe_hw *hw)
2231 {
2232         u16 reg;
2233         s32 rc;
2234
2235         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2236         if (rc)
2237                 return rc;
2238
2239         rc = hw->phy.ops.read_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, &reg);
2240         if (rc)
2241                 return rc;
2242
2243         reg |= IXGBE_M88E1500_COPPER_CTRL_RESET;
2244         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, reg);
2245
2246         usec_delay(10);
2247
2248         return rc;
2249 }
2250
2251 /**
2252  * ixgbe_reset_phy_m88e1543 - Reset m88e1543 PHY
2253  * @hw: pointer to hardware structure
2254  *
2255  * The PHY token must be held when calling this function.
2256  */
2257 static s32 ixgbe_reset_phy_m88e1543(struct ixgbe_hw *hw)
2258 {
2259         return hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2260 }
2261
2262 /**
2263  * ixgbe_reset_phy_m88 - Reset m88 PHY
2264  * @hw: pointer to hardware structure
2265  */
2266 STATIC s32 ixgbe_reset_phy_m88(struct ixgbe_hw *hw)
2267 {
2268         u32 mask = hw->phy.phy_semaphore_mask | IXGBE_GSSR_TOKEN_SM;
2269         u16 reg;
2270         s32 rc;
2271
2272         if (hw->phy.reset_disable || ixgbe_check_reset_blocked(hw))
2273                 return IXGBE_SUCCESS;
2274
2275         rc = hw->mac.ops.acquire_swfw_sync(hw, mask);
2276         if (rc)
2277                 return rc;
2278
2279         switch (hw->phy.id) {
2280         case IXGBE_M88E1500_E_PHY_ID:
2281                 rc = ixgbe_reset_phy_m88e1500(hw);
2282                 break;
2283         case IXGBE_M88E1543_E_PHY_ID:
2284                 rc = ixgbe_reset_phy_m88e1543(hw);
2285                 break;
2286         default:
2287                 rc = IXGBE_ERR_PHY;
2288                 break;
2289         }
2290
2291         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 1);
2292         if (rc)
2293                 goto out;
2294
2295         reg = IXGBE_M88E1500_FIBER_CTRL_RESET |
2296               IXGBE_M88E1500_FIBER_CTRL_DUPLEX_FULL |
2297               IXGBE_M88E1500_FIBER_CTRL_SPEED_MSB;
2298         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_FIBER_CTRL, 0, reg);
2299         if (rc)
2300                 goto out;
2301
2302         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 18);
2303         if (rc)
2304                 goto out;
2305
2306         reg = IXGBE_M88E1500_GEN_CTRL_RESET |
2307               IXGBE_M88E1500_GEN_CTRL_MODE_SGMII_COPPER;
2308         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_GEN_CTRL, 0, reg);
2309         if (rc)
2310                 goto out;
2311
2312         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 1);
2313         if (rc)
2314                 goto out;
2315
2316         reg = IXGBE_M88E1500_FIBER_CTRL_RESET |
2317               IXGBE_M88E1500_FIBER_CTRL_AN_EN |
2318               IXGBE_M88E1500_FIBER_CTRL_DUPLEX_FULL |
2319               IXGBE_M88E1500_FIBER_CTRL_SPEED_MSB;
2320         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_FIBER_CTRL, 0, reg);
2321         if (rc)
2322                 goto out;
2323
2324         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_PAGE_ADDR, 0, 0);
2325         if (rc)
2326                 goto out;
2327
2328         reg = (IXGBE_M88E1500_MAC_CTRL_1_DWN_4X <<
2329                IXGBE_M88E1500_MAC_CTRL_1_DWN_SHIFT) |
2330               (IXGBE_M88E1500_MAC_CTRL_1_ED_TM <<
2331                IXGBE_M88E1500_MAC_CTRL_1_ED_SHIFT) |
2332               (IXGBE_M88E1500_MAC_CTRL_1_MDIX_AUTO <<
2333                IXGBE_M88E1500_MAC_CTRL_1_MDIX_SHIFT);
2334         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_MAC_CTRL_1, 0, reg);
2335         if (rc)
2336                 goto out;
2337
2338         reg = IXGBE_M88E1500_COPPER_CTRL_RESET |
2339               IXGBE_M88E1500_COPPER_CTRL_AN_EN |
2340               IXGBE_M88E1500_COPPER_CTRL_RESTART_AN |
2341               IXGBE_M88E1500_COPPER_CTRL_FULL_DUPLEX |
2342               IXGBE_M88E1500_COPPER_CTRL_SPEED_MSB;
2343         rc = hw->phy.ops.write_reg_mdi(hw, IXGBE_M88E1500_COPPER_CTRL, 0, reg);
2344         if (rc)
2345                 goto out;
2346
2347         hw->mac.ops.release_swfw_sync(hw, mask);
2348
2349         return ixgbe_setup_m88(hw);
2350
2351 out:
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