1 /* Intel PRO/1000 Linux driver
2 * Copyright(c) 1999 - 2015 Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * The full GNU General Public License is included in this distribution in
14 * the file called "COPYING".
16 * Contact Information:
17 * Linux NICS <linux.nics@intel.com>
18 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
19 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
22 /* 80003ES2LAN Gigabit Ethernet Controller (Copper)
23 * 80003ES2LAN Gigabit Ethernet Controller (Serdes)
28 /* A table for the GG82563 cable length where the range is defined
29 * with a lower bound at "index" and the upper bound at
32 static const u16 e1000_gg82563_cable_length_table
[] = {
33 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF
36 #define GG82563_CABLE_LENGTH_TABLE_SIZE \
37 ARRAY_SIZE(e1000_gg82563_cable_length_table)
39 static s32
e1000_setup_copper_link_80003es2lan(struct e1000_hw
*hw
);
40 static s32
e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
);
41 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
);
42 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw
*hw
);
43 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw
*hw
);
44 static s32
e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw
*hw
);
45 static s32
e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw
*hw
, u16 duplex
);
46 static s32
e1000_read_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
48 static s32
e1000_write_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
50 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw
*hw
);
53 * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs.
54 * @hw: pointer to the HW structure
56 static s32
e1000_init_phy_params_80003es2lan(struct e1000_hw
*hw
)
58 struct e1000_phy_info
*phy
= &hw
->phy
;
61 if (hw
->phy
.media_type
!= e1000_media_type_copper
) {
62 phy
->type
= e1000_phy_none
;
65 phy
->ops
.power_up
= e1000_power_up_phy_copper
;
66 phy
->ops
.power_down
= e1000_power_down_phy_copper_80003es2lan
;
70 phy
->autoneg_mask
= AUTONEG_ADVERTISE_SPEED_DEFAULT
;
71 phy
->reset_delay_us
= 100;
72 phy
->type
= e1000_phy_gg82563
;
74 /* This can only be done after all function pointers are setup. */
75 ret_val
= e1000e_get_phy_id(hw
);
78 if (phy
->id
!= GG82563_E_PHY_ID
)
79 return -E1000_ERR_PHY
;
85 * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs.
86 * @hw: pointer to the HW structure
88 static s32
e1000_init_nvm_params_80003es2lan(struct e1000_hw
*hw
)
90 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
91 u32 eecd
= er32(EECD
);
96 switch (nvm
->override
) {
97 case e1000_nvm_override_spi_large
:
99 nvm
->address_bits
= 16;
101 case e1000_nvm_override_spi_small
:
103 nvm
->address_bits
= 8;
106 nvm
->page_size
= eecd
& E1000_EECD_ADDR_BITS
? 32 : 8;
107 nvm
->address_bits
= eecd
& E1000_EECD_ADDR_BITS
? 16 : 8;
111 nvm
->type
= e1000_nvm_eeprom_spi
;
113 size
= (u16
)((eecd
& E1000_EECD_SIZE_EX_MASK
) >>
114 E1000_EECD_SIZE_EX_SHIFT
);
116 /* Added to a constant, "size" becomes the left-shift value
117 * for setting word_size.
119 size
+= NVM_WORD_SIZE_BASE_SHIFT
;
121 /* EEPROM access above 16k is unsupported */
124 nvm
->word_size
= BIT(size
);
130 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
131 * @hw: pointer to the HW structure
133 static s32
e1000_init_mac_params_80003es2lan(struct e1000_hw
*hw
)
135 struct e1000_mac_info
*mac
= &hw
->mac
;
137 /* Set media type and media-dependent function pointers */
138 switch (hw
->adapter
->pdev
->device
) {
139 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT
:
140 hw
->phy
.media_type
= e1000_media_type_internal_serdes
;
141 mac
->ops
.check_for_link
= e1000e_check_for_serdes_link
;
142 mac
->ops
.setup_physical_interface
=
143 e1000e_setup_fiber_serdes_link
;
146 hw
->phy
.media_type
= e1000_media_type_copper
;
147 mac
->ops
.check_for_link
= e1000e_check_for_copper_link
;
148 mac
->ops
.setup_physical_interface
=
149 e1000_setup_copper_link_80003es2lan
;
153 /* Set mta register count */
154 mac
->mta_reg_count
= 128;
155 /* Set rar entry count */
156 mac
->rar_entry_count
= E1000_RAR_ENTRIES
;
158 mac
->has_fwsm
= true;
159 /* ARC supported; valid only if manageability features are enabled. */
160 mac
->arc_subsystem_valid
= !!(er32(FWSM
) & E1000_FWSM_MODE_MASK
);
161 /* Adaptive IFS not supported */
162 mac
->adaptive_ifs
= false;
164 /* set lan id for port to determine which phy lock to use */
165 hw
->mac
.ops
.set_lan_id(hw
);
170 static s32
e1000_get_variants_80003es2lan(struct e1000_adapter
*adapter
)
172 struct e1000_hw
*hw
= &adapter
->hw
;
175 rc
= e1000_init_mac_params_80003es2lan(hw
);
179 rc
= e1000_init_nvm_params_80003es2lan(hw
);
183 rc
= e1000_init_phy_params_80003es2lan(hw
);
191 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
192 * @hw: pointer to the HW structure
194 * A wrapper to acquire access rights to the correct PHY.
196 static s32
e1000_acquire_phy_80003es2lan(struct e1000_hw
*hw
)
200 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
201 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
205 * e1000_release_phy_80003es2lan - Release rights to access PHY
206 * @hw: pointer to the HW structure
208 * A wrapper to release access rights to the correct PHY.
210 static void e1000_release_phy_80003es2lan(struct e1000_hw
*hw
)
214 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
215 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
219 * e1000_acquire_mac_csr_80003es2lan - Acquire right to access Kumeran register
220 * @hw: pointer to the HW structure
222 * Acquire the semaphore to access the Kumeran interface.
225 static s32
e1000_acquire_mac_csr_80003es2lan(struct e1000_hw
*hw
)
229 mask
= E1000_SWFW_CSR_SM
;
231 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
235 * e1000_release_mac_csr_80003es2lan - Release right to access Kumeran Register
236 * @hw: pointer to the HW structure
238 * Release the semaphore used to access the Kumeran interface
240 static void e1000_release_mac_csr_80003es2lan(struct e1000_hw
*hw
)
244 mask
= E1000_SWFW_CSR_SM
;
246 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
250 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
251 * @hw: pointer to the HW structure
253 * Acquire the semaphore to access the EEPROM.
255 static s32
e1000_acquire_nvm_80003es2lan(struct e1000_hw
*hw
)
259 ret_val
= e1000_acquire_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
263 ret_val
= e1000e_acquire_nvm(hw
);
266 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
272 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
273 * @hw: pointer to the HW structure
275 * Release the semaphore used to access the EEPROM.
277 static void e1000_release_nvm_80003es2lan(struct e1000_hw
*hw
)
279 e1000e_release_nvm(hw
);
280 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
284 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
285 * @hw: pointer to the HW structure
286 * @mask: specifies which semaphore to acquire
288 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
289 * will also specify which port we're acquiring the lock for.
291 static s32
e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
295 u32 fwmask
= mask
<< 16;
299 while (i
< timeout
) {
300 if (e1000e_get_hw_semaphore(hw
))
301 return -E1000_ERR_SWFW_SYNC
;
303 swfw_sync
= er32(SW_FW_SYNC
);
304 if (!(swfw_sync
& (fwmask
| swmask
)))
307 /* Firmware currently using resource (fwmask)
308 * or other software thread using resource (swmask)
310 e1000e_put_hw_semaphore(hw
);
316 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
317 return -E1000_ERR_SWFW_SYNC
;
321 ew32(SW_FW_SYNC
, swfw_sync
);
323 e1000e_put_hw_semaphore(hw
);
329 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
330 * @hw: pointer to the HW structure
331 * @mask: specifies which semaphore to acquire
333 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
334 * will also specify which port we're releasing the lock for.
336 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
340 while (e1000e_get_hw_semaphore(hw
) != 0)
343 swfw_sync
= er32(SW_FW_SYNC
);
345 ew32(SW_FW_SYNC
, swfw_sync
);
347 e1000e_put_hw_semaphore(hw
);
351 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
352 * @hw: pointer to the HW structure
353 * @offset: offset of the register to read
354 * @data: pointer to the data returned from the operation
356 * Read the GG82563 PHY register.
358 static s32
e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
359 u32 offset
, u16
*data
)
365 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
369 /* Select Configuration Page */
370 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
371 page_select
= GG82563_PHY_PAGE_SELECT
;
373 /* Use Alternative Page Select register to access
374 * registers 30 and 31
376 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
379 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
380 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
382 e1000_release_phy_80003es2lan(hw
);
386 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
) {
387 /* The "ready" bit in the MDIC register may be incorrectly set
388 * before the device has completed the "Page Select" MDI
389 * transaction. So we wait 200us after each MDI command...
391 usleep_range(200, 400);
393 /* ...and verify the command was successful. */
394 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
396 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
397 e1000_release_phy_80003es2lan(hw
);
398 return -E1000_ERR_PHY
;
401 usleep_range(200, 400);
403 ret_val
= e1000e_read_phy_reg_mdic(hw
,
404 MAX_PHY_REG_ADDRESS
& offset
,
407 usleep_range(200, 400);
409 ret_val
= e1000e_read_phy_reg_mdic(hw
,
410 MAX_PHY_REG_ADDRESS
& offset
,
414 e1000_release_phy_80003es2lan(hw
);
420 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
421 * @hw: pointer to the HW structure
422 * @offset: offset of the register to read
423 * @data: value to write to the register
425 * Write to the GG82563 PHY register.
427 static s32
e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
428 u32 offset
, u16 data
)
434 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
438 /* Select Configuration Page */
439 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
440 page_select
= GG82563_PHY_PAGE_SELECT
;
442 /* Use Alternative Page Select register to access
443 * registers 30 and 31
445 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
448 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
449 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
451 e1000_release_phy_80003es2lan(hw
);
455 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
) {
456 /* The "ready" bit in the MDIC register may be incorrectly set
457 * before the device has completed the "Page Select" MDI
458 * transaction. So we wait 200us after each MDI command...
460 usleep_range(200, 400);
462 /* ...and verify the command was successful. */
463 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
465 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
466 e1000_release_phy_80003es2lan(hw
);
467 return -E1000_ERR_PHY
;
470 usleep_range(200, 400);
472 ret_val
= e1000e_write_phy_reg_mdic(hw
,
473 MAX_PHY_REG_ADDRESS
&
476 usleep_range(200, 400);
478 ret_val
= e1000e_write_phy_reg_mdic(hw
,
479 MAX_PHY_REG_ADDRESS
&
483 e1000_release_phy_80003es2lan(hw
);
489 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
490 * @hw: pointer to the HW structure
491 * @offset: offset of the register to read
492 * @words: number of words to write
493 * @data: buffer of data to write to the NVM
495 * Write "words" of data to the ESB2 NVM.
497 static s32
e1000_write_nvm_80003es2lan(struct e1000_hw
*hw
, u16 offset
,
498 u16 words
, u16
*data
)
500 return e1000e_write_nvm_spi(hw
, offset
, words
, data
);
504 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
505 * @hw: pointer to the HW structure
507 * Wait a specific amount of time for manageability processes to complete.
508 * This is a function pointer entry point called by the phy module.
510 static s32
e1000_get_cfg_done_80003es2lan(struct e1000_hw
*hw
)
512 s32 timeout
= PHY_CFG_TIMEOUT
;
513 u32 mask
= E1000_NVM_CFG_DONE_PORT_0
;
515 if (hw
->bus
.func
== 1)
516 mask
= E1000_NVM_CFG_DONE_PORT_1
;
519 if (er32(EEMNGCTL
) & mask
)
521 usleep_range(1000, 2000);
525 e_dbg("MNG configuration cycle has not completed.\n");
526 return -E1000_ERR_RESET
;
533 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
534 * @hw: pointer to the HW structure
536 * Force the speed and duplex settings onto the PHY. This is a
537 * function pointer entry point called by the phy module.
539 static s32
e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw
*hw
)
545 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
546 * forced whenever speed and duplex are forced.
548 ret_val
= e1e_rphy(hw
, M88E1000_PHY_SPEC_CTRL
, &phy_data
);
552 phy_data
&= ~GG82563_PSCR_CROSSOVER_MODE_AUTO
;
553 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, phy_data
);
557 e_dbg("GG82563 PSCR: %X\n", phy_data
);
559 ret_val
= e1e_rphy(hw
, MII_BMCR
, &phy_data
);
563 e1000e_phy_force_speed_duplex_setup(hw
, &phy_data
);
565 /* Reset the phy to commit changes. */
566 phy_data
|= BMCR_RESET
;
568 ret_val
= e1e_wphy(hw
, MII_BMCR
, phy_data
);
574 if (hw
->phy
.autoneg_wait_to_complete
) {
575 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
577 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
583 /* We didn't get link.
584 * Reset the DSP and cross our fingers.
586 ret_val
= e1000e_phy_reset_dsp(hw
);
592 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
598 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &phy_data
);
602 /* Resetting the phy means we need to verify the TX_CLK corresponds
603 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
605 phy_data
&= ~GG82563_MSCR_TX_CLK_MASK
;
606 if (hw
->mac
.forced_speed_duplex
& E1000_ALL_10_SPEED
)
607 phy_data
|= GG82563_MSCR_TX_CLK_10MBPS_2_5
;
609 phy_data
|= GG82563_MSCR_TX_CLK_100MBPS_25
;
611 /* In addition, we must re-enable CRS on Tx for both half and full
614 phy_data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
615 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, phy_data
);
621 * e1000_get_cable_length_80003es2lan - Set approximate cable length
622 * @hw: pointer to the HW structure
624 * Find the approximate cable length as measured by the GG82563 PHY.
625 * This is a function pointer entry point called by the phy module.
627 static s32
e1000_get_cable_length_80003es2lan(struct e1000_hw
*hw
)
629 struct e1000_phy_info
*phy
= &hw
->phy
;
633 ret_val
= e1e_rphy(hw
, GG82563_PHY_DSP_DISTANCE
, &phy_data
);
637 index
= phy_data
& GG82563_DSPD_CABLE_LENGTH
;
639 if (index
>= GG82563_CABLE_LENGTH_TABLE_SIZE
- 5)
640 return -E1000_ERR_PHY
;
642 phy
->min_cable_length
= e1000_gg82563_cable_length_table
[index
];
643 phy
->max_cable_length
= e1000_gg82563_cable_length_table
[index
+ 5];
645 phy
->cable_length
= (phy
->min_cable_length
+ phy
->max_cable_length
) / 2;
651 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
652 * @hw: pointer to the HW structure
653 * @speed: pointer to speed buffer
654 * @duplex: pointer to duplex buffer
656 * Retrieve the current speed and duplex configuration.
658 static s32
e1000_get_link_up_info_80003es2lan(struct e1000_hw
*hw
, u16
*speed
,
663 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
664 ret_val
= e1000e_get_speed_and_duplex_copper(hw
, speed
, duplex
);
665 hw
->phy
.ops
.cfg_on_link_up(hw
);
667 ret_val
= e1000e_get_speed_and_duplex_fiber_serdes(hw
,
676 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
677 * @hw: pointer to the HW structure
679 * Perform a global reset to the ESB2 controller.
681 static s32
e1000_reset_hw_80003es2lan(struct e1000_hw
*hw
)
687 /* Prevent the PCI-E bus from sticking if there is no TLP connection
688 * on the last TLP read/write transaction when MAC is reset.
690 ret_val
= e1000e_disable_pcie_master(hw
);
692 e_dbg("PCI-E Master disable polling has failed.\n");
694 e_dbg("Masking off all interrupts\n");
695 ew32(IMC
, 0xffffffff);
698 ew32(TCTL
, E1000_TCTL_PSP
);
701 usleep_range(10000, 20000);
705 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
709 e_dbg("Issuing a global reset to MAC\n");
710 ew32(CTRL
, ctrl
| E1000_CTRL_RST
);
711 e1000_release_phy_80003es2lan(hw
);
713 /* Disable IBIST slave mode (far-end loopback) */
715 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
719 kum_reg_data
|= E1000_KMRNCTRLSTA_IBIST_DISABLE
;
720 e1000_write_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
723 ret_val
= e1000e_get_auto_rd_done(hw
);
725 /* We don't want to continue accessing MAC registers. */
728 /* Clear any pending interrupt events. */
729 ew32(IMC
, 0xffffffff);
732 return e1000_check_alt_mac_addr_generic(hw
);
736 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
737 * @hw: pointer to the HW structure
739 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
741 static s32
e1000_init_hw_80003es2lan(struct e1000_hw
*hw
)
743 struct e1000_mac_info
*mac
= &hw
->mac
;
749 e1000_initialize_hw_bits_80003es2lan(hw
);
751 /* Initialize identification LED */
752 ret_val
= mac
->ops
.id_led_init(hw
);
753 /* An error is not fatal and we should not stop init due to this */
755 e_dbg("Error initializing identification LED\n");
757 /* Disabling VLAN filtering */
758 e_dbg("Initializing the IEEE VLAN\n");
759 mac
->ops
.clear_vfta(hw
);
761 /* Setup the receive address. */
762 e1000e_init_rx_addrs(hw
, mac
->rar_entry_count
);
764 /* Zero out the Multicast HASH table */
765 e_dbg("Zeroing the MTA\n");
766 for (i
= 0; i
< mac
->mta_reg_count
; i
++)
767 E1000_WRITE_REG_ARRAY(hw
, E1000_MTA
, i
, 0);
769 /* Setup link and flow control */
770 ret_val
= mac
->ops
.setup_link(hw
);
774 /* Disable IBIST slave mode (far-end loopback) */
775 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
777 kum_reg_data
|= E1000_KMRNCTRLSTA_IBIST_DISABLE
;
778 e1000_write_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
781 /* Set the transmit descriptor write-back policy */
782 reg_data
= er32(TXDCTL(0));
783 reg_data
= ((reg_data
& ~E1000_TXDCTL_WTHRESH
) |
784 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
);
785 ew32(TXDCTL(0), reg_data
);
787 /* ...for both queues. */
788 reg_data
= er32(TXDCTL(1));
789 reg_data
= ((reg_data
& ~E1000_TXDCTL_WTHRESH
) |
790 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
);
791 ew32(TXDCTL(1), reg_data
);
793 /* Enable retransmit on late collisions */
794 reg_data
= er32(TCTL
);
795 reg_data
|= E1000_TCTL_RTLC
;
796 ew32(TCTL
, reg_data
);
798 /* Configure Gigabit Carry Extend Padding */
799 reg_data
= er32(TCTL_EXT
);
800 reg_data
&= ~E1000_TCTL_EXT_GCEX_MASK
;
801 reg_data
|= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN
;
802 ew32(TCTL_EXT
, reg_data
);
804 /* Configure Transmit Inter-Packet Gap */
805 reg_data
= er32(TIPG
);
806 reg_data
&= ~E1000_TIPG_IPGT_MASK
;
807 reg_data
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
808 ew32(TIPG
, reg_data
);
810 reg_data
= E1000_READ_REG_ARRAY(hw
, E1000_FFLT
, 0x0001);
811 reg_data
&= ~0x00100000;
812 E1000_WRITE_REG_ARRAY(hw
, E1000_FFLT
, 0x0001, reg_data
);
814 /* default to true to enable the MDIC W/A */
815 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= true;
818 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_OFFSET
>>
819 E1000_KMRNCTRLSTA_OFFSET_SHIFT
, &i
);
821 if ((i
& E1000_KMRNCTRLSTA_OPMODE_MASK
) ==
822 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO
)
823 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= false;
826 /* Clear all of the statistics registers (clear on read). It is
827 * important that we do this after we have tried to establish link
828 * because the symbol error count will increment wildly if there
831 e1000_clear_hw_cntrs_80003es2lan(hw
);
837 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
838 * @hw: pointer to the HW structure
840 * Initializes required hardware-dependent bits needed for normal operation.
842 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw
*hw
)
846 /* Transmit Descriptor Control 0 */
847 reg
= er32(TXDCTL(0));
849 ew32(TXDCTL(0), reg
);
851 /* Transmit Descriptor Control 1 */
852 reg
= er32(TXDCTL(1));
854 ew32(TXDCTL(1), reg
);
856 /* Transmit Arbitration Control 0 */
858 reg
&= ~(0xF << 27); /* 30:27 */
859 if (hw
->phy
.media_type
!= e1000_media_type_copper
)
863 /* Transmit Arbitration Control 1 */
865 if (er32(TCTL
) & E1000_TCTL_MULR
)
871 /* Disable IPv6 extension header parsing because some malformed
872 * IPv6 headers can hang the Rx.
875 reg
|= (E1000_RFCTL_IPV6_EX_DIS
| E1000_RFCTL_NEW_IPV6_EXT_DIS
);
880 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
881 * @hw: pointer to the HW structure
883 * Setup some GG82563 PHY registers for obtaining link
885 static s32
e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw
*hw
)
887 struct e1000_phy_info
*phy
= &hw
->phy
;
892 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &data
);
896 data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
897 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
898 data
|= GG82563_MSCR_TX_CLK_1000MBPS_25
;
900 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, data
);
905 * MDI/MDI-X = 0 (default)
906 * 0 - Auto for all speeds
909 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
911 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL
, &data
);
915 data
&= ~GG82563_PSCR_CROSSOVER_MODE_MASK
;
919 data
|= GG82563_PSCR_CROSSOVER_MODE_MDI
;
922 data
|= GG82563_PSCR_CROSSOVER_MODE_MDIX
;
926 data
|= GG82563_PSCR_CROSSOVER_MODE_AUTO
;
931 * disable_polarity_correction = 0 (default)
932 * Automatic Correction for Reversed Cable Polarity
936 data
&= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
937 if (phy
->disable_polarity_correction
)
938 data
|= GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
940 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, data
);
944 /* SW Reset the PHY so all changes take effect */
945 ret_val
= hw
->phy
.ops
.commit(hw
);
947 e_dbg("Error Resetting the PHY\n");
951 /* Bypass Rx and Tx FIFO's */
952 reg
= E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL
;
953 data
= (E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS
|
954 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS
);
955 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, reg
, data
);
959 reg
= E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE
;
960 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
, reg
, &data
);
963 data
|= E1000_KMRNCTRLSTA_OPMODE_E_IDLE
;
964 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, reg
, data
);
968 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL_2
, &data
);
972 data
&= ~GG82563_PSCR2_REVERSE_AUTO_NEG
;
973 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL_2
, data
);
977 reg
= er32(CTRL_EXT
);
978 reg
&= ~E1000_CTRL_EXT_LINK_MODE_MASK
;
981 ret_val
= e1e_rphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, &data
);
985 /* Do not init these registers when the HW is in IAMT mode, since the
986 * firmware will have already initialized them. We only initialize
987 * them if the HW is not in IAMT mode.
989 if (!hw
->mac
.ops
.check_mng_mode(hw
)) {
990 /* Enable Electrical Idle on the PHY */
991 data
|= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE
;
992 ret_val
= e1e_wphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, data
);
996 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, &data
);
1000 data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1001 ret_val
= e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, data
);
1006 /* Workaround: Disable padding in Kumeran interface in the MAC
1007 * and in the PHY to avoid CRC errors.
1009 ret_val
= e1e_rphy(hw
, GG82563_PHY_INBAND_CTRL
, &data
);
1013 data
|= GG82563_ICR_DIS_PADDING
;
1014 ret_val
= e1e_wphy(hw
, GG82563_PHY_INBAND_CTRL
, data
);
1022 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1023 * @hw: pointer to the HW structure
1025 * Essentially a wrapper for setting up all things "copper" related.
1026 * This is a function pointer entry point called by the mac module.
1028 static s32
e1000_setup_copper_link_80003es2lan(struct e1000_hw
*hw
)
1035 ctrl
|= E1000_CTRL_SLU
;
1036 ctrl
&= ~(E1000_CTRL_FRCSPD
| E1000_CTRL_FRCDPX
);
1039 /* Set the mac to wait the maximum time between each
1040 * iteration and increase the max iterations when
1041 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1043 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 4),
1047 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 9),
1052 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 9),
1057 e1000_read_kmrn_reg_80003es2lan(hw
,
1058 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1062 reg_data
|= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING
;
1064 e1000_write_kmrn_reg_80003es2lan(hw
,
1065 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1070 ret_val
= e1000_copper_link_setup_gg82563_80003es2lan(hw
);
1074 return e1000e_setup_copper_link(hw
);
1078 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1079 * @hw: pointer to the HW structure
1080 * @duplex: current duplex setting
1082 * Configure the KMRN interface by applying last minute quirks for
1085 static s32
e1000_cfg_on_link_up_80003es2lan(struct e1000_hw
*hw
)
1091 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
1092 ret_val
= e1000e_get_speed_and_duplex_copper(hw
, &speed
,
1097 if (speed
== SPEED_1000
)
1098 ret_val
= e1000_cfg_kmrn_1000_80003es2lan(hw
);
1100 ret_val
= e1000_cfg_kmrn_10_100_80003es2lan(hw
, duplex
);
1107 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1108 * @hw: pointer to the HW structure
1109 * @duplex: current duplex setting
1111 * Configure the KMRN interface by applying last minute quirks for
1114 static s32
e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw
*hw
, u16 duplex
)
1119 u16 reg_data
, reg_data2
;
1121 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT
;
1123 e1000_write_kmrn_reg_80003es2lan(hw
,
1124 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1129 /* Configure Transmit Inter-Packet Gap */
1131 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1132 tipg
|= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN
;
1136 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1140 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1144 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1146 if (duplex
== HALF_DUPLEX
)
1147 reg_data
|= GG82563_KMCR_PASS_FALSE_CARRIER
;
1149 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1151 return e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1155 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1156 * @hw: pointer to the HW structure
1158 * Configure the KMRN interface by applying last minute quirks for
1159 * gigabit operation.
1161 static s32
e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw
*hw
)
1164 u16 reg_data
, reg_data2
;
1168 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT
;
1170 e1000_write_kmrn_reg_80003es2lan(hw
,
1171 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1176 /* Configure Transmit Inter-Packet Gap */
1178 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1179 tipg
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
1183 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1187 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1191 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1193 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1195 return e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1199 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1200 * @hw: pointer to the HW structure
1201 * @offset: register offset to be read
1202 * @data: pointer to the read data
1204 * Acquire semaphore, then read the PHY register at offset
1205 * using the kumeran interface. The information retrieved is stored in data.
1206 * Release the semaphore before exiting.
1208 static s32
e1000_read_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1214 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1218 kmrnctrlsta
= ((offset
<< E1000_KMRNCTRLSTA_OFFSET_SHIFT
) &
1219 E1000_KMRNCTRLSTA_OFFSET
) | E1000_KMRNCTRLSTA_REN
;
1220 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1225 kmrnctrlsta
= er32(KMRNCTRLSTA
);
1226 *data
= (u16
)kmrnctrlsta
;
1228 e1000_release_mac_csr_80003es2lan(hw
);
1234 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1235 * @hw: pointer to the HW structure
1236 * @offset: register offset to write to
1237 * @data: data to write at register offset
1239 * Acquire semaphore, then write the data to PHY register
1240 * at the offset using the kumeran interface. Release semaphore
1243 static s32
e1000_write_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1249 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1253 kmrnctrlsta
= ((offset
<< E1000_KMRNCTRLSTA_OFFSET_SHIFT
) &
1254 E1000_KMRNCTRLSTA_OFFSET
) | data
;
1255 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1260 e1000_release_mac_csr_80003es2lan(hw
);
1266 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1267 * @hw: pointer to the HW structure
1269 static s32
e1000_read_mac_addr_80003es2lan(struct e1000_hw
*hw
)
1273 /* If there's an alternate MAC address place it in RAR0
1274 * so that it will override the Si installed default perm
1277 ret_val
= e1000_check_alt_mac_addr_generic(hw
);
1281 return e1000_read_mac_addr_generic(hw
);
1285 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1286 * @hw: pointer to the HW structure
1288 * In the case of a PHY power down to save power, or to turn off link during a
1289 * driver unload, or wake on lan is not enabled, remove the link.
1291 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw
*hw
)
1293 /* If the management interface is not enabled, then power down */
1294 if (!(hw
->mac
.ops
.check_mng_mode(hw
) ||
1295 hw
->phy
.ops
.check_reset_block(hw
)))
1296 e1000_power_down_phy_copper(hw
);
1300 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1301 * @hw: pointer to the HW structure
1303 * Clears the hardware counters by reading the counter registers.
1305 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw
*hw
)
1307 e1000e_clear_hw_cntrs_base(hw
);
1345 static const struct e1000_mac_operations es2_mac_ops
= {
1346 .read_mac_addr
= e1000_read_mac_addr_80003es2lan
,
1347 .id_led_init
= e1000e_id_led_init_generic
,
1348 .blink_led
= e1000e_blink_led_generic
,
1349 .check_mng_mode
= e1000e_check_mng_mode_generic
,
1350 /* check_for_link dependent on media type */
1351 .cleanup_led
= e1000e_cleanup_led_generic
,
1352 .clear_hw_cntrs
= e1000_clear_hw_cntrs_80003es2lan
,
1353 .get_bus_info
= e1000e_get_bus_info_pcie
,
1354 .set_lan_id
= e1000_set_lan_id_multi_port_pcie
,
1355 .get_link_up_info
= e1000_get_link_up_info_80003es2lan
,
1356 .led_on
= e1000e_led_on_generic
,
1357 .led_off
= e1000e_led_off_generic
,
1358 .update_mc_addr_list
= e1000e_update_mc_addr_list_generic
,
1359 .write_vfta
= e1000_write_vfta_generic
,
1360 .clear_vfta
= e1000_clear_vfta_generic
,
1361 .reset_hw
= e1000_reset_hw_80003es2lan
,
1362 .init_hw
= e1000_init_hw_80003es2lan
,
1363 .setup_link
= e1000e_setup_link_generic
,
1364 /* setup_physical_interface dependent on media type */
1365 .setup_led
= e1000e_setup_led_generic
,
1366 .config_collision_dist
= e1000e_config_collision_dist_generic
,
1367 .rar_set
= e1000e_rar_set_generic
,
1368 .rar_get_count
= e1000e_rar_get_count_generic
,
1371 static const struct e1000_phy_operations es2_phy_ops
= {
1372 .acquire
= e1000_acquire_phy_80003es2lan
,
1373 .check_polarity
= e1000_check_polarity_m88
,
1374 .check_reset_block
= e1000e_check_reset_block_generic
,
1375 .commit
= e1000e_phy_sw_reset
,
1376 .force_speed_duplex
= e1000_phy_force_speed_duplex_80003es2lan
,
1377 .get_cfg_done
= e1000_get_cfg_done_80003es2lan
,
1378 .get_cable_length
= e1000_get_cable_length_80003es2lan
,
1379 .get_info
= e1000e_get_phy_info_m88
,
1380 .read_reg
= e1000_read_phy_reg_gg82563_80003es2lan
,
1381 .release
= e1000_release_phy_80003es2lan
,
1382 .reset
= e1000e_phy_hw_reset_generic
,
1383 .set_d0_lplu_state
= NULL
,
1384 .set_d3_lplu_state
= e1000e_set_d3_lplu_state
,
1385 .write_reg
= e1000_write_phy_reg_gg82563_80003es2lan
,
1386 .cfg_on_link_up
= e1000_cfg_on_link_up_80003es2lan
,
1389 static const struct e1000_nvm_operations es2_nvm_ops
= {
1390 .acquire
= e1000_acquire_nvm_80003es2lan
,
1391 .read
= e1000e_read_nvm_eerd
,
1392 .release
= e1000_release_nvm_80003es2lan
,
1393 .reload
= e1000e_reload_nvm_generic
,
1394 .update
= e1000e_update_nvm_checksum_generic
,
1395 .valid_led_default
= e1000e_valid_led_default
,
1396 .validate
= e1000e_validate_nvm_checksum_generic
,
1397 .write
= e1000_write_nvm_80003es2lan
,
1400 const struct e1000_info e1000_es2_info
= {
1401 .mac
= e1000_80003es2lan
,
1402 .flags
= FLAG_HAS_HW_VLAN_FILTER
1403 | FLAG_HAS_JUMBO_FRAMES
1405 | FLAG_APME_IN_CTRL3
1406 | FLAG_HAS_CTRLEXT_ON_LOAD
1407 | FLAG_RX_NEEDS_RESTART
/* errata */
1408 | FLAG_TARC_SET_BIT_ZERO
/* errata */
1409 | FLAG_APME_CHECK_PORT_B
1410 | FLAG_DISABLE_FC_PAUSE_TIME
, /* errata */
1411 .flags2
= FLAG2_DMA_BURST
,
1413 .max_hw_frame_size
= DEFAULT_JUMBO
,
1414 .get_variants
= e1000_get_variants_80003es2lan
,
1415 .mac_ops
= &es2_mac_ops
,
1416 .phy_ops
= &es2_phy_ops
,
1417 .nvm_ops
= &es2_nvm_ops
,