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