1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 1999 - 2018 Intel Corporation. */
4 /* 80003ES2LAN Gigabit Ethernet Controller (Copper)
5 * 80003ES2LAN Gigabit Ethernet Controller (Serdes)
10 /* A table for the GG82563 cable length where the range is defined
11 * with a lower bound at "index" and the upper bound at
14 static const u16 e1000_gg82563_cable_length_table
[] = {
15 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF
18 #define GG82563_CABLE_LENGTH_TABLE_SIZE \
19 ARRAY_SIZE(e1000_gg82563_cable_length_table)
21 static s32
e1000_setup_copper_link_80003es2lan(struct e1000_hw
*hw
);
22 static s32
e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
);
23 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
);
24 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw
*hw
);
25 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw
*hw
);
26 static s32
e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw
*hw
);
27 static s32
e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw
*hw
, u16 duplex
);
28 static s32
e1000_read_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
30 static s32
e1000_write_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
32 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw
*hw
);
35 * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs.
36 * @hw: pointer to the HW structure
38 static s32
e1000_init_phy_params_80003es2lan(struct e1000_hw
*hw
)
40 struct e1000_phy_info
*phy
= &hw
->phy
;
43 if (hw
->phy
.media_type
!= e1000_media_type_copper
) {
44 phy
->type
= e1000_phy_none
;
47 phy
->ops
.power_up
= e1000_power_up_phy_copper
;
48 phy
->ops
.power_down
= e1000_power_down_phy_copper_80003es2lan
;
52 phy
->autoneg_mask
= AUTONEG_ADVERTISE_SPEED_DEFAULT
;
53 phy
->reset_delay_us
= 100;
54 phy
->type
= e1000_phy_gg82563
;
56 /* This can only be done after all function pointers are setup. */
57 ret_val
= e1000e_get_phy_id(hw
);
60 if (phy
->id
!= GG82563_E_PHY_ID
)
61 return -E1000_ERR_PHY
;
67 * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs.
68 * @hw: pointer to the HW structure
70 static s32
e1000_init_nvm_params_80003es2lan(struct e1000_hw
*hw
)
72 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
73 u32 eecd
= er32(EECD
);
78 switch (nvm
->override
) {
79 case e1000_nvm_override_spi_large
:
81 nvm
->address_bits
= 16;
83 case e1000_nvm_override_spi_small
:
85 nvm
->address_bits
= 8;
88 nvm
->page_size
= eecd
& E1000_EECD_ADDR_BITS
? 32 : 8;
89 nvm
->address_bits
= eecd
& E1000_EECD_ADDR_BITS
? 16 : 8;
93 nvm
->type
= e1000_nvm_eeprom_spi
;
95 size
= (u16
)FIELD_GET(E1000_EECD_SIZE_EX_MASK
, eecd
);
97 /* Added to a constant, "size" becomes the left-shift value
98 * for setting word_size.
100 size
+= NVM_WORD_SIZE_BASE_SHIFT
;
102 /* EEPROM access above 16k is unsupported */
105 nvm
->word_size
= BIT(size
);
111 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
112 * @hw: pointer to the HW structure
114 static s32
e1000_init_mac_params_80003es2lan(struct e1000_hw
*hw
)
116 struct e1000_mac_info
*mac
= &hw
->mac
;
118 /* Set media type and media-dependent function pointers */
119 switch (hw
->adapter
->pdev
->device
) {
120 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT
:
121 hw
->phy
.media_type
= e1000_media_type_internal_serdes
;
122 mac
->ops
.check_for_link
= e1000e_check_for_serdes_link
;
123 mac
->ops
.setup_physical_interface
=
124 e1000e_setup_fiber_serdes_link
;
127 hw
->phy
.media_type
= e1000_media_type_copper
;
128 mac
->ops
.check_for_link
= e1000e_check_for_copper_link
;
129 mac
->ops
.setup_physical_interface
=
130 e1000_setup_copper_link_80003es2lan
;
134 /* Set mta register count */
135 mac
->mta_reg_count
= 128;
136 /* Set rar entry count */
137 mac
->rar_entry_count
= E1000_RAR_ENTRIES
;
139 mac
->has_fwsm
= true;
140 /* ARC supported; valid only if manageability features are enabled. */
141 mac
->arc_subsystem_valid
= !!(er32(FWSM
) & E1000_FWSM_MODE_MASK
);
142 /* Adaptive IFS not supported */
143 mac
->adaptive_ifs
= false;
145 /* set lan id for port to determine which phy lock to use */
146 hw
->mac
.ops
.set_lan_id(hw
);
151 static s32
e1000_get_variants_80003es2lan(struct e1000_adapter
*adapter
)
153 struct e1000_hw
*hw
= &adapter
->hw
;
156 rc
= e1000_init_mac_params_80003es2lan(hw
);
160 rc
= e1000_init_nvm_params_80003es2lan(hw
);
164 rc
= e1000_init_phy_params_80003es2lan(hw
);
172 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
173 * @hw: pointer to the HW structure
175 * A wrapper to acquire access rights to the correct PHY.
177 static s32
e1000_acquire_phy_80003es2lan(struct e1000_hw
*hw
)
181 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
182 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
186 * e1000_release_phy_80003es2lan - Release rights to access PHY
187 * @hw: pointer to the HW structure
189 * A wrapper to release access rights to the correct PHY.
191 static void e1000_release_phy_80003es2lan(struct e1000_hw
*hw
)
195 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
196 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
200 * e1000_acquire_mac_csr_80003es2lan - Acquire right to access Kumeran register
201 * @hw: pointer to the HW structure
203 * Acquire the semaphore to access the Kumeran interface.
206 static s32
e1000_acquire_mac_csr_80003es2lan(struct e1000_hw
*hw
)
210 mask
= E1000_SWFW_CSR_SM
;
212 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
216 * e1000_release_mac_csr_80003es2lan - Release right to access Kumeran Register
217 * @hw: pointer to the HW structure
219 * Release the semaphore used to access the Kumeran interface
221 static void e1000_release_mac_csr_80003es2lan(struct e1000_hw
*hw
)
225 mask
= E1000_SWFW_CSR_SM
;
227 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
231 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
232 * @hw: pointer to the HW structure
234 * Acquire the semaphore to access the EEPROM.
236 static s32
e1000_acquire_nvm_80003es2lan(struct e1000_hw
*hw
)
240 ret_val
= e1000_acquire_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
244 ret_val
= e1000e_acquire_nvm(hw
);
247 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
253 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
254 * @hw: pointer to the HW structure
256 * Release the semaphore used to access the EEPROM.
258 static void e1000_release_nvm_80003es2lan(struct e1000_hw
*hw
)
260 e1000e_release_nvm(hw
);
261 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
265 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
266 * @hw: pointer to the HW structure
267 * @mask: specifies which semaphore to acquire
269 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
270 * will also specify which port we're acquiring the lock for.
272 static s32
e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
276 u32 fwmask
= mask
<< 16;
280 while (i
< timeout
) {
281 if (e1000e_get_hw_semaphore(hw
))
282 return -E1000_ERR_SWFW_SYNC
;
284 swfw_sync
= er32(SW_FW_SYNC
);
285 if (!(swfw_sync
& (fwmask
| swmask
)))
288 /* Firmware currently using resource (fwmask)
289 * or other software thread using resource (swmask)
291 e1000e_put_hw_semaphore(hw
);
297 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
298 return -E1000_ERR_SWFW_SYNC
;
302 ew32(SW_FW_SYNC
, swfw_sync
);
304 e1000e_put_hw_semaphore(hw
);
310 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
311 * @hw: pointer to the HW structure
312 * @mask: specifies which semaphore to acquire
314 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
315 * will also specify which port we're releasing the lock for.
317 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
321 while (e1000e_get_hw_semaphore(hw
) != 0)
324 swfw_sync
= er32(SW_FW_SYNC
);
326 ew32(SW_FW_SYNC
, swfw_sync
);
328 e1000e_put_hw_semaphore(hw
);
332 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
333 * @hw: pointer to the HW structure
334 * @offset: offset of the register to read
335 * @data: pointer to the data returned from the operation
337 * Read the GG82563 PHY register.
339 static s32
e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
340 u32 offset
, u16
*data
)
346 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
350 /* Select Configuration Page */
351 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
352 page_select
= GG82563_PHY_PAGE_SELECT
;
354 /* Use Alternative Page Select register to access
355 * registers 30 and 31
357 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
360 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
361 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
363 e1000_release_phy_80003es2lan(hw
);
367 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
) {
368 /* The "ready" bit in the MDIC register may be incorrectly set
369 * before the device has completed the "Page Select" MDI
370 * transaction. So we wait 200us after each MDI command...
372 usleep_range(200, 400);
374 /* ...and verify the command was successful. */
375 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
377 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
378 e1000_release_phy_80003es2lan(hw
);
379 return -E1000_ERR_PHY
;
382 usleep_range(200, 400);
384 ret_val
= e1000e_read_phy_reg_mdic(hw
,
385 MAX_PHY_REG_ADDRESS
& offset
,
388 usleep_range(200, 400);
390 ret_val
= e1000e_read_phy_reg_mdic(hw
,
391 MAX_PHY_REG_ADDRESS
& offset
,
395 e1000_release_phy_80003es2lan(hw
);
401 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
402 * @hw: pointer to the HW structure
403 * @offset: offset of the register to read
404 * @data: value to write to the register
406 * Write to the GG82563 PHY register.
408 static s32
e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
409 u32 offset
, u16 data
)
415 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
419 /* Select Configuration Page */
420 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
421 page_select
= GG82563_PHY_PAGE_SELECT
;
423 /* Use Alternative Page Select register to access
424 * registers 30 and 31
426 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
429 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
430 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
432 e1000_release_phy_80003es2lan(hw
);
436 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
) {
437 /* The "ready" bit in the MDIC register may be incorrectly set
438 * before the device has completed the "Page Select" MDI
439 * transaction. So we wait 200us after each MDI command...
441 usleep_range(200, 400);
443 /* ...and verify the command was successful. */
444 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
446 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
447 e1000_release_phy_80003es2lan(hw
);
448 return -E1000_ERR_PHY
;
451 usleep_range(200, 400);
453 ret_val
= e1000e_write_phy_reg_mdic(hw
,
454 MAX_PHY_REG_ADDRESS
&
457 usleep_range(200, 400);
459 ret_val
= e1000e_write_phy_reg_mdic(hw
,
460 MAX_PHY_REG_ADDRESS
&
464 e1000_release_phy_80003es2lan(hw
);
470 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
471 * @hw: pointer to the HW structure
472 * @offset: offset of the register to read
473 * @words: number of words to write
474 * @data: buffer of data to write to the NVM
476 * Write "words" of data to the ESB2 NVM.
478 static s32
e1000_write_nvm_80003es2lan(struct e1000_hw
*hw
, u16 offset
,
479 u16 words
, u16
*data
)
481 return e1000e_write_nvm_spi(hw
, offset
, words
, data
);
485 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
486 * @hw: pointer to the HW structure
488 * Wait a specific amount of time for manageability processes to complete.
489 * This is a function pointer entry point called by the phy module.
491 static s32
e1000_get_cfg_done_80003es2lan(struct e1000_hw
*hw
)
493 s32 timeout
= PHY_CFG_TIMEOUT
;
494 u32 mask
= E1000_NVM_CFG_DONE_PORT_0
;
496 if (hw
->bus
.func
== 1)
497 mask
= E1000_NVM_CFG_DONE_PORT_1
;
500 if (er32(EEMNGCTL
) & mask
)
502 usleep_range(1000, 2000);
506 e_dbg("MNG configuration cycle has not completed.\n");
507 return -E1000_ERR_RESET
;
514 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
515 * @hw: pointer to the HW structure
517 * Force the speed and duplex settings onto the PHY. This is a
518 * function pointer entry point called by the phy module.
520 static s32
e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw
*hw
)
526 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
527 * forced whenever speed and duplex are forced.
529 ret_val
= e1e_rphy(hw
, M88E1000_PHY_SPEC_CTRL
, &phy_data
);
533 phy_data
&= ~GG82563_PSCR_CROSSOVER_MODE_AUTO
;
534 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, phy_data
);
538 e_dbg("GG82563 PSCR: %X\n", phy_data
);
540 ret_val
= e1e_rphy(hw
, MII_BMCR
, &phy_data
);
544 e1000e_phy_force_speed_duplex_setup(hw
, &phy_data
);
546 /* Reset the phy to commit changes. */
547 phy_data
|= BMCR_RESET
;
549 ret_val
= e1e_wphy(hw
, MII_BMCR
, phy_data
);
555 if (hw
->phy
.autoneg_wait_to_complete
) {
556 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
558 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
564 /* We didn't get link.
565 * Reset the DSP and cross our fingers.
567 ret_val
= e1000e_phy_reset_dsp(hw
);
573 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
579 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &phy_data
);
583 /* Resetting the phy means we need to verify the TX_CLK corresponds
584 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
586 phy_data
&= ~GG82563_MSCR_TX_CLK_MASK
;
587 if (hw
->mac
.forced_speed_duplex
& E1000_ALL_10_SPEED
)
588 phy_data
|= GG82563_MSCR_TX_CLK_10MBPS_2_5
;
590 phy_data
|= GG82563_MSCR_TX_CLK_100MBPS_25
;
592 /* In addition, we must re-enable CRS on Tx for both half and full
595 phy_data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
596 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, phy_data
);
602 * e1000_get_cable_length_80003es2lan - Set approximate cable length
603 * @hw: pointer to the HW structure
605 * Find the approximate cable length as measured by the GG82563 PHY.
606 * This is a function pointer entry point called by the phy module.
608 static s32
e1000_get_cable_length_80003es2lan(struct e1000_hw
*hw
)
610 struct e1000_phy_info
*phy
= &hw
->phy
;
614 ret_val
= e1e_rphy(hw
, GG82563_PHY_DSP_DISTANCE
, &phy_data
);
618 index
= phy_data
& GG82563_DSPD_CABLE_LENGTH
;
620 if (index
>= GG82563_CABLE_LENGTH_TABLE_SIZE
- 5)
621 return -E1000_ERR_PHY
;
623 phy
->min_cable_length
= e1000_gg82563_cable_length_table
[index
];
624 phy
->max_cable_length
= e1000_gg82563_cable_length_table
[index
+ 5];
626 phy
->cable_length
= (phy
->min_cable_length
+ phy
->max_cable_length
) / 2;
632 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
633 * @hw: pointer to the HW structure
634 * @speed: pointer to speed buffer
635 * @duplex: pointer to duplex buffer
637 * Retrieve the current speed and duplex configuration.
639 static s32
e1000_get_link_up_info_80003es2lan(struct e1000_hw
*hw
, u16
*speed
,
644 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
645 ret_val
= e1000e_get_speed_and_duplex_copper(hw
, speed
, duplex
);
646 hw
->phy
.ops
.cfg_on_link_up(hw
);
648 ret_val
= e1000e_get_speed_and_duplex_fiber_serdes(hw
,
657 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
658 * @hw: pointer to the HW structure
660 * Perform a global reset to the ESB2 controller.
662 static s32
e1000_reset_hw_80003es2lan(struct e1000_hw
*hw
)
668 /* Prevent the PCI-E bus from sticking if there is no TLP connection
669 * on the last TLP read/write transaction when MAC is reset.
671 ret_val
= e1000e_disable_pcie_master(hw
);
673 e_dbg("PCI-E Master disable polling has failed.\n");
675 e_dbg("Masking off all interrupts\n");
676 ew32(IMC
, 0xffffffff);
679 ew32(TCTL
, E1000_TCTL_PSP
);
682 usleep_range(10000, 11000);
686 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
690 e_dbg("Issuing a global reset to MAC\n");
691 ew32(CTRL
, ctrl
| E1000_CTRL_RST
);
692 e1000_release_phy_80003es2lan(hw
);
694 /* Disable IBIST slave mode (far-end loopback) */
696 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
699 kum_reg_data
|= E1000_KMRNCTRLSTA_IBIST_DISABLE
;
700 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
,
701 E1000_KMRNCTRLSTA_INBAND_PARAM
,
704 e_dbg("Error disabling far-end loopback\n");
706 e_dbg("Error disabling far-end loopback\n");
709 ret_val
= e1000e_get_auto_rd_done(hw
);
711 /* We don't want to continue accessing MAC registers. */
714 /* Clear any pending interrupt events. */
715 ew32(IMC
, 0xffffffff);
718 return e1000_check_alt_mac_addr_generic(hw
);
722 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
723 * @hw: pointer to the HW structure
725 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
727 static s32
e1000_init_hw_80003es2lan(struct e1000_hw
*hw
)
729 struct e1000_mac_info
*mac
= &hw
->mac
;
735 e1000_initialize_hw_bits_80003es2lan(hw
);
737 /* Initialize identification LED */
738 ret_val
= mac
->ops
.id_led_init(hw
);
739 /* An error is not fatal and we should not stop init due to this */
741 e_dbg("Error initializing identification LED\n");
743 /* Disabling VLAN filtering */
744 e_dbg("Initializing the IEEE VLAN\n");
745 mac
->ops
.clear_vfta(hw
);
747 /* Setup the receive address. */
748 e1000e_init_rx_addrs(hw
, mac
->rar_entry_count
);
750 /* Zero out the Multicast HASH table */
751 e_dbg("Zeroing the MTA\n");
752 for (i
= 0; i
< mac
->mta_reg_count
; i
++)
753 E1000_WRITE_REG_ARRAY(hw
, E1000_MTA
, i
, 0);
755 /* Setup link and flow control */
756 ret_val
= mac
->ops
.setup_link(hw
);
760 /* Disable IBIST slave mode (far-end loopback) */
762 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
765 kum_reg_data
|= E1000_KMRNCTRLSTA_IBIST_DISABLE
;
766 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
,
767 E1000_KMRNCTRLSTA_INBAND_PARAM
,
770 e_dbg("Error disabling far-end loopback\n");
772 e_dbg("Error disabling far-end loopback\n");
775 /* Set the transmit descriptor write-back policy */
776 reg_data
= er32(TXDCTL(0));
777 reg_data
= ((reg_data
& ~E1000_TXDCTL_WTHRESH
) |
778 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
);
779 ew32(TXDCTL(0), reg_data
);
781 /* ...for both queues. */
782 reg_data
= er32(TXDCTL(1));
783 reg_data
= ((reg_data
& ~E1000_TXDCTL_WTHRESH
) |
784 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
);
785 ew32(TXDCTL(1), reg_data
);
787 /* Enable retransmit on late collisions */
788 reg_data
= er32(TCTL
);
789 reg_data
|= E1000_TCTL_RTLC
;
790 ew32(TCTL
, reg_data
);
792 /* Configure Gigabit Carry Extend Padding */
793 reg_data
= er32(TCTL_EXT
);
794 reg_data
&= ~E1000_TCTL_EXT_GCEX_MASK
;
795 reg_data
|= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN
;
796 ew32(TCTL_EXT
, reg_data
);
798 /* Configure Transmit Inter-Packet Gap */
799 reg_data
= er32(TIPG
);
800 reg_data
&= ~E1000_TIPG_IPGT_MASK
;
801 reg_data
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
802 ew32(TIPG
, reg_data
);
804 reg_data
= E1000_READ_REG_ARRAY(hw
, E1000_FFLT
, 0x0001);
805 reg_data
&= ~0x00100000;
806 E1000_WRITE_REG_ARRAY(hw
, E1000_FFLT
, 0x0001, reg_data
);
808 /* default to true to enable the MDIC W/A */
809 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= true;
812 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_OFFSET
>>
813 E1000_KMRNCTRLSTA_OFFSET_SHIFT
, &i
);
815 if ((i
& E1000_KMRNCTRLSTA_OPMODE_MASK
) ==
816 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO
)
817 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= false;
820 /* Clear all of the statistics registers (clear on read). It is
821 * important that we do this after we have tried to establish link
822 * because the symbol error count will increment wildly if there
825 e1000_clear_hw_cntrs_80003es2lan(hw
);
831 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
832 * @hw: pointer to the HW structure
834 * Initializes required hardware-dependent bits needed for normal operation.
836 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw
*hw
)
840 /* Transmit Descriptor Control 0 */
841 reg
= er32(TXDCTL(0));
843 ew32(TXDCTL(0), reg
);
845 /* Transmit Descriptor Control 1 */
846 reg
= er32(TXDCTL(1));
848 ew32(TXDCTL(1), reg
);
850 /* Transmit Arbitration Control 0 */
852 reg
&= ~(0xF << 27); /* 30:27 */
853 if (hw
->phy
.media_type
!= e1000_media_type_copper
)
857 /* Transmit Arbitration Control 1 */
859 if (er32(TCTL
) & E1000_TCTL_MULR
)
865 /* Disable IPv6 extension header parsing because some malformed
866 * IPv6 headers can hang the Rx.
869 reg
|= (E1000_RFCTL_IPV6_EX_DIS
| E1000_RFCTL_NEW_IPV6_EXT_DIS
);
874 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
875 * @hw: pointer to the HW structure
877 * Setup some GG82563 PHY registers for obtaining link
879 static s32
e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw
*hw
)
881 struct e1000_phy_info
*phy
= &hw
->phy
;
886 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &data
);
890 data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
891 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
892 data
|= GG82563_MSCR_TX_CLK_1000MBPS_25
;
894 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, data
);
899 * MDI/MDI-X = 0 (default)
900 * 0 - Auto for all speeds
903 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
905 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL
, &data
);
909 data
&= ~GG82563_PSCR_CROSSOVER_MODE_MASK
;
913 data
|= GG82563_PSCR_CROSSOVER_MODE_MDI
;
916 data
|= GG82563_PSCR_CROSSOVER_MODE_MDIX
;
920 data
|= GG82563_PSCR_CROSSOVER_MODE_AUTO
;
925 * disable_polarity_correction = 0 (default)
926 * Automatic Correction for Reversed Cable Polarity
930 data
&= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
931 if (phy
->disable_polarity_correction
)
932 data
|= GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
934 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, data
);
938 /* SW Reset the PHY so all changes take effect */
939 ret_val
= hw
->phy
.ops
.commit(hw
);
941 e_dbg("Error Resetting the PHY\n");
945 /* Bypass Rx and Tx FIFO's */
946 reg
= E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL
;
947 data
= (E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS
|
948 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS
);
949 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, reg
, data
);
953 reg
= E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE
;
954 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
, reg
, &data
);
957 data
|= E1000_KMRNCTRLSTA_OPMODE_E_IDLE
;
958 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, reg
, data
);
962 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL_2
, &data
);
966 data
&= ~GG82563_PSCR2_REVERSE_AUTO_NEG
;
967 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL_2
, data
);
971 reg
= er32(CTRL_EXT
);
972 reg
&= ~E1000_CTRL_EXT_LINK_MODE_MASK
;
975 ret_val
= e1e_rphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, &data
);
979 /* Do not init these registers when the HW is in IAMT mode, since the
980 * firmware will have already initialized them. We only initialize
981 * them if the HW is not in IAMT mode.
983 if (!hw
->mac
.ops
.check_mng_mode(hw
)) {
984 /* Enable Electrical Idle on the PHY */
985 data
|= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE
;
986 ret_val
= e1e_wphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, data
);
990 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, &data
);
994 data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
995 ret_val
= e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, data
);
1000 /* Workaround: Disable padding in Kumeran interface in the MAC
1001 * and in the PHY to avoid CRC errors.
1003 ret_val
= e1e_rphy(hw
, GG82563_PHY_INBAND_CTRL
, &data
);
1007 data
|= GG82563_ICR_DIS_PADDING
;
1008 ret_val
= e1e_wphy(hw
, GG82563_PHY_INBAND_CTRL
, data
);
1016 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1017 * @hw: pointer to the HW structure
1019 * Essentially a wrapper for setting up all things "copper" related.
1020 * This is a function pointer entry point called by the mac module.
1022 static s32
e1000_setup_copper_link_80003es2lan(struct e1000_hw
*hw
)
1029 ctrl
|= E1000_CTRL_SLU
;
1030 ctrl
&= ~(E1000_CTRL_FRCSPD
| E1000_CTRL_FRCDPX
);
1033 /* Set the mac to wait the maximum time between each
1034 * iteration and increase the max iterations when
1035 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1037 /* these next three accesses were always meant to use page 0x34 using
1038 * GG82563_REG(0x34, N) but never did, so we've just corrected the call
1041 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, 4, 0xFFFF);
1044 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
, 9, ®_data
);
1048 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, 9, reg_data
);
1052 e1000_read_kmrn_reg_80003es2lan(hw
,
1053 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1057 reg_data
|= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING
;
1059 e1000_write_kmrn_reg_80003es2lan(hw
,
1060 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1065 ret_val
= e1000_copper_link_setup_gg82563_80003es2lan(hw
);
1069 return e1000e_setup_copper_link(hw
);
1073 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1074 * @hw: pointer to the HW structure
1076 * Configure the KMRN interface by applying last minute quirks for
1079 static s32
e1000_cfg_on_link_up_80003es2lan(struct e1000_hw
*hw
)
1085 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
1086 ret_val
= e1000e_get_speed_and_duplex_copper(hw
, &speed
,
1091 if (speed
== SPEED_1000
)
1092 ret_val
= e1000_cfg_kmrn_1000_80003es2lan(hw
);
1094 ret_val
= e1000_cfg_kmrn_10_100_80003es2lan(hw
, duplex
);
1101 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1102 * @hw: pointer to the HW structure
1103 * @duplex: current duplex setting
1105 * Configure the KMRN interface by applying last minute quirks for
1108 static s32
e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw
*hw
, u16 duplex
)
1113 u16 reg_data
, reg_data2
;
1115 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT
;
1117 e1000_write_kmrn_reg_80003es2lan(hw
,
1118 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1123 /* Configure Transmit Inter-Packet Gap */
1125 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1126 tipg
|= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN
;
1130 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1134 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1138 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1140 if (duplex
== HALF_DUPLEX
)
1141 reg_data
|= GG82563_KMCR_PASS_FALSE_CARRIER
;
1143 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1145 return e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1149 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1150 * @hw: pointer to the HW structure
1152 * Configure the KMRN interface by applying last minute quirks for
1153 * gigabit operation.
1155 static s32
e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw
*hw
)
1158 u16 reg_data
, reg_data2
;
1162 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT
;
1164 e1000_write_kmrn_reg_80003es2lan(hw
,
1165 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1170 /* Configure Transmit Inter-Packet Gap */
1172 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1173 tipg
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
1177 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1181 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1185 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1187 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1189 return e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1193 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1194 * @hw: pointer to the HW structure
1195 * @offset: register offset to be read
1196 * @data: pointer to the read data
1198 * Acquire semaphore, then read the PHY register at offset
1199 * using the kumeran interface. The information retrieved is stored in data.
1200 * Release the semaphore before exiting.
1202 static s32
e1000_read_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1208 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1212 kmrnctrlsta
= FIELD_PREP(E1000_KMRNCTRLSTA_OFFSET
, offset
) |
1213 E1000_KMRNCTRLSTA_REN
;
1214 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1219 kmrnctrlsta
= er32(KMRNCTRLSTA
);
1220 *data
= (u16
)kmrnctrlsta
;
1222 e1000_release_mac_csr_80003es2lan(hw
);
1228 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1229 * @hw: pointer to the HW structure
1230 * @offset: register offset to write to
1231 * @data: data to write at register offset
1233 * Acquire semaphore, then write the data to PHY register
1234 * at the offset using the kumeran interface. Release semaphore
1237 static s32
e1000_write_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1243 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1247 kmrnctrlsta
= FIELD_PREP(E1000_KMRNCTRLSTA_OFFSET
, offset
) | data
;
1248 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1253 e1000_release_mac_csr_80003es2lan(hw
);
1259 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1260 * @hw: pointer to the HW structure
1262 static s32
e1000_read_mac_addr_80003es2lan(struct e1000_hw
*hw
)
1266 /* If there's an alternate MAC address place it in RAR0
1267 * so that it will override the Si installed default perm
1270 ret_val
= e1000_check_alt_mac_addr_generic(hw
);
1274 return e1000_read_mac_addr_generic(hw
);
1278 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1279 * @hw: pointer to the HW structure
1281 * In the case of a PHY power down to save power, or to turn off link during a
1282 * driver unload, or wake on lan is not enabled, remove the link.
1284 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw
*hw
)
1286 /* If the management interface is not enabled, then power down */
1287 if (!(hw
->mac
.ops
.check_mng_mode(hw
) ||
1288 hw
->phy
.ops
.check_reset_block(hw
)))
1289 e1000_power_down_phy_copper(hw
);
1293 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1294 * @hw: pointer to the HW structure
1296 * Clears the hardware counters by reading the counter registers.
1298 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw
*hw
)
1300 e1000e_clear_hw_cntrs_base(hw
);
1338 static const struct e1000_mac_operations es2_mac_ops
= {
1339 .read_mac_addr
= e1000_read_mac_addr_80003es2lan
,
1340 .id_led_init
= e1000e_id_led_init_generic
,
1341 .blink_led
= e1000e_blink_led_generic
,
1342 .check_mng_mode
= e1000e_check_mng_mode_generic
,
1343 /* check_for_link dependent on media type */
1344 .cleanup_led
= e1000e_cleanup_led_generic
,
1345 .clear_hw_cntrs
= e1000_clear_hw_cntrs_80003es2lan
,
1346 .get_bus_info
= e1000e_get_bus_info_pcie
,
1347 .set_lan_id
= e1000_set_lan_id_multi_port_pcie
,
1348 .get_link_up_info
= e1000_get_link_up_info_80003es2lan
,
1349 .led_on
= e1000e_led_on_generic
,
1350 .led_off
= e1000e_led_off_generic
,
1351 .update_mc_addr_list
= e1000e_update_mc_addr_list_generic
,
1352 .write_vfta
= e1000_write_vfta_generic
,
1353 .clear_vfta
= e1000_clear_vfta_generic
,
1354 .reset_hw
= e1000_reset_hw_80003es2lan
,
1355 .init_hw
= e1000_init_hw_80003es2lan
,
1356 .setup_link
= e1000e_setup_link_generic
,
1357 /* setup_physical_interface dependent on media type */
1358 .setup_led
= e1000e_setup_led_generic
,
1359 .config_collision_dist
= e1000e_config_collision_dist_generic
,
1360 .rar_set
= e1000e_rar_set_generic
,
1361 .rar_get_count
= e1000e_rar_get_count_generic
,
1364 static const struct e1000_phy_operations es2_phy_ops
= {
1365 .acquire
= e1000_acquire_phy_80003es2lan
,
1366 .check_polarity
= e1000_check_polarity_m88
,
1367 .check_reset_block
= e1000e_check_reset_block_generic
,
1368 .commit
= e1000e_phy_sw_reset
,
1369 .force_speed_duplex
= e1000_phy_force_speed_duplex_80003es2lan
,
1370 .get_cfg_done
= e1000_get_cfg_done_80003es2lan
,
1371 .get_cable_length
= e1000_get_cable_length_80003es2lan
,
1372 .get_info
= e1000e_get_phy_info_m88
,
1373 .read_reg
= e1000_read_phy_reg_gg82563_80003es2lan
,
1374 .release
= e1000_release_phy_80003es2lan
,
1375 .reset
= e1000e_phy_hw_reset_generic
,
1376 .set_d0_lplu_state
= NULL
,
1377 .set_d3_lplu_state
= e1000e_set_d3_lplu_state
,
1378 .write_reg
= e1000_write_phy_reg_gg82563_80003es2lan
,
1379 .cfg_on_link_up
= e1000_cfg_on_link_up_80003es2lan
,
1382 static const struct e1000_nvm_operations es2_nvm_ops
= {
1383 .acquire
= e1000_acquire_nvm_80003es2lan
,
1384 .read
= e1000e_read_nvm_eerd
,
1385 .release
= e1000_release_nvm_80003es2lan
,
1386 .reload
= e1000e_reload_nvm_generic
,
1387 .update
= e1000e_update_nvm_checksum_generic
,
1388 .valid_led_default
= e1000e_valid_led_default
,
1389 .validate
= e1000e_validate_nvm_checksum_generic
,
1390 .write
= e1000_write_nvm_80003es2lan
,
1393 const struct e1000_info e1000_es2_info
= {
1394 .mac
= e1000_80003es2lan
,
1395 .flags
= FLAG_HAS_HW_VLAN_FILTER
1396 | FLAG_HAS_JUMBO_FRAMES
1398 | FLAG_APME_IN_CTRL3
1399 | FLAG_HAS_CTRLEXT_ON_LOAD
1400 | FLAG_RX_NEEDS_RESTART
/* errata */
1401 | FLAG_TARC_SET_BIT_ZERO
/* errata */
1402 | FLAG_APME_CHECK_PORT_B
1403 | FLAG_DISABLE_FC_PAUSE_TIME
, /* errata */
1404 .flags2
= FLAG2_DMA_BURST
,
1406 .max_hw_frame_size
= DEFAULT_JUMBO
,
1407 .get_variants
= e1000_get_variants_80003es2lan
,
1408 .mac_ops
= &es2_mac_ops
,
1409 .phy_ops
= &es2_phy_ops
,
1410 .nvm_ops
= &es2_nvm_ops
,