1 /*******************************************************************************
3 Copyright (c) 2001-2015, Intel Corporation
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
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.
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.
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.
32 ***************************************************************************/
34 #include "ixgbe_api.h"
35 #include "ixgbe_common.h"
37 #define IXGBE_EMPTY_PARAM
39 static const u32 ixgbe_mvals_base[IXGBE_MVALS_IDX_LIMIT] = {
40 IXGBE_MVALS_INIT(IXGBE_EMPTY_PARAM)
43 static const u32 ixgbe_mvals_X540[IXGBE_MVALS_IDX_LIMIT] = {
44 IXGBE_MVALS_INIT(_X540)
47 static const u32 ixgbe_mvals_X550[IXGBE_MVALS_IDX_LIMIT] = {
48 IXGBE_MVALS_INIT(_X550)
51 static const u32 ixgbe_mvals_X550EM_x[IXGBE_MVALS_IDX_LIMIT] = {
52 IXGBE_MVALS_INIT(_X550EM_x)
55 static const u32 ixgbe_mvals_X550EM_a[IXGBE_MVALS_IDX_LIMIT] = {
56 IXGBE_MVALS_INIT(_X550EM_a)
60 * ixgbe_dcb_get_rtrup2tc - read rtrup2tc reg
61 * @hw: pointer to hardware structure
62 * @map: pointer to u8 arr for returning map
64 * Read the rtrup2tc HW register and resolve its content into map
66 void ixgbe_dcb_get_rtrup2tc(struct ixgbe_hw *hw, u8 *map)
68 if (hw->mac.ops.get_rtrup2tc)
69 hw->mac.ops.get_rtrup2tc(hw, map);
73 * ixgbe_init_shared_code - Initialize the shared code
74 * @hw: pointer to hardware structure
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
84 s32 ixgbe_init_shared_code(struct ixgbe_hw *hw)
88 DEBUGFUNC("ixgbe_init_shared_code");
93 ixgbe_set_mac_type(hw);
95 switch (hw->mac.type) {
96 case ixgbe_mac_82598EB:
97 status = ixgbe_init_ops_82598(hw);
99 case ixgbe_mac_82599EB:
100 status = ixgbe_init_ops_82599(hw);
103 status = ixgbe_init_ops_X540(hw);
106 status = ixgbe_init_ops_X550(hw);
108 case ixgbe_mac_X550EM_x:
109 status = ixgbe_init_ops_X550EM_x(hw);
111 case ixgbe_mac_X550EM_a:
112 status = ixgbe_init_ops_X550EM_a(hw);
114 case ixgbe_mac_82599_vf:
115 case ixgbe_mac_X540_vf:
116 case ixgbe_mac_X550_vf:
117 case ixgbe_mac_X550EM_x_vf:
118 case ixgbe_mac_X550EM_a_vf:
119 status = ixgbe_init_ops_vf(hw);
122 status = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
125 hw->mac.max_link_up_time = IXGBE_LINK_UP_TIME;
131 * ixgbe_set_mac_type - Sets MAC type
132 * @hw: pointer to the HW structure
134 * This function sets the mac type of the adapter based on the
135 * vendor ID and device ID stored in the hw structure.
137 s32 ixgbe_set_mac_type(struct ixgbe_hw *hw)
139 s32 ret_val = IXGBE_SUCCESS;
141 DEBUGFUNC("ixgbe_set_mac_type\n");
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;
149 hw->mvals = ixgbe_mvals_base;
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;
166 case IXGBE_DEV_ID_82599_KX4:
167 case IXGBE_DEV_ID_82599_KX4_MEZZ:
168 case IXGBE_DEV_ID_82599_XAUI_LOM:
169 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
170 case IXGBE_DEV_ID_82599_KR:
171 case IXGBE_DEV_ID_82599_SFP:
172 case IXGBE_DEV_ID_82599_BACKPLANE_FCOE:
173 case IXGBE_DEV_ID_82599_SFP_FCOE:
174 case IXGBE_DEV_ID_82599_SFP_EM:
175 case IXGBE_DEV_ID_82599_SFP_SF2:
176 case IXGBE_DEV_ID_82599_SFP_SF_QP:
177 case IXGBE_DEV_ID_82599_QSFP_SF_QP:
178 case IXGBE_DEV_ID_82599EN_SFP:
179 case IXGBE_DEV_ID_82599_CX4:
180 case IXGBE_DEV_ID_82599_LS:
181 case IXGBE_DEV_ID_82599_T3_LOM:
182 hw->mac.type = ixgbe_mac_82599EB;
184 case IXGBE_DEV_ID_82599_VF:
185 case IXGBE_DEV_ID_82599_VF_HV:
186 hw->mac.type = ixgbe_mac_82599_vf;
188 case IXGBE_DEV_ID_X540_VF:
189 case IXGBE_DEV_ID_X540_VF_HV:
190 hw->mac.type = ixgbe_mac_X540_vf;
191 hw->mvals = ixgbe_mvals_X540;
193 case IXGBE_DEV_ID_X540T:
194 case IXGBE_DEV_ID_X540T1:
195 hw->mac.type = ixgbe_mac_X540;
196 hw->mvals = ixgbe_mvals_X540;
198 case IXGBE_DEV_ID_X550T:
199 case IXGBE_DEV_ID_X550T1:
200 hw->mac.type = ixgbe_mac_X550;
201 hw->mvals = ixgbe_mvals_X550;
203 case IXGBE_DEV_ID_X550EM_X_KX4:
204 case IXGBE_DEV_ID_X550EM_X_KR:
205 case IXGBE_DEV_ID_X550EM_X_10G_T:
206 case IXGBE_DEV_ID_X550EM_X_1G_T:
207 case IXGBE_DEV_ID_X550EM_X_SFP:
208 case IXGBE_DEV_ID_X550EM_X_XFI:
209 hw->mac.type = ixgbe_mac_X550EM_x;
210 hw->mvals = ixgbe_mvals_X550EM_x;
212 case IXGBE_DEV_ID_X550EM_A_KR:
213 case IXGBE_DEV_ID_X550EM_A_KR_L:
214 case IXGBE_DEV_ID_X550EM_A_SFP_N:
215 case IXGBE_DEV_ID_X550EM_A_SGMII:
216 case IXGBE_DEV_ID_X550EM_A_SGMII_L:
217 case IXGBE_DEV_ID_X550EM_A_1G_T:
218 case IXGBE_DEV_ID_X550EM_A_1G_T_L:
219 case IXGBE_DEV_ID_X550EM_A_10G_T:
220 case IXGBE_DEV_ID_X550EM_A_QSFP:
221 case IXGBE_DEV_ID_X550EM_A_QSFP_N:
222 case IXGBE_DEV_ID_X550EM_A_SFP:
223 hw->mac.type = ixgbe_mac_X550EM_a;
224 hw->mvals = ixgbe_mvals_X550EM_a;
226 case IXGBE_DEV_ID_X550_VF:
227 case IXGBE_DEV_ID_X550_VF_HV:
228 hw->mac.type = ixgbe_mac_X550_vf;
229 hw->mvals = ixgbe_mvals_X550;
231 case IXGBE_DEV_ID_X550EM_X_VF:
232 case IXGBE_DEV_ID_X550EM_X_VF_HV:
233 hw->mac.type = ixgbe_mac_X550EM_x_vf;
234 hw->mvals = ixgbe_mvals_X550EM_x;
236 case IXGBE_DEV_ID_X550EM_A_VF:
237 case IXGBE_DEV_ID_X550EM_A_VF_HV:
238 hw->mac.type = ixgbe_mac_X550EM_a_vf;
239 hw->mvals = ixgbe_mvals_X550EM_a;
242 ret_val = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
243 ERROR_REPORT2(IXGBE_ERROR_UNSUPPORTED,
244 "Unsupported device id: %x",
249 DEBUGOUT2("ixgbe_set_mac_type found mac: %d, returns: %d\n",
250 hw->mac.type, ret_val);
255 * ixgbe_init_hw - Initialize the hardware
256 * @hw: pointer to hardware structure
258 * Initialize the hardware by resetting and then starting the hardware
260 s32 ixgbe_init_hw(struct ixgbe_hw *hw)
262 return ixgbe_call_func(hw, hw->mac.ops.init_hw, (hw),
263 IXGBE_NOT_IMPLEMENTED);
267 * ixgbe_reset_hw - Performs a hardware reset
268 * @hw: pointer to hardware structure
270 * Resets the hardware by resetting the transmit and receive units, masks and
271 * clears all interrupts, performs a PHY reset, and performs a MAC reset
273 s32 ixgbe_reset_hw(struct ixgbe_hw *hw)
275 return ixgbe_call_func(hw, hw->mac.ops.reset_hw, (hw),
276 IXGBE_NOT_IMPLEMENTED);
280 * ixgbe_start_hw - Prepares hardware for Rx/Tx
281 * @hw: pointer to hardware structure
283 * Starts the hardware by filling the bus info structure and media type,
284 * clears all on chip counters, initializes receive address registers,
285 * multicast table, VLAN filter table, calls routine to setup link and
286 * flow control settings, and leaves transmit and receive units disabled
289 s32 ixgbe_start_hw(struct ixgbe_hw *hw)
291 return ixgbe_call_func(hw, hw->mac.ops.start_hw, (hw),
292 IXGBE_NOT_IMPLEMENTED);
296 * ixgbe_enable_relaxed_ordering - Enables tx relaxed ordering,
297 * which is disabled by default in ixgbe_start_hw();
299 * @hw: pointer to hardware structure
301 * Enable relaxed ordering;
303 void ixgbe_enable_relaxed_ordering(struct ixgbe_hw *hw)
305 if (hw->mac.ops.enable_relaxed_ordering)
306 hw->mac.ops.enable_relaxed_ordering(hw);
310 * ixgbe_clear_hw_cntrs - Clear hardware counters
311 * @hw: pointer to hardware structure
313 * Clears all hardware statistics counters by reading them from the hardware
314 * Statistics counters are clear on read.
316 s32 ixgbe_clear_hw_cntrs(struct ixgbe_hw *hw)
318 return ixgbe_call_func(hw, hw->mac.ops.clear_hw_cntrs, (hw),
319 IXGBE_NOT_IMPLEMENTED);
323 * ixgbe_get_media_type - Get media type
324 * @hw: pointer to hardware structure
326 * Returns the media type (fiber, copper, backplane)
328 enum ixgbe_media_type ixgbe_get_media_type(struct ixgbe_hw *hw)
330 return ixgbe_call_func(hw, hw->mac.ops.get_media_type, (hw),
331 ixgbe_media_type_unknown);
335 * ixgbe_get_mac_addr - Get MAC address
336 * @hw: pointer to hardware structure
337 * @mac_addr: Adapter MAC address
339 * Reads the adapter's MAC address from the first Receive Address Register
340 * (RAR0) A reset of the adapter must have been performed prior to calling
341 * this function in order for the MAC address to have been loaded from the
344 s32 ixgbe_get_mac_addr(struct ixgbe_hw *hw, u8 *mac_addr)
346 return ixgbe_call_func(hw, hw->mac.ops.get_mac_addr,
347 (hw, mac_addr), IXGBE_NOT_IMPLEMENTED);
351 * ixgbe_get_san_mac_addr - Get SAN MAC address
352 * @hw: pointer to hardware structure
353 * @san_mac_addr: SAN MAC address
355 * Reads the SAN MAC address from the EEPROM, if it's available. This is
356 * per-port, so set_lan_id() must be called before reading the addresses.
358 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
360 return ixgbe_call_func(hw, hw->mac.ops.get_san_mac_addr,
361 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
365 * ixgbe_set_san_mac_addr - Write a SAN MAC address
366 * @hw: pointer to hardware structure
367 * @san_mac_addr: SAN MAC address
369 * Writes A SAN MAC address to the EEPROM.
371 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr)
373 return ixgbe_call_func(hw, hw->mac.ops.set_san_mac_addr,
374 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
378 * ixgbe_get_device_caps - Get additional device capabilities
379 * @hw: pointer to hardware structure
380 * @device_caps: the EEPROM word for device capabilities
382 * Reads the extra device capabilities from the EEPROM
384 s32 ixgbe_get_device_caps(struct ixgbe_hw *hw, u16 *device_caps)
386 return ixgbe_call_func(hw, hw->mac.ops.get_device_caps,
387 (hw, device_caps), IXGBE_NOT_IMPLEMENTED);
391 * ixgbe_get_wwn_prefix - Get alternative WWNN/WWPN prefix from the EEPROM
392 * @hw: pointer to hardware structure
393 * @wwnn_prefix: the alternative WWNN prefix
394 * @wwpn_prefix: the alternative WWPN prefix
396 * This function will read the EEPROM from the alternative SAN MAC address
397 * block to check the support for the alternative WWNN/WWPN prefix support.
399 s32 ixgbe_get_wwn_prefix(struct ixgbe_hw *hw, u16 *wwnn_prefix,
402 return ixgbe_call_func(hw, hw->mac.ops.get_wwn_prefix,
403 (hw, wwnn_prefix, wwpn_prefix),
404 IXGBE_NOT_IMPLEMENTED);
408 * ixgbe_get_fcoe_boot_status - Get FCOE boot status from EEPROM
409 * @hw: pointer to hardware structure
410 * @bs: the fcoe boot status
412 * This function will read the FCOE boot status from the iSCSI FCOE block
414 s32 ixgbe_get_fcoe_boot_status(struct ixgbe_hw *hw, u16 *bs)
416 return ixgbe_call_func(hw, hw->mac.ops.get_fcoe_boot_status,
418 IXGBE_NOT_IMPLEMENTED);
422 * ixgbe_get_bus_info - Set PCI bus info
423 * @hw: pointer to hardware structure
425 * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure
427 s32 ixgbe_get_bus_info(struct ixgbe_hw *hw)
429 return ixgbe_call_func(hw, hw->mac.ops.get_bus_info, (hw),
430 IXGBE_NOT_IMPLEMENTED);
434 * ixgbe_get_num_of_tx_queues - Get Tx queues
435 * @hw: pointer to hardware structure
437 * Returns the number of transmit queues for the given adapter.
439 u32 ixgbe_get_num_of_tx_queues(struct ixgbe_hw *hw)
441 return hw->mac.max_tx_queues;
445 * ixgbe_get_num_of_rx_queues - Get Rx queues
446 * @hw: pointer to hardware structure
448 * Returns the number of receive queues for the given adapter.
450 u32 ixgbe_get_num_of_rx_queues(struct ixgbe_hw *hw)
452 return hw->mac.max_rx_queues;
456 * ixgbe_stop_adapter - Disable Rx/Tx units
457 * @hw: pointer to hardware structure
459 * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
460 * disables transmit and receive units. The adapter_stopped flag is used by
461 * the shared code and drivers to determine if the adapter is in a stopped
462 * state and should not touch the hardware.
464 s32 ixgbe_stop_adapter(struct ixgbe_hw *hw)
466 return ixgbe_call_func(hw, hw->mac.ops.stop_adapter, (hw),
467 IXGBE_NOT_IMPLEMENTED);
471 * ixgbe_read_pba_string - Reads part number string from EEPROM
472 * @hw: pointer to hardware structure
473 * @pba_num: stores the part number string from the EEPROM
474 * @pba_num_size: part number string buffer length
476 * Reads the part number string from the EEPROM.
478 s32 ixgbe_read_pba_string(struct ixgbe_hw *hw, u8 *pba_num, u32 pba_num_size)
480 return ixgbe_read_pba_string_generic(hw, pba_num, pba_num_size);
484 * ixgbe_read_pba_num - Reads part number from EEPROM
485 * @hw: pointer to hardware structure
486 * @pba_num: stores the part number from the EEPROM
488 * Reads the part number from the EEPROM.
490 s32 ixgbe_read_pba_num(struct ixgbe_hw *hw, u32 *pba_num)
492 return ixgbe_read_pba_num_generic(hw, pba_num);
496 * ixgbe_identify_phy - Get PHY type
497 * @hw: pointer to hardware structure
499 * Determines the physical layer module found on the current adapter.
501 s32 ixgbe_identify_phy(struct ixgbe_hw *hw)
503 s32 status = IXGBE_SUCCESS;
505 if (hw->phy.type == ixgbe_phy_unknown) {
506 status = ixgbe_call_func(hw, hw->phy.ops.identify, (hw),
507 IXGBE_NOT_IMPLEMENTED);
514 * ixgbe_reset_phy - Perform a PHY reset
515 * @hw: pointer to hardware structure
517 s32 ixgbe_reset_phy(struct ixgbe_hw *hw)
519 s32 status = IXGBE_SUCCESS;
521 if (hw->phy.type == ixgbe_phy_unknown) {
522 if (ixgbe_identify_phy(hw) != IXGBE_SUCCESS)
523 status = IXGBE_ERR_PHY;
526 if (status == IXGBE_SUCCESS) {
527 status = ixgbe_call_func(hw, hw->phy.ops.reset, (hw),
528 IXGBE_NOT_IMPLEMENTED);
534 * ixgbe_get_phy_firmware_version -
535 * @hw: pointer to hardware structure
536 * @firmware_version: pointer to firmware version
538 s32 ixgbe_get_phy_firmware_version(struct ixgbe_hw *hw, u16 *firmware_version)
540 s32 status = IXGBE_SUCCESS;
542 status = ixgbe_call_func(hw, hw->phy.ops.get_firmware_version,
543 (hw, firmware_version),
544 IXGBE_NOT_IMPLEMENTED);
549 * ixgbe_read_phy_reg - Read PHY register
550 * @hw: pointer to hardware structure
551 * @reg_addr: 32 bit address of PHY register to read
552 * @phy_data: Pointer to read data from PHY register
554 * Reads a value from a specified PHY register
556 s32 ixgbe_read_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
560 ixgbe_identify_phy(hw);
562 return ixgbe_call_func(hw, hw->phy.ops.read_reg, (hw, reg_addr,
563 device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
567 * ixgbe_write_phy_reg - Write PHY register
568 * @hw: pointer to hardware structure
569 * @reg_addr: 32 bit PHY register to write
570 * @phy_data: Data to write to the PHY register
572 * Writes a value to specified PHY register
574 s32 ixgbe_write_phy_reg(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
578 ixgbe_identify_phy(hw);
580 return ixgbe_call_func(hw, hw->phy.ops.write_reg, (hw, reg_addr,
581 device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
585 * ixgbe_setup_phy_link - Restart PHY autoneg
586 * @hw: pointer to hardware structure
588 * Restart autonegotiation and PHY and waits for completion.
590 s32 ixgbe_setup_phy_link(struct ixgbe_hw *hw)
592 return ixgbe_call_func(hw, hw->phy.ops.setup_link, (hw),
593 IXGBE_NOT_IMPLEMENTED);
597 * ixgbe_setup_internal_phy - Configure integrated PHY
598 * @hw: pointer to hardware structure
600 * Reconfigure the integrated PHY in order to enable talk to the external PHY.
601 * Returns success if not implemented, since nothing needs to be done in this
604 s32 ixgbe_setup_internal_phy(struct ixgbe_hw *hw)
606 return ixgbe_call_func(hw, hw->phy.ops.setup_internal_link, (hw),
611 * ixgbe_check_phy_link - Determine link and speed status
612 * @hw: pointer to hardware structure
614 * Reads a PHY register to determine if link is up and the current speed for
617 s32 ixgbe_check_phy_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
620 return ixgbe_call_func(hw, hw->phy.ops.check_link, (hw, speed,
621 link_up), IXGBE_NOT_IMPLEMENTED);
625 * ixgbe_setup_phy_link_speed - Set auto advertise
626 * @hw: pointer to hardware structure
627 * @speed: new link speed
629 * Sets the auto advertised capabilities
631 s32 ixgbe_setup_phy_link_speed(struct ixgbe_hw *hw, ixgbe_link_speed speed,
632 bool autoneg_wait_to_complete)
634 return ixgbe_call_func(hw, hw->phy.ops.setup_link_speed, (hw, speed,
635 autoneg_wait_to_complete),
636 IXGBE_NOT_IMPLEMENTED);
640 * ixgbe_set_phy_power - Control the phy power state
641 * @hw: pointer to hardware structure
642 * @on: true for on, false for off
644 s32 ixgbe_set_phy_power(struct ixgbe_hw *hw, bool on)
646 return ixgbe_call_func(hw, hw->phy.ops.set_phy_power, (hw, on),
647 IXGBE_NOT_IMPLEMENTED);
651 * ixgbe_check_link - Get link and speed status
652 * @hw: pointer to hardware structure
654 * Reads the links register to determine if link is up and the current speed
656 s32 ixgbe_check_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
657 bool *link_up, bool link_up_wait_to_complete)
659 return ixgbe_call_func(hw, hw->mac.ops.check_link, (hw, speed,
660 link_up, link_up_wait_to_complete),
661 IXGBE_NOT_IMPLEMENTED);
665 * ixgbe_disable_tx_laser - Disable Tx laser
666 * @hw: pointer to hardware structure
668 * If the driver needs to disable the laser on SFI optics.
670 void ixgbe_disable_tx_laser(struct ixgbe_hw *hw)
672 if (hw->mac.ops.disable_tx_laser)
673 hw->mac.ops.disable_tx_laser(hw);
677 * ixgbe_enable_tx_laser - Enable Tx laser
678 * @hw: pointer to hardware structure
680 * If the driver needs to enable the laser on SFI optics.
682 void ixgbe_enable_tx_laser(struct ixgbe_hw *hw)
684 if (hw->mac.ops.enable_tx_laser)
685 hw->mac.ops.enable_tx_laser(hw);
689 * ixgbe_flap_tx_laser - flap Tx laser to start autotry process
690 * @hw: pointer to hardware structure
692 * When the driver changes the link speeds that it can support then
693 * flap the tx laser to alert the link partner to start autotry
694 * process on its end.
696 void ixgbe_flap_tx_laser(struct ixgbe_hw *hw)
698 if (hw->mac.ops.flap_tx_laser)
699 hw->mac.ops.flap_tx_laser(hw);
703 * ixgbe_setup_link - Set link speed
704 * @hw: pointer to hardware structure
705 * @speed: new link speed
707 * Configures link settings. Restarts the link.
708 * Performs autonegotiation if needed.
710 s32 ixgbe_setup_link(struct ixgbe_hw *hw, ixgbe_link_speed speed,
711 bool autoneg_wait_to_complete)
713 return ixgbe_call_func(hw, hw->mac.ops.setup_link, (hw, speed,
714 autoneg_wait_to_complete),
715 IXGBE_NOT_IMPLEMENTED);
719 * ixgbe_setup_mac_link - Set link speed
720 * @hw: pointer to hardware structure
721 * @speed: new link speed
723 * Configures link settings. Restarts the link.
724 * Performs autonegotiation if needed.
726 s32 ixgbe_setup_mac_link(struct ixgbe_hw *hw, ixgbe_link_speed speed,
727 bool autoneg_wait_to_complete)
729 return ixgbe_call_func(hw, hw->mac.ops.setup_mac_link, (hw, speed,
730 autoneg_wait_to_complete),
731 IXGBE_NOT_IMPLEMENTED);
735 * ixgbe_get_link_capabilities - Returns link capabilities
736 * @hw: pointer to hardware structure
738 * Determines the link capabilities of the current configuration.
740 s32 ixgbe_get_link_capabilities(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
743 return ixgbe_call_func(hw, hw->mac.ops.get_link_capabilities, (hw,
744 speed, autoneg), IXGBE_NOT_IMPLEMENTED);
748 * ixgbe_led_on - Turn on LEDs
749 * @hw: pointer to hardware structure
750 * @index: led number to turn on
752 * Turns on the software controllable LEDs.
754 s32 ixgbe_led_on(struct ixgbe_hw *hw, u32 index)
756 return ixgbe_call_func(hw, hw->mac.ops.led_on, (hw, index),
757 IXGBE_NOT_IMPLEMENTED);
761 * ixgbe_led_off - Turn off LEDs
762 * @hw: pointer to hardware structure
763 * @index: led number to turn off
765 * Turns off the software controllable LEDs.
767 s32 ixgbe_led_off(struct ixgbe_hw *hw, u32 index)
769 return ixgbe_call_func(hw, hw->mac.ops.led_off, (hw, index),
770 IXGBE_NOT_IMPLEMENTED);
774 * ixgbe_blink_led_start - Blink LEDs
775 * @hw: pointer to hardware structure
776 * @index: led number to blink
778 * Blink LED based on index.
780 s32 ixgbe_blink_led_start(struct ixgbe_hw *hw, u32 index)
782 return ixgbe_call_func(hw, hw->mac.ops.blink_led_start, (hw, index),
783 IXGBE_NOT_IMPLEMENTED);
787 * ixgbe_blink_led_stop - Stop blinking LEDs
788 * @hw: pointer to hardware structure
790 * Stop blinking LED based on index.
792 s32 ixgbe_blink_led_stop(struct ixgbe_hw *hw, u32 index)
794 return ixgbe_call_func(hw, hw->mac.ops.blink_led_stop, (hw, index),
795 IXGBE_NOT_IMPLEMENTED);
799 * ixgbe_init_eeprom_params - Initialize EEPROM parameters
800 * @hw: pointer to hardware structure
802 * Initializes the EEPROM parameters ixgbe_eeprom_info within the
803 * ixgbe_hw struct in order to set up EEPROM access.
805 s32 ixgbe_init_eeprom_params(struct ixgbe_hw *hw)
807 return ixgbe_call_func(hw, hw->eeprom.ops.init_params, (hw),
808 IXGBE_NOT_IMPLEMENTED);
813 * ixgbe_write_eeprom - Write word to EEPROM
814 * @hw: pointer to hardware structure
815 * @offset: offset within the EEPROM to be written to
816 * @data: 16 bit word to be written to the EEPROM
818 * Writes 16 bit value to EEPROM. If ixgbe_eeprom_update_checksum is not
819 * called after this function, the EEPROM will most likely contain an
822 s32 ixgbe_write_eeprom(struct ixgbe_hw *hw, u16 offset, u16 data)
824 return ixgbe_call_func(hw, hw->eeprom.ops.write, (hw, offset, data),
825 IXGBE_NOT_IMPLEMENTED);
829 * ixgbe_write_eeprom_buffer - Write word(s) to EEPROM
830 * @hw: pointer to hardware structure
831 * @offset: offset within the EEPROM to be written to
832 * @data: 16 bit word(s) to be written to the EEPROM
833 * @words: number of words
835 * Writes 16 bit word(s) to EEPROM. If ixgbe_eeprom_update_checksum is not
836 * called after this function, the EEPROM will most likely contain an
839 s32 ixgbe_write_eeprom_buffer(struct ixgbe_hw *hw, u16 offset, u16 words,
842 return ixgbe_call_func(hw, hw->eeprom.ops.write_buffer,
843 (hw, offset, words, data),
844 IXGBE_NOT_IMPLEMENTED);
848 * ixgbe_read_eeprom - Read word from EEPROM
849 * @hw: pointer to hardware structure
850 * @offset: offset within the EEPROM to be read
851 * @data: read 16 bit value from EEPROM
853 * Reads 16 bit value from EEPROM
855 s32 ixgbe_read_eeprom(struct ixgbe_hw *hw, u16 offset, u16 *data)
857 return ixgbe_call_func(hw, hw->eeprom.ops.read, (hw, offset, data),
858 IXGBE_NOT_IMPLEMENTED);
862 * ixgbe_read_eeprom_buffer - Read word(s) from EEPROM
863 * @hw: pointer to hardware structure
864 * @offset: offset within the EEPROM to be read
865 * @data: read 16 bit word(s) from EEPROM
866 * @words: number of words
868 * Reads 16 bit word(s) from EEPROM
870 s32 ixgbe_read_eeprom_buffer(struct ixgbe_hw *hw, u16 offset,
871 u16 words, u16 *data)
873 return ixgbe_call_func(hw, hw->eeprom.ops.read_buffer,
874 (hw, offset, words, data),
875 IXGBE_NOT_IMPLEMENTED);
879 * ixgbe_validate_eeprom_checksum - Validate EEPROM checksum
880 * @hw: pointer to hardware structure
881 * @checksum_val: calculated checksum
883 * Performs checksum calculation and validates the EEPROM checksum
885 s32 ixgbe_validate_eeprom_checksum(struct ixgbe_hw *hw, u16 *checksum_val)
887 return ixgbe_call_func(hw, hw->eeprom.ops.validate_checksum,
888 (hw, checksum_val), IXGBE_NOT_IMPLEMENTED);
892 * ixgbe_eeprom_update_checksum - Updates the EEPROM checksum
893 * @hw: pointer to hardware structure
895 s32 ixgbe_update_eeprom_checksum(struct ixgbe_hw *hw)
897 return ixgbe_call_func(hw, hw->eeprom.ops.update_checksum, (hw),
898 IXGBE_NOT_IMPLEMENTED);
902 * ixgbe_insert_mac_addr - Find a RAR for this mac address
903 * @hw: pointer to hardware structure
904 * @addr: Address to put into receive address register
905 * @vmdq: VMDq pool to assign
907 * Puts an ethernet address into a receive address register, or
908 * finds the rar that it is aleady in; adds to the pool list
910 s32 ixgbe_insert_mac_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq)
912 return ixgbe_call_func(hw, hw->mac.ops.insert_mac_addr,
914 IXGBE_NOT_IMPLEMENTED);
918 * ixgbe_set_rar - Set Rx address register
919 * @hw: pointer to hardware structure
920 * @index: Receive address register to write
921 * @addr: Address to put into receive address register
923 * @enable_addr: set flag that address is active
925 * Puts an ethernet address into a receive address register.
927 s32 ixgbe_set_rar(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
930 return ixgbe_call_func(hw, hw->mac.ops.set_rar, (hw, index, addr, vmdq,
931 enable_addr), IXGBE_NOT_IMPLEMENTED);
935 * ixgbe_clear_rar - Clear Rx address register
936 * @hw: pointer to hardware structure
937 * @index: Receive address register to write
939 * Puts an ethernet address into a receive address register.
941 s32 ixgbe_clear_rar(struct ixgbe_hw *hw, u32 index)
943 return ixgbe_call_func(hw, hw->mac.ops.clear_rar, (hw, index),
944 IXGBE_NOT_IMPLEMENTED);
948 * ixgbe_set_vmdq - Associate a VMDq index with a receive address
949 * @hw: pointer to hardware structure
950 * @rar: receive address register index to associate with VMDq index
951 * @vmdq: VMDq set or pool index
953 s32 ixgbe_set_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
955 return ixgbe_call_func(hw, hw->mac.ops.set_vmdq, (hw, rar, vmdq),
956 IXGBE_NOT_IMPLEMENTED);
961 * ixgbe_set_vmdq_san_mac - Associate VMDq index 127 with a receive address
962 * @hw: pointer to hardware structure
963 * @vmdq: VMDq default pool index
965 s32 ixgbe_set_vmdq_san_mac(struct ixgbe_hw *hw, u32 vmdq)
967 return ixgbe_call_func(hw, hw->mac.ops.set_vmdq_san_mac,
968 (hw, vmdq), IXGBE_NOT_IMPLEMENTED);
972 * ixgbe_clear_vmdq - Disassociate a VMDq index from a receive address
973 * @hw: pointer to hardware structure
974 * @rar: receive address register index to disassociate with VMDq index
975 * @vmdq: VMDq set or pool index
977 s32 ixgbe_clear_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
979 return ixgbe_call_func(hw, hw->mac.ops.clear_vmdq, (hw, rar, vmdq),
980 IXGBE_NOT_IMPLEMENTED);
984 * ixgbe_init_rx_addrs - Initializes receive address filters.
985 * @hw: pointer to hardware structure
987 * Places the MAC address in receive address register 0 and clears the rest
988 * of the receive address registers. Clears the multicast table. Assumes
989 * the receiver is in reset when the routine is called.
991 s32 ixgbe_init_rx_addrs(struct ixgbe_hw *hw)
993 return ixgbe_call_func(hw, hw->mac.ops.init_rx_addrs, (hw),
994 IXGBE_NOT_IMPLEMENTED);
998 * ixgbe_get_num_rx_addrs - Returns the number of RAR entries.
999 * @hw: pointer to hardware structure
1001 u32 ixgbe_get_num_rx_addrs(struct ixgbe_hw *hw)
1003 return hw->mac.num_rar_entries;
1007 * ixgbe_update_uc_addr_list - Updates the MAC's list of secondary addresses
1008 * @hw: pointer to hardware structure
1009 * @addr_list: the list of new multicast addresses
1010 * @addr_count: number of addresses
1011 * @func: iterator function to walk the multicast address list
1013 * The given list replaces any existing list. Clears the secondary addrs from
1014 * receive address registers. Uses unused receive address registers for the
1015 * first secondary addresses, and falls back to promiscuous mode as needed.
1017 s32 ixgbe_update_uc_addr_list(struct ixgbe_hw *hw, u8 *addr_list,
1018 u32 addr_count, ixgbe_mc_addr_itr func)
1020 return ixgbe_call_func(hw, hw->mac.ops.update_uc_addr_list, (hw,
1021 addr_list, addr_count, func),
1022 IXGBE_NOT_IMPLEMENTED);
1026 * ixgbe_update_mc_addr_list - Updates the MAC's list of multicast addresses
1027 * @hw: pointer to hardware structure
1028 * @mc_addr_list: the list of new multicast addresses
1029 * @mc_addr_count: number of addresses
1030 * @func: iterator function to walk the multicast address list
1032 * The given list replaces any existing list. Clears the MC addrs from receive
1033 * address registers and the multicast table. Uses unused receive address
1034 * registers for the first multicast addresses, and hashes the rest into the
1037 s32 ixgbe_update_mc_addr_list(struct ixgbe_hw *hw, u8 *mc_addr_list,
1038 u32 mc_addr_count, ixgbe_mc_addr_itr func,
1041 return ixgbe_call_func(hw, hw->mac.ops.update_mc_addr_list, (hw,
1042 mc_addr_list, mc_addr_count, func, clear),
1043 IXGBE_NOT_IMPLEMENTED);
1047 * ixgbe_enable_mc - Enable multicast address in RAR
1048 * @hw: pointer to hardware structure
1050 * Enables multicast address in RAR and the use of the multicast hash table.
1052 s32 ixgbe_enable_mc(struct ixgbe_hw *hw)
1054 return ixgbe_call_func(hw, hw->mac.ops.enable_mc, (hw),
1055 IXGBE_NOT_IMPLEMENTED);
1059 * ixgbe_disable_mc - Disable multicast address in RAR
1060 * @hw: pointer to hardware structure
1062 * Disables multicast address in RAR and the use of the multicast hash table.
1064 s32 ixgbe_disable_mc(struct ixgbe_hw *hw)
1066 return ixgbe_call_func(hw, hw->mac.ops.disable_mc, (hw),
1067 IXGBE_NOT_IMPLEMENTED);
1071 * ixgbe_clear_vfta - Clear VLAN filter table
1072 * @hw: pointer to hardware structure
1074 * Clears the VLAN filer table, and the VMDq index associated with the filter
1076 s32 ixgbe_clear_vfta(struct ixgbe_hw *hw)
1078 return ixgbe_call_func(hw, hw->mac.ops.clear_vfta, (hw),
1079 IXGBE_NOT_IMPLEMENTED);
1083 * ixgbe_set_vfta - Set VLAN filter table
1084 * @hw: pointer to hardware structure
1085 * @vlan: VLAN id to write to VLAN filter
1086 * @vind: VMDq output index that maps queue to VLAN id in VLVFB
1087 * @vlan_on: boolean flag to turn on/off VLAN
1088 * @vlvf_bypass: boolean flag indicating updating the default pool is okay
1090 * Turn on/off specified VLAN in the VLAN filter table.
1092 s32 ixgbe_set_vfta(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on,
1095 return ixgbe_call_func(hw, hw->mac.ops.set_vfta, (hw, vlan, vind,
1096 vlan_on, vlvf_bypass), IXGBE_NOT_IMPLEMENTED);
1100 * ixgbe_set_vlvf - Set VLAN Pool Filter
1101 * @hw: pointer to hardware structure
1102 * @vlan: VLAN id to write to VLAN filter
1103 * @vind: VMDq output index that maps queue to VLAN id in VLVFB
1104 * @vlan_on: boolean flag to turn on/off VLAN in VLVF
1105 * @vfta_delta: pointer to the difference between the current value of VFTA
1106 * and the desired value
1107 * @vfta: the desired value of the VFTA
1108 * @vlvf_bypass: boolean flag indicating updating the default pool is okay
1110 * Turn on/off specified bit in VLVF table.
1112 s32 ixgbe_set_vlvf(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on,
1113 u32 *vfta_delta, u32 vfta, bool vlvf_bypass)
1115 return ixgbe_call_func(hw, hw->mac.ops.set_vlvf, (hw, vlan, vind,
1116 vlan_on, vfta_delta, vfta, vlvf_bypass),
1117 IXGBE_NOT_IMPLEMENTED);
1121 * ixgbe_fc_enable - Enable flow control
1122 * @hw: pointer to hardware structure
1124 * Configures the flow control settings based on SW configuration.
1126 s32 ixgbe_fc_enable(struct ixgbe_hw *hw)
1128 return ixgbe_call_func(hw, hw->mac.ops.fc_enable, (hw),
1129 IXGBE_NOT_IMPLEMENTED);
1133 * ixgbe_setup_fc - Set up flow control
1134 * @hw: pointer to hardware structure
1136 * Called at init time to set up flow control.
1138 s32 ixgbe_setup_fc(struct ixgbe_hw *hw)
1140 return ixgbe_call_func(hw, hw->mac.ops.setup_fc, (hw),
1141 IXGBE_NOT_IMPLEMENTED);
1145 * ixgbe_set_fw_drv_ver - Try to send the driver version number FW
1146 * @hw: pointer to hardware structure
1147 * @maj: driver major number to be sent to firmware
1148 * @min: driver minor number to be sent to firmware
1149 * @build: driver build number to be sent to firmware
1150 * @ver: driver version number to be sent to firmware
1151 * @len: length of driver_ver string
1152 * @driver_ver: driver string
1154 s32 ixgbe_set_fw_drv_ver(struct ixgbe_hw *hw, u8 maj, u8 min, u8 build,
1155 u8 ver, u16 len, char *driver_ver)
1157 return ixgbe_call_func(hw, hw->mac.ops.set_fw_drv_ver, (hw, maj, min,
1158 build, ver, len, driver_ver),
1159 IXGBE_NOT_IMPLEMENTED);
1164 * ixgbe_get_thermal_sensor_data - Gathers thermal sensor data
1165 * @hw: pointer to hardware structure
1167 * Updates the temperatures in mac.thermal_sensor_data
1169 s32 ixgbe_get_thermal_sensor_data(struct ixgbe_hw *hw)
1171 return ixgbe_call_func(hw, hw->mac.ops.get_thermal_sensor_data, (hw),
1172 IXGBE_NOT_IMPLEMENTED);
1176 * ixgbe_init_thermal_sensor_thresh - Inits thermal sensor thresholds
1177 * @hw: pointer to hardware structure
1179 * Inits the thermal sensor thresholds according to the NVM map
1181 s32 ixgbe_init_thermal_sensor_thresh(struct ixgbe_hw *hw)
1183 return ixgbe_call_func(hw, hw->mac.ops.init_thermal_sensor_thresh, (hw),
1184 IXGBE_NOT_IMPLEMENTED);
1188 * ixgbe_dmac_config - Configure DMA Coalescing registers.
1189 * @hw: pointer to hardware structure
1191 * Configure DMA coalescing. If enabling dmac, dmac is activated.
1192 * When disabling dmac, dmac enable dmac bit is cleared.
1194 s32 ixgbe_dmac_config(struct ixgbe_hw *hw)
1196 return ixgbe_call_func(hw, hw->mac.ops.dmac_config, (hw),
1197 IXGBE_NOT_IMPLEMENTED);
1201 * ixgbe_dmac_update_tcs - Configure DMA Coalescing registers.
1202 * @hw: pointer to hardware structure
1204 * Disables dmac, updates per TC settings, and then enable dmac.
1206 s32 ixgbe_dmac_update_tcs(struct ixgbe_hw *hw)
1208 return ixgbe_call_func(hw, hw->mac.ops.dmac_update_tcs, (hw),
1209 IXGBE_NOT_IMPLEMENTED);
1213 * ixgbe_dmac_config_tcs - Configure DMA Coalescing registers.
1214 * @hw: pointer to hardware structure
1216 * Configure DMA coalescing threshold per TC and set high priority bit for
1217 * FCOE TC. The dmac enable bit must be cleared before configuring.
1219 s32 ixgbe_dmac_config_tcs(struct ixgbe_hw *hw)
1221 return ixgbe_call_func(hw, hw->mac.ops.dmac_config_tcs, (hw),
1222 IXGBE_NOT_IMPLEMENTED);
1226 * ixgbe_setup_eee - Enable/disable EEE support
1227 * @hw: pointer to the HW structure
1228 * @enable_eee: boolean flag to enable EEE
1230 * Enable/disable EEE based on enable_ee flag.
1231 * Auto-negotiation must be started after BASE-T EEE bits in PHY register 7.3C
1235 s32 ixgbe_setup_eee(struct ixgbe_hw *hw, bool enable_eee)
1237 return ixgbe_call_func(hw, hw->mac.ops.setup_eee, (hw, enable_eee),
1238 IXGBE_NOT_IMPLEMENTED);
1242 * ixgbe_set_source_address_pruning - Enable/Disable source address pruning
1243 * @hw: pointer to hardware structure
1244 * @enbale: enable or disable source address pruning
1245 * @pool: Rx pool - Rx pool to toggle source address pruning
1247 void ixgbe_set_source_address_pruning(struct ixgbe_hw *hw, bool enable,
1250 if (hw->mac.ops.set_source_address_pruning)
1251 hw->mac.ops.set_source_address_pruning(hw, enable, pool);
1255 * ixgbe_set_ethertype_anti_spoofing - Enable/Disable Ethertype anti-spoofing
1256 * @hw: pointer to hardware structure
1257 * @enable: enable or disable switch for Ethertype anti-spoofing
1258 * @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
1261 void ixgbe_set_ethertype_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
1263 if (hw->mac.ops.set_ethertype_anti_spoofing)
1264 hw->mac.ops.set_ethertype_anti_spoofing(hw, enable, vf);
1268 * ixgbe_read_iosf_sb_reg - Read 32 bit PHY register
1269 * @hw: pointer to hardware structure
1270 * @reg_addr: 32 bit address of PHY register to read
1271 * @device_type: type of device you want to communicate with
1272 * @phy_data: Pointer to read data from PHY register
1274 * Reads a value from a specified PHY register
1276 s32 ixgbe_read_iosf_sb_reg(struct ixgbe_hw *hw, u32 reg_addr,
1277 u32 device_type, u32 *phy_data)
1279 return ixgbe_call_func(hw, hw->mac.ops.read_iosf_sb_reg, (hw, reg_addr,
1280 device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
1284 * ixgbe_write_iosf_sb_reg - Write 32 bit register through IOSF Sideband
1285 * @hw: pointer to hardware structure
1286 * @reg_addr: 32 bit PHY register to write
1287 * @device_type: type of device you want to communicate with
1288 * @phy_data: Data to write to the PHY register
1290 * Writes a value to specified PHY register
1292 s32 ixgbe_write_iosf_sb_reg(struct ixgbe_hw *hw, u32 reg_addr,
1293 u32 device_type, u32 phy_data)
1295 return ixgbe_call_func(hw, hw->mac.ops.write_iosf_sb_reg, (hw, reg_addr,
1296 device_type, phy_data), IXGBE_NOT_IMPLEMENTED);
1300 * ixgbe_disable_mdd - Disable malicious driver detection
1301 * @hw: pointer to hardware structure
1304 void ixgbe_disable_mdd(struct ixgbe_hw *hw)
1306 if (hw->mac.ops.disable_mdd)
1307 hw->mac.ops.disable_mdd(hw);
1311 * ixgbe_enable_mdd - Enable malicious driver detection
1312 * @hw: pointer to hardware structure
1315 void ixgbe_enable_mdd(struct ixgbe_hw *hw)
1317 if (hw->mac.ops.enable_mdd)
1318 hw->mac.ops.enable_mdd(hw);
1322 * ixgbe_mdd_event - Handle malicious driver detection event
1323 * @hw: pointer to hardware structure
1324 * @vf_bitmap: vf bitmap of malicious vfs
1327 void ixgbe_mdd_event(struct ixgbe_hw *hw, u32 *vf_bitmap)
1329 if (hw->mac.ops.mdd_event)
1330 hw->mac.ops.mdd_event(hw, vf_bitmap);
1334 * ixgbe_restore_mdd_vf - Restore VF that was disabled during malicious driver
1336 * @hw: pointer to hardware structure
1340 void ixgbe_restore_mdd_vf(struct ixgbe_hw *hw, u32 vf)
1342 if (hw->mac.ops.restore_mdd_vf)
1343 hw->mac.ops.restore_mdd_vf(hw, vf);
1347 * ixgbe_enter_lplu - Transition to low power states
1348 * @hw: pointer to hardware structure
1350 * Configures Low Power Link Up on transition to low power states
1351 * (from D0 to non-D0).
1353 s32 ixgbe_enter_lplu(struct ixgbe_hw *hw)
1355 return ixgbe_call_func(hw, hw->phy.ops.enter_lplu, (hw),
1356 IXGBE_NOT_IMPLEMENTED);
1360 * ixgbe_handle_lasi - Handle external Base T PHY interrupt
1361 * @hw: pointer to hardware structure
1363 * Handle external Base T PHY interrupt. If high temperature
1364 * failure alarm then return error, else if link status change
1365 * then setup internal/external PHY link
1367 * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature
1368 * failure alarm, else return PHY access status.
1370 s32 ixgbe_handle_lasi(struct ixgbe_hw *hw)
1372 return ixgbe_call_func(hw, hw->phy.ops.handle_lasi, (hw),
1373 IXGBE_NOT_IMPLEMENTED);
1377 * ixgbe_read_analog_reg8 - Reads 8 bit analog register
1378 * @hw: pointer to hardware structure
1379 * @reg: analog register to read
1382 * Performs write operation to analog register specified.
1384 s32 ixgbe_read_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 *val)
1386 return ixgbe_call_func(hw, hw->mac.ops.read_analog_reg8, (hw, reg,
1387 val), IXGBE_NOT_IMPLEMENTED);
1391 * ixgbe_write_analog_reg8 - Writes 8 bit analog register
1392 * @hw: pointer to hardware structure
1393 * @reg: analog register to write
1394 * @val: value to write
1396 * Performs write operation to Atlas analog register specified.
1398 s32 ixgbe_write_analog_reg8(struct ixgbe_hw *hw, u32 reg, u8 val)
1400 return ixgbe_call_func(hw, hw->mac.ops.write_analog_reg8, (hw, reg,
1401 val), IXGBE_NOT_IMPLEMENTED);
1405 * ixgbe_init_uta_tables - Initializes Unicast Table Arrays.
1406 * @hw: pointer to hardware structure
1408 * Initializes the Unicast Table Arrays to zero on device load. This
1409 * is part of the Rx init addr execution path.
1411 s32 ixgbe_init_uta_tables(struct ixgbe_hw *hw)
1413 return ixgbe_call_func(hw, hw->mac.ops.init_uta_tables, (hw),
1414 IXGBE_NOT_IMPLEMENTED);
1418 * ixgbe_read_i2c_byte - Reads 8 bit word over I2C at specified device address
1419 * @hw: pointer to hardware structure
1420 * @byte_offset: byte offset to read
1421 * @dev_addr: I2C bus address to read from
1424 * Performs byte read operation to SFP module's EEPROM over I2C interface.
1426 s32 ixgbe_read_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
1429 return ixgbe_call_func(hw, hw->phy.ops.read_i2c_byte, (hw, byte_offset,
1430 dev_addr, data), IXGBE_NOT_IMPLEMENTED);
1434 * ixgbe_read_i2c_byte_unlocked - Reads 8 bit word via I2C from device address
1435 * @hw: pointer to hardware structure
1436 * @byte_offset: byte offset to read
1437 * @dev_addr: I2C bus address to read from
1440 * Performs byte read operation to SFP module's EEPROM over I2C interface.
1442 s32 ixgbe_read_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
1443 u8 dev_addr, u8 *data)
1445 return ixgbe_call_func(hw, hw->phy.ops.read_i2c_byte_unlocked,
1446 (hw, byte_offset, dev_addr, data),
1447 IXGBE_NOT_IMPLEMENTED);
1451 * ixgbe_read_link - Perform read operation on link device
1452 * @hw: pointer to the hardware structure
1453 * @addr: bus address to read from
1454 * @reg: device register to read from
1455 * @val: pointer to location to receive read value
1457 * Returns an error code on error.
1459 s32 ixgbe_read_link(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 *val)
1461 return ixgbe_call_func(hw, hw->link.ops.read_link, (hw, addr,
1462 reg, val), IXGBE_NOT_IMPLEMENTED);
1466 * ixgbe_read_link_unlocked - Perform read operation on link device
1467 * @hw: pointer to the hardware structure
1468 * @addr: bus address to read from
1469 * @reg: device register to read from
1470 * @val: pointer to location to receive read value
1472 * Returns an error code on error.
1474 s32 ixgbe_read_link_unlocked(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 *val)
1476 return ixgbe_call_func(hw, hw->link.ops.read_link_unlocked,
1477 (hw, addr, reg, val), IXGBE_NOT_IMPLEMENTED);
1481 * ixgbe_write_i2c_byte - Writes 8 bit word over I2C
1482 * @hw: pointer to hardware structure
1483 * @byte_offset: byte offset to write
1484 * @dev_addr: I2C bus address to write to
1485 * @data: value to write
1487 * Performs byte write operation to SFP module's EEPROM over I2C interface
1488 * at a specified device address.
1490 s32 ixgbe_write_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
1493 return ixgbe_call_func(hw, hw->phy.ops.write_i2c_byte, (hw, byte_offset,
1494 dev_addr, data), IXGBE_NOT_IMPLEMENTED);
1498 * ixgbe_write_i2c_byte_unlocked - Writes 8 bit word over I2C
1499 * @hw: pointer to hardware structure
1500 * @byte_offset: byte offset to write
1501 * @dev_addr: I2C bus address to write to
1502 * @data: value to write
1504 * Performs byte write operation to SFP module's EEPROM over I2C interface
1505 * at a specified device address.
1507 s32 ixgbe_write_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
1508 u8 dev_addr, u8 data)
1510 return ixgbe_call_func(hw, hw->phy.ops.write_i2c_byte_unlocked,
1511 (hw, byte_offset, dev_addr, data),
1512 IXGBE_NOT_IMPLEMENTED);
1516 * ixgbe_write_link - Perform write operation on link device
1517 * @hw: pointer to the hardware structure
1518 * @addr: bus address to write to
1519 * @reg: device register to write to
1520 * @val: value to write
1522 * Returns an error code on error.
1524 s32 ixgbe_write_link(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 val)
1526 return ixgbe_call_func(hw, hw->link.ops.write_link,
1527 (hw, addr, reg, val), IXGBE_NOT_IMPLEMENTED);
1531 * ixgbe_write_link_unlocked - Perform write operation on link device
1532 * @hw: pointer to the hardware structure
1533 * @addr: bus address to write to
1534 * @reg: device register to write to
1535 * @val: value to write
1537 * Returns an error code on error.
1539 s32 ixgbe_write_link_unlocked(struct ixgbe_hw *hw, u8 addr, u16 reg, u16 val)
1541 return ixgbe_call_func(hw, hw->link.ops.write_link_unlocked,
1542 (hw, addr, reg, val), IXGBE_NOT_IMPLEMENTED);
1546 * ixgbe_write_i2c_eeprom - Writes 8 bit EEPROM word over I2C interface
1547 * @hw: pointer to hardware structure
1548 * @byte_offset: EEPROM byte offset to write
1549 * @eeprom_data: value to write
1551 * Performs byte write operation to SFP module's EEPROM over I2C interface.
1553 s32 ixgbe_write_i2c_eeprom(struct ixgbe_hw *hw,
1554 u8 byte_offset, u8 eeprom_data)
1556 return ixgbe_call_func(hw, hw->phy.ops.write_i2c_eeprom,
1557 (hw, byte_offset, eeprom_data),
1558 IXGBE_NOT_IMPLEMENTED);
1562 * ixgbe_read_i2c_eeprom - Reads 8 bit EEPROM word over I2C interface
1563 * @hw: pointer to hardware structure
1564 * @byte_offset: EEPROM byte offset to read
1565 * @eeprom_data: value read
1567 * Performs byte read operation to SFP module's EEPROM over I2C interface.
1569 s32 ixgbe_read_i2c_eeprom(struct ixgbe_hw *hw, u8 byte_offset, u8 *eeprom_data)
1571 return ixgbe_call_func(hw, hw->phy.ops.read_i2c_eeprom,
1572 (hw, byte_offset, eeprom_data),
1573 IXGBE_NOT_IMPLEMENTED);
1577 * ixgbe_get_supported_physical_layer - Returns physical layer type
1578 * @hw: pointer to hardware structure
1580 * Determines physical layer capabilities of the current configuration.
1582 u64 ixgbe_get_supported_physical_layer(struct ixgbe_hw *hw)
1584 return ixgbe_call_func(hw, hw->mac.ops.get_supported_physical_layer,
1585 (hw), IXGBE_PHYSICAL_LAYER_UNKNOWN);
1589 * ixgbe_enable_rx_dma - Enables Rx DMA unit, dependent on device specifics
1590 * @hw: pointer to hardware structure
1591 * @regval: bitfield to write to the Rx DMA register
1593 * Enables the Rx DMA unit of the device.
1595 s32 ixgbe_enable_rx_dma(struct ixgbe_hw *hw, u32 regval)
1597 return ixgbe_call_func(hw, hw->mac.ops.enable_rx_dma,
1598 (hw, regval), IXGBE_NOT_IMPLEMENTED);
1602 * ixgbe_disable_sec_rx_path - Stops the receive data path
1603 * @hw: pointer to hardware structure
1605 * Stops the receive data path.
1607 s32 ixgbe_disable_sec_rx_path(struct ixgbe_hw *hw)
1609 return ixgbe_call_func(hw, hw->mac.ops.disable_sec_rx_path,
1610 (hw), IXGBE_NOT_IMPLEMENTED);
1614 * ixgbe_enable_sec_rx_path - Enables the receive data path
1615 * @hw: pointer to hardware structure
1617 * Enables the receive data path.
1619 s32 ixgbe_enable_sec_rx_path(struct ixgbe_hw *hw)
1621 return ixgbe_call_func(hw, hw->mac.ops.enable_sec_rx_path,
1622 (hw), IXGBE_NOT_IMPLEMENTED);
1626 * ixgbe_acquire_swfw_semaphore - Acquire SWFW semaphore
1627 * @hw: pointer to hardware structure
1628 * @mask: Mask to specify which semaphore to acquire
1630 * Acquires the SWFW semaphore through SW_FW_SYNC register for the specified
1631 * function (CSR, PHY0, PHY1, EEPROM, Flash)
1633 s32 ixgbe_acquire_swfw_semaphore(struct ixgbe_hw *hw, u32 mask)
1635 return ixgbe_call_func(hw, hw->mac.ops.acquire_swfw_sync,
1636 (hw, mask), IXGBE_NOT_IMPLEMENTED);
1640 * ixgbe_release_swfw_semaphore - Release SWFW semaphore
1641 * @hw: pointer to hardware structure
1642 * @mask: Mask to specify which semaphore to release
1644 * Releases the SWFW semaphore through SW_FW_SYNC register for the specified
1645 * function (CSR, PHY0, PHY1, EEPROM, Flash)
1647 void ixgbe_release_swfw_semaphore(struct ixgbe_hw *hw, u32 mask)
1649 if (hw->mac.ops.release_swfw_sync)
1650 hw->mac.ops.release_swfw_sync(hw, mask);
1654 * ixgbe_init_swfw_semaphore - Clean up SWFW semaphore
1655 * @hw: pointer to hardware structure
1657 * Attempts to acquire the SWFW semaphore through SW_FW_SYNC register.
1658 * Regardless of whether is succeeds or not it then release the semaphore.
1659 * This is function is called to recover from catastrophic failures that
1660 * may have left the semaphore locked.
1662 void ixgbe_init_swfw_semaphore(struct ixgbe_hw *hw)
1664 if (hw->mac.ops.init_swfw_sync)
1665 hw->mac.ops.init_swfw_sync(hw);
1669 void ixgbe_disable_rx(struct ixgbe_hw *hw)
1671 if (hw->mac.ops.disable_rx)
1672 hw->mac.ops.disable_rx(hw);
1675 void ixgbe_enable_rx(struct ixgbe_hw *hw)
1677 if (hw->mac.ops.enable_rx)
1678 hw->mac.ops.enable_rx(hw);
1682 * ixgbe_set_rate_select_speed - Set module link speed
1683 * @hw: pointer to hardware structure
1684 * @speed: link speed to set
1686 * Set module link speed via the rate select.
1688 void ixgbe_set_rate_select_speed(struct ixgbe_hw *hw, ixgbe_link_speed speed)
1690 if (hw->mac.ops.set_rate_select_speed)
1691 hw->mac.ops.set_rate_select_speed(hw, speed);