New upstream version 16.11.5
[deb_dpdk.git] / drivers / net / ixgbe / base / ixgbe_api.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_api.h"
35 #include "ixgbe_common.h"
36
37 #define IXGBE_EMPTY_PARAM
38
39 static const u32 ixgbe_mvals_base[IXGBE_MVALS_IDX_LIMIT] = {
40         IXGBE_MVALS_INIT(IXGBE_EMPTY_PARAM)
41 };
42
43 static const u32 ixgbe_mvals_X540[IXGBE_MVALS_IDX_LIMIT] = {
44         IXGBE_MVALS_INIT(_X540)
45 };
46
47 static const u32 ixgbe_mvals_X550[IXGBE_MVALS_IDX_LIMIT] = {
48         IXGBE_MVALS_INIT(_X550)
49 };
50
51 static const u32 ixgbe_mvals_X550EM_x[IXGBE_MVALS_IDX_LIMIT] = {
52         IXGBE_MVALS_INIT(_X550EM_x)
53 };
54
55 static const u32 ixgbe_mvals_X550EM_a[IXGBE_MVALS_IDX_LIMIT] = {
56         IXGBE_MVALS_INIT(_X550EM_a)
57 };
58
59 /**
60  * ixgbe_dcb_get_rtrup2tc - read rtrup2tc reg
61  * @hw: pointer to hardware structure
62  * @map: pointer to u8 arr for returning map
63  *
64  * Read the rtrup2tc HW register and resolve its content into map
65  **/
66 void ixgbe_dcb_get_rtrup2tc(struct ixgbe_hw *hw, u8 *map)
67 {
68         if (hw->mac.ops.get_rtrup2tc)
69                 hw->mac.ops.get_rtrup2tc(hw, map);
70 }
71
72 /**
73  *  ixgbe_init_shared_code - Initialize the shared code
74  *  @hw: pointer to hardware structure
75  *
76  *  This will assign function pointers and assign the MAC type and PHY code.
77  *  Does not touch the hardware. This function must be called prior to any
78  *  other function in the shared code. The ixgbe_hw structure should be
79  *  memset to 0 prior to calling this function.  The following fields in
80  *  hw structure should be filled in prior to calling this function:
81  *  hw_addr, back, device_id, vendor_id, subsystem_device_id,
82  *  subsystem_vendor_id, and revision_id
83  **/
84 s32 ixgbe_init_shared_code(struct ixgbe_hw *hw)
85 {
86         s32 status;
87
88         DEBUGFUNC("ixgbe_init_shared_code");
89
90         /*
91          * Set the mac type
92          */
93         ixgbe_set_mac_type(hw);
94
95         switch (hw->mac.type) {
96         case ixgbe_mac_82598EB:
97                 status = ixgbe_init_ops_82598(hw);
98                 break;
99         case ixgbe_mac_82599EB:
100                 status = ixgbe_init_ops_82599(hw);
101                 break;
102         case ixgbe_mac_X540:
103                 status = ixgbe_init_ops_X540(hw);
104                 break;
105         case ixgbe_mac_X550:
106                 status = ixgbe_init_ops_X550(hw);
107                 break;
108         case ixgbe_mac_X550EM_x:
109                 status = ixgbe_init_ops_X550EM_x(hw);
110                 break;
111         case ixgbe_mac_X550EM_a:
112                 status = ixgbe_init_ops_X550EM_a(hw);
113                 break;
114         case ixgbe_mac_82599_vf:
115         case ixgbe_mac_X540_vf:
116         case ixgbe_mac_X550_vf:
117         case ixgbe_mac_X550EM_x_vf:
118         case ixgbe_mac_X550EM_a_vf:
119                 status = ixgbe_init_ops_vf(hw);
120                 break;
121         default:
122                 status = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
123                 break;
124         }
125         hw->mac.max_link_up_time = IXGBE_LINK_UP_TIME;
126
127         return status;
128 }
129
130 /**
131  *  ixgbe_set_mac_type - Sets MAC type
132  *  @hw: pointer to the HW structure
133  *
134  *  This function sets the mac type of the adapter based on the
135  *  vendor ID and device ID stored in the hw structure.
136  **/
137 s32 ixgbe_set_mac_type(struct ixgbe_hw *hw)
138 {
139         s32 ret_val = IXGBE_SUCCESS;
140
141         DEBUGFUNC("ixgbe_set_mac_type\n");
142
143         if (hw->vendor_id != IXGBE_INTEL_VENDOR_ID) {
144                 ERROR_REPORT2(IXGBE_ERROR_UNSUPPORTED,
145                              "Unsupported vendor id: %x", hw->vendor_id);
146                 return IXGBE_ERR_DEVICE_NOT_SUPPORTED;
147         }
148
149         hw->mvals = ixgbe_mvals_base;
150
151         switch (hw->device_id) {
152         case IXGBE_DEV_ID_82598:
153         case IXGBE_DEV_ID_82598_BX:
154         case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
155         case IXGBE_DEV_ID_82598AF_DUAL_PORT:
156         case IXGBE_DEV_ID_82598AT:
157         case IXGBE_DEV_ID_82598AT2:
158         case IXGBE_DEV_ID_82598EB_CX4:
159         case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
160         case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
161         case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
162         case IXGBE_DEV_ID_82598EB_XF_LR:
163         case IXGBE_DEV_ID_82598EB_SFP_LOM:
164                 hw->mac.type = ixgbe_mac_82598EB;
165                 break;
166         case IXGBE_DEV_ID_82599_KX4:
167         case IXGBE_DEV_ID_82599_KX4_MEZZ:
168         case IXGBE_DEV_ID_82599_XAUI_LOM:
169         case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
170         case IXGBE_DEV_ID_82599_KR:
171         case IXGBE_DEV_ID_82599_SFP:
172         case IXGBE_DEV_ID_82599_BACKPLANE_FCOE:
173         case IXGBE_DEV_ID_82599_SFP_FCOE:
174         case IXGBE_DEV_ID_82599_SFP_EM:
175         case IXGBE_DEV_ID_82599_SFP_SF2:
176         case IXGBE_DEV_ID_82599_SFP_SF_QP:
177         case IXGBE_DEV_ID_82599_QSFP_SF_QP:
178         case IXGBE_DEV_ID_82599EN_SFP:
179         case IXGBE_DEV_ID_82599_CX4:
180         case IXGBE_DEV_ID_82599_LS:
181         case IXGBE_DEV_ID_82599_BYPASS:
182         case IXGBE_DEV_ID_82599_T3_LOM:
183                 hw->mac.type = ixgbe_mac_82599EB;
184                 break;
185         case IXGBE_DEV_ID_82599_VF:
186         case IXGBE_DEV_ID_82599_VF_HV:
187                 hw->mac.type = ixgbe_mac_82599_vf;
188                 break;
189         case IXGBE_DEV_ID_X540_VF:
190         case IXGBE_DEV_ID_X540_VF_HV:
191                 hw->mac.type = ixgbe_mac_X540_vf;
192                 hw->mvals = ixgbe_mvals_X540;
193                 break;
194         case IXGBE_DEV_ID_X540T:
195         case IXGBE_DEV_ID_X540T1:
196         case IXGBE_DEV_ID_X540_BYPASS:
197                 hw->mac.type = ixgbe_mac_X540;
198                 hw->mvals = ixgbe_mvals_X540;
199                 break;
200         case IXGBE_DEV_ID_X550T:
201         case IXGBE_DEV_ID_X550T1:
202                 hw->mac.type = ixgbe_mac_X550;
203                 hw->mvals = ixgbe_mvals_X550;
204                 break;
205         case IXGBE_DEV_ID_X550EM_X_KX4:
206         case IXGBE_DEV_ID_X550EM_X_KR:
207         case IXGBE_DEV_ID_X550EM_X_10G_T:
208         case IXGBE_DEV_ID_X550EM_X_1G_T:
209         case IXGBE_DEV_ID_X550EM_X_SFP:
210                 hw->mac.type = ixgbe_mac_X550EM_x;
211                 hw->mvals = ixgbe_mvals_X550EM_x;
212                 break;
213         case IXGBE_DEV_ID_X550EM_A_KR:
214         case IXGBE_DEV_ID_X550EM_A_KR_L:
215         case IXGBE_DEV_ID_X550EM_A_SFP_N:
216         case IXGBE_DEV_ID_X550EM_A_SGMII:
217         case IXGBE_DEV_ID_X550EM_A_SGMII_L:
218         case IXGBE_DEV_ID_X550EM_A_1G_T:
219         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
220         case IXGBE_DEV_ID_X550EM_A_10G_T:
221         case IXGBE_DEV_ID_X550EM_A_QSFP:
222         case IXGBE_DEV_ID_X550EM_A_QSFP_N:
223         case IXGBE_DEV_ID_X550EM_A_SFP:
224                 hw->mac.type = ixgbe_mac_X550EM_a;
225                 hw->mvals = ixgbe_mvals_X550EM_a;
226                 break;
227         case IXGBE_DEV_ID_X550_VF:
228         case IXGBE_DEV_ID_X550_VF_HV:
229                 hw->mac.type = ixgbe_mac_X550_vf;
230                 hw->mvals = ixgbe_mvals_X550;
231                 break;
232         case IXGBE_DEV_ID_X550EM_X_VF:
233         case IXGBE_DEV_ID_X550EM_X_VF_HV:
234                 hw->mac.type = ixgbe_mac_X550EM_x_vf;
235                 hw->mvals = ixgbe_mvals_X550EM_x;
236                 break;
237         case IXGBE_DEV_ID_X550EM_A_VF:
238         case IXGBE_DEV_ID_X550EM_A_VF_HV:
239                 hw->mac.type = ixgbe_mac_X550EM_a_vf;
240                 hw->mvals = ixgbe_mvals_X550EM_a;
241                 break;
242         default:
243                 ret_val = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
244                 ERROR_REPORT2(IXGBE_ERROR_UNSUPPORTED,
245                              "Unsupported device id: %x",
246                              hw->device_id);
247                 break;
248         }
249
250         DEBUGOUT2("ixgbe_set_mac_type found mac: %d, returns: %d\n",
251                   hw->mac.type, ret_val);
252         return ret_val;
253 }
254
255 /**
256  *  ixgbe_init_hw - Initialize the hardware
257  *  @hw: pointer to hardware structure
258  *
259  *  Initialize the hardware by resetting and then starting the hardware
260  **/
261 s32 ixgbe_init_hw(struct ixgbe_hw *hw)
262 {
263         return ixgbe_call_func(hw, hw->mac.ops.init_hw, (hw),
264                                IXGBE_NOT_IMPLEMENTED);
265 }
266
267 /**
268  *  ixgbe_reset_hw - Performs a hardware reset
269  *  @hw: pointer to hardware structure
270  *
271  *  Resets the hardware by resetting the transmit and receive units, masks and
272  *  clears all interrupts, performs a PHY reset, and performs a MAC reset
273  **/
274 s32 ixgbe_reset_hw(struct ixgbe_hw *hw)
275 {
276         return ixgbe_call_func(hw, hw->mac.ops.reset_hw, (hw),
277                                IXGBE_NOT_IMPLEMENTED);
278 }
279
280 /**
281  *  ixgbe_start_hw - Prepares hardware for Rx/Tx
282  *  @hw: pointer to hardware structure
283  *
284  *  Starts the hardware by filling the bus info structure and media type,
285  *  clears all on chip counters, initializes receive address registers,
286  *  multicast table, VLAN filter table, calls routine to setup link and
287  *  flow control settings, and leaves transmit and receive units disabled
288  *  and uninitialized.
289  **/
290 s32 ixgbe_start_hw(struct ixgbe_hw *hw)
291 {
292         return ixgbe_call_func(hw, hw->mac.ops.start_hw, (hw),
293                                IXGBE_NOT_IMPLEMENTED);
294 }
295
296 /**
297  *  ixgbe_enable_relaxed_ordering - Enables tx relaxed ordering,
298  *  which is disabled by default in ixgbe_start_hw();
299  *
300  *  @hw: pointer to hardware structure
301  *
302  *   Enable relaxed ordering;
303  **/
304 void ixgbe_enable_relaxed_ordering(struct ixgbe_hw *hw)
305 {
306         if (hw->mac.ops.enable_relaxed_ordering)
307                 hw->mac.ops.enable_relaxed_ordering(hw);
308 }
309
310 /**
311  *  ixgbe_clear_hw_cntrs - Clear hardware counters
312  *  @hw: pointer to hardware structure
313  *
314  *  Clears all hardware statistics counters by reading them from the hardware
315  *  Statistics counters are clear on read.
316  **/
317 s32 ixgbe_clear_hw_cntrs(struct ixgbe_hw *hw)
318 {
319         return ixgbe_call_func(hw, hw->mac.ops.clear_hw_cntrs, (hw),
320                                IXGBE_NOT_IMPLEMENTED);
321 }
322
323 /**
324  *  ixgbe_get_media_type - Get media type
325  *  @hw: pointer to hardware structure
326  *
327  *  Returns the media type (fiber, copper, backplane)
328  **/
329 enum ixgbe_media_type ixgbe_get_media_type(struct ixgbe_hw *hw)
330 {
331         return ixgbe_call_func(hw, hw->mac.ops.get_media_type, (hw),
332                                ixgbe_media_type_unknown);
333 }
334
335 /**
336  *  ixgbe_get_mac_addr - Get MAC address
337  *  @hw: pointer to hardware structure
338  *  @mac_addr: Adapter MAC address
339  *
340  *  Reads the adapter's MAC address from the first Receive Address Register
341  *  (RAR0) A reset of the adapter must have been performed prior to calling
342  *  this function in order for the MAC address to have been loaded from the
343  *  EEPROM into RAR0
344  **/
345 s32 ixgbe_get_mac_addr(struct ixgbe_hw *hw, u8 *mac_addr)
346 {
347         return ixgbe_call_func(hw, hw->mac.ops.get_mac_addr,
348                                (hw, mac_addr), IXGBE_NOT_IMPLEMENTED);
349 }
350
351 /**
352  *  ixgbe_get_san_mac_addr - Get SAN MAC address
353  *  @hw: pointer to hardware structure
354  *  @san_mac_addr: SAN MAC address
355  *
356  *  Reads the SAN MAC address from the EEPROM, if it's available.  This is
357  *  per-port, so set_lan_id() must be called before reading the addresses.
358  **/
359 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
360 {
361         return ixgbe_call_func(hw, hw->mac.ops.get_san_mac_addr,
362                                (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
363 }
364
365 /**
366  *  ixgbe_set_san_mac_addr - Write a SAN MAC address
367  *  @hw: pointer to hardware structure
368  *  @san_mac_addr: SAN MAC address
369  *
370  *  Writes A SAN MAC address to the EEPROM.
371  **/
372 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
373 {
374         return ixgbe_call_func(hw, hw->mac.ops.set_san_mac_addr,
375                                (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
376 }
377
378 /**
379  *  ixgbe_get_device_caps - Get additional device capabilities
380  *  @hw: pointer to hardware structure
381  *  @device_caps: the EEPROM word for device capabilities
382  *
383  *  Reads the extra device capabilities from the EEPROM
384  **/
385 s32 ixgbe_get_device_caps(struct ixgbe_hw *hw, u16 *device_caps)
386 {
387         return ixgbe_call_func(hw, hw->mac.ops.get_device_caps,
388                                (hw, device_caps), IXGBE_NOT_IMPLEMENTED);
389 }
390
391 /**
392  *  ixgbe_get_wwn_prefix - Get alternative WWNN/WWPN prefix from the EEPROM
393  *  @hw: pointer to hardware structure
394  *  @wwnn_prefix: the alternative WWNN prefix
395  *  @wwpn_prefix: the alternative WWPN prefix
396  *
397  *  This function will read the EEPROM from the alternative SAN MAC address
398  *  block to check the support for the alternative WWNN/WWPN prefix support.
399  **/
400 s32 ixgbe_get_wwn_prefix(struct ixgbe_hw *hw, u16 *wwnn_prefix,
401                          u16 *wwpn_prefix)
402 {
403         return ixgbe_call_func(hw, hw->mac.ops.get_wwn_prefix,
404                                (hw, wwnn_prefix, wwpn_prefix),
405                                IXGBE_NOT_IMPLEMENTED);
406 }
407
408 /**
409  *  ixgbe_get_fcoe_boot_status -  Get FCOE boot status from EEPROM
410  *  @hw: pointer to hardware structure
411  *  @bs: the fcoe boot status
412  *
413  *  This function will read the FCOE boot status from the iSCSI FCOE block
414  **/
415 s32 ixgbe_get_fcoe_boot_status(struct ixgbe_hw *hw, u16 *bs)
416 {
417         return ixgbe_call_func(hw, hw->mac.ops.get_fcoe_boot_status,
418                                (hw, bs),
419                                IXGBE_NOT_IMPLEMENTED);
420 }
421
422 /**
423  *  ixgbe_get_bus_info - Set PCI bus info
424  *  @hw: pointer to hardware structure
425  *
426  *  Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure
427  **/
428 s32 ixgbe_get_bus_info(struct ixgbe_hw *hw)
429 {
430         return ixgbe_call_func(hw, hw->mac.ops.get_bus_info, (hw),
431                                IXGBE_NOT_IMPLEMENTED);
432 }
433
434 /**
435  *  ixgbe_get_num_of_tx_queues - Get Tx queues
436  *  @hw: pointer to hardware structure
437  *
438  *  Returns the number of transmit queues for the given adapter.
439  **/
440 u32 ixgbe_get_num_of_tx_queues(struct ixgbe_hw *hw)
441 {
442         return hw->mac.max_tx_queues;
443 }
444
445 /**
446  *  ixgbe_get_num_of_rx_queues - Get Rx queues
447  *  @hw: pointer to hardware structure
448  *
449  *  Returns the number of receive queues for the given adapter.
450  **/
451 u32 ixgbe_get_num_of_rx_queues(struct ixgbe_hw *hw)
452 {
453         return hw->mac.max_rx_queues;
454 }
455
456 /**
457  *  ixgbe_stop_adapter - Disable Rx/Tx units
458  *  @hw: pointer to hardware structure
459  *
460  *  Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
461  *  disables transmit and receive units. The adapter_stopped flag is used by
462  *  the shared code and drivers to determine if the adapter is in a stopped
463  *  state and should not touch the hardware.
464  **/
465 s32 ixgbe_stop_adapter(struct ixgbe_hw *hw)
466 {
467         return ixgbe_call_func(hw, hw->mac.ops.stop_adapter, (hw),
468                                IXGBE_NOT_IMPLEMENTED);
469 }
470
471 /**
472  *  ixgbe_read_pba_string - Reads part number string from EEPROM
473  *  @hw: pointer to hardware structure
474  *  @pba_num: stores the part number string from the EEPROM
475  *  @pba_num_size: part number string buffer length
476  *
477  *  Reads the part number string from the EEPROM.
478  **/
479 s32 ixgbe_read_pba_string(struct ixgbe_hw *hw, u8 *pba_num, u32 pba_num_size)
480 {
481         return ixgbe_read_pba_string_generic(hw, pba_num, pba_num_size);
482 }
483
484 /**
485  *  ixgbe_read_pba_num - Reads part number from EEPROM
486  *  @hw: pointer to hardware structure
487  *  @pba_num: stores the part number from the EEPROM
488  *
489  *  Reads the part number from the EEPROM.
490  **/
491 s32 ixgbe_read_pba_num(struct ixgbe_hw *hw, u32 *pba_num)
492 {
493         return ixgbe_read_pba_num_generic(hw, pba_num);
494 }
495
496 /**
497  *  ixgbe_identify_phy - Get PHY type
498  *  @hw: pointer to hardware structure
499  *
500  *  Determines the physical layer module found on the current adapter.
501  **/
502 s32 ixgbe_identify_phy(struct ixgbe_hw *hw)
503 {
504         s32 status = IXGBE_SUCCESS;
505
506         if (hw->phy.type == ixgbe_phy_unknown) {
507                 status = ixgbe_call_func(hw, hw->phy.ops.identify, (hw),
508                                          IXGBE_NOT_IMPLEMENTED);
509         }
510
511         return status;
512 }
513
514 /**
515  *  ixgbe_reset_phy - Perform a PHY reset
516  *  @hw: pointer to hardware structure
517  **/
518 s32 ixgbe_reset_phy(struct ixgbe_hw *hw)
519 {
520         s32 status = IXGBE_SUCCESS;
521
522         if (hw->phy.type == ixgbe_phy_unknown) {
523                 if (ixgbe_identify_phy(hw) != IXGBE_SUCCESS)
524                         status = IXGBE_ERR_PHY;
525         }
526
527         if (status == IXGBE_SUCCESS) {
528                 status = ixgbe_call_func(hw, hw->phy.ops.reset, (hw),
529                                          IXGBE_NOT_IMPLEMENTED);
530         }
531         return status;
532 }
533
534 /**
535  *  ixgbe_get_phy_firmware_version -
536  *  @hw: pointer to hardware structure
537  *  @firmware_version: pointer to firmware version
538  **/
539 s32 ixgbe_get_phy_firmware_version(struct ixgbe_hw *hw, u16 *firmware_version)
540 {
541         s32 status = IXGBE_SUCCESS;
542
543         status = ixgbe_call_func(hw, hw->phy.ops.get_firmware_version,
544                                  (hw, firmware_version),
545                                  IXGBE_NOT_IMPLEMENTED);
546         return status;
547 }
548
549 /**
550  *  ixgbe_read_phy_reg - Read PHY register
551  *  @hw: pointer to hardware structure
552  *  @reg_addr: 32 bit address of PHY register to read
553  *  @phy_data: Pointer to read data from PHY register
554  *
555  *  Reads a value from a specified PHY register
556  **/
557 s32 ixgbe_read_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
558                        u16 *phy_data)
559 {
560         if (hw->phy.id == 0)
561                 ixgbe_identify_phy(hw);
562
563         return ixgbe_call_func(hw, hw->phy.ops.read_reg, (hw, reg_addr,
564                                device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
565 }
566
567 /**
568  *  ixgbe_write_phy_reg - Write PHY register
569  *  @hw: pointer to hardware structure
570  *  @reg_addr: 32 bit PHY register to write
571  *  @phy_data: Data to write to the PHY register
572  *
573  *  Writes a value to specified PHY register
574  **/
575 s32 ixgbe_write_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
576                         u16 phy_data)
577 {
578         if (hw->phy.id == 0)
579                 ixgbe_identify_phy(hw);
580
581         return ixgbe_call_func(hw, hw->phy.ops.write_reg, (hw, reg_addr,
582                                device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
583 }
584
585 /**
586  *  ixgbe_setup_phy_link - Restart PHY autoneg
587  *  @hw: pointer to hardware structure
588  *
589  *  Restart autonegotiation and PHY and waits for completion.
590  **/
591 s32 ixgbe_setup_phy_link(struct ixgbe_hw *hw)
592 {
593         return ixgbe_call_func(hw, hw->phy.ops.setup_link, (hw),
594                                IXGBE_NOT_IMPLEMENTED);
595 }
596
597 /**
598  * ixgbe_setup_internal_phy - Configure integrated PHY
599  * @hw: pointer to hardware structure
600  *
601  * Reconfigure the integrated PHY in order to enable talk to the external PHY.
602  * Returns success if not implemented, since nothing needs to be done in this
603  * case.
604  */
605 s32 ixgbe_setup_internal_phy(struct ixgbe_hw *hw)
606 {
607         return ixgbe_call_func(hw, hw->phy.ops.setup_internal_link, (hw),
608                                IXGBE_SUCCESS);
609 }
610
611 /**
612  *  ixgbe_check_phy_link - Determine link and speed status
613  *  @hw: pointer to hardware structure
614  *
615  *  Reads a PHY register to determine if link is up and the current speed for
616  *  the PHY.
617  **/
618 s32 ixgbe_check_phy_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
619                          bool *link_up)
620 {
621         return ixgbe_call_func(hw, hw->phy.ops.check_link, (hw, speed,
622                                link_up), IXGBE_NOT_IMPLEMENTED);
623 }
624
625 /**
626  *  ixgbe_setup_phy_link_speed - Set auto advertise
627  *  @hw: pointer to hardware structure
628  *  @speed: new link speed
629  *
630  *  Sets the auto advertised capabilities
631  **/
632 s32 ixgbe_setup_phy_link_speed(struct ixgbe_hw *hw, ixgbe_link_speed speed,
633                                bool autoneg_wait_to_complete)
634 {
635         return ixgbe_call_func(hw, hw->phy.ops.setup_link_speed, (hw, speed,
636                                autoneg_wait_to_complete),
637                                IXGBE_NOT_IMPLEMENTED);
638 }
639
640 /**
641  * ixgbe_set_phy_power - Control the phy power state
642  * @hw: pointer to hardware structure
643  * @on: true for on, false for off
644  */
645 s32 ixgbe_set_phy_power(struct ixgbe_hw *hw, bool on)
646 {
647         return ixgbe_call_func(hw, hw->phy.ops.set_phy_power, (hw, on),
648                                IXGBE_NOT_IMPLEMENTED);
649 }
650
651 /**
652  *  ixgbe_check_link - Get link and speed status
653  *  @hw: pointer to hardware structure
654  *
655  *  Reads the links register to determine if link is up and the current speed
656  **/
657 s32 ixgbe_check_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
658                      bool *link_up, bool link_up_wait_to_complete)
659 {
660         return ixgbe_call_func(hw, hw->mac.ops.check_link, (hw, speed,
661                                link_up, link_up_wait_to_complete),
662                                IXGBE_NOT_IMPLEMENTED);
663 }
664
665 /**
666  *  ixgbe_disable_tx_laser - Disable Tx laser
667  *  @hw: pointer to hardware structure
668  *
669  *  If the driver needs to disable the laser on SFI optics.
670  **/
671 void ixgbe_disable_tx_laser(struct ixgbe_hw *hw)
672 {
673         if (hw->mac.ops.disable_tx_laser)
674                 hw->mac.ops.disable_tx_laser(hw);
675 }
676
677 /**
678  *  ixgbe_enable_tx_laser - Enable Tx laser
679  *  @hw: pointer to hardware structure
680  *
681  *  If the driver needs to enable the laser on SFI optics.
682  **/
683 void ixgbe_enable_tx_laser(struct ixgbe_hw *hw)
684 {
685         if (hw->mac.ops.enable_tx_laser)
686                 hw->mac.ops.enable_tx_laser(hw);
687 }
688
689 /**
690  *  ixgbe_flap_tx_laser - flap Tx laser to start autotry process
691  *  @hw: pointer to hardware structure
692  *
693  *  When the driver changes the link speeds that it can support then
694  *  flap the tx laser to alert the link partner to start autotry
695  *  process on its end.
696  **/
697 void ixgbe_flap_tx_laser(struct ixgbe_hw *hw)
698 {
699         if (hw->mac.ops.flap_tx_laser)
700                 hw->mac.ops.flap_tx_laser(hw);
701 }
702
703 /**
704  *  ixgbe_setup_link - Set link speed
705  *  @hw: pointer to hardware structure
706  *  @speed: new link speed
707  *
708  *  Configures link settings.  Restarts the link.
709  *  Performs autonegotiation if needed.
710  **/
711 s32 ixgbe_setup_link(struct ixgbe_hw *hw, ixgbe_link_speed speed,
712                      bool autoneg_wait_to_complete)
713 {
714         return ixgbe_call_func(hw, hw->mac.ops.setup_link, (hw, speed,
715                                autoneg_wait_to_complete),
716                                IXGBE_NOT_IMPLEMENTED);
717 }
718
719 /**
720  *  ixgbe_setup_mac_link - Set link speed
721  *  @hw: pointer to hardware structure
722  *  @speed: new link speed
723  *
724  *  Configures link settings.  Restarts the link.
725  *  Performs autonegotiation if needed.
726  **/
727 s32 ixgbe_setup_mac_link(struct ixgbe_hw *hw, ixgbe_link_speed speed,
728                          bool autoneg_wait_to_complete)
729 {
730         return ixgbe_call_func(hw, hw->mac.ops.setup_mac_link, (hw, speed,
731                                autoneg_wait_to_complete),
732                                IXGBE_NOT_IMPLEMENTED);
733 }
734
735 /**
736  *  ixgbe_get_link_capabilities - Returns link capabilities
737  *  @hw: pointer to hardware structure
738  *
739  *  Determines the link capabilities of the current configuration.
740  **/
741 s32 ixgbe_get_link_capabilities(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
742                                 bool *autoneg)
743 {
744         return ixgbe_call_func(hw, hw->mac.ops.get_link_capabilities, (hw,
745                                speed, autoneg), IXGBE_NOT_IMPLEMENTED);
746 }
747
748 /**
749  *  ixgbe_led_on - Turn on LEDs
750  *  @hw: pointer to hardware structure
751  *  @index: led number to turn on
752  *
753  *  Turns on the software controllable LEDs.
754  **/
755 s32 ixgbe_led_on(struct ixgbe_hw *hw, u32 index)
756 {
757         return ixgbe_call_func(hw, hw->mac.ops.led_on, (hw, index),
758                                IXGBE_NOT_IMPLEMENTED);
759 }
760
761 /**
762  *  ixgbe_led_off - Turn off LEDs
763  *  @hw: pointer to hardware structure
764  *  @index: led number to turn off
765  *
766  *  Turns off the software controllable LEDs.
767  **/
768 s32 ixgbe_led_off(struct ixgbe_hw *hw, u32 index)
769 {
770         return ixgbe_call_func(hw, hw->mac.ops.led_off, (hw, index),
771                                IXGBE_NOT_IMPLEMENTED);
772 }
773
774 /**
775  *  ixgbe_blink_led_start - Blink LEDs
776  *  @hw: pointer to hardware structure
777  *  @index: led number to blink
778  *
779  *  Blink LED based on index.
780  **/
781 s32 ixgbe_blink_led_start(struct ixgbe_hw *hw, u32 index)
782 {
783         return ixgbe_call_func(hw, hw->mac.ops.blink_led_start, (hw, index),
784                                IXGBE_NOT_IMPLEMENTED);
785 }
786
787 /**
788  *  ixgbe_blink_led_stop - Stop blinking LEDs
789  *  @hw: pointer to hardware structure
790  *
791  *  Stop blinking LED based on index.
792  **/
793 s32 ixgbe_blink_led_stop(struct ixgbe_hw *hw, u32 index)
794 {
795         return ixgbe_call_func(hw, hw->mac.ops.blink_led_stop, (hw, index),
796                                IXGBE_NOT_IMPLEMENTED);
797 }
798
799 /**
800  *  ixgbe_init_eeprom_params - Initialize EEPROM parameters
801  *  @hw: pointer to hardware structure
802  *
803  *  Initializes the EEPROM parameters ixgbe_eeprom_info within the
804  *  ixgbe_hw struct in order to set up EEPROM access.
805  **/
806 s32 ixgbe_init_eeprom_params(struct ixgbe_hw *hw)
807 {
808         return ixgbe_call_func(hw, hw->eeprom.ops.init_params, (hw),
809                                IXGBE_NOT_IMPLEMENTED);
810 }
811
812
813 /**
814  *  ixgbe_write_eeprom - Write word to EEPROM
815  *  @hw: pointer to hardware structure
816  *  @offset: offset within the EEPROM to be written to
817  *  @data: 16 bit word to be written to the EEPROM
818  *
819  *  Writes 16 bit value to EEPROM. If ixgbe_eeprom_update_checksum is not
820  *  called after this function, the EEPROM will most likely contain an
821  *  invalid checksum.
822  **/
823 s32 ixgbe_write_eeprom(struct ixgbe_hw *hw, u16 offset, u16 data)
824 {
825         return ixgbe_call_func(hw, hw->eeprom.ops.write, (hw, offset, data),
826                                IXGBE_NOT_IMPLEMENTED);
827 }
828
829 /**
830  *  ixgbe_write_eeprom_buffer - Write word(s) to EEPROM
831  *  @hw: pointer to hardware structure
832  *  @offset: offset within the EEPROM to be written to
833  *  @data: 16 bit word(s) to be written to the EEPROM
834  *  @words: number of words
835  *
836  *  Writes 16 bit word(s) to EEPROM. If ixgbe_eeprom_update_checksum is not
837  *  called after this function, the EEPROM will most likely contain an
838  *  invalid checksum.
839  **/
840 s32 ixgbe_write_eeprom_buffer(struct ixgbe_hw *hw, u16 offset, u16 words,
841                               u16 *data)
842 {
843         return ixgbe_call_func(hw, hw->eeprom.ops.write_buffer,
844                                (hw, offset, words, data),
845                                IXGBE_NOT_IMPLEMENTED);
846 }
847
848 /**
849  *  ixgbe_read_eeprom - Read word from EEPROM
850  *  @hw: pointer to hardware structure
851  *  @offset: offset within the EEPROM to be read
852  *  @data: read 16 bit value from EEPROM
853  *
854  *  Reads 16 bit value from EEPROM
855  **/
856 s32 ixgbe_read_eeprom(struct ixgbe_hw *hw, u16 offset, u16 *data)
857 {
858         return ixgbe_call_func(hw, hw->eeprom.ops.read, (hw, offset, data),
859                                IXGBE_NOT_IMPLEMENTED);
860 }
861
862 /**
863  *  ixgbe_read_eeprom_buffer - Read word(s) from EEPROM
864  *  @hw: pointer to hardware structure
865  *  @offset: offset within the EEPROM to be read
866  *  @data: read 16 bit word(s) from EEPROM
867  *  @words: number of words
868  *
869  *  Reads 16 bit word(s) from EEPROM
870  **/
871 s32 ixgbe_read_eeprom_buffer(struct ixgbe_hw *hw, u16 offset,
872                              u16 words, u16 *data)
873 {
874         return ixgbe_call_func(hw, hw->eeprom.ops.read_buffer,
875                                (hw, offset, words, data),
876                                IXGBE_NOT_IMPLEMENTED);
877 }
878
879 /**
880  *  ixgbe_validate_eeprom_checksum - Validate EEPROM checksum
881  *  @hw: pointer to hardware structure
882  *  @checksum_val: calculated checksum
883  *
884  *  Performs checksum calculation and validates the EEPROM checksum
885  **/
886 s32 ixgbe_validate_eeprom_checksum(struct ixgbe_hw *hw, u16 *checksum_val)
887 {
888         return ixgbe_call_func(hw, hw->eeprom.ops.validate_checksum,
889                                (hw, checksum_val), IXGBE_NOT_IMPLEMENTED);
890 }
891
892 /**
893  *  ixgbe_eeprom_update_checksum - Updates the EEPROM checksum
894  *  @hw: pointer to hardware structure
895  **/
896 s32 ixgbe_update_eeprom_checksum(struct ixgbe_hw *hw)
897 {
898         return ixgbe_call_func(hw, hw->eeprom.ops.update_checksum, (hw),
899                                IXGBE_NOT_IMPLEMENTED);
900 }
901
902 /**
903  *  ixgbe_insert_mac_addr - Find a RAR for this mac address
904  *  @hw: pointer to hardware structure
905  *  @addr: Address to put into receive address register
906  *  @vmdq: VMDq pool to assign
907  *
908  *  Puts an ethernet address into a receive address register, or
909  *  finds the rar that it is aleady in; adds to the pool list
910  **/
911 s32 ixgbe_insert_mac_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq)
912 {
913         return ixgbe_call_func(hw, hw->mac.ops.insert_mac_addr,
914                                (hw, addr, vmdq),
915                                IXGBE_NOT_IMPLEMENTED);
916 }
917
918 /**
919  *  ixgbe_set_rar - Set Rx address register
920  *  @hw: pointer to hardware structure
921  *  @index: Receive address register to write
922  *  @addr: Address to put into receive address register
923  *  @vmdq: VMDq "set"
924  *  @enable_addr: set flag that address is active
925  *
926  *  Puts an ethernet address into a receive address register.
927  **/
928 s32 ixgbe_set_rar(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
929                   u32 enable_addr)
930 {
931         return ixgbe_call_func(hw, hw->mac.ops.set_rar, (hw, index, addr, vmdq,
932                                enable_addr), IXGBE_NOT_IMPLEMENTED);
933 }
934
935 /**
936  *  ixgbe_clear_rar - Clear Rx address register
937  *  @hw: pointer to hardware structure
938  *  @index: Receive address register to write
939  *
940  *  Puts an ethernet address into a receive address register.
941  **/
942 s32 ixgbe_clear_rar(struct ixgbe_hw *hw, u32 index)
943 {
944         return ixgbe_call_func(hw, hw->mac.ops.clear_rar, (hw, index),
945                                IXGBE_NOT_IMPLEMENTED);
946 }
947
948 /**
949  *  ixgbe_set_vmdq - Associate a VMDq index with a receive address
950  *  @hw: pointer to hardware structure
951  *  @rar: receive address register index to associate with VMDq index
952  *  @vmdq: VMDq set or pool index
953  **/
954 s32 ixgbe_set_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
955 {
956         return ixgbe_call_func(hw, hw->mac.ops.set_vmdq, (hw, rar, vmdq),
957                                IXGBE_NOT_IMPLEMENTED);
958
959 }
960
961 /**
962  *  ixgbe_set_vmdq_san_mac - Associate VMDq index 127 with a receive address
963  *  @hw: pointer to hardware structure
964  *  @vmdq: VMDq default pool index
965  **/
966 s32 ixgbe_set_vmdq_san_mac(struct ixgbe_hw *hw, u32 vmdq)
967 {
968         return ixgbe_call_func(hw, hw->mac.ops.set_vmdq_san_mac,
969                                (hw, vmdq), IXGBE_NOT_IMPLEMENTED);
970 }
971
972 /**
973  *  ixgbe_clear_vmdq - Disassociate a VMDq index from a receive address
974  *  @hw: pointer to hardware structure
975  *  @rar: receive address register index to disassociate with VMDq index
976  *  @vmdq: VMDq set or pool index
977  **/
978 s32 ixgbe_clear_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
979 {
980         return ixgbe_call_func(hw, hw->mac.ops.clear_vmdq, (hw, rar, vmdq),
981                                IXGBE_NOT_IMPLEMENTED);
982 }
983
984 /**
985  *  ixgbe_init_rx_addrs - Initializes receive address filters.
986  *  @hw: pointer to hardware structure
987  *
988  *  Places the MAC address in receive address register 0 and clears the rest
989  *  of the receive address registers. Clears the multicast table. Assumes
990  *  the receiver is in reset when the routine is called.
991  **/
992 s32 ixgbe_init_rx_addrs(struct ixgbe_hw *hw)
993 {
994         return ixgbe_call_func(hw, hw->mac.ops.init_rx_addrs, (hw),
995                                IXGBE_NOT_IMPLEMENTED);
996 }
997
998 /**
999  *  ixgbe_get_num_rx_addrs - Returns the number of RAR entries.
1000  *  @hw: pointer to hardware structure
1001  **/
1002 u32 ixgbe_get_num_rx_addrs(struct ixgbe_hw *hw)
1003 {
1004         return hw->mac.num_rar_entries;
1005 }
1006
1007 /**
1008  *  ixgbe_update_uc_addr_list - Updates the MAC's list of secondary addresses
1009  *  @hw: pointer to hardware structure
1010  *  @addr_list: the list of new multicast addresses
1011  *  @addr_count: number of addresses
1012  *  @func: iterator function to walk the multicast address list
1013  *
1014  *  The given list replaces any existing list. Clears the secondary addrs from
1015  *  receive address registers. Uses unused receive address registers for the
1016  *  first secondary addresses, and falls back to promiscuous mode as needed.
1017  **/
1018 s32 ixgbe_update_uc_addr_list(struct ixgbe_hw *hw, u8 *addr_list,
1019                               u32 addr_count, ixgbe_mc_addr_itr func)
1020 {
1021         return ixgbe_call_func(hw, hw->mac.ops.update_uc_addr_list, (hw,
1022                                addr_list, addr_count, func),
1023                                IXGBE_NOT_IMPLEMENTED);
1024 }
1025
1026 /**
1027  *  ixgbe_update_mc_addr_list - Updates the MAC's list of multicast addresses
1028  *  @hw: pointer to hardware structure
1029  *  @mc_addr_list: the list of new multicast addresses
1030  *  @mc_addr_count: number of addresses
1031  *  @func: iterator function to walk the multicast address list
1032  *
1033  *  The given list replaces any existing list. Clears the MC addrs from receive
1034  *  address registers and the multicast table. Uses unused receive address
1035  *  registers for the first multicast addresses, and hashes the rest into the
1036  *  multicast table.
1037  **/
1038 s32 ixgbe_update_mc_addr_list(struct ixgbe_hw *hw, u8 *mc_addr_list,
1039                               u32 mc_addr_count, ixgbe_mc_addr_itr func,
1040                               bool clear)
1041 {
1042         return ixgbe_call_func(hw, hw->mac.ops.update_mc_addr_list, (hw,
1043                                mc_addr_list, mc_addr_count, func, clear),
1044                                IXGBE_NOT_IMPLEMENTED);
1045 }
1046
1047 /**
1048  *  ixgbe_enable_mc - Enable multicast address in RAR
1049  *  @hw: pointer to hardware structure
1050  *
1051  *  Enables multicast address in RAR and the use of the multicast hash table.
1052  **/
1053 s32 ixgbe_enable_mc(struct ixgbe_hw *hw)
1054 {
1055         return ixgbe_call_func(hw, hw->mac.ops.enable_mc, (hw),
1056                                IXGBE_NOT_IMPLEMENTED);
1057 }
1058
1059 /**
1060  *  ixgbe_disable_mc - Disable multicast address in RAR
1061  *  @hw: pointer to hardware structure
1062  *
1063  *  Disables multicast address in RAR and the use of the multicast hash table.
1064  **/
1065 s32 ixgbe_disable_mc(struct ixgbe_hw *hw)
1066 {
1067         return ixgbe_call_func(hw, hw->mac.ops.disable_mc, (hw),
1068                                IXGBE_NOT_IMPLEMENTED);
1069 }
1070
1071 /**
1072  *  ixgbe_clear_vfta - Clear VLAN filter table
1073  *  @hw: pointer to hardware structure
1074  *
1075  *  Clears the VLAN filer table, and the VMDq index associated with the filter
1076  **/
1077 s32 ixgbe_clear_vfta(struct ixgbe_hw *hw)
1078 {
1079         return ixgbe_call_func(hw, hw->mac.ops.clear_vfta, (hw),
1080                                IXGBE_NOT_IMPLEMENTED);
1081 }
1082
1083 /**
1084  *  ixgbe_set_vfta - Set VLAN filter table
1085  *  @hw: pointer to hardware structure
1086  *  @vlan: VLAN id to write to VLAN filter
1087  *  @vind: VMDq output index that maps queue to VLAN id in VLVFB
1088  *  @vlan_on: boolean flag to turn on/off VLAN
1089  *  @vlvf_bypass: boolean flag indicating updating the default pool is okay
1090  *
1091  *  Turn on/off specified VLAN in the VLAN filter table.
1092  **/
1093 s32 ixgbe_set_vfta(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on,
1094                    bool vlvf_bypass)
1095 {
1096         return ixgbe_call_func(hw, hw->mac.ops.set_vfta, (hw, vlan, vind,
1097                                vlan_on, vlvf_bypass), IXGBE_NOT_IMPLEMENTED);
1098 }
1099
1100 /**
1101  *  ixgbe_set_vlvf - Set VLAN Pool Filter
1102  *  @hw: pointer to hardware structure
1103  *  @vlan: VLAN id to write to VLAN filter
1104  *  @vind: VMDq output index that maps queue to VLAN id in VLVFB
1105  *  @vlan_on: boolean flag to turn on/off VLAN in VLVF
1106  *  @vfta_delta: pointer to the difference between the current value of VFTA
1107  *               and the desired value
1108  *  @vfta: the desired value of the VFTA
1109  *  @vlvf_bypass: boolean flag indicating updating the default pool is okay
1110  *
1111  *  Turn on/off specified bit in VLVF table.
1112  **/
1113 s32 ixgbe_set_vlvf(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on,
1114                    u32 *vfta_delta, u32 vfta, bool vlvf_bypass)
1115 {
1116         return ixgbe_call_func(hw, hw->mac.ops.set_vlvf, (hw, vlan, vind,
1117                                vlan_on, vfta_delta, vfta, vlvf_bypass),
1118                                IXGBE_NOT_IMPLEMENTED);
1119 }
1120
1121 /**
1122  *  ixgbe_fc_enable - Enable flow control
1123  *  @hw: pointer to hardware structure
1124  *
1125  *  Configures the flow control settings based on SW configuration.
1126  **/
1127 s32 ixgbe_fc_enable(struct ixgbe_hw *hw)
1128 {
1129         return ixgbe_call_func(hw, hw->mac.ops.fc_enable, (hw),
1130                                IXGBE_NOT_IMPLEMENTED);
1131 }
1132
1133 /**
1134  *  ixgbe_setup_fc - Set up flow control
1135  *  @hw: pointer to hardware structure
1136  *
1137  *  Called at init time to set up flow control.
1138  **/
1139 s32 ixgbe_setup_fc(struct ixgbe_hw *hw)
1140 {
1141         return ixgbe_call_func(hw, hw->mac.ops.setup_fc, (hw),
1142                 IXGBE_NOT_IMPLEMENTED);
1143 }
1144
1145 /**
1146  * ixgbe_set_fw_drv_ver - Try to send the driver version number FW
1147  * @hw: pointer to hardware structure
1148  * @maj: driver major number to be sent to firmware
1149  * @min: driver minor number to be sent to firmware
1150  * @build: driver build number to be sent to firmware
1151  * @ver: driver version number to be sent to firmware
1152  **/
1153 s32 ixgbe_set_fw_drv_ver(struct ixgbe_hw *hw, u8 maj, u8 min, u8 build,
1154                          u8 ver)
1155 {
1156         return ixgbe_call_func(hw, hw->mac.ops.set_fw_drv_ver, (hw, maj, min,
1157                                build, ver), IXGBE_NOT_IMPLEMENTED);
1158 }
1159
1160
1161 /**
1162  *  ixgbe_get_thermal_sensor_data - Gathers thermal sensor data
1163  *  @hw: pointer to hardware structure
1164  *
1165  *  Updates the temperatures in mac.thermal_sensor_data
1166  **/
1167 s32 ixgbe_get_thermal_sensor_data(struct ixgbe_hw *hw)
1168 {
1169         return ixgbe_call_func(hw, hw->mac.ops.get_thermal_sensor_data, (hw),
1170                                 IXGBE_NOT_IMPLEMENTED);
1171 }
1172
1173 /**
1174  *  ixgbe_init_thermal_sensor_thresh - Inits thermal sensor thresholds
1175  *  @hw: pointer to hardware structure
1176  *
1177  *  Inits the thermal sensor thresholds according to the NVM map
1178  **/
1179 s32 ixgbe_init_thermal_sensor_thresh(struct ixgbe_hw *hw)
1180 {
1181         return ixgbe_call_func(hw, hw->mac.ops.init_thermal_sensor_thresh, (hw),
1182                                 IXGBE_NOT_IMPLEMENTED);
1183 }
1184
1185 /**
1186  *  ixgbe_dmac_config - Configure DMA Coalescing registers.
1187  *  @hw: pointer to hardware structure
1188  *
1189  *  Configure DMA coalescing. If enabling dmac, dmac is activated.
1190  *  When disabling dmac, dmac enable dmac bit is cleared.
1191  **/
1192 s32 ixgbe_dmac_config(struct ixgbe_hw *hw)
1193 {
1194         return ixgbe_call_func(hw, hw->mac.ops.dmac_config, (hw),
1195                                 IXGBE_NOT_IMPLEMENTED);
1196 }
1197
1198 /**
1199  *  ixgbe_dmac_update_tcs - Configure DMA Coalescing registers.
1200  *  @hw: pointer to hardware structure
1201  *
1202  *  Disables dmac, updates per TC settings, and then enable dmac.
1203  **/
1204 s32 ixgbe_dmac_update_tcs(struct ixgbe_hw *hw)
1205 {
1206         return ixgbe_call_func(hw, hw->mac.ops.dmac_update_tcs, (hw),
1207                                 IXGBE_NOT_IMPLEMENTED);
1208 }
1209
1210 /**
1211  *  ixgbe_dmac_config_tcs - Configure DMA Coalescing registers.
1212  *  @hw: pointer to hardware structure
1213  *
1214  *  Configure DMA coalescing threshold per TC and set high priority bit for
1215  *  FCOE TC. The dmac enable bit must be cleared before configuring.
1216  **/
1217 s32 ixgbe_dmac_config_tcs(struct ixgbe_hw *hw)
1218 {
1219         return ixgbe_call_func(hw, hw->mac.ops.dmac_config_tcs, (hw),
1220                                 IXGBE_NOT_IMPLEMENTED);
1221 }
1222
1223 /**
1224  *  ixgbe_setup_eee - Enable/disable EEE support
1225  *  @hw: pointer to the HW structure
1226  *  @enable_eee: boolean flag to enable EEE
1227  *
1228  *  Enable/disable EEE based on enable_ee flag.
1229  *  Auto-negotiation must be started after BASE-T EEE bits in PHY register 7.3C
1230  *  are modified.
1231  *
1232  **/
1233 s32 ixgbe_setup_eee(struct ixgbe_hw *hw, bool enable_eee)
1234 {
1235         return ixgbe_call_func(hw, hw->mac.ops.setup_eee, (hw, enable_eee),
1236                         IXGBE_NOT_IMPLEMENTED);
1237 }
1238
1239 /**
1240  * ixgbe_set_source_address_pruning - Enable/Disable source address pruning
1241  * @hw: pointer to hardware structure
1242  * @enbale: enable or disable source address pruning
1243  * @pool: Rx pool - Rx pool to toggle source address pruning
1244  **/
1245 void ixgbe_set_source_address_pruning(struct ixgbe_hw *hw, bool enable,
1246                                       unsigned int pool)
1247 {
1248         if (hw->mac.ops.set_source_address_pruning)
1249                 hw->mac.ops.set_source_address_pruning(hw, enable, pool);
1250 }
1251
1252 /**
1253  *  ixgbe_set_ethertype_anti_spoofing - Enable/Disable Ethertype anti-spoofing
1254  *  @hw: pointer to hardware structure
1255  *  @enable: enable or disable switch for Ethertype anti-spoofing
1256  *  @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
1257  *
1258  **/
1259 void ixgbe_set_ethertype_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
1260 {
1261         if (hw->mac.ops.set_ethertype_anti_spoofing)
1262                 hw->mac.ops.set_ethertype_anti_spoofing(hw, enable, vf);
1263 }
1264
1265 /**
1266  *  ixgbe_read_iosf_sb_reg - Read 32 bit PHY register
1267  *  @hw: pointer to hardware structure
1268  *  @reg_addr: 32 bit address of PHY register to read
1269  *  @device_type: type of device you want to communicate with
1270  *  @phy_data: Pointer to read data from PHY register
1271  *
1272  *  Reads a value from a specified PHY register
1273  **/
1274 s32 ixgbe_read_iosf_sb_reg(struct ixgbe_hw *hw, u32 reg_addr,
1275                            u32 device_type, u32 *phy_data)
1276 {
1277         return ixgbe_call_func(hw, hw->mac.ops.read_iosf_sb_reg, (hw, reg_addr,
1278                                device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
1279 }
1280
1281 /**
1282  *  ixgbe_write_iosf_sb_reg - Write 32 bit register through IOSF Sideband
1283  *  @hw: pointer to hardware structure
1284  *  @reg_addr: 32 bit PHY register to write
1285  *  @device_type: type of device you want to communicate with
1286  *  @phy_data: Data to write to the PHY register
1287  *
1288  *  Writes a value to specified PHY register
1289  **/
1290 s32 ixgbe_write_iosf_sb_reg(struct ixgbe_hw *hw, u32 reg_addr,
1291                             u32 device_type, u32 phy_data)
1292 {
1293         return ixgbe_call_func(hw, hw->mac.ops.write_iosf_sb_reg, (hw, reg_addr,
1294                                device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
1295 }
1296
1297 /**
1298  *  ixgbe_disable_mdd - Disable malicious driver detection
1299  *  @hw: pointer to hardware structure
1300  *
1301  **/
1302 void ixgbe_disable_mdd(struct ixgbe_hw *hw)
1303 {
1304         if (hw->mac.ops.disable_mdd)
1305                 hw->mac.ops.disable_mdd(hw);
1306 }
1307
1308 /**
1309  *  ixgbe_enable_mdd - Enable malicious driver detection
1310  *  @hw: pointer to hardware structure
1311  *
1312  **/
1313 void ixgbe_enable_mdd(struct ixgbe_hw *hw)
1314 {
1315         if (hw->mac.ops.enable_mdd)
1316                 hw->mac.ops.enable_mdd(hw);
1317 }
1318
1319 /**
1320  *  ixgbe_mdd_event - Handle malicious driver detection event
1321  *  @hw: pointer to hardware structure
1322  *  @vf_bitmap: vf bitmap of malicious vfs
1323  *
1324  **/
1325 void ixgbe_mdd_event(struct ixgbe_hw *hw, u32 *vf_bitmap)
1326 {
1327         if (hw->mac.ops.mdd_event)
1328                 hw->mac.ops.mdd_event(hw, vf_bitmap);
1329 }
1330
1331 /**
1332  *  ixgbe_restore_mdd_vf - Restore VF that was disabled during malicious driver
1333  *  detection event
1334  *  @hw: pointer to hardware structure
1335  *  @vf: vf index
1336  *
1337  **/
1338 void ixgbe_restore_mdd_vf(struct ixgbe_hw *hw, u32 vf)
1339 {
1340         if (hw->mac.ops.restore_mdd_vf)
1341                 hw->mac.ops.restore_mdd_vf(hw, vf);
1342 }
1343
1344 /**
1345  *  ixgbe_enter_lplu - Transition to low power states
1346  *  @hw: pointer to hardware structure
1347  *
1348  * Configures Low Power Link Up on transition to low power states
1349  * (from D0 to non-D0).
1350  **/
1351 s32 ixgbe_enter_lplu(struct ixgbe_hw *hw)
1352 {
1353         return ixgbe_call_func(hw, hw->phy.ops.enter_lplu, (hw),
1354                                 IXGBE_NOT_IMPLEMENTED);
1355 }
1356
1357 /**
1358  * ixgbe_handle_lasi - Handle external Base T PHY interrupt
1359  * @hw: pointer to hardware structure
1360  *
1361  * Handle external Base T PHY interrupt. If high temperature
1362  * failure alarm then return error, else if link status change
1363  * then setup internal/external PHY link
1364  *
1365  * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature
1366  * failure alarm, else return PHY access status.
1367  */
1368 s32 ixgbe_handle_lasi(struct ixgbe_hw *hw)
1369 {
1370         return ixgbe_call_func(hw, hw->phy.ops.handle_lasi, (hw),
1371                                 IXGBE_NOT_IMPLEMENTED);
1372 }
1373
1374 /**
1375  *  ixgbe_read_analog_reg8 - Reads 8 bit analog register
1376  *  @hw: pointer to hardware structure
1377  *  @reg: analog register to read
1378  *  @val: read value
1379  *
1380  *  Performs write operation to analog register specified.
1381  **/
1382 s32 ixgbe_read_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 *val)
1383 {
1384         return ixgbe_call_func(hw, hw->mac.ops.read_analog_reg8, (hw, reg,
1385                                val), IXGBE_NOT_IMPLEMENTED);
1386 }
1387
1388 /**
1389  *  ixgbe_write_analog_reg8 - Writes 8 bit analog register
1390  *  @hw: pointer to hardware structure
1391  *  @reg: analog register to write
1392  *  @val: value to write
1393  *
1394  *  Performs write operation to Atlas analog register specified.
1395  **/
1396 s32 ixgbe_write_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 val)
1397 {
1398         return ixgbe_call_func(hw, hw->mac.ops.write_analog_reg8, (hw, reg,
1399                                val), IXGBE_NOT_IMPLEMENTED);
1400 }
1401
1402 /**
1403  *  ixgbe_init_uta_tables - Initializes Unicast Table Arrays.
1404  *  @hw: pointer to hardware structure
1405  *
1406  *  Initializes the Unicast Table Arrays to zero on device load.  This
1407  *  is part of the Rx init addr execution path.
1408  **/
1409 s32 ixgbe_init_uta_tables(struct ixgbe_hw *hw)
1410 {
1411         return ixgbe_call_func(hw, hw->mac.ops.init_uta_tables, (hw),
1412                                IXGBE_NOT_IMPLEMENTED);
1413 }
1414
1415 /**
1416  *  ixgbe_read_i2c_byte - Reads 8 bit word over I2C at specified device address
1417  *  @hw: pointer to hardware structure
1418  *  @byte_offset: byte offset to read
1419  *  @dev_addr: I2C bus address to read from
1420  *  @data: value read
1421  *
1422  *  Performs byte read operation to SFP module's EEPROM over I2C interface.
1423  **/
1424 s32 ixgbe_read_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
1425                         u8 *data)
1426 {
1427         return ixgbe_call_func(hw, hw->phy.ops.read_i2c_byte, (hw, byte_offset,
1428                                dev_addr, data), IXGBE_NOT_IMPLEMENTED);
1429 }
1430
1431 /**
1432  *  ixgbe_read_i2c_byte_unlocked - Reads 8 bit word via I2C from device address
1433  *  @hw: pointer to hardware structure
1434  *  @byte_offset: byte offset to read
1435  *  @dev_addr: I2C bus address to read from
1436  *  @data: value read
1437  *
1438  *  Performs byte read operation to SFP module's EEPROM over I2C interface.
1439  **/
1440 s32 ixgbe_read_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
1441                                  u8 dev_addr, u8 *data)
1442 {
1443         return ixgbe_call_func(hw, hw->phy.ops.read_i2c_byte_unlocked,
1444                                (hw, byte_offset, dev_addr, data),
1445                                IXGBE_NOT_IMPLEMENTED);
1446 }
1447
1448 /**
1449  * ixgbe_read_link - Perform read operation on link device
1450  * @hw: pointer to the hardware structure
1451  * @addr: bus address to read from
1452  * @reg: device register to read from
1453  * @val: pointer to location to receive read value
1454  *
1455  * Returns an error code on error.
1456  */
1457 s32 ixgbe_read_link(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 *val)
1458 {
1459         return ixgbe_call_func(hw, hw->link.ops.read_link, (hw, addr,
1460                                reg, val), IXGBE_NOT_IMPLEMENTED);
1461 }
1462
1463 /**
1464  * ixgbe_read_link_unlocked - Perform read operation on link device
1465  * @hw: pointer to the hardware structure
1466  * @addr: bus address to read from
1467  * @reg: device register to read from
1468  * @val: pointer to location to receive read value
1469  *
1470  * Returns an error code on error.
1471  **/
1472 s32 ixgbe_read_link_unlocked(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 *val)
1473 {
1474         return ixgbe_call_func(hw, hw->link.ops.read_link_unlocked,
1475                                (hw, addr, reg, val), IXGBE_NOT_IMPLEMENTED);
1476 }
1477
1478 /**
1479  *  ixgbe_write_i2c_byte - Writes 8 bit word over I2C
1480  *  @hw: pointer to hardware structure
1481  *  @byte_offset: byte offset to write
1482  *  @dev_addr: I2C bus address to write to
1483  *  @data: value to write
1484  *
1485  *  Performs byte write operation to SFP module's EEPROM over I2C interface
1486  *  at a specified device address.
1487  **/
1488 s32 ixgbe_write_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
1489                          u8 data)
1490 {
1491         return ixgbe_call_func(hw, hw->phy.ops.write_i2c_byte, (hw, byte_offset,
1492                                dev_addr, data), IXGBE_NOT_IMPLEMENTED);
1493 }
1494
1495 /**
1496  *  ixgbe_write_i2c_byte_unlocked - Writes 8 bit word over I2C
1497  *  @hw: pointer to hardware structure
1498  *  @byte_offset: byte offset to write
1499  *  @dev_addr: I2C bus address to write to
1500  *  @data: value to write
1501  *
1502  *  Performs byte write operation to SFP module's EEPROM over I2C interface
1503  *  at a specified device address.
1504  **/
1505 s32 ixgbe_write_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
1506                                   u8 dev_addr, u8 data)
1507 {
1508         return ixgbe_call_func(hw, hw->phy.ops.write_i2c_byte_unlocked,
1509                                (hw, byte_offset, dev_addr, data),
1510                                IXGBE_NOT_IMPLEMENTED);
1511 }
1512
1513 /**
1514  * ixgbe_write_link - Perform write operation on link device
1515  * @hw: pointer to the hardware structure
1516  * @addr: bus address to write to
1517  * @reg: device register to write to
1518  * @val: value to write
1519  *
1520  * Returns an error code on error.
1521  */
1522 s32 ixgbe_write_link(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 val)
1523 {
1524         return ixgbe_call_func(hw, hw->link.ops.write_link,
1525                                (hw, addr, reg, val), IXGBE_NOT_IMPLEMENTED);
1526 }
1527
1528 /**
1529  * ixgbe_write_link_unlocked - Perform write operation on link device
1530  * @hw: pointer to the hardware structure
1531  * @addr: bus address to write to
1532  * @reg: device register to write to
1533  * @val: value to write
1534  *
1535  * Returns an error code on error.
1536  **/
1537 s32 ixgbe_write_link_unlocked(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 val)
1538 {
1539         return ixgbe_call_func(hw, hw->link.ops.write_link_unlocked,
1540                                (hw, addr, reg, val), IXGBE_NOT_IMPLEMENTED);
1541 }
1542
1543 /**
1544  *  ixgbe_write_i2c_eeprom - Writes 8 bit EEPROM word over I2C interface
1545  *  @hw: pointer to hardware structure
1546  *  @byte_offset: EEPROM byte offset to write
1547  *  @eeprom_data: value to write
1548  *
1549  *  Performs byte write operation to SFP module's EEPROM over I2C interface.
1550  **/
1551 s32 ixgbe_write_i2c_eeprom(struct ixgbe_hw *hw,
1552                            u8 byte_offset, u8 eeprom_data)
1553 {
1554         return ixgbe_call_func(hw, hw->phy.ops.write_i2c_eeprom,
1555                                (hw, byte_offset, eeprom_data),
1556                                IXGBE_NOT_IMPLEMENTED);
1557 }
1558
1559 /**
1560  *  ixgbe_read_i2c_eeprom - Reads 8 bit EEPROM word over I2C interface
1561  *  @hw: pointer to hardware structure
1562  *  @byte_offset: EEPROM byte offset to read
1563  *  @eeprom_data: value read
1564  *
1565  *  Performs byte read operation to SFP module's EEPROM over I2C interface.
1566  **/
1567 s32 ixgbe_read_i2c_eeprom(struct ixgbe_hw *hw, u8 byte_offset, u8 *eeprom_data)
1568 {
1569         return ixgbe_call_func(hw, hw->phy.ops.read_i2c_eeprom,
1570                               (hw, byte_offset, eeprom_data),
1571                               IXGBE_NOT_IMPLEMENTED);
1572 }
1573
1574 /**
1575  *  ixgbe_get_supported_physical_layer - Returns physical layer type
1576  *  @hw: pointer to hardware structure
1577  *
1578  *  Determines physical layer capabilities of the current configuration.
1579  **/
1580 u32 ixgbe_get_supported_physical_layer(struct ixgbe_hw *hw)
1581 {
1582         return ixgbe_call_func(hw, hw->mac.ops.get_supported_physical_layer,
1583                                (hw), IXGBE_PHYSICAL_LAYER_UNKNOWN);
1584 }
1585
1586 /**
1587  *  ixgbe_enable_rx_dma - Enables Rx DMA unit, dependent on device specifics
1588  *  @hw: pointer to hardware structure
1589  *  @regval: bitfield to write to the Rx DMA register
1590  *
1591  *  Enables the Rx DMA unit of the device.
1592  **/
1593 s32 ixgbe_enable_rx_dma(struct ixgbe_hw *hw, u32 regval)
1594 {
1595         return ixgbe_call_func(hw, hw->mac.ops.enable_rx_dma,
1596                                (hw, regval), IXGBE_NOT_IMPLEMENTED);
1597 }
1598
1599 /**
1600  *  ixgbe_disable_sec_rx_path - Stops the receive data path
1601  *  @hw: pointer to hardware structure
1602  *
1603  *  Stops the receive data path.
1604  **/
1605 s32 ixgbe_disable_sec_rx_path(struct ixgbe_hw *hw)
1606 {
1607         return ixgbe_call_func(hw, hw->mac.ops.disable_sec_rx_path,
1608                                 (hw), IXGBE_NOT_IMPLEMENTED);
1609 }
1610
1611 /**
1612  *  ixgbe_enable_sec_rx_path - Enables the receive data path
1613  *  @hw: pointer to hardware structure
1614  *
1615  *  Enables the receive data path.
1616  **/
1617 s32 ixgbe_enable_sec_rx_path(struct ixgbe_hw *hw)
1618 {
1619         return ixgbe_call_func(hw, hw->mac.ops.enable_sec_rx_path,
1620                                 (hw), IXGBE_NOT_IMPLEMENTED);
1621 }
1622
1623 /**
1624  *  ixgbe_acquire_swfw_semaphore - Acquire SWFW semaphore
1625  *  @hw: pointer to hardware structure
1626  *  @mask: Mask to specify which semaphore to acquire
1627  *
1628  *  Acquires the SWFW semaphore through SW_FW_SYNC register for the specified
1629  *  function (CSR, PHY0, PHY1, EEPROM, Flash)
1630  **/
1631 s32 ixgbe_acquire_swfw_semaphore(struct ixgbe_hw *hw, u32 mask)
1632 {
1633         return ixgbe_call_func(hw, hw->mac.ops.acquire_swfw_sync,
1634                                (hw, mask), IXGBE_NOT_IMPLEMENTED);
1635 }
1636
1637 /**
1638  *  ixgbe_release_swfw_semaphore - Release SWFW semaphore
1639  *  @hw: pointer to hardware structure
1640  *  @mask: Mask to specify which semaphore to release
1641  *
1642  *  Releases the SWFW semaphore through SW_FW_SYNC register for the specified
1643  *  function (CSR, PHY0, PHY1, EEPROM, Flash)
1644  **/
1645 void ixgbe_release_swfw_semaphore(struct ixgbe_hw *hw, u32 mask)
1646 {
1647         if (hw->mac.ops.release_swfw_sync)
1648                 hw->mac.ops.release_swfw_sync(hw, mask);
1649 }
1650
1651 /**
1652  *  ixgbe_init_swfw_semaphore - Clean up SWFW semaphore
1653  *  @hw: pointer to hardware structure
1654  *
1655  *  Attempts to acquire the SWFW semaphore through SW_FW_SYNC register.
1656  *  Regardless of whether is succeeds or not it then release the semaphore.
1657  *  This is function is called to recover from catastrophic failures that
1658  *  may have left the semaphore locked.
1659  **/
1660 void ixgbe_init_swfw_semaphore(struct ixgbe_hw *hw)
1661 {
1662         if (hw->mac.ops.init_swfw_sync)
1663                 hw->mac.ops.init_swfw_sync(hw);
1664 }
1665
1666
1667 void ixgbe_disable_rx(struct ixgbe_hw *hw)
1668 {
1669         if (hw->mac.ops.disable_rx)
1670                 hw->mac.ops.disable_rx(hw);
1671 }
1672
1673 void ixgbe_enable_rx(struct ixgbe_hw *hw)
1674 {
1675         if (hw->mac.ops.enable_rx)
1676                 hw->mac.ops.enable_rx(hw);
1677 }
1678
1679 /**
1680  *  ixgbe_set_rate_select_speed - Set module link speed
1681  *  @hw: pointer to hardware structure
1682  *  @speed: link speed to set
1683  *
1684  *  Set module link speed via the rate select.
1685  */
1686 void ixgbe_set_rate_select_speed(struct ixgbe_hw *hw, ixgbe_link_speed speed)
1687 {
1688         if (hw->mac.ops.set_rate_select_speed)
1689                 hw->mac.ops.set_rate_select_speed(hw, speed);
1690 }