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
)((eecd
& E1000_EECD_SIZE_EX_MASK
) >>
96 E1000_EECD_SIZE_EX_SHIFT
);
98 /* Added to a constant, "size" becomes the left-shift value
99 * for setting word_size.
101 size
+= NVM_WORD_SIZE_BASE_SHIFT
;
103 /* EEPROM access above 16k is unsupported */
106 nvm
->word_size
= BIT(size
);
112 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
113 * @hw: pointer to the HW structure
115 static s32
e1000_init_mac_params_80003es2lan(struct e1000_hw
*hw
)
117 struct e1000_mac_info
*mac
= &hw
->mac
;
119 /* Set media type and media-dependent function pointers */
120 switch (hw
->adapter
->pdev
->device
) {
121 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT
:
122 hw
->phy
.media_type
= e1000_media_type_internal_serdes
;
123 mac
->ops
.check_for_link
= e1000e_check_for_serdes_link
;
124 mac
->ops
.setup_physical_interface
=
125 e1000e_setup_fiber_serdes_link
;
128 hw
->phy
.media_type
= e1000_media_type_copper
;
129 mac
->ops
.check_for_link
= e1000e_check_for_copper_link
;
130 mac
->ops
.setup_physical_interface
=
131 e1000_setup_copper_link_80003es2lan
;
135 /* Set mta register count */
136 mac
->mta_reg_count
= 128;
137 /* Set rar entry count */
138 mac
->rar_entry_count
= E1000_RAR_ENTRIES
;
140 mac
->has_fwsm
= true;
141 /* ARC supported; valid only if manageability features are enabled. */
142 mac
->arc_subsystem_valid
= !!(er32(FWSM
) & E1000_FWSM_MODE_MASK
);
143 /* Adaptive IFS not supported */
144 mac
->adaptive_ifs
= false;
146 /* set lan id for port to determine which phy lock to use */
147 hw
->mac
.ops
.set_lan_id(hw
);
152 static s32
e1000_get_variants_80003es2lan(struct e1000_adapter
*adapter
)
154 struct e1000_hw
*hw
= &adapter
->hw
;
157 rc
= e1000_init_mac_params_80003es2lan(hw
);
161 rc
= e1000_init_nvm_params_80003es2lan(hw
);
165 rc
= e1000_init_phy_params_80003es2lan(hw
);
173 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
174 * @hw: pointer to the HW structure
176 * A wrapper to acquire access rights to the correct PHY.
178 static s32
e1000_acquire_phy_80003es2lan(struct e1000_hw
*hw
)
182 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
183 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
187 * e1000_release_phy_80003es2lan - Release rights to access PHY
188 * @hw: pointer to the HW structure
190 * A wrapper to release access rights to the correct PHY.
192 static void e1000_release_phy_80003es2lan(struct e1000_hw
*hw
)
196 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
197 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
201 * e1000_acquire_mac_csr_80003es2lan - Acquire right to access Kumeran register
202 * @hw: pointer to the HW structure
204 * Acquire the semaphore to access the Kumeran interface.
207 static s32
e1000_acquire_mac_csr_80003es2lan(struct e1000_hw
*hw
)
211 mask
= E1000_SWFW_CSR_SM
;
213 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
217 * e1000_release_mac_csr_80003es2lan - Release right to access Kumeran Register
218 * @hw: pointer to the HW structure
220 * Release the semaphore used to access the Kumeran interface
222 static void e1000_release_mac_csr_80003es2lan(struct e1000_hw
*hw
)
226 mask
= E1000_SWFW_CSR_SM
;
228 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
232 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
233 * @hw: pointer to the HW structure
235 * Acquire the semaphore to access the EEPROM.
237 static s32
e1000_acquire_nvm_80003es2lan(struct e1000_hw
*hw
)
241 ret_val
= e1000_acquire_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
245 ret_val
= e1000e_acquire_nvm(hw
);
248 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
254 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
255 * @hw: pointer to the HW structure
257 * Release the semaphore used to access the EEPROM.
259 static void e1000_release_nvm_80003es2lan(struct e1000_hw
*hw
)
261 e1000e_release_nvm(hw
);
262 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
266 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
267 * @hw: pointer to the HW structure
268 * @mask: specifies which semaphore to acquire
270 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
271 * will also specify which port we're acquiring the lock for.
273 static s32
e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
277 u32 fwmask
= mask
<< 16;
281 while (i
< timeout
) {
282 if (e1000e_get_hw_semaphore(hw
))
283 return -E1000_ERR_SWFW_SYNC
;
285 swfw_sync
= er32(SW_FW_SYNC
);
286 if (!(swfw_sync
& (fwmask
| swmask
)))
289 /* Firmware currently using resource (fwmask)
290 * or other software thread using resource (swmask)
292 e1000e_put_hw_semaphore(hw
);
298 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
299 return -E1000_ERR_SWFW_SYNC
;
303 ew32(SW_FW_SYNC
, swfw_sync
);
305 e1000e_put_hw_semaphore(hw
);
311 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
312 * @hw: pointer to the HW structure
313 * @mask: specifies which semaphore to acquire
315 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
316 * will also specify which port we're releasing the lock for.
318 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
322 while (e1000e_get_hw_semaphore(hw
) != 0)
325 swfw_sync
= er32(SW_FW_SYNC
);
327 ew32(SW_FW_SYNC
, swfw_sync
);
329 e1000e_put_hw_semaphore(hw
);
333 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
334 * @hw: pointer to the HW structure
335 * @offset: offset of the register to read
336 * @data: pointer to the data returned from the operation
338 * Read the GG82563 PHY register.
340 static s32
e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
341 u32 offset
, u16
*data
)
347 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
351 /* Select Configuration Page */
352 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
353 page_select
= GG82563_PHY_PAGE_SELECT
;
355 /* Use Alternative Page Select register to access
356 * registers 30 and 31
358 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
361 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
362 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
364 e1000_release_phy_80003es2lan(hw
);
368 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
) {
369 /* The "ready" bit in the MDIC register may be incorrectly set
370 * before the device has completed the "Page Select" MDI
371 * transaction. So we wait 200us after each MDI command...
373 usleep_range(200, 400);
375 /* ...and verify the command was successful. */
376 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
378 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
379 e1000_release_phy_80003es2lan(hw
);
380 return -E1000_ERR_PHY
;
383 usleep_range(200, 400);
385 ret_val
= e1000e_read_phy_reg_mdic(hw
,
386 MAX_PHY_REG_ADDRESS
& offset
,
389 usleep_range(200, 400);
391 ret_val
= e1000e_read_phy_reg_mdic(hw
,
392 MAX_PHY_REG_ADDRESS
& offset
,
396 e1000_release_phy_80003es2lan(hw
);
402 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
403 * @hw: pointer to the HW structure
404 * @offset: offset of the register to read
405 * @data: value to write to the register
407 * Write to the GG82563 PHY register.
409 static s32
e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
410 u32 offset
, u16 data
)
416 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
420 /* Select Configuration Page */
421 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
422 page_select
= GG82563_PHY_PAGE_SELECT
;
424 /* Use Alternative Page Select register to access
425 * registers 30 and 31
427 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
430 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
431 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
433 e1000_release_phy_80003es2lan(hw
);
437 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
) {
438 /* The "ready" bit in the MDIC register may be incorrectly set
439 * before the device has completed the "Page Select" MDI
440 * transaction. So we wait 200us after each MDI command...
442 usleep_range(200, 400);
444 /* ...and verify the command was successful. */
445 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
447 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
448 e1000_release_phy_80003es2lan(hw
);
449 return -E1000_ERR_PHY
;
452 usleep_range(200, 400);
454 ret_val
= e1000e_write_phy_reg_mdic(hw
,
455 MAX_PHY_REG_ADDRESS
&
458 usleep_range(200, 400);
460 ret_val
= e1000e_write_phy_reg_mdic(hw
,
461 MAX_PHY_REG_ADDRESS
&
465 e1000_release_phy_80003es2lan(hw
);
471 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
472 * @hw: pointer to the HW structure
473 * @offset: offset of the register to read
474 * @words: number of words to write
475 * @data: buffer of data to write to the NVM
477 * Write "words" of data to the ESB2 NVM.
479 static s32
e1000_write_nvm_80003es2lan(struct e1000_hw
*hw
, u16 offset
,
480 u16 words
, u16
*data
)
482 return e1000e_write_nvm_spi(hw
, offset
, words
, data
);
486 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
487 * @hw: pointer to the HW structure
489 * Wait a specific amount of time for manageability processes to complete.
490 * This is a function pointer entry point called by the phy module.
492 static s32
e1000_get_cfg_done_80003es2lan(struct e1000_hw
*hw
)
494 s32 timeout
= PHY_CFG_TIMEOUT
;
495 u32 mask
= E1000_NVM_CFG_DONE_PORT_0
;
497 if (hw
->bus
.func
== 1)
498 mask
= E1000_NVM_CFG_DONE_PORT_1
;
501 if (er32(EEMNGCTL
) & mask
)
503 usleep_range(1000, 2000);
507 e_dbg("MNG configuration cycle has not completed.\n");
508 return -E1000_ERR_RESET
;
515 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
516 * @hw: pointer to the HW structure
518 * Force the speed and duplex settings onto the PHY. This is a
519 * function pointer entry point called by the phy module.
521 static s32
e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw
*hw
)
527 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
528 * forced whenever speed and duplex are forced.
530 ret_val
= e1e_rphy(hw
, M88E1000_PHY_SPEC_CTRL
, &phy_data
);
534 phy_data
&= ~GG82563_PSCR_CROSSOVER_MODE_AUTO
;
535 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, phy_data
);
539 e_dbg("GG82563 PSCR: %X\n", phy_data
);
541 ret_val
= e1e_rphy(hw
, MII_BMCR
, &phy_data
);
545 e1000e_phy_force_speed_duplex_setup(hw
, &phy_data
);
547 /* Reset the phy to commit changes. */
548 phy_data
|= BMCR_RESET
;
550 ret_val
= e1e_wphy(hw
, MII_BMCR
, phy_data
);
556 if (hw
->phy
.autoneg_wait_to_complete
) {
557 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
559 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
565 /* We didn't get link.
566 * Reset the DSP and cross our fingers.
568 ret_val
= e1000e_phy_reset_dsp(hw
);
574 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
580 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &phy_data
);
584 /* Resetting the phy means we need to verify the TX_CLK corresponds
585 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
587 phy_data
&= ~GG82563_MSCR_TX_CLK_MASK
;
588 if (hw
->mac
.forced_speed_duplex
& E1000_ALL_10_SPEED
)
589 phy_data
|= GG82563_MSCR_TX_CLK_10MBPS_2_5
;
591 phy_data
|= GG82563_MSCR_TX_CLK_100MBPS_25
;
593 /* In addition, we must re-enable CRS on Tx for both half and full
596 phy_data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
597 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, phy_data
);
603 * e1000_get_cable_length_80003es2lan - Set approximate cable length
604 * @hw: pointer to the HW structure
606 * Find the approximate cable length as measured by the GG82563 PHY.
607 * This is a function pointer entry point called by the phy module.
609 static s32
e1000_get_cable_length_80003es2lan(struct e1000_hw
*hw
)
611 struct e1000_phy_info
*phy
= &hw
->phy
;
615 ret_val
= e1e_rphy(hw
, GG82563_PHY_DSP_DISTANCE
, &phy_data
);
619 index
= phy_data
& GG82563_DSPD_CABLE_LENGTH
;
621 if (index
>= GG82563_CABLE_LENGTH_TABLE_SIZE
- 5)
622 return -E1000_ERR_PHY
;
624 phy
->min_cable_length
= e1000_gg82563_cable_length_table
[index
];
625 phy
->max_cable_length
= e1000_gg82563_cable_length_table
[index
+ 5];
627 phy
->cable_length
= (phy
->min_cable_length
+ phy
->max_cable_length
) / 2;
633 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
634 * @hw: pointer to the HW structure
635 * @speed: pointer to speed buffer
636 * @duplex: pointer to duplex buffer
638 * Retrieve the current speed and duplex configuration.
640 static s32
e1000_get_link_up_info_80003es2lan(struct e1000_hw
*hw
, u16
*speed
,
645 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
646 ret_val
= e1000e_get_speed_and_duplex_copper(hw
, speed
, duplex
);
647 hw
->phy
.ops
.cfg_on_link_up(hw
);
649 ret_val
= e1000e_get_speed_and_duplex_fiber_serdes(hw
,
658 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
659 * @hw: pointer to the HW structure
661 * Perform a global reset to the ESB2 controller.
663 static s32
e1000_reset_hw_80003es2lan(struct e1000_hw
*hw
)
669 /* Prevent the PCI-E bus from sticking if there is no TLP connection
670 * on the last TLP read/write transaction when MAC is reset.
672 ret_val
= e1000e_disable_pcie_master(hw
);
674 e_dbg("PCI-E Master disable polling has failed.\n");
676 e_dbg("Masking off all interrupts\n");
677 ew32(IMC
, 0xffffffff);
680 ew32(TCTL
, E1000_TCTL_PSP
);
683 usleep_range(10000, 20000);
687 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
691 e_dbg("Issuing a global reset to MAC\n");
692 ew32(CTRL
, ctrl
| E1000_CTRL_RST
);
693 e1000_release_phy_80003es2lan(hw
);
695 /* Disable IBIST slave mode (far-end loopback) */
697 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
701 kum_reg_data
|= E1000_KMRNCTRLSTA_IBIST_DISABLE
;
702 e1000_write_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
705 ret_val
= e1000e_get_auto_rd_done(hw
);
707 /* We don't want to continue accessing MAC registers. */
710 /* Clear any pending interrupt events. */
711 ew32(IMC
, 0xffffffff);
714 return e1000_check_alt_mac_addr_generic(hw
);
718 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
719 * @hw: pointer to the HW structure
721 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
723 static s32
e1000_init_hw_80003es2lan(struct e1000_hw
*hw
)
725 struct e1000_mac_info
*mac
= &hw
->mac
;
731 e1000_initialize_hw_bits_80003es2lan(hw
);
733 /* Initialize identification LED */
734 ret_val
= mac
->ops
.id_led_init(hw
);
735 /* An error is not fatal and we should not stop init due to this */
737 e_dbg("Error initializing identification LED\n");
739 /* Disabling VLAN filtering */
740 e_dbg("Initializing the IEEE VLAN\n");
741 mac
->ops
.clear_vfta(hw
);
743 /* Setup the receive address. */
744 e1000e_init_rx_addrs(hw
, mac
->rar_entry_count
);
746 /* Zero out the Multicast HASH table */
747 e_dbg("Zeroing the MTA\n");
748 for (i
= 0; i
< mac
->mta_reg_count
; i
++)
749 E1000_WRITE_REG_ARRAY(hw
, E1000_MTA
, i
, 0);
751 /* Setup link and flow control */
752 ret_val
= mac
->ops
.setup_link(hw
);
756 /* Disable IBIST slave mode (far-end loopback) */
757 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
759 kum_reg_data
|= E1000_KMRNCTRLSTA_IBIST_DISABLE
;
760 e1000_write_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
763 /* Set the transmit descriptor write-back policy */
764 reg_data
= er32(TXDCTL(0));
765 reg_data
= ((reg_data
& ~E1000_TXDCTL_WTHRESH
) |
766 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
);
767 ew32(TXDCTL(0), reg_data
);
769 /* ...for both queues. */
770 reg_data
= er32(TXDCTL(1));
771 reg_data
= ((reg_data
& ~E1000_TXDCTL_WTHRESH
) |
772 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
);
773 ew32(TXDCTL(1), reg_data
);
775 /* Enable retransmit on late collisions */
776 reg_data
= er32(TCTL
);
777 reg_data
|= E1000_TCTL_RTLC
;
778 ew32(TCTL
, reg_data
);
780 /* Configure Gigabit Carry Extend Padding */
781 reg_data
= er32(TCTL_EXT
);
782 reg_data
&= ~E1000_TCTL_EXT_GCEX_MASK
;
783 reg_data
|= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN
;
784 ew32(TCTL_EXT
, reg_data
);
786 /* Configure Transmit Inter-Packet Gap */
787 reg_data
= er32(TIPG
);
788 reg_data
&= ~E1000_TIPG_IPGT_MASK
;
789 reg_data
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
790 ew32(TIPG
, reg_data
);
792 reg_data
= E1000_READ_REG_ARRAY(hw
, E1000_FFLT
, 0x0001);
793 reg_data
&= ~0x00100000;
794 E1000_WRITE_REG_ARRAY(hw
, E1000_FFLT
, 0x0001, reg_data
);
796 /* default to true to enable the MDIC W/A */
797 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= true;
800 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_OFFSET
>>
801 E1000_KMRNCTRLSTA_OFFSET_SHIFT
, &i
);
803 if ((i
& E1000_KMRNCTRLSTA_OPMODE_MASK
) ==
804 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO
)
805 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= false;
808 /* Clear all of the statistics registers (clear on read). It is
809 * important that we do this after we have tried to establish link
810 * because the symbol error count will increment wildly if there
813 e1000_clear_hw_cntrs_80003es2lan(hw
);
819 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
820 * @hw: pointer to the HW structure
822 * Initializes required hardware-dependent bits needed for normal operation.
824 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw
*hw
)
828 /* Transmit Descriptor Control 0 */
829 reg
= er32(TXDCTL(0));
831 ew32(TXDCTL(0), reg
);
833 /* Transmit Descriptor Control 1 */
834 reg
= er32(TXDCTL(1));
836 ew32(TXDCTL(1), reg
);
838 /* Transmit Arbitration Control 0 */
840 reg
&= ~(0xF << 27); /* 30:27 */
841 if (hw
->phy
.media_type
!= e1000_media_type_copper
)
845 /* Transmit Arbitration Control 1 */
847 if (er32(TCTL
) & E1000_TCTL_MULR
)
853 /* Disable IPv6 extension header parsing because some malformed
854 * IPv6 headers can hang the Rx.
857 reg
|= (E1000_RFCTL_IPV6_EX_DIS
| E1000_RFCTL_NEW_IPV6_EXT_DIS
);
862 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
863 * @hw: pointer to the HW structure
865 * Setup some GG82563 PHY registers for obtaining link
867 static s32
e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw
*hw
)
869 struct e1000_phy_info
*phy
= &hw
->phy
;
874 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &data
);
878 data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
879 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
880 data
|= GG82563_MSCR_TX_CLK_1000MBPS_25
;
882 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, data
);
887 * MDI/MDI-X = 0 (default)
888 * 0 - Auto for all speeds
891 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
893 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL
, &data
);
897 data
&= ~GG82563_PSCR_CROSSOVER_MODE_MASK
;
901 data
|= GG82563_PSCR_CROSSOVER_MODE_MDI
;
904 data
|= GG82563_PSCR_CROSSOVER_MODE_MDIX
;
908 data
|= GG82563_PSCR_CROSSOVER_MODE_AUTO
;
913 * disable_polarity_correction = 0 (default)
914 * Automatic Correction for Reversed Cable Polarity
918 data
&= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
919 if (phy
->disable_polarity_correction
)
920 data
|= GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
922 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, data
);
926 /* SW Reset the PHY so all changes take effect */
927 ret_val
= hw
->phy
.ops
.commit(hw
);
929 e_dbg("Error Resetting the PHY\n");
933 /* Bypass Rx and Tx FIFO's */
934 reg
= E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL
;
935 data
= (E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS
|
936 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS
);
937 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, reg
, data
);
941 reg
= E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE
;
942 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
, reg
, &data
);
945 data
|= E1000_KMRNCTRLSTA_OPMODE_E_IDLE
;
946 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, reg
, data
);
950 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL_2
, &data
);
954 data
&= ~GG82563_PSCR2_REVERSE_AUTO_NEG
;
955 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL_2
, data
);
959 reg
= er32(CTRL_EXT
);
960 reg
&= ~E1000_CTRL_EXT_LINK_MODE_MASK
;
963 ret_val
= e1e_rphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, &data
);
967 /* Do not init these registers when the HW is in IAMT mode, since the
968 * firmware will have already initialized them. We only initialize
969 * them if the HW is not in IAMT mode.
971 if (!hw
->mac
.ops
.check_mng_mode(hw
)) {
972 /* Enable Electrical Idle on the PHY */
973 data
|= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE
;
974 ret_val
= e1e_wphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, data
);
978 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, &data
);
982 data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
983 ret_val
= e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, data
);
988 /* Workaround: Disable padding in Kumeran interface in the MAC
989 * and in the PHY to avoid CRC errors.
991 ret_val
= e1e_rphy(hw
, GG82563_PHY_INBAND_CTRL
, &data
);
995 data
|= GG82563_ICR_DIS_PADDING
;
996 ret_val
= e1e_wphy(hw
, GG82563_PHY_INBAND_CTRL
, data
);
1004 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1005 * @hw: pointer to the HW structure
1007 * Essentially a wrapper for setting up all things "copper" related.
1008 * This is a function pointer entry point called by the mac module.
1010 static s32
e1000_setup_copper_link_80003es2lan(struct e1000_hw
*hw
)
1017 ctrl
|= E1000_CTRL_SLU
;
1018 ctrl
&= ~(E1000_CTRL_FRCSPD
| E1000_CTRL_FRCDPX
);
1021 /* Set the mac to wait the maximum time between each
1022 * iteration and increase the max iterations when
1023 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1025 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 4),
1029 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 9),
1034 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 9),
1039 e1000_read_kmrn_reg_80003es2lan(hw
,
1040 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1044 reg_data
|= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING
;
1046 e1000_write_kmrn_reg_80003es2lan(hw
,
1047 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1052 ret_val
= e1000_copper_link_setup_gg82563_80003es2lan(hw
);
1056 return e1000e_setup_copper_link(hw
);
1060 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1061 * @hw: pointer to the HW structure
1062 * @duplex: current duplex setting
1064 * Configure the KMRN interface by applying last minute quirks for
1067 static s32
e1000_cfg_on_link_up_80003es2lan(struct e1000_hw
*hw
)
1073 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
1074 ret_val
= e1000e_get_speed_and_duplex_copper(hw
, &speed
,
1079 if (speed
== SPEED_1000
)
1080 ret_val
= e1000_cfg_kmrn_1000_80003es2lan(hw
);
1082 ret_val
= e1000_cfg_kmrn_10_100_80003es2lan(hw
, duplex
);
1089 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1090 * @hw: pointer to the HW structure
1091 * @duplex: current duplex setting
1093 * Configure the KMRN interface by applying last minute quirks for
1096 static s32
e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw
*hw
, u16 duplex
)
1101 u16 reg_data
, reg_data2
;
1103 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT
;
1105 e1000_write_kmrn_reg_80003es2lan(hw
,
1106 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1111 /* Configure Transmit Inter-Packet Gap */
1113 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1114 tipg
|= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN
;
1118 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1122 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1126 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1128 if (duplex
== HALF_DUPLEX
)
1129 reg_data
|= GG82563_KMCR_PASS_FALSE_CARRIER
;
1131 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1133 return e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1137 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1138 * @hw: pointer to the HW structure
1140 * Configure the KMRN interface by applying last minute quirks for
1141 * gigabit operation.
1143 static s32
e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw
*hw
)
1146 u16 reg_data
, reg_data2
;
1150 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT
;
1152 e1000_write_kmrn_reg_80003es2lan(hw
,
1153 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1158 /* Configure Transmit Inter-Packet Gap */
1160 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1161 tipg
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
1165 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1169 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1173 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1175 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1177 return e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1181 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1182 * @hw: pointer to the HW structure
1183 * @offset: register offset to be read
1184 * @data: pointer to the read data
1186 * Acquire semaphore, then read the PHY register at offset
1187 * using the kumeran interface. The information retrieved is stored in data.
1188 * Release the semaphore before exiting.
1190 static s32
e1000_read_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1196 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1200 kmrnctrlsta
= ((offset
<< E1000_KMRNCTRLSTA_OFFSET_SHIFT
) &
1201 E1000_KMRNCTRLSTA_OFFSET
) | E1000_KMRNCTRLSTA_REN
;
1202 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1207 kmrnctrlsta
= er32(KMRNCTRLSTA
);
1208 *data
= (u16
)kmrnctrlsta
;
1210 e1000_release_mac_csr_80003es2lan(hw
);
1216 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1217 * @hw: pointer to the HW structure
1218 * @offset: register offset to write to
1219 * @data: data to write at register offset
1221 * Acquire semaphore, then write the data to PHY register
1222 * at the offset using the kumeran interface. Release semaphore
1225 static s32
e1000_write_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1231 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1235 kmrnctrlsta
= ((offset
<< E1000_KMRNCTRLSTA_OFFSET_SHIFT
) &
1236 E1000_KMRNCTRLSTA_OFFSET
) | data
;
1237 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1242 e1000_release_mac_csr_80003es2lan(hw
);
1248 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1249 * @hw: pointer to the HW structure
1251 static s32
e1000_read_mac_addr_80003es2lan(struct e1000_hw
*hw
)
1255 /* If there's an alternate MAC address place it in RAR0
1256 * so that it will override the Si installed default perm
1259 ret_val
= e1000_check_alt_mac_addr_generic(hw
);
1263 return e1000_read_mac_addr_generic(hw
);
1267 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1268 * @hw: pointer to the HW structure
1270 * In the case of a PHY power down to save power, or to turn off link during a
1271 * driver unload, or wake on lan is not enabled, remove the link.
1273 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw
*hw
)
1275 /* If the management interface is not enabled, then power down */
1276 if (!(hw
->mac
.ops
.check_mng_mode(hw
) ||
1277 hw
->phy
.ops
.check_reset_block(hw
)))
1278 e1000_power_down_phy_copper(hw
);
1282 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1283 * @hw: pointer to the HW structure
1285 * Clears the hardware counters by reading the counter registers.
1287 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw
*hw
)
1289 e1000e_clear_hw_cntrs_base(hw
);
1327 static const struct e1000_mac_operations es2_mac_ops
= {
1328 .read_mac_addr
= e1000_read_mac_addr_80003es2lan
,
1329 .id_led_init
= e1000e_id_led_init_generic
,
1330 .blink_led
= e1000e_blink_led_generic
,
1331 .check_mng_mode
= e1000e_check_mng_mode_generic
,
1332 /* check_for_link dependent on media type */
1333 .cleanup_led
= e1000e_cleanup_led_generic
,
1334 .clear_hw_cntrs
= e1000_clear_hw_cntrs_80003es2lan
,
1335 .get_bus_info
= e1000e_get_bus_info_pcie
,
1336 .set_lan_id
= e1000_set_lan_id_multi_port_pcie
,
1337 .get_link_up_info
= e1000_get_link_up_info_80003es2lan
,
1338 .led_on
= e1000e_led_on_generic
,
1339 .led_off
= e1000e_led_off_generic
,
1340 .update_mc_addr_list
= e1000e_update_mc_addr_list_generic
,
1341 .write_vfta
= e1000_write_vfta_generic
,
1342 .clear_vfta
= e1000_clear_vfta_generic
,
1343 .reset_hw
= e1000_reset_hw_80003es2lan
,
1344 .init_hw
= e1000_init_hw_80003es2lan
,
1345 .setup_link
= e1000e_setup_link_generic
,
1346 /* setup_physical_interface dependent on media type */
1347 .setup_led
= e1000e_setup_led_generic
,
1348 .config_collision_dist
= e1000e_config_collision_dist_generic
,
1349 .rar_set
= e1000e_rar_set_generic
,
1350 .rar_get_count
= e1000e_rar_get_count_generic
,
1353 static const struct e1000_phy_operations es2_phy_ops
= {
1354 .acquire
= e1000_acquire_phy_80003es2lan
,
1355 .check_polarity
= e1000_check_polarity_m88
,
1356 .check_reset_block
= e1000e_check_reset_block_generic
,
1357 .commit
= e1000e_phy_sw_reset
,
1358 .force_speed_duplex
= e1000_phy_force_speed_duplex_80003es2lan
,
1359 .get_cfg_done
= e1000_get_cfg_done_80003es2lan
,
1360 .get_cable_length
= e1000_get_cable_length_80003es2lan
,
1361 .get_info
= e1000e_get_phy_info_m88
,
1362 .read_reg
= e1000_read_phy_reg_gg82563_80003es2lan
,
1363 .release
= e1000_release_phy_80003es2lan
,
1364 .reset
= e1000e_phy_hw_reset_generic
,
1365 .set_d0_lplu_state
= NULL
,
1366 .set_d3_lplu_state
= e1000e_set_d3_lplu_state
,
1367 .write_reg
= e1000_write_phy_reg_gg82563_80003es2lan
,
1368 .cfg_on_link_up
= e1000_cfg_on_link_up_80003es2lan
,
1371 static const struct e1000_nvm_operations es2_nvm_ops
= {
1372 .acquire
= e1000_acquire_nvm_80003es2lan
,
1373 .read
= e1000e_read_nvm_eerd
,
1374 .release
= e1000_release_nvm_80003es2lan
,
1375 .reload
= e1000e_reload_nvm_generic
,
1376 .update
= e1000e_update_nvm_checksum_generic
,
1377 .valid_led_default
= e1000e_valid_led_default
,
1378 .validate
= e1000e_validate_nvm_checksum_generic
,
1379 .write
= e1000_write_nvm_80003es2lan
,
1382 const struct e1000_info e1000_es2_info
= {
1383 .mac
= e1000_80003es2lan
,
1384 .flags
= FLAG_HAS_HW_VLAN_FILTER
1385 | FLAG_HAS_JUMBO_FRAMES
1387 | FLAG_APME_IN_CTRL3
1388 | FLAG_HAS_CTRLEXT_ON_LOAD
1389 | FLAG_RX_NEEDS_RESTART
/* errata */
1390 | FLAG_TARC_SET_BIT_ZERO
/* errata */
1391 | FLAG_APME_CHECK_PORT_B
1392 | FLAG_DISABLE_FC_PAUSE_TIME
, /* errata */
1393 .flags2
= FLAG2_DMA_BURST
,
1395 .max_hw_frame_size
= DEFAULT_JUMBO
,
1396 .get_variants
= e1000_get_variants_80003es2lan
,
1397 .mac_ops
= &es2_mac_ops
,
1398 .phy_ops
= &es2_phy_ops
,
1399 .nvm_ops
= &es2_nvm_ops
,