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