1 /*******************************************************************************
3 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2007 Intel Corporation.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *******************************************************************************/
29 #include <linux/netdevice.h>
30 #include <linux/ethtool.h>
31 #include <linux/delay.h>
32 #include <linux/pci.h>
37 e1000_mng_mode_none
= 0,
41 e1000_mng_mode_host_if_only
44 #define E1000_FACTPS_MNGCG 0x20000000
46 #define E1000_IAMT_SIGNATURE 0x544D4149 /* Intel(R) Active Management
47 * Technology signature */
50 * e1000e_get_bus_info_pcie - Get PCIe bus information
51 * @hw: pointer to the HW structure
53 * Determines and stores the system bus information for a particular
54 * network interface. The following bus information is determined and stored:
55 * bus speed, bus width, type (PCIe), and PCIe function.
57 s32
e1000e_get_bus_info_pcie(struct e1000_hw
*hw
)
59 struct e1000_bus_info
*bus
= &hw
->bus
;
60 struct e1000_adapter
*adapter
= hw
->adapter
;
62 u16 pcie_link_status
, pci_header_type
, cap_offset
;
64 cap_offset
= pci_find_capability(adapter
->pdev
, PCI_CAP_ID_EXP
);
66 bus
->width
= e1000_bus_width_unknown
;
68 pci_read_config_word(adapter
->pdev
,
69 cap_offset
+ PCIE_LINK_STATUS
,
71 bus
->width
= (enum e1000_bus_width
)((pcie_link_status
&
72 PCIE_LINK_WIDTH_MASK
) >>
73 PCIE_LINK_WIDTH_SHIFT
);
76 pci_read_config_word(adapter
->pdev
, PCI_HEADER_TYPE_REGISTER
,
78 if (pci_header_type
& PCI_HEADER_TYPE_MULTIFUNC
) {
79 status
= er32(STATUS
);
80 bus
->func
= (status
& E1000_STATUS_FUNC_MASK
)
81 >> E1000_STATUS_FUNC_SHIFT
;
90 * e1000e_write_vfta - Write value to VLAN filter table
91 * @hw: pointer to the HW structure
92 * @offset: register offset in VLAN filter table
93 * @value: register value written to VLAN filter table
95 * Writes value at the given offset in the register array which stores
96 * the VLAN filter table.
98 void e1000e_write_vfta(struct e1000_hw
*hw
, u32 offset
, u32 value
)
100 E1000_WRITE_REG_ARRAY(hw
, E1000_VFTA
, offset
, value
);
105 * e1000e_init_rx_addrs - Initialize receive address's
106 * @hw: pointer to the HW structure
107 * @rar_count: receive address registers
109 * Setups the receive address registers by setting the base receive address
110 * register to the devices MAC address and clearing all the other receive
111 * address registers to 0.
113 void e1000e_init_rx_addrs(struct e1000_hw
*hw
, u16 rar_count
)
117 /* Setup the receive address */
118 hw_dbg(hw
, "Programming MAC Address into RAR[0]\n");
120 e1000e_rar_set(hw
, hw
->mac
.addr
, 0);
122 /* Zero out the other (rar_entry_count - 1) receive addresses */
123 hw_dbg(hw
, "Clearing RAR[1-%u]\n", rar_count
-1);
124 for (i
= 1; i
< rar_count
; i
++) {
125 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, (i
<< 1), 0);
127 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, ((i
<< 1) + 1), 0);
133 * e1000e_rar_set - Set receive address register
134 * @hw: pointer to the HW structure
135 * @addr: pointer to the receive address
136 * @index: receive address array register
138 * Sets the receive address array register at index to the address passed
141 void e1000e_rar_set(struct e1000_hw
*hw
, u8
*addr
, u32 index
)
143 u32 rar_low
, rar_high
;
145 /* HW expects these in little endian so we reverse the byte order
146 * from network order (big endian) to little endian
148 rar_low
= ((u32
) addr
[0] |
149 ((u32
) addr
[1] << 8) |
150 ((u32
) addr
[2] << 16) | ((u32
) addr
[3] << 24));
152 rar_high
= ((u32
) addr
[4] | ((u32
) addr
[5] << 8));
154 rar_high
|= E1000_RAH_AV
;
156 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, (index
<< 1), rar_low
);
157 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, ((index
<< 1) + 1), rar_high
);
161 * e1000_mta_set - Set multicast filter table address
162 * @hw: pointer to the HW structure
163 * @hash_value: determines the MTA register and bit to set
165 * The multicast table address is a register array of 32-bit registers.
166 * The hash_value is used to determine what register the bit is in, the
167 * current value is read, the new bit is OR'd in and the new value is
168 * written back into the register.
170 static void e1000_mta_set(struct e1000_hw
*hw
, u32 hash_value
)
172 u32 hash_bit
, hash_reg
, mta
;
174 /* The MTA is a register array of 32-bit registers. It is
175 * treated like an array of (32*mta_reg_count) bits. We want to
176 * set bit BitArray[hash_value]. So we figure out what register
177 * the bit is in, read it, OR in the new bit, then write
178 * back the new value. The (hw->mac.mta_reg_count - 1) serves as a
179 * mask to bits 31:5 of the hash value which gives us the
180 * register we're modifying. The hash bit within that register
181 * is determined by the lower 5 bits of the hash value.
183 hash_reg
= (hash_value
>> 5) & (hw
->mac
.mta_reg_count
- 1);
184 hash_bit
= hash_value
& 0x1F;
186 mta
= E1000_READ_REG_ARRAY(hw
, E1000_MTA
, hash_reg
);
188 mta
|= (1 << hash_bit
);
190 E1000_WRITE_REG_ARRAY(hw
, E1000_MTA
, hash_reg
, mta
);
195 * e1000_hash_mc_addr - Generate a multicast hash value
196 * @hw: pointer to the HW structure
197 * @mc_addr: pointer to a multicast address
199 * Generates a multicast address hash value which is used to determine
200 * the multicast filter table array address and new table value. See
201 * e1000_mta_set_generic()
203 static u32
e1000_hash_mc_addr(struct e1000_hw
*hw
, u8
*mc_addr
)
205 u32 hash_value
, hash_mask
;
208 /* Register count multiplied by bits per register */
209 hash_mask
= (hw
->mac
.mta_reg_count
* 32) - 1;
211 /* For a mc_filter_type of 0, bit_shift is the number of left-shifts
212 * where 0xFF would still fall within the hash mask. */
213 while (hash_mask
>> bit_shift
!= 0xFF)
216 /* The portion of the address that is used for the hash table
217 * is determined by the mc_filter_type setting.
218 * The algorithm is such that there is a total of 8 bits of shifting.
219 * The bit_shift for a mc_filter_type of 0 represents the number of
220 * left-shifts where the MSB of mc_addr[5] would still fall within
221 * the hash_mask. Case 0 does this exactly. Since there are a total
222 * of 8 bits of shifting, then mc_addr[4] will shift right the
223 * remaining number of bits. Thus 8 - bit_shift. The rest of the
224 * cases are a variation of this algorithm...essentially raising the
225 * number of bits to shift mc_addr[5] left, while still keeping the
226 * 8-bit shifting total.
228 /* For example, given the following Destination MAC Address and an
229 * mta register count of 128 (thus a 4096-bit vector and 0xFFF mask),
230 * we can see that the bit_shift for case 0 is 4. These are the hash
231 * values resulting from each mc_filter_type...
232 * [0] [1] [2] [3] [4] [5]
236 * case 0: hash_value = ((0x34 >> 4) | (0x56 << 4)) & 0xFFF = 0x563
237 * case 1: hash_value = ((0x34 >> 3) | (0x56 << 5)) & 0xFFF = 0xAC6
238 * case 2: hash_value = ((0x34 >> 2) | (0x56 << 6)) & 0xFFF = 0x163
239 * case 3: hash_value = ((0x34 >> 0) | (0x56 << 8)) & 0xFFF = 0x634
241 switch (hw
->mac
.mc_filter_type
) {
256 hash_value
= hash_mask
& (((mc_addr
[4] >> (8 - bit_shift
)) |
257 (((u16
) mc_addr
[5]) << bit_shift
)));
263 * e1000e_mc_addr_list_update_generic - Update Multicast addresses
264 * @hw: pointer to the HW structure
265 * @mc_addr_list: array of multicast addresses to program
266 * @mc_addr_count: number of multicast addresses to program
267 * @rar_used_count: the first RAR register free to program
268 * @rar_count: total number of supported Receive Address Registers
270 * Updates the Receive Address Registers and Multicast Table Array.
271 * The caller must have a packed mc_addr_list of multicast addresses.
272 * The parameter rar_count will usually be hw->mac.rar_entry_count
273 * unless there are workarounds that change this.
275 void e1000e_mc_addr_list_update_generic(struct e1000_hw
*hw
,
276 u8
*mc_addr_list
, u32 mc_addr_count
,
277 u32 rar_used_count
, u32 rar_count
)
282 /* Load the first set of multicast addresses into the exact
283 * filters (RAR). If there are not enough to fill the RAR
284 * array, clear the filters.
286 for (i
= rar_used_count
; i
< rar_count
; i
++) {
288 e1000e_rar_set(hw
, mc_addr_list
, i
);
290 mc_addr_list
+= ETH_ALEN
;
292 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, i
<< 1, 0);
294 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, (i
<< 1) + 1, 0);
299 /* Clear the old settings from the MTA */
300 hw_dbg(hw
, "Clearing MTA\n");
301 for (i
= 0; i
< hw
->mac
.mta_reg_count
; i
++) {
302 E1000_WRITE_REG_ARRAY(hw
, E1000_MTA
, i
, 0);
306 /* Load any remaining multicast addresses into the hash table. */
307 for (; mc_addr_count
> 0; mc_addr_count
--) {
308 hash_value
= e1000_hash_mc_addr(hw
, mc_addr_list
);
309 hw_dbg(hw
, "Hash value = 0x%03X\n", hash_value
);
310 e1000_mta_set(hw
, hash_value
);
311 mc_addr_list
+= ETH_ALEN
;
316 * e1000e_clear_hw_cntrs_base - Clear base hardware counters
317 * @hw: pointer to the HW structure
319 * Clears the base hardware counters by reading the counter registers.
321 void e1000e_clear_hw_cntrs_base(struct e1000_hw
*hw
)
325 temp
= er32(CRCERRS
);
326 temp
= er32(SYMERRS
);
331 temp
= er32(LATECOL
);
338 temp
= er32(XOFFRXC
);
339 temp
= er32(XOFFTXC
);
365 * e1000e_check_for_copper_link - Check for link (Copper)
366 * @hw: pointer to the HW structure
368 * Checks to see of the link status of the hardware has changed. If a
369 * change in link status has been detected, then we read the PHY registers
370 * to get the current speed/duplex if link exists.
372 s32
e1000e_check_for_copper_link(struct e1000_hw
*hw
)
374 struct e1000_mac_info
*mac
= &hw
->mac
;
378 /* We only want to go out to the PHY registers to see if Auto-Neg
379 * has completed and/or if our link status has changed. The
380 * get_link_status flag is set upon receiving a Link Status
381 * Change or Rx Sequence Error interrupt.
383 if (!mac
->get_link_status
)
386 /* First we want to see if the MII Status Register reports
387 * link. If so, then we want to get the current speed/duplex
390 ret_val
= e1000e_phy_has_link_generic(hw
, 1, 0, &link
);
395 return ret_val
; /* No link detected */
397 mac
->get_link_status
= 0;
399 /* Check if there was DownShift, must be checked
400 * immediately after link-up */
401 e1000e_check_downshift(hw
);
403 /* If we are forcing speed/duplex, then we simply return since
404 * we have already determined whether we have link or not.
407 ret_val
= -E1000_ERR_CONFIG
;
411 /* Auto-Neg is enabled. Auto Speed Detection takes care
412 * of MAC speed/duplex configuration. So we only need to
413 * configure Collision Distance in the MAC.
415 e1000e_config_collision_dist(hw
);
417 /* Configure Flow Control now that Auto-Neg has completed.
418 * First, we need to restore the desired flow control
419 * settings because we may have had to re-autoneg with a
420 * different link partner.
422 ret_val
= e1000e_config_fc_after_link_up(hw
);
424 hw_dbg(hw
, "Error configuring flow control\n");
431 * e1000e_check_for_fiber_link - Check for link (Fiber)
432 * @hw: pointer to the HW structure
434 * Checks for link up on the hardware. If link is not up and we have
435 * a signal, then we need to force link up.
437 s32
e1000e_check_for_fiber_link(struct e1000_hw
*hw
)
439 struct e1000_mac_info
*mac
= &hw
->mac
;
446 status
= er32(STATUS
);
449 /* If we don't have link (auto-negotiation failed or link partner
450 * cannot auto-negotiate), the cable is plugged in (we have signal),
451 * and our link partner is not trying to auto-negotiate with us (we
452 * are receiving idles or data), we need to force link up. We also
453 * need to give auto-negotiation time to complete, in case the cable
454 * was just plugged in. The autoneg_failed flag does this.
456 /* (ctrl & E1000_CTRL_SWDPIN1) == 1 == have signal */
457 if ((ctrl
& E1000_CTRL_SWDPIN1
) && (!(status
& E1000_STATUS_LU
)) &&
458 (!(rxcw
& E1000_RXCW_C
))) {
459 if (mac
->autoneg_failed
== 0) {
460 mac
->autoneg_failed
= 1;
463 hw_dbg(hw
, "NOT RXing /C/, disable AutoNeg and force link.\n");
465 /* Disable auto-negotiation in the TXCW register */
466 ew32(TXCW
, (mac
->txcw
& ~E1000_TXCW_ANE
));
468 /* Force link-up and also force full-duplex. */
470 ctrl
|= (E1000_CTRL_SLU
| E1000_CTRL_FD
);
473 /* Configure Flow Control after forcing link up. */
474 ret_val
= e1000e_config_fc_after_link_up(hw
);
476 hw_dbg(hw
, "Error configuring flow control\n");
479 } else if ((ctrl
& E1000_CTRL_SLU
) && (rxcw
& E1000_RXCW_C
)) {
480 /* If we are forcing link and we are receiving /C/ ordered
481 * sets, re-enable auto-negotiation in the TXCW register
482 * and disable forced link in the Device Control register
483 * in an attempt to auto-negotiate with our link partner.
485 hw_dbg(hw
, "RXing /C/, enable AutoNeg and stop forcing link.\n");
486 ew32(TXCW
, mac
->txcw
);
487 ew32(CTRL
, (ctrl
& ~E1000_CTRL_SLU
));
489 mac
->serdes_has_link
= 1;
496 * e1000e_check_for_serdes_link - Check for link (Serdes)
497 * @hw: pointer to the HW structure
499 * Checks for link up on the hardware. If link is not up and we have
500 * a signal, then we need to force link up.
502 s32
e1000e_check_for_serdes_link(struct e1000_hw
*hw
)
504 struct e1000_mac_info
*mac
= &hw
->mac
;
511 status
= er32(STATUS
);
514 /* If we don't have link (auto-negotiation failed or link partner
515 * cannot auto-negotiate), and our link partner is not trying to
516 * auto-negotiate with us (we are receiving idles or data),
517 * we need to force link up. We also need to give auto-negotiation
520 /* (ctrl & E1000_CTRL_SWDPIN1) == 1 == have signal */
521 if ((!(status
& E1000_STATUS_LU
)) && (!(rxcw
& E1000_RXCW_C
))) {
522 if (mac
->autoneg_failed
== 0) {
523 mac
->autoneg_failed
= 1;
526 hw_dbg(hw
, "NOT RXing /C/, disable AutoNeg and force link.\n");
528 /* Disable auto-negotiation in the TXCW register */
529 ew32(TXCW
, (mac
->txcw
& ~E1000_TXCW_ANE
));
531 /* Force link-up and also force full-duplex. */
533 ctrl
|= (E1000_CTRL_SLU
| E1000_CTRL_FD
);
536 /* Configure Flow Control after forcing link up. */
537 ret_val
= e1000e_config_fc_after_link_up(hw
);
539 hw_dbg(hw
, "Error configuring flow control\n");
542 } else if ((ctrl
& E1000_CTRL_SLU
) && (rxcw
& E1000_RXCW_C
)) {
543 /* If we are forcing link and we are receiving /C/ ordered
544 * sets, re-enable auto-negotiation in the TXCW register
545 * and disable forced link in the Device Control register
546 * in an attempt to auto-negotiate with our link partner.
548 hw_dbg(hw
, "RXing /C/, enable AutoNeg and stop forcing link.\n");
549 ew32(TXCW
, mac
->txcw
);
550 ew32(CTRL
, (ctrl
& ~E1000_CTRL_SLU
));
552 mac
->serdes_has_link
= 1;
553 } else if (!(E1000_TXCW_ANE
& er32(TXCW
))) {
554 /* If we force link for non-auto-negotiation switch, check
555 * link status based on MAC synchronization for internal
558 /* SYNCH bit and IV bit are sticky. */
560 if (E1000_RXCW_SYNCH
& er32(RXCW
)) {
561 if (!(rxcw
& E1000_RXCW_IV
)) {
562 mac
->serdes_has_link
= 1;
563 hw_dbg(hw
, "SERDES: Link is up.\n");
566 mac
->serdes_has_link
= 0;
567 hw_dbg(hw
, "SERDES: Link is down.\n");
571 if (E1000_TXCW_ANE
& er32(TXCW
)) {
572 status
= er32(STATUS
);
573 mac
->serdes_has_link
= (status
& E1000_STATUS_LU
);
580 * e1000_set_default_fc_generic - Set flow control default values
581 * @hw: pointer to the HW structure
583 * Read the EEPROM for the default values for flow control and store the
586 static s32
e1000_set_default_fc_generic(struct e1000_hw
*hw
)
588 struct e1000_mac_info
*mac
= &hw
->mac
;
592 if (mac
->fc
!= e1000_fc_default
)
595 /* Read and store word 0x0F of the EEPROM. This word contains bits
596 * that determine the hardware's default PAUSE (flow control) mode,
597 * a bit that determines whether the HW defaults to enabling or
598 * disabling auto-negotiation, and the direction of the
599 * SW defined pins. If there is no SW over-ride of the flow
600 * control setting, then the variable hw->fc will
601 * be initialized based on a value in the EEPROM.
603 ret_val
= e1000_read_nvm(hw
, NVM_INIT_CONTROL2_REG
, 1, &nvm_data
);
606 hw_dbg(hw
, "NVM Read Error\n");
610 if ((nvm_data
& NVM_WORD0F_PAUSE_MASK
) == 0)
611 mac
->fc
= e1000_fc_none
;
612 else if ((nvm_data
& NVM_WORD0F_PAUSE_MASK
) ==
614 mac
->fc
= e1000_fc_tx_pause
;
616 mac
->fc
= e1000_fc_full
;
622 * e1000e_setup_link - Setup flow control and link settings
623 * @hw: pointer to the HW structure
625 * Determines which flow control settings to use, then configures flow
626 * control. Calls the appropriate media-specific link configuration
627 * function. Assuming the adapter has a valid link partner, a valid link
628 * should be established. Assumes the hardware has previously been reset
629 * and the transmitter and receiver are not enabled.
631 s32
e1000e_setup_link(struct e1000_hw
*hw
)
633 struct e1000_mac_info
*mac
= &hw
->mac
;
636 /* In the case of the phy reset being blocked, we already have a link.
637 * We do not need to set it up again.
639 if (e1000_check_reset_block(hw
))
643 * If flow control is set to default, set flow control based on
644 * the EEPROM flow control settings.
646 if (mac
->fc
== e1000_fc_default
) {
647 ret_val
= e1000_set_default_fc_generic(hw
);
652 /* We want to save off the original Flow Control configuration just
653 * in case we get disconnected and then reconnected into a different
654 * hub or switch with different Flow Control capabilities.
656 mac
->original_fc
= mac
->fc
;
658 hw_dbg(hw
, "After fix-ups FlowControl is now = %x\n", mac
->fc
);
660 /* Call the necessary media_type subroutine to configure the link. */
661 ret_val
= mac
->ops
.setup_physical_interface(hw
);
665 /* Initialize the flow control address, type, and PAUSE timer
666 * registers to their default values. This is done even if flow
667 * control is disabled, because it does not hurt anything to
668 * initialize these registers.
670 hw_dbg(hw
, "Initializing the Flow Control address, type and timer regs\n");
671 ew32(FCT
, FLOW_CONTROL_TYPE
);
672 ew32(FCAH
, FLOW_CONTROL_ADDRESS_HIGH
);
673 ew32(FCAL
, FLOW_CONTROL_ADDRESS_LOW
);
675 ew32(FCTTV
, mac
->fc_pause_time
);
677 return e1000e_set_fc_watermarks(hw
);
681 * e1000_commit_fc_settings_generic - Configure flow control
682 * @hw: pointer to the HW structure
684 * Write the flow control settings to the Transmit Config Word Register (TXCW)
685 * base on the flow control settings in e1000_mac_info.
687 static s32
e1000_commit_fc_settings_generic(struct e1000_hw
*hw
)
689 struct e1000_mac_info
*mac
= &hw
->mac
;
692 /* Check for a software override of the flow control settings, and
693 * setup the device accordingly. If auto-negotiation is enabled, then
694 * software will have to set the "PAUSE" bits to the correct value in
695 * the Transmit Config Word Register (TXCW) and re-start auto-
696 * negotiation. However, if auto-negotiation is disabled, then
697 * software will have to manually configure the two flow control enable
698 * bits in the CTRL register.
700 * The possible values of the "fc" parameter are:
701 * 0: Flow control is completely disabled
702 * 1: Rx flow control is enabled (we can receive pause frames,
703 * but not send pause frames).
704 * 2: Tx flow control is enabled (we can send pause frames but we
705 * do not support receiving pause frames).
706 * 3: Both Rx and TX flow control (symmetric) are enabled.
710 /* Flow control completely disabled by a software over-ride. */
711 txcw
= (E1000_TXCW_ANE
| E1000_TXCW_FD
);
713 case e1000_fc_rx_pause
:
714 /* RX Flow control is enabled and TX Flow control is disabled
715 * by a software over-ride. Since there really isn't a way to
716 * advertise that we are capable of RX Pause ONLY, we will
717 * advertise that we support both symmetric and asymmetric RX
718 * PAUSE. Later, we will disable the adapter's ability to send
721 txcw
= (E1000_TXCW_ANE
| E1000_TXCW_FD
| E1000_TXCW_PAUSE_MASK
);
723 case e1000_fc_tx_pause
:
724 /* TX Flow control is enabled, and RX Flow control is disabled,
725 * by a software over-ride.
727 txcw
= (E1000_TXCW_ANE
| E1000_TXCW_FD
| E1000_TXCW_ASM_DIR
);
730 /* Flow control (both RX and TX) is enabled by a software
733 txcw
= (E1000_TXCW_ANE
| E1000_TXCW_FD
| E1000_TXCW_PAUSE_MASK
);
736 hw_dbg(hw
, "Flow control param set incorrectly\n");
737 return -E1000_ERR_CONFIG
;
748 * e1000_poll_fiber_serdes_link_generic - Poll for link up
749 * @hw: pointer to the HW structure
751 * Polls for link up by reading the status register, if link fails to come
752 * up with auto-negotiation, then the link is forced if a signal is detected.
754 static s32
e1000_poll_fiber_serdes_link_generic(struct e1000_hw
*hw
)
756 struct e1000_mac_info
*mac
= &hw
->mac
;
760 /* If we have a signal (the cable is plugged in, or assumed true for
761 * serdes media) then poll for a "Link-Up" indication in the Device
762 * Status Register. Time-out if a link isn't seen in 500 milliseconds
763 * seconds (Auto-negotiation should complete in less than 500
764 * milliseconds even if the other end is doing it in SW).
766 for (i
= 0; i
< FIBER_LINK_UP_LIMIT
; i
++) {
768 status
= er32(STATUS
);
769 if (status
& E1000_STATUS_LU
)
772 if (i
== FIBER_LINK_UP_LIMIT
) {
773 hw_dbg(hw
, "Never got a valid link from auto-neg!!!\n");
774 mac
->autoneg_failed
= 1;
775 /* AutoNeg failed to achieve a link, so we'll call
776 * mac->check_for_link. This routine will force the
777 * link up if we detect a signal. This will allow us to
778 * communicate with non-autonegotiating link partners.
780 ret_val
= mac
->ops
.check_for_link(hw
);
782 hw_dbg(hw
, "Error while checking for link\n");
785 mac
->autoneg_failed
= 0;
787 mac
->autoneg_failed
= 0;
788 hw_dbg(hw
, "Valid Link Found\n");
795 * e1000e_setup_fiber_serdes_link - Setup link for fiber/serdes
796 * @hw: pointer to the HW structure
798 * Configures collision distance and flow control for fiber and serdes
799 * links. Upon successful setup, poll for link.
801 s32
e1000e_setup_fiber_serdes_link(struct e1000_hw
*hw
)
808 /* Take the link out of reset */
809 ctrl
&= ~E1000_CTRL_LRST
;
811 e1000e_config_collision_dist(hw
);
813 ret_val
= e1000_commit_fc_settings_generic(hw
);
817 /* Since auto-negotiation is enabled, take the link out of reset (the
818 * link will be in reset, because we previously reset the chip). This
819 * will restart auto-negotiation. If auto-negotiation is successful
820 * then the link-up status bit will be set and the flow control enable
821 * bits (RFCE and TFCE) will be set according to their negotiated value.
823 hw_dbg(hw
, "Auto-negotiation enabled\n");
829 /* For these adapters, the SW defineable pin 1 is set when the optics
830 * detect a signal. If we have a signal, then poll for a "Link-Up"
833 if (hw
->media_type
== e1000_media_type_internal_serdes
||
834 (er32(CTRL
) & E1000_CTRL_SWDPIN1
)) {
835 ret_val
= e1000_poll_fiber_serdes_link_generic(hw
);
837 hw_dbg(hw
, "No signal detected\n");
844 * e1000e_config_collision_dist - Configure collision distance
845 * @hw: pointer to the HW structure
847 * Configures the collision distance to the default value and is used
848 * during link setup. Currently no func pointer exists and all
849 * implementations are handled in the generic version of this function.
851 void e1000e_config_collision_dist(struct e1000_hw
*hw
)
857 tctl
&= ~E1000_TCTL_COLD
;
858 tctl
|= E1000_COLLISION_DISTANCE
<< E1000_COLD_SHIFT
;
865 * e1000e_set_fc_watermarks - Set flow control high/low watermarks
866 * @hw: pointer to the HW structure
868 * Sets the flow control high/low threshold (watermark) registers. If
869 * flow control XON frame transmission is enabled, then set XON frame
870 * tansmission as well.
872 s32
e1000e_set_fc_watermarks(struct e1000_hw
*hw
)
874 struct e1000_mac_info
*mac
= &hw
->mac
;
875 u32 fcrtl
= 0, fcrth
= 0;
877 /* Set the flow control receive threshold registers. Normally,
878 * these registers will be set to a default threshold that may be
879 * adjusted later by the driver's runtime code. However, if the
880 * ability to transmit pause frames is not enabled, then these
881 * registers will be set to 0.
883 if (mac
->fc
& e1000_fc_tx_pause
) {
884 /* We need to set up the Receive Threshold high and low water
885 * marks as well as (optionally) enabling the transmission of
888 fcrtl
= mac
->fc_low_water
;
889 fcrtl
|= E1000_FCRTL_XONE
;
890 fcrth
= mac
->fc_high_water
;
899 * e1000e_force_mac_fc - Force the MAC's flow control settings
900 * @hw: pointer to the HW structure
902 * Force the MAC's flow control settings. Sets the TFCE and RFCE bits in the
903 * device control register to reflect the adapter settings. TFCE and RFCE
904 * need to be explicitly set by software when a copper PHY is used because
905 * autonegotiation is managed by the PHY rather than the MAC. Software must
906 * also configure these bits when link is forced on a fiber connection.
908 s32
e1000e_force_mac_fc(struct e1000_hw
*hw
)
910 struct e1000_mac_info
*mac
= &hw
->mac
;
915 /* Because we didn't get link via the internal auto-negotiation
916 * mechanism (we either forced link or we got link via PHY
917 * auto-neg), we have to manually enable/disable transmit an
918 * receive flow control.
920 * The "Case" statement below enables/disable flow control
921 * according to the "mac->fc" parameter.
923 * The possible values of the "fc" parameter are:
924 * 0: Flow control is completely disabled
925 * 1: Rx flow control is enabled (we can receive pause
926 * frames but not send pause frames).
927 * 2: Tx flow control is enabled (we can send pause frames
928 * frames but we do not receive pause frames).
929 * 3: Both Rx and TX flow control (symmetric) is enabled.
930 * other: No other values should be possible at this point.
932 hw_dbg(hw
, "mac->fc = %u\n", mac
->fc
);
936 ctrl
&= (~(E1000_CTRL_TFCE
| E1000_CTRL_RFCE
));
938 case e1000_fc_rx_pause
:
939 ctrl
&= (~E1000_CTRL_TFCE
);
940 ctrl
|= E1000_CTRL_RFCE
;
942 case e1000_fc_tx_pause
:
943 ctrl
&= (~E1000_CTRL_RFCE
);
944 ctrl
|= E1000_CTRL_TFCE
;
947 ctrl
|= (E1000_CTRL_TFCE
| E1000_CTRL_RFCE
);
950 hw_dbg(hw
, "Flow control param set incorrectly\n");
951 return -E1000_ERR_CONFIG
;
960 * e1000e_config_fc_after_link_up - Configures flow control after link
961 * @hw: pointer to the HW structure
963 * Checks the status of auto-negotiation after link up to ensure that the
964 * speed and duplex were not forced. If the link needed to be forced, then
965 * flow control needs to be forced also. If auto-negotiation is enabled
966 * and did not fail, then we configure flow control based on our link
969 s32
e1000e_config_fc_after_link_up(struct e1000_hw
*hw
)
971 struct e1000_mac_info
*mac
= &hw
->mac
;
973 u16 mii_status_reg
, mii_nway_adv_reg
, mii_nway_lp_ability_reg
;
976 /* Check for the case where we have fiber media and auto-neg failed
977 * so we had to force link. In this case, we need to force the
978 * configuration of the MAC to match the "fc" parameter.
980 if (mac
->autoneg_failed
) {
981 if (hw
->media_type
== e1000_media_type_fiber
||
982 hw
->media_type
== e1000_media_type_internal_serdes
)
983 ret_val
= e1000e_force_mac_fc(hw
);
985 if (hw
->media_type
== e1000_media_type_copper
)
986 ret_val
= e1000e_force_mac_fc(hw
);
990 hw_dbg(hw
, "Error forcing flow control settings\n");
994 /* Check for the case where we have copper media and auto-neg is
995 * enabled. In this case, we need to check and see if Auto-Neg
996 * has completed, and if so, how the PHY and link partner has
997 * flow control configured.
999 if ((hw
->media_type
== e1000_media_type_copper
) && mac
->autoneg
) {
1000 /* Read the MII Status Register and check to see if AutoNeg
1001 * has completed. We read this twice because this reg has
1002 * some "sticky" (latched) bits.
1004 ret_val
= e1e_rphy(hw
, PHY_STATUS
, &mii_status_reg
);
1007 ret_val
= e1e_rphy(hw
, PHY_STATUS
, &mii_status_reg
);
1011 if (!(mii_status_reg
& MII_SR_AUTONEG_COMPLETE
)) {
1012 hw_dbg(hw
, "Copper PHY and Auto Neg "
1013 "has not completed.\n");
1017 /* The AutoNeg process has completed, so we now need to
1018 * read both the Auto Negotiation Advertisement
1019 * Register (Address 4) and the Auto_Negotiation Base
1020 * Page Ability Register (Address 5) to determine how
1021 * flow control was negotiated.
1023 ret_val
= e1e_rphy(hw
, PHY_AUTONEG_ADV
, &mii_nway_adv_reg
);
1026 ret_val
= e1e_rphy(hw
, PHY_LP_ABILITY
, &mii_nway_lp_ability_reg
);
1030 /* Two bits in the Auto Negotiation Advertisement Register
1031 * (Address 4) and two bits in the Auto Negotiation Base
1032 * Page Ability Register (Address 5) determine flow control
1033 * for both the PHY and the link partner. The following
1034 * table, taken out of the IEEE 802.3ab/D6.0 dated March 25,
1035 * 1999, describes these PAUSE resolution bits and how flow
1036 * control is determined based upon these settings.
1037 * NOTE: DC = Don't Care
1039 * LOCAL DEVICE | LINK PARTNER
1040 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | NIC Resolution
1041 *-------|---------|-------|---------|--------------------
1042 * 0 | 0 | DC | DC | e1000_fc_none
1043 * 0 | 1 | 0 | DC | e1000_fc_none
1044 * 0 | 1 | 1 | 0 | e1000_fc_none
1045 * 0 | 1 | 1 | 1 | e1000_fc_tx_pause
1046 * 1 | 0 | 0 | DC | e1000_fc_none
1047 * 1 | DC | 1 | DC | e1000_fc_full
1048 * 1 | 1 | 0 | 0 | e1000_fc_none
1049 * 1 | 1 | 0 | 1 | e1000_fc_rx_pause
1052 /* Are both PAUSE bits set to 1? If so, this implies
1053 * Symmetric Flow Control is enabled at both ends. The
1054 * ASM_DIR bits are irrelevant per the spec.
1056 * For Symmetric Flow Control:
1058 * LOCAL DEVICE | LINK PARTNER
1059 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result
1060 *-------|---------|-------|---------|--------------------
1061 * 1 | DC | 1 | DC | E1000_fc_full
1064 if ((mii_nway_adv_reg
& NWAY_AR_PAUSE
) &&
1065 (mii_nway_lp_ability_reg
& NWAY_LPAR_PAUSE
)) {
1066 /* Now we need to check if the user selected RX ONLY
1067 * of pause frames. In this case, we had to advertise
1068 * FULL flow control because we could not advertise RX
1069 * ONLY. Hence, we must now check to see if we need to
1070 * turn OFF the TRANSMISSION of PAUSE frames.
1072 if (mac
->original_fc
== e1000_fc_full
) {
1073 mac
->fc
= e1000_fc_full
;
1074 hw_dbg(hw
, "Flow Control = FULL.\r\n");
1076 mac
->fc
= e1000_fc_rx_pause
;
1077 hw_dbg(hw
, "Flow Control = "
1078 "RX PAUSE frames only.\r\n");
1081 /* For receiving PAUSE frames ONLY.
1083 * LOCAL DEVICE | LINK PARTNER
1084 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result
1085 *-------|---------|-------|---------|--------------------
1086 * 0 | 1 | 1 | 1 | e1000_fc_tx_pause
1089 else if (!(mii_nway_adv_reg
& NWAY_AR_PAUSE
) &&
1090 (mii_nway_adv_reg
& NWAY_AR_ASM_DIR
) &&
1091 (mii_nway_lp_ability_reg
& NWAY_LPAR_PAUSE
) &&
1092 (mii_nway_lp_ability_reg
& NWAY_LPAR_ASM_DIR
)) {
1093 mac
->fc
= e1000_fc_tx_pause
;
1094 hw_dbg(hw
, "Flow Control = TX PAUSE frames only.\r\n");
1096 /* For transmitting PAUSE frames ONLY.
1098 * LOCAL DEVICE | LINK PARTNER
1099 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result
1100 *-------|---------|-------|---------|--------------------
1101 * 1 | 1 | 0 | 1 | e1000_fc_rx_pause
1104 else if ((mii_nway_adv_reg
& NWAY_AR_PAUSE
) &&
1105 (mii_nway_adv_reg
& NWAY_AR_ASM_DIR
) &&
1106 !(mii_nway_lp_ability_reg
& NWAY_LPAR_PAUSE
) &&
1107 (mii_nway_lp_ability_reg
& NWAY_LPAR_ASM_DIR
)) {
1108 mac
->fc
= e1000_fc_rx_pause
;
1109 hw_dbg(hw
, "Flow Control = RX PAUSE frames only.\r\n");
1111 /* Per the IEEE spec, at this point flow control should be
1112 * disabled. However, we want to consider that we could
1113 * be connected to a legacy switch that doesn't advertise
1114 * desired flow control, but can be forced on the link
1115 * partner. So if we advertised no flow control, that is
1116 * what we will resolve to. If we advertised some kind of
1117 * receive capability (Rx Pause Only or Full Flow Control)
1118 * and the link partner advertised none, we will configure
1119 * ourselves to enable Rx Flow Control only. We can do
1120 * this safely for two reasons: If the link partner really
1121 * didn't want flow control enabled, and we enable Rx, no
1122 * harm done since we won't be receiving any PAUSE frames
1123 * anyway. If the intent on the link partner was to have
1124 * flow control enabled, then by us enabling RX only, we
1125 * can at least receive pause frames and process them.
1126 * This is a good idea because in most cases, since we are
1127 * predominantly a server NIC, more times than not we will
1128 * be asked to delay transmission of packets than asking
1129 * our link partner to pause transmission of frames.
1131 else if ((mac
->original_fc
== e1000_fc_none
) ||
1132 (mac
->original_fc
== e1000_fc_tx_pause
)) {
1133 mac
->fc
= e1000_fc_none
;
1134 hw_dbg(hw
, "Flow Control = NONE.\r\n");
1136 mac
->fc
= e1000_fc_rx_pause
;
1137 hw_dbg(hw
, "Flow Control = RX PAUSE frames only.\r\n");
1140 /* Now we need to do one last check... If we auto-
1141 * negotiated to HALF DUPLEX, flow control should not be
1142 * enabled per IEEE 802.3 spec.
1144 ret_val
= mac
->ops
.get_link_up_info(hw
, &speed
, &duplex
);
1146 hw_dbg(hw
, "Error getting link speed and duplex\n");
1150 if (duplex
== HALF_DUPLEX
)
1151 mac
->fc
= e1000_fc_none
;
1153 /* Now we call a subroutine to actually force the MAC
1154 * controller to use the correct flow control settings.
1156 ret_val
= e1000e_force_mac_fc(hw
);
1158 hw_dbg(hw
, "Error forcing flow control settings\n");
1167 * e1000e_get_speed_and_duplex_copper - Retreive current speed/duplex
1168 * @hw: pointer to the HW structure
1169 * @speed: stores the current speed
1170 * @duplex: stores the current duplex
1172 * Read the status register for the current speed/duplex and store the current
1173 * speed and duplex for copper connections.
1175 s32
e1000e_get_speed_and_duplex_copper(struct e1000_hw
*hw
, u16
*speed
, u16
*duplex
)
1179 status
= er32(STATUS
);
1180 if (status
& E1000_STATUS_SPEED_1000
) {
1181 *speed
= SPEED_1000
;
1182 hw_dbg(hw
, "1000 Mbs, ");
1183 } else if (status
& E1000_STATUS_SPEED_100
) {
1185 hw_dbg(hw
, "100 Mbs, ");
1188 hw_dbg(hw
, "10 Mbs, ");
1191 if (status
& E1000_STATUS_FD
) {
1192 *duplex
= FULL_DUPLEX
;
1193 hw_dbg(hw
, "Full Duplex\n");
1195 *duplex
= HALF_DUPLEX
;
1196 hw_dbg(hw
, "Half Duplex\n");
1203 * e1000e_get_speed_and_duplex_fiber_serdes - Retreive current speed/duplex
1204 * @hw: pointer to the HW structure
1205 * @speed: stores the current speed
1206 * @duplex: stores the current duplex
1208 * Sets the speed and duplex to gigabit full duplex (the only possible option)
1209 * for fiber/serdes links.
1211 s32
e1000e_get_speed_and_duplex_fiber_serdes(struct e1000_hw
*hw
, u16
*speed
, u16
*duplex
)
1213 *speed
= SPEED_1000
;
1214 *duplex
= FULL_DUPLEX
;
1220 * e1000e_get_hw_semaphore - Acquire hardware semaphore
1221 * @hw: pointer to the HW structure
1223 * Acquire the HW semaphore to access the PHY or NVM
1225 s32
e1000e_get_hw_semaphore(struct e1000_hw
*hw
)
1228 s32 timeout
= hw
->nvm
.word_size
+ 1;
1231 /* Get the SW semaphore */
1232 while (i
< timeout
) {
1234 if (!(swsm
& E1000_SWSM_SMBI
))
1242 hw_dbg(hw
, "Driver can't access device - SMBI bit is set.\n");
1243 return -E1000_ERR_NVM
;
1246 /* Get the FW semaphore. */
1247 for (i
= 0; i
< timeout
; i
++) {
1249 ew32(SWSM
, swsm
| E1000_SWSM_SWESMBI
);
1251 /* Semaphore acquired if bit latched */
1252 if (er32(SWSM
) & E1000_SWSM_SWESMBI
)
1259 /* Release semaphores */
1260 e1000e_put_hw_semaphore(hw
);
1261 hw_dbg(hw
, "Driver can't access the NVM\n");
1262 return -E1000_ERR_NVM
;
1269 * e1000e_put_hw_semaphore - Release hardware semaphore
1270 * @hw: pointer to the HW structure
1272 * Release hardware semaphore used to access the PHY or NVM
1274 void e1000e_put_hw_semaphore(struct e1000_hw
*hw
)
1279 swsm
&= ~(E1000_SWSM_SMBI
| E1000_SWSM_SWESMBI
);
1284 * e1000e_get_auto_rd_done - Check for auto read completion
1285 * @hw: pointer to the HW structure
1287 * Check EEPROM for Auto Read done bit.
1289 s32
e1000e_get_auto_rd_done(struct e1000_hw
*hw
)
1293 while (i
< AUTO_READ_DONE_TIMEOUT
) {
1294 if (er32(EECD
) & E1000_EECD_AUTO_RD
)
1300 if (i
== AUTO_READ_DONE_TIMEOUT
) {
1301 hw_dbg(hw
, "Auto read by HW from NVM has not completed.\n");
1302 return -E1000_ERR_RESET
;
1309 * e1000e_valid_led_default - Verify a valid default LED config
1310 * @hw: pointer to the HW structure
1311 * @data: pointer to the NVM (EEPROM)
1313 * Read the EEPROM for the current default LED configuration. If the
1314 * LED configuration is not valid, set to a valid LED configuration.
1316 s32
e1000e_valid_led_default(struct e1000_hw
*hw
, u16
*data
)
1320 ret_val
= e1000_read_nvm(hw
, NVM_ID_LED_SETTINGS
, 1, data
);
1322 hw_dbg(hw
, "NVM Read Error\n");
1326 if (*data
== ID_LED_RESERVED_0000
|| *data
== ID_LED_RESERVED_FFFF
)
1327 *data
= ID_LED_DEFAULT
;
1333 * e1000e_id_led_init -
1334 * @hw: pointer to the HW structure
1337 s32
e1000e_id_led_init(struct e1000_hw
*hw
)
1339 struct e1000_mac_info
*mac
= &hw
->mac
;
1341 const u32 ledctl_mask
= 0x000000FF;
1342 const u32 ledctl_on
= E1000_LEDCTL_MODE_LED_ON
;
1343 const u32 ledctl_off
= E1000_LEDCTL_MODE_LED_OFF
;
1345 const u16 led_mask
= 0x0F;
1347 ret_val
= hw
->nvm
.ops
.valid_led_default(hw
, &data
);
1351 mac
->ledctl_default
= er32(LEDCTL
);
1352 mac
->ledctl_mode1
= mac
->ledctl_default
;
1353 mac
->ledctl_mode2
= mac
->ledctl_default
;
1355 for (i
= 0; i
< 4; i
++) {
1356 temp
= (data
>> (i
<< 2)) & led_mask
;
1358 case ID_LED_ON1_DEF2
:
1359 case ID_LED_ON1_ON2
:
1360 case ID_LED_ON1_OFF2
:
1361 mac
->ledctl_mode1
&= ~(ledctl_mask
<< (i
<< 3));
1362 mac
->ledctl_mode1
|= ledctl_on
<< (i
<< 3);
1364 case ID_LED_OFF1_DEF2
:
1365 case ID_LED_OFF1_ON2
:
1366 case ID_LED_OFF1_OFF2
:
1367 mac
->ledctl_mode1
&= ~(ledctl_mask
<< (i
<< 3));
1368 mac
->ledctl_mode1
|= ledctl_off
<< (i
<< 3);
1375 case ID_LED_DEF1_ON2
:
1376 case ID_LED_ON1_ON2
:
1377 case ID_LED_OFF1_ON2
:
1378 mac
->ledctl_mode2
&= ~(ledctl_mask
<< (i
<< 3));
1379 mac
->ledctl_mode2
|= ledctl_on
<< (i
<< 3);
1381 case ID_LED_DEF1_OFF2
:
1382 case ID_LED_ON1_OFF2
:
1383 case ID_LED_OFF1_OFF2
:
1384 mac
->ledctl_mode2
&= ~(ledctl_mask
<< (i
<< 3));
1385 mac
->ledctl_mode2
|= ledctl_off
<< (i
<< 3);
1397 * e1000e_cleanup_led_generic - Set LED config to default operation
1398 * @hw: pointer to the HW structure
1400 * Remove the current LED configuration and set the LED configuration
1401 * to the default value, saved from the EEPROM.
1403 s32
e1000e_cleanup_led_generic(struct e1000_hw
*hw
)
1405 ew32(LEDCTL
, hw
->mac
.ledctl_default
);
1410 * e1000e_blink_led - Blink LED
1411 * @hw: pointer to the HW structure
1413 * Blink the led's which are set to be on.
1415 s32
e1000e_blink_led(struct e1000_hw
*hw
)
1417 u32 ledctl_blink
= 0;
1420 if (hw
->media_type
== e1000_media_type_fiber
) {
1421 /* always blink LED0 for PCI-E fiber */
1422 ledctl_blink
= E1000_LEDCTL_LED0_BLINK
|
1423 (E1000_LEDCTL_MODE_LED_ON
<< E1000_LEDCTL_LED0_MODE_SHIFT
);
1425 /* set the blink bit for each LED that's "on" (0x0E)
1426 * in ledctl_mode2 */
1427 ledctl_blink
= hw
->mac
.ledctl_mode2
;
1428 for (i
= 0; i
< 4; i
++)
1429 if (((hw
->mac
.ledctl_mode2
>> (i
* 8)) & 0xFF) ==
1430 E1000_LEDCTL_MODE_LED_ON
)
1431 ledctl_blink
|= (E1000_LEDCTL_LED0_BLINK
<<
1435 ew32(LEDCTL
, ledctl_blink
);
1441 * e1000e_led_on_generic - Turn LED on
1442 * @hw: pointer to the HW structure
1446 s32
e1000e_led_on_generic(struct e1000_hw
*hw
)
1450 switch (hw
->media_type
) {
1451 case e1000_media_type_fiber
:
1453 ctrl
&= ~E1000_CTRL_SWDPIN0
;
1454 ctrl
|= E1000_CTRL_SWDPIO0
;
1457 case e1000_media_type_copper
:
1458 ew32(LEDCTL
, hw
->mac
.ledctl_mode2
);
1468 * e1000e_led_off_generic - Turn LED off
1469 * @hw: pointer to the HW structure
1473 s32
e1000e_led_off_generic(struct e1000_hw
*hw
)
1477 switch (hw
->media_type
) {
1478 case e1000_media_type_fiber
:
1480 ctrl
|= E1000_CTRL_SWDPIN0
;
1481 ctrl
|= E1000_CTRL_SWDPIO0
;
1484 case e1000_media_type_copper
:
1485 ew32(LEDCTL
, hw
->mac
.ledctl_mode1
);
1495 * e1000e_set_pcie_no_snoop - Set PCI-express capabilities
1496 * @hw: pointer to the HW structure
1497 * @no_snoop: bitmap of snoop events
1499 * Set the PCI-express register to snoop for events enabled in 'no_snoop'.
1501 void e1000e_set_pcie_no_snoop(struct e1000_hw
*hw
, u32 no_snoop
)
1507 gcr
&= ~(PCIE_NO_SNOOP_ALL
);
1514 * e1000e_disable_pcie_master - Disables PCI-express master access
1515 * @hw: pointer to the HW structure
1517 * Returns 0 if successful, else returns -10
1518 * (-E1000_ERR_MASTER_REQUESTS_PENDING) if master disable bit has not casued
1519 * the master requests to be disabled.
1521 * Disables PCI-Express master access and verifies there are no pending
1524 s32
e1000e_disable_pcie_master(struct e1000_hw
*hw
)
1527 s32 timeout
= MASTER_DISABLE_TIMEOUT
;
1530 ctrl
|= E1000_CTRL_GIO_MASTER_DISABLE
;
1534 if (!(er32(STATUS
) &
1535 E1000_STATUS_GIO_MASTER_ENABLE
))
1542 hw_dbg(hw
, "Master requests are pending.\n");
1543 return -E1000_ERR_MASTER_REQUESTS_PENDING
;
1550 * e1000e_reset_adaptive - Reset Adaptive Interframe Spacing
1551 * @hw: pointer to the HW structure
1553 * Reset the Adaptive Interframe Spacing throttle to default values.
1555 void e1000e_reset_adaptive(struct e1000_hw
*hw
)
1557 struct e1000_mac_info
*mac
= &hw
->mac
;
1559 mac
->current_ifs_val
= 0;
1560 mac
->ifs_min_val
= IFS_MIN
;
1561 mac
->ifs_max_val
= IFS_MAX
;
1562 mac
->ifs_step_size
= IFS_STEP
;
1563 mac
->ifs_ratio
= IFS_RATIO
;
1565 mac
->in_ifs_mode
= 0;
1570 * e1000e_update_adaptive - Update Adaptive Interframe Spacing
1571 * @hw: pointer to the HW structure
1573 * Update the Adaptive Interframe Spacing Throttle value based on the
1574 * time between transmitted packets and time between collisions.
1576 void e1000e_update_adaptive(struct e1000_hw
*hw
)
1578 struct e1000_mac_info
*mac
= &hw
->mac
;
1580 if ((mac
->collision_delta
* mac
->ifs_ratio
) > mac
->tx_packet_delta
) {
1581 if (mac
->tx_packet_delta
> MIN_NUM_XMITS
) {
1582 mac
->in_ifs_mode
= 1;
1583 if (mac
->current_ifs_val
< mac
->ifs_max_val
) {
1584 if (!mac
->current_ifs_val
)
1585 mac
->current_ifs_val
= mac
->ifs_min_val
;
1587 mac
->current_ifs_val
+=
1590 mac
->current_ifs_val
);
1594 if (mac
->in_ifs_mode
&&
1595 (mac
->tx_packet_delta
<= MIN_NUM_XMITS
)) {
1596 mac
->current_ifs_val
= 0;
1597 mac
->in_ifs_mode
= 0;
1604 * e1000_raise_eec_clk - Raise EEPROM clock
1605 * @hw: pointer to the HW structure
1606 * @eecd: pointer to the EEPROM
1608 * Enable/Raise the EEPROM clock bit.
1610 static void e1000_raise_eec_clk(struct e1000_hw
*hw
, u32
*eecd
)
1612 *eecd
= *eecd
| E1000_EECD_SK
;
1615 udelay(hw
->nvm
.delay_usec
);
1619 * e1000_lower_eec_clk - Lower EEPROM clock
1620 * @hw: pointer to the HW structure
1621 * @eecd: pointer to the EEPROM
1623 * Clear/Lower the EEPROM clock bit.
1625 static void e1000_lower_eec_clk(struct e1000_hw
*hw
, u32
*eecd
)
1627 *eecd
= *eecd
& ~E1000_EECD_SK
;
1630 udelay(hw
->nvm
.delay_usec
);
1634 * e1000_shift_out_eec_bits - Shift data bits our to the EEPROM
1635 * @hw: pointer to the HW structure
1636 * @data: data to send to the EEPROM
1637 * @count: number of bits to shift out
1639 * We need to shift 'count' bits out to the EEPROM. So, the value in the
1640 * "data" parameter will be shifted out to the EEPROM one bit at a time.
1641 * In order to do this, "data" must be broken down into bits.
1643 static void e1000_shift_out_eec_bits(struct e1000_hw
*hw
, u16 data
, u16 count
)
1645 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
1646 u32 eecd
= er32(EECD
);
1649 mask
= 0x01 << (count
- 1);
1650 if (nvm
->type
== e1000_nvm_eeprom_spi
)
1651 eecd
|= E1000_EECD_DO
;
1654 eecd
&= ~E1000_EECD_DI
;
1657 eecd
|= E1000_EECD_DI
;
1662 udelay(nvm
->delay_usec
);
1664 e1000_raise_eec_clk(hw
, &eecd
);
1665 e1000_lower_eec_clk(hw
, &eecd
);
1670 eecd
&= ~E1000_EECD_DI
;
1675 * e1000_shift_in_eec_bits - Shift data bits in from the EEPROM
1676 * @hw: pointer to the HW structure
1677 * @count: number of bits to shift in
1679 * In order to read a register from the EEPROM, we need to shift 'count' bits
1680 * in from the EEPROM. Bits are "shifted in" by raising the clock input to
1681 * the EEPROM (setting the SK bit), and then reading the value of the data out
1682 * "DO" bit. During this "shifting in" process the data in "DI" bit should
1685 static u16
e1000_shift_in_eec_bits(struct e1000_hw
*hw
, u16 count
)
1693 eecd
&= ~(E1000_EECD_DO
| E1000_EECD_DI
);
1696 for (i
= 0; i
< count
; i
++) {
1698 e1000_raise_eec_clk(hw
, &eecd
);
1702 eecd
&= ~E1000_EECD_DI
;
1703 if (eecd
& E1000_EECD_DO
)
1706 e1000_lower_eec_clk(hw
, &eecd
);
1713 * e1000e_poll_eerd_eewr_done - Poll for EEPROM read/write completion
1714 * @hw: pointer to the HW structure
1715 * @ee_reg: EEPROM flag for polling
1717 * Polls the EEPROM status bit for either read or write completion based
1718 * upon the value of 'ee_reg'.
1720 s32
e1000e_poll_eerd_eewr_done(struct e1000_hw
*hw
, int ee_reg
)
1722 u32 attempts
= 100000;
1725 for (i
= 0; i
< attempts
; i
++) {
1726 if (ee_reg
== E1000_NVM_POLL_READ
)
1731 if (reg
& E1000_NVM_RW_REG_DONE
)
1737 return -E1000_ERR_NVM
;
1741 * e1000e_acquire_nvm - Generic request for access to EEPROM
1742 * @hw: pointer to the HW structure
1744 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
1745 * Return successful if access grant bit set, else clear the request for
1746 * EEPROM access and return -E1000_ERR_NVM (-1).
1748 s32
e1000e_acquire_nvm(struct e1000_hw
*hw
)
1750 u32 eecd
= er32(EECD
);
1751 s32 timeout
= E1000_NVM_GRANT_ATTEMPTS
;
1753 ew32(EECD
, eecd
| E1000_EECD_REQ
);
1757 if (eecd
& E1000_EECD_GNT
)
1765 eecd
&= ~E1000_EECD_REQ
;
1767 hw_dbg(hw
, "Could not acquire NVM grant\n");
1768 return -E1000_ERR_NVM
;
1775 * e1000_standby_nvm - Return EEPROM to standby state
1776 * @hw: pointer to the HW structure
1778 * Return the EEPROM to a standby state.
1780 static void e1000_standby_nvm(struct e1000_hw
*hw
)
1782 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
1783 u32 eecd
= er32(EECD
);
1785 if (nvm
->type
== e1000_nvm_eeprom_spi
) {
1786 /* Toggle CS to flush commands */
1787 eecd
|= E1000_EECD_CS
;
1790 udelay(nvm
->delay_usec
);
1791 eecd
&= ~E1000_EECD_CS
;
1794 udelay(nvm
->delay_usec
);
1799 * e1000_stop_nvm - Terminate EEPROM command
1800 * @hw: pointer to the HW structure
1802 * Terminates the current command by inverting the EEPROM's chip select pin.
1804 static void e1000_stop_nvm(struct e1000_hw
*hw
)
1809 if (hw
->nvm
.type
== e1000_nvm_eeprom_spi
) {
1811 eecd
|= E1000_EECD_CS
;
1812 e1000_lower_eec_clk(hw
, &eecd
);
1817 * e1000e_release_nvm - Release exclusive access to EEPROM
1818 * @hw: pointer to the HW structure
1820 * Stop any current commands to the EEPROM and clear the EEPROM request bit.
1822 void e1000e_release_nvm(struct e1000_hw
*hw
)
1829 eecd
&= ~E1000_EECD_REQ
;
1834 * e1000_ready_nvm_eeprom - Prepares EEPROM for read/write
1835 * @hw: pointer to the HW structure
1837 * Setups the EEPROM for reading and writing.
1839 static s32
e1000_ready_nvm_eeprom(struct e1000_hw
*hw
)
1841 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
1842 u32 eecd
= er32(EECD
);
1846 if (nvm
->type
== e1000_nvm_eeprom_spi
) {
1847 /* Clear SK and CS */
1848 eecd
&= ~(E1000_EECD_CS
| E1000_EECD_SK
);
1851 timeout
= NVM_MAX_RETRY_SPI
;
1853 /* Read "Status Register" repeatedly until the LSB is cleared.
1854 * The EEPROM will signal that the command has been completed
1855 * by clearing bit 0 of the internal status register. If it's
1856 * not cleared within 'timeout', then error out. */
1858 e1000_shift_out_eec_bits(hw
, NVM_RDSR_OPCODE_SPI
,
1859 hw
->nvm
.opcode_bits
);
1860 spi_stat_reg
= (u8
)e1000_shift_in_eec_bits(hw
, 8);
1861 if (!(spi_stat_reg
& NVM_STATUS_RDY_SPI
))
1865 e1000_standby_nvm(hw
);
1870 hw_dbg(hw
, "SPI NVM Status error\n");
1871 return -E1000_ERR_NVM
;
1879 * e1000e_read_nvm_spi - Read EEPROM's using SPI
1880 * @hw: pointer to the HW structure
1881 * @offset: offset of word in the EEPROM to read
1882 * @words: number of words to read
1883 * @data: word read from the EEPROM
1885 * Reads a 16 bit word from the EEPROM.
1887 s32
e1000e_read_nvm_spi(struct e1000_hw
*hw
, u16 offset
, u16 words
, u16
*data
)
1889 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
1893 u8 read_opcode
= NVM_READ_OPCODE_SPI
;
1895 /* A check for invalid values: offset too large, too many words,
1896 * and not enough words. */
1897 if ((offset
>= nvm
->word_size
) || (words
> (nvm
->word_size
- offset
)) ||
1899 hw_dbg(hw
, "nvm parameter(s) out of bounds\n");
1900 return -E1000_ERR_NVM
;
1903 ret_val
= nvm
->ops
.acquire_nvm(hw
);
1907 ret_val
= e1000_ready_nvm_eeprom(hw
);
1909 nvm
->ops
.release_nvm(hw
);
1913 e1000_standby_nvm(hw
);
1915 if ((nvm
->address_bits
== 8) && (offset
>= 128))
1916 read_opcode
|= NVM_A8_OPCODE_SPI
;
1918 /* Send the READ command (opcode + addr) */
1919 e1000_shift_out_eec_bits(hw
, read_opcode
, nvm
->opcode_bits
);
1920 e1000_shift_out_eec_bits(hw
, (u16
)(offset
*2), nvm
->address_bits
);
1922 /* Read the data. SPI NVMs increment the address with each byte
1923 * read and will roll over if reading beyond the end. This allows
1924 * us to read the whole NVM from any offset */
1925 for (i
= 0; i
< words
; i
++) {
1926 word_in
= e1000_shift_in_eec_bits(hw
, 16);
1927 data
[i
] = (word_in
>> 8) | (word_in
<< 8);
1930 nvm
->ops
.release_nvm(hw
);
1935 * e1000e_read_nvm_eerd - Reads EEPROM using EERD register
1936 * @hw: pointer to the HW structure
1937 * @offset: offset of word in the EEPROM to read
1938 * @words: number of words to read
1939 * @data: word read from the EEPROM
1941 * Reads a 16 bit word from the EEPROM using the EERD register.
1943 s32
e1000e_read_nvm_eerd(struct e1000_hw
*hw
, u16 offset
, u16 words
, u16
*data
)
1945 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
1949 /* A check for invalid values: offset too large, too many words,
1950 * and not enough words. */
1951 if ((offset
>= nvm
->word_size
) || (words
> (nvm
->word_size
- offset
)) ||
1953 hw_dbg(hw
, "nvm parameter(s) out of bounds\n");
1954 return -E1000_ERR_NVM
;
1957 for (i
= 0; i
< words
; i
++) {
1958 eerd
= ((offset
+i
) << E1000_NVM_RW_ADDR_SHIFT
) +
1959 E1000_NVM_RW_REG_START
;
1962 ret_val
= e1000e_poll_eerd_eewr_done(hw
, E1000_NVM_POLL_READ
);
1966 data
[i
] = (er32(EERD
) >>
1967 E1000_NVM_RW_REG_DATA
);
1974 * e1000e_write_nvm_spi - Write to EEPROM using SPI
1975 * @hw: pointer to the HW structure
1976 * @offset: offset within the EEPROM to be written to
1977 * @words: number of words to write
1978 * @data: 16 bit word(s) to be written to the EEPROM
1980 * Writes data to EEPROM at offset using SPI interface.
1982 * If e1000e_update_nvm_checksum is not called after this function , the
1983 * EEPROM will most likley contain an invalid checksum.
1985 s32
e1000e_write_nvm_spi(struct e1000_hw
*hw
, u16 offset
, u16 words
, u16
*data
)
1987 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
1991 /* A check for invalid values: offset too large, too many words,
1992 * and not enough words. */
1993 if ((offset
>= nvm
->word_size
) || (words
> (nvm
->word_size
- offset
)) ||
1995 hw_dbg(hw
, "nvm parameter(s) out of bounds\n");
1996 return -E1000_ERR_NVM
;
1999 ret_val
= nvm
->ops
.acquire_nvm(hw
);
2005 while (widx
< words
) {
2006 u8 write_opcode
= NVM_WRITE_OPCODE_SPI
;
2008 ret_val
= e1000_ready_nvm_eeprom(hw
);
2010 nvm
->ops
.release_nvm(hw
);
2014 e1000_standby_nvm(hw
);
2016 /* Send the WRITE ENABLE command (8 bit opcode) */
2017 e1000_shift_out_eec_bits(hw
, NVM_WREN_OPCODE_SPI
,
2020 e1000_standby_nvm(hw
);
2022 /* Some SPI eeproms use the 8th address bit embedded in the
2024 if ((nvm
->address_bits
== 8) && (offset
>= 128))
2025 write_opcode
|= NVM_A8_OPCODE_SPI
;
2027 /* Send the Write command (8-bit opcode + addr) */
2028 e1000_shift_out_eec_bits(hw
, write_opcode
, nvm
->opcode_bits
);
2029 e1000_shift_out_eec_bits(hw
, (u16
)((offset
+ widx
) * 2),
2032 /* Loop to allow for up to whole page write of eeprom */
2033 while (widx
< words
) {
2034 u16 word_out
= data
[widx
];
2035 word_out
= (word_out
>> 8) | (word_out
<< 8);
2036 e1000_shift_out_eec_bits(hw
, word_out
, 16);
2039 if ((((offset
+ widx
) * 2) % nvm
->page_size
) == 0) {
2040 e1000_standby_nvm(hw
);
2051 * e1000e_read_mac_addr - Read device MAC address
2052 * @hw: pointer to the HW structure
2054 * Reads the device MAC address from the EEPROM and stores the value.
2055 * Since devices with two ports use the same EEPROM, we increment the
2056 * last bit in the MAC address for the second port.
2058 s32
e1000e_read_mac_addr(struct e1000_hw
*hw
)
2061 u16 offset
, nvm_data
, i
;
2062 u16 mac_addr_offset
= 0;
2064 if (hw
->mac
.type
== e1000_82571
) {
2065 /* Check for an alternate MAC address. An alternate MAC
2066 * address can be setup by pre-boot software and must be
2067 * treated like a permanent address and must override the
2068 * actual permanent MAC address. */
2069 ret_val
= e1000_read_nvm(hw
, NVM_ALT_MAC_ADDR_PTR
, 1,
2072 hw_dbg(hw
, "NVM Read Error\n");
2075 if (mac_addr_offset
== 0xFFFF)
2076 mac_addr_offset
= 0;
2078 if (mac_addr_offset
) {
2079 if (hw
->bus
.func
== E1000_FUNC_1
)
2080 mac_addr_offset
+= ETH_ALEN
/sizeof(u16
);
2082 /* make sure we have a valid mac address here
2083 * before using it */
2084 ret_val
= e1000_read_nvm(hw
, mac_addr_offset
, 1,
2087 hw_dbg(hw
, "NVM Read Error\n");
2090 if (nvm_data
& 0x0001)
2091 mac_addr_offset
= 0;
2094 if (mac_addr_offset
)
2095 hw
->dev_spec
.e82571
.alt_mac_addr_is_present
= 1;
2098 for (i
= 0; i
< ETH_ALEN
; i
+= 2) {
2099 offset
= mac_addr_offset
+ (i
>> 1);
2100 ret_val
= e1000_read_nvm(hw
, offset
, 1, &nvm_data
);
2102 hw_dbg(hw
, "NVM Read Error\n");
2105 hw
->mac
.perm_addr
[i
] = (u8
)(nvm_data
& 0xFF);
2106 hw
->mac
.perm_addr
[i
+1] = (u8
)(nvm_data
>> 8);
2109 /* Flip last bit of mac address if we're on second port */
2110 if (!mac_addr_offset
&& hw
->bus
.func
== E1000_FUNC_1
)
2111 hw
->mac
.perm_addr
[5] ^= 1;
2113 for (i
= 0; i
< ETH_ALEN
; i
++)
2114 hw
->mac
.addr
[i
] = hw
->mac
.perm_addr
[i
];
2120 * e1000e_validate_nvm_checksum_generic - Validate EEPROM checksum
2121 * @hw: pointer to the HW structure
2123 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
2124 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
2126 s32
e1000e_validate_nvm_checksum_generic(struct e1000_hw
*hw
)
2132 for (i
= 0; i
< (NVM_CHECKSUM_REG
+ 1); i
++) {
2133 ret_val
= e1000_read_nvm(hw
, i
, 1, &nvm_data
);
2135 hw_dbg(hw
, "NVM Read Error\n");
2138 checksum
+= nvm_data
;
2141 if (checksum
!= (u16
) NVM_SUM
) {
2142 hw_dbg(hw
, "NVM Checksum Invalid\n");
2143 return -E1000_ERR_NVM
;
2150 * e1000e_update_nvm_checksum_generic - Update EEPROM checksum
2151 * @hw: pointer to the HW structure
2153 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
2154 * up to the checksum. Then calculates the EEPROM checksum and writes the
2155 * value to the EEPROM.
2157 s32
e1000e_update_nvm_checksum_generic(struct e1000_hw
*hw
)
2163 for (i
= 0; i
< NVM_CHECKSUM_REG
; i
++) {
2164 ret_val
= e1000_read_nvm(hw
, i
, 1, &nvm_data
);
2166 hw_dbg(hw
, "NVM Read Error while updating checksum.\n");
2169 checksum
+= nvm_data
;
2171 checksum
= (u16
) NVM_SUM
- checksum
;
2172 ret_val
= e1000_write_nvm(hw
, NVM_CHECKSUM_REG
, 1, &checksum
);
2174 hw_dbg(hw
, "NVM Write Error while updating checksum.\n");
2180 * e1000e_reload_nvm - Reloads EEPROM
2181 * @hw: pointer to the HW structure
2183 * Reloads the EEPROM by setting the "Reinitialize from EEPROM" bit in the
2184 * extended control register.
2186 void e1000e_reload_nvm(struct e1000_hw
*hw
)
2191 ctrl_ext
= er32(CTRL_EXT
);
2192 ctrl_ext
|= E1000_CTRL_EXT_EE_RST
;
2193 ew32(CTRL_EXT
, ctrl_ext
);
2198 * e1000_calculate_checksum - Calculate checksum for buffer
2199 * @buffer: pointer to EEPROM
2200 * @length: size of EEPROM to calculate a checksum for
2202 * Calculates the checksum for some buffer on a specified length. The
2203 * checksum calculated is returned.
2205 static u8
e1000_calculate_checksum(u8
*buffer
, u32 length
)
2213 for (i
= 0; i
< length
; i
++)
2216 return (u8
) (0 - sum
);
2220 * e1000_mng_enable_host_if - Checks host interface is enabled
2221 * @hw: pointer to the HW structure
2223 * Returns E1000_success upon success, else E1000_ERR_HOST_INTERFACE_COMMAND
2225 * This function checks whether the HOST IF is enabled for command operaton
2226 * and also checks whether the previous command is completed. It busy waits
2227 * in case of previous command is not completed.
2229 static s32
e1000_mng_enable_host_if(struct e1000_hw
*hw
)
2234 /* Check that the host interface is enabled. */
2236 if ((hicr
& E1000_HICR_EN
) == 0) {
2237 hw_dbg(hw
, "E1000_HOST_EN bit disabled.\n");
2238 return -E1000_ERR_HOST_INTERFACE_COMMAND
;
2240 /* check the previous command is completed */
2241 for (i
= 0; i
< E1000_MNG_DHCP_COMMAND_TIMEOUT
; i
++) {
2243 if (!(hicr
& E1000_HICR_C
))
2248 if (i
== E1000_MNG_DHCP_COMMAND_TIMEOUT
) {
2249 hw_dbg(hw
, "Previous command timeout failed .\n");
2250 return -E1000_ERR_HOST_INTERFACE_COMMAND
;
2257 * e1000e_check_mng_mode - check managament mode
2258 * @hw: pointer to the HW structure
2260 * Reads the firmware semaphore register and returns true (>0) if
2261 * manageability is enabled, else false (0).
2263 bool e1000e_check_mng_mode(struct e1000_hw
*hw
)
2265 u32 fwsm
= er32(FWSM
);
2267 return (fwsm
& E1000_FWSM_MODE_MASK
) == hw
->mac
.ops
.mng_mode_enab
;
2271 * e1000e_enable_tx_pkt_filtering - Enable packet filtering on TX
2272 * @hw: pointer to the HW structure
2274 * Enables packet filtering on transmit packets if manageability is enabled
2275 * and host interface is enabled.
2277 bool e1000e_enable_tx_pkt_filtering(struct e1000_hw
*hw
)
2279 struct e1000_host_mng_dhcp_cookie
*hdr
= &hw
->mng_cookie
;
2280 u32
*buffer
= (u32
*)&hw
->mng_cookie
;
2282 s32 ret_val
, hdr_csum
, csum
;
2285 /* No manageability, no filtering */
2286 if (!e1000e_check_mng_mode(hw
)) {
2287 hw
->mac
.tx_pkt_filtering
= 0;
2291 /* If we can't read from the host interface for whatever
2292 * reason, disable filtering.
2294 ret_val
= e1000_mng_enable_host_if(hw
);
2296 hw
->mac
.tx_pkt_filtering
= 0;
2300 /* Read in the header. Length and offset are in dwords. */
2301 len
= E1000_MNG_DHCP_COOKIE_LENGTH
>> 2;
2302 offset
= E1000_MNG_DHCP_COOKIE_OFFSET
>> 2;
2303 for (i
= 0; i
< len
; i
++)
2304 *(buffer
+ i
) = E1000_READ_REG_ARRAY(hw
, E1000_HOST_IF
, offset
+ i
);
2305 hdr_csum
= hdr
->checksum
;
2307 csum
= e1000_calculate_checksum((u8
*)hdr
,
2308 E1000_MNG_DHCP_COOKIE_LENGTH
);
2309 /* If either the checksums or signature don't match, then
2310 * the cookie area isn't considered valid, in which case we
2311 * take the safe route of assuming Tx filtering is enabled.
2313 if ((hdr_csum
!= csum
) || (hdr
->signature
!= E1000_IAMT_SIGNATURE
)) {
2314 hw
->mac
.tx_pkt_filtering
= 1;
2318 /* Cookie area is valid, make the final check for filtering. */
2319 if (!(hdr
->status
& E1000_MNG_DHCP_COOKIE_STATUS_PARSING
)) {
2320 hw
->mac
.tx_pkt_filtering
= 0;
2324 hw
->mac
.tx_pkt_filtering
= 1;
2329 * e1000_mng_write_cmd_header - Writes manageability command header
2330 * @hw: pointer to the HW structure
2331 * @hdr: pointer to the host interface command header
2333 * Writes the command header after does the checksum calculation.
2335 static s32
e1000_mng_write_cmd_header(struct e1000_hw
*hw
,
2336 struct e1000_host_mng_command_header
*hdr
)
2338 u16 i
, length
= sizeof(struct e1000_host_mng_command_header
);
2340 /* Write the whole command header structure with new checksum. */
2342 hdr
->checksum
= e1000_calculate_checksum((u8
*)hdr
, length
);
2345 /* Write the relevant command block into the ram area. */
2346 for (i
= 0; i
< length
; i
++) {
2347 E1000_WRITE_REG_ARRAY(hw
, E1000_HOST_IF
, i
,
2348 *((u32
*) hdr
+ i
));
2356 * e1000_mng_host_if_write - Writes to the manageability host interface
2357 * @hw: pointer to the HW structure
2358 * @buffer: pointer to the host interface buffer
2359 * @length: size of the buffer
2360 * @offset: location in the buffer to write to
2361 * @sum: sum of the data (not checksum)
2363 * This function writes the buffer content at the offset given on the host if.
2364 * It also does alignment considerations to do the writes in most efficient
2365 * way. Also fills up the sum of the buffer in *buffer parameter.
2367 static s32
e1000_mng_host_if_write(struct e1000_hw
*hw
, u8
*buffer
,
2368 u16 length
, u16 offset
, u8
*sum
)
2371 u8
*bufptr
= buffer
;
2373 u16 remaining
, i
, j
, prev_bytes
;
2375 /* sum = only sum of the data and it is not checksum */
2377 if (length
== 0 || offset
+ length
> E1000_HI_MAX_MNG_DATA_LENGTH
)
2378 return -E1000_ERR_PARAM
;
2381 prev_bytes
= offset
& 0x3;
2385 data
= E1000_READ_REG_ARRAY(hw
, E1000_HOST_IF
, offset
);
2386 for (j
= prev_bytes
; j
< sizeof(u32
); j
++) {
2387 *(tmp
+ j
) = *bufptr
++;
2390 E1000_WRITE_REG_ARRAY(hw
, E1000_HOST_IF
, offset
, data
);
2391 length
-= j
- prev_bytes
;
2395 remaining
= length
& 0x3;
2396 length
-= remaining
;
2398 /* Calculate length in DWORDs */
2401 /* The device driver writes the relevant command block into the
2403 for (i
= 0; i
< length
; i
++) {
2404 for (j
= 0; j
< sizeof(u32
); j
++) {
2405 *(tmp
+ j
) = *bufptr
++;
2409 E1000_WRITE_REG_ARRAY(hw
, E1000_HOST_IF
, offset
+ i
, data
);
2412 for (j
= 0; j
< sizeof(u32
); j
++) {
2414 *(tmp
+ j
) = *bufptr
++;
2420 E1000_WRITE_REG_ARRAY(hw
, E1000_HOST_IF
, offset
+ i
, data
);
2427 * e1000e_mng_write_dhcp_info - Writes DHCP info to host interface
2428 * @hw: pointer to the HW structure
2429 * @buffer: pointer to the host interface
2430 * @length: size of the buffer
2432 * Writes the DHCP information to the host interface.
2434 s32
e1000e_mng_write_dhcp_info(struct e1000_hw
*hw
, u8
*buffer
, u16 length
)
2436 struct e1000_host_mng_command_header hdr
;
2440 hdr
.command_id
= E1000_MNG_DHCP_TX_PAYLOAD_CMD
;
2441 hdr
.command_length
= length
;
2446 /* Enable the host interface */
2447 ret_val
= e1000_mng_enable_host_if(hw
);
2451 /* Populate the host interface with the contents of "buffer". */
2452 ret_val
= e1000_mng_host_if_write(hw
, buffer
, length
,
2453 sizeof(hdr
), &(hdr
.checksum
));
2457 /* Write the manageability command header */
2458 ret_val
= e1000_mng_write_cmd_header(hw
, &hdr
);
2462 /* Tell the ARC a new command is pending. */
2464 ew32(HICR
, hicr
| E1000_HICR_C
);
2470 * e1000e_enable_mng_pass_thru - Enable processing of ARP's
2471 * @hw: pointer to the HW structure
2473 * Verifies the hardware needs to allow ARPs to be processed by the host.
2475 bool e1000e_enable_mng_pass_thru(struct e1000_hw
*hw
)
2483 if (!(manc
& E1000_MANC_RCV_TCO_EN
) ||
2484 !(manc
& E1000_MANC_EN_MAC_ADDR_FILTER
))
2487 if (hw
->mac
.arc_subsystem_valid
) {
2489 factps
= er32(FACTPS
);
2491 if (!(factps
& E1000_FACTPS_MNGCG
) &&
2492 ((fwsm
& E1000_FWSM_MODE_MASK
) ==
2493 (e1000_mng_mode_pt
<< E1000_FWSM_MODE_SHIFT
))) {
2498 if ((manc
& E1000_MANC_SMBUS_EN
) &&
2499 !(manc
& E1000_MANC_ASF_EN
)) {
2508 s32
e1000e_read_part_num(struct e1000_hw
*hw
, u32
*part_num
)
2513 ret_val
= e1000_read_nvm(hw
, NVM_PBA_OFFSET_0
, 1, &nvm_data
);
2515 hw_dbg(hw
, "NVM Read Error\n");
2518 *part_num
= (u32
)(nvm_data
<< 16);
2520 ret_val
= e1000_read_nvm(hw
, NVM_PBA_OFFSET_1
, 1, &nvm_data
);
2522 hw_dbg(hw
, "NVM Read Error\n");
2525 *part_num
|= nvm_data
;