1 /*******************************************************************************
3 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2012 Intel Corporation.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *******************************************************************************/
30 * 80003ES2LAN Gigabit Ethernet Controller (Copper)
31 * 80003ES2LAN Gigabit Ethernet Controller (Serdes)
36 #define E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL 0x00
37 #define E1000_KMRNCTRLSTA_OFFSET_INB_CTRL 0x02
38 #define E1000_KMRNCTRLSTA_OFFSET_HD_CTRL 0x10
39 #define E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE 0x1F
41 #define E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS 0x0008
42 #define E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS 0x0800
43 #define E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING 0x0010
45 #define E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT 0x0004
46 #define E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT 0x0000
47 #define E1000_KMRNCTRLSTA_OPMODE_E_IDLE 0x2000
49 #define E1000_KMRNCTRLSTA_OPMODE_MASK 0x000C
50 #define E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO 0x0004
52 #define E1000_TCTL_EXT_GCEX_MASK 0x000FFC00 /* Gigabit Carry Extend Padding */
53 #define DEFAULT_TCTL_EXT_GCEX_80003ES2LAN 0x00010000
55 #define DEFAULT_TIPG_IPGT_1000_80003ES2LAN 0x8
56 #define DEFAULT_TIPG_IPGT_10_100_80003ES2LAN 0x9
58 /* GG82563 PHY Specific Status Register (Page 0, Register 16 */
59 #define GG82563_PSCR_POLARITY_REVERSAL_DISABLE 0x0002 /* 1=Reversal Disab. */
60 #define GG82563_PSCR_CROSSOVER_MODE_MASK 0x0060
61 #define GG82563_PSCR_CROSSOVER_MODE_MDI 0x0000 /* 00=Manual MDI */
62 #define GG82563_PSCR_CROSSOVER_MODE_MDIX 0x0020 /* 01=Manual MDIX */
63 #define GG82563_PSCR_CROSSOVER_MODE_AUTO 0x0060 /* 11=Auto crossover */
65 /* PHY Specific Control Register 2 (Page 0, Register 26) */
66 #define GG82563_PSCR2_REVERSE_AUTO_NEG 0x2000
67 /* 1=Reverse Auto-Negotiation */
69 /* MAC Specific Control Register (Page 2, Register 21) */
70 /* Tx clock speed for Link Down and 1000BASE-T for the following speeds */
71 #define GG82563_MSCR_TX_CLK_MASK 0x0007
72 #define GG82563_MSCR_TX_CLK_10MBPS_2_5 0x0004
73 #define GG82563_MSCR_TX_CLK_100MBPS_25 0x0005
74 #define GG82563_MSCR_TX_CLK_1000MBPS_25 0x0007
76 #define GG82563_MSCR_ASSERT_CRS_ON_TX 0x0010 /* 1=Assert */
78 /* DSP Distance Register (Page 5, Register 26) */
79 #define GG82563_DSPD_CABLE_LENGTH 0x0007 /* 0 = <50M
85 /* Kumeran Mode Control Register (Page 193, Register 16) */
86 #define GG82563_KMCR_PASS_FALSE_CARRIER 0x0800
88 /* Max number of times Kumeran read/write should be validated */
89 #define GG82563_MAX_KMRN_RETRY 0x5
91 /* Power Management Control Register (Page 193, Register 20) */
92 #define GG82563_PMCR_ENABLE_ELECTRICAL_IDLE 0x0001
93 /* 1=Enable SERDES Electrical Idle */
95 /* In-Band Control Register (Page 194, Register 18) */
96 #define GG82563_ICR_DIS_PADDING 0x0010 /* Disable Padding */
99 * A table for the GG82563 cable length where the range is defined
100 * with a lower bound at "index" and the upper bound at
103 static const u16 e1000_gg82563_cable_length_table
[] = {
104 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF };
105 #define GG82563_CABLE_LENGTH_TABLE_SIZE \
106 ARRAY_SIZE(e1000_gg82563_cable_length_table)
108 static s32
e1000_setup_copper_link_80003es2lan(struct e1000_hw
*hw
);
109 static s32
e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
);
110 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
);
111 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw
*hw
);
112 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw
*hw
);
113 static s32
e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw
*hw
);
114 static s32
e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw
*hw
, u16 duplex
);
115 static s32
e1000_cfg_on_link_up_80003es2lan(struct e1000_hw
*hw
);
116 static s32
e1000_read_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
118 static s32
e1000_write_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
120 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw
*hw
);
123 * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs.
124 * @hw: pointer to the HW structure
126 static s32
e1000_init_phy_params_80003es2lan(struct e1000_hw
*hw
)
128 struct e1000_phy_info
*phy
= &hw
->phy
;
131 if (hw
->phy
.media_type
!= e1000_media_type_copper
) {
132 phy
->type
= e1000_phy_none
;
135 phy
->ops
.power_up
= e1000_power_up_phy_copper
;
136 phy
->ops
.power_down
= e1000_power_down_phy_copper_80003es2lan
;
140 phy
->autoneg_mask
= AUTONEG_ADVERTISE_SPEED_DEFAULT
;
141 phy
->reset_delay_us
= 100;
142 phy
->type
= e1000_phy_gg82563
;
144 /* This can only be done after all function pointers are setup. */
145 ret_val
= e1000e_get_phy_id(hw
);
148 if (phy
->id
!= GG82563_E_PHY_ID
)
149 return -E1000_ERR_PHY
;
155 * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs.
156 * @hw: pointer to the HW structure
158 static s32
e1000_init_nvm_params_80003es2lan(struct e1000_hw
*hw
)
160 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
161 u32 eecd
= er32(EECD
);
164 nvm
->opcode_bits
= 8;
166 switch (nvm
->override
) {
167 case e1000_nvm_override_spi_large
:
169 nvm
->address_bits
= 16;
171 case e1000_nvm_override_spi_small
:
173 nvm
->address_bits
= 8;
176 nvm
->page_size
= eecd
& E1000_EECD_ADDR_BITS
? 32 : 8;
177 nvm
->address_bits
= eecd
& E1000_EECD_ADDR_BITS
? 16 : 8;
181 nvm
->type
= e1000_nvm_eeprom_spi
;
183 size
= (u16
)((eecd
& E1000_EECD_SIZE_EX_MASK
) >>
184 E1000_EECD_SIZE_EX_SHIFT
);
187 * Added to a constant, "size" becomes the left-shift value
188 * for setting word_size.
190 size
+= NVM_WORD_SIZE_BASE_SHIFT
;
192 /* EEPROM access above 16k is unsupported */
195 nvm
->word_size
= 1 << size
;
201 * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs.
202 * @hw: pointer to the HW structure
204 static s32
e1000_init_mac_params_80003es2lan(struct e1000_hw
*hw
)
206 struct e1000_mac_info
*mac
= &hw
->mac
;
208 /* Set media type and media-dependent function pointers */
209 switch (hw
->adapter
->pdev
->device
) {
210 case E1000_DEV_ID_80003ES2LAN_SERDES_DPT
:
211 hw
->phy
.media_type
= e1000_media_type_internal_serdes
;
212 mac
->ops
.check_for_link
= e1000e_check_for_serdes_link
;
213 mac
->ops
.setup_physical_interface
=
214 e1000e_setup_fiber_serdes_link
;
217 hw
->phy
.media_type
= e1000_media_type_copper
;
218 mac
->ops
.check_for_link
= e1000e_check_for_copper_link
;
219 mac
->ops
.setup_physical_interface
=
220 e1000_setup_copper_link_80003es2lan
;
224 /* Set mta register count */
225 mac
->mta_reg_count
= 128;
226 /* Set rar entry count */
227 mac
->rar_entry_count
= E1000_RAR_ENTRIES
;
229 mac
->has_fwsm
= true;
230 /* ARC supported; valid only if manageability features are enabled. */
231 mac
->arc_subsystem_valid
=
232 (er32(FWSM
) & E1000_FWSM_MODE_MASK
)
234 /* Adaptive IFS not supported */
235 mac
->adaptive_ifs
= false;
237 /* set lan id for port to determine which phy lock to use */
238 hw
->mac
.ops
.set_lan_id(hw
);
243 static s32
e1000_get_variants_80003es2lan(struct e1000_adapter
*adapter
)
245 struct e1000_hw
*hw
= &adapter
->hw
;
248 rc
= e1000_init_mac_params_80003es2lan(hw
);
252 rc
= e1000_init_nvm_params_80003es2lan(hw
);
256 rc
= e1000_init_phy_params_80003es2lan(hw
);
264 * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY
265 * @hw: pointer to the HW structure
267 * A wrapper to acquire access rights to the correct PHY.
269 static s32
e1000_acquire_phy_80003es2lan(struct e1000_hw
*hw
)
273 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
274 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
278 * e1000_release_phy_80003es2lan - Release rights to access PHY
279 * @hw: pointer to the HW structure
281 * A wrapper to release access rights to the correct PHY.
283 static void e1000_release_phy_80003es2lan(struct e1000_hw
*hw
)
287 mask
= hw
->bus
.func
? E1000_SWFW_PHY1_SM
: E1000_SWFW_PHY0_SM
;
288 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
292 * e1000_acquire_mac_csr_80003es2lan - Acquire rights to access Kumeran register
293 * @hw: pointer to the HW structure
295 * Acquire the semaphore to access the Kumeran interface.
298 static s32
e1000_acquire_mac_csr_80003es2lan(struct e1000_hw
*hw
)
302 mask
= E1000_SWFW_CSR_SM
;
304 return e1000_acquire_swfw_sync_80003es2lan(hw
, mask
);
308 * e1000_release_mac_csr_80003es2lan - Release rights to access Kumeran Register
309 * @hw: pointer to the HW structure
311 * Release the semaphore used to access the Kumeran interface
313 static void e1000_release_mac_csr_80003es2lan(struct e1000_hw
*hw
)
317 mask
= E1000_SWFW_CSR_SM
;
319 e1000_release_swfw_sync_80003es2lan(hw
, mask
);
323 * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM
324 * @hw: pointer to the HW structure
326 * Acquire the semaphore to access the EEPROM.
328 static s32
e1000_acquire_nvm_80003es2lan(struct e1000_hw
*hw
)
332 ret_val
= e1000_acquire_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
336 ret_val
= e1000e_acquire_nvm(hw
);
339 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
345 * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM
346 * @hw: pointer to the HW structure
348 * Release the semaphore used to access the EEPROM.
350 static void e1000_release_nvm_80003es2lan(struct e1000_hw
*hw
)
352 e1000e_release_nvm(hw
);
353 e1000_release_swfw_sync_80003es2lan(hw
, E1000_SWFW_EEP_SM
);
357 * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore
358 * @hw: pointer to the HW structure
359 * @mask: specifies which semaphore to acquire
361 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
362 * will also specify which port we're acquiring the lock for.
364 static s32
e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
368 u32 fwmask
= mask
<< 16;
372 while (i
< timeout
) {
373 if (e1000e_get_hw_semaphore(hw
))
374 return -E1000_ERR_SWFW_SYNC
;
376 swfw_sync
= er32(SW_FW_SYNC
);
377 if (!(swfw_sync
& (fwmask
| swmask
)))
381 * Firmware currently using resource (fwmask)
382 * or other software thread using resource (swmask)
384 e1000e_put_hw_semaphore(hw
);
390 e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
391 return -E1000_ERR_SWFW_SYNC
;
395 ew32(SW_FW_SYNC
, swfw_sync
);
397 e1000e_put_hw_semaphore(hw
);
403 * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore
404 * @hw: pointer to the HW structure
405 * @mask: specifies which semaphore to acquire
407 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
408 * will also specify which port we're releasing the lock for.
410 static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw
*hw
, u16 mask
)
414 while (e1000e_get_hw_semaphore(hw
) != 0)
417 swfw_sync
= er32(SW_FW_SYNC
);
419 ew32(SW_FW_SYNC
, swfw_sync
);
421 e1000e_put_hw_semaphore(hw
);
425 * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register
426 * @hw: pointer to the HW structure
427 * @offset: offset of the register to read
428 * @data: pointer to the data returned from the operation
430 * Read the GG82563 PHY register.
432 static s32
e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
433 u32 offset
, u16
*data
)
439 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
443 /* Select Configuration Page */
444 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
445 page_select
= GG82563_PHY_PAGE_SELECT
;
448 * Use Alternative Page Select register to access
449 * registers 30 and 31
451 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
454 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
455 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
457 e1000_release_phy_80003es2lan(hw
);
461 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
== true) {
463 * The "ready" bit in the MDIC register may be incorrectly set
464 * before the device has completed the "Page Select" MDI
465 * transaction. So we wait 200us after each MDI command...
469 /* ...and verify the command was successful. */
470 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
472 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
473 ret_val
= -E1000_ERR_PHY
;
474 e1000_release_phy_80003es2lan(hw
);
480 ret_val
= e1000e_read_phy_reg_mdic(hw
,
481 MAX_PHY_REG_ADDRESS
& offset
,
486 ret_val
= e1000e_read_phy_reg_mdic(hw
,
487 MAX_PHY_REG_ADDRESS
& offset
,
491 e1000_release_phy_80003es2lan(hw
);
497 * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register
498 * @hw: pointer to the HW structure
499 * @offset: offset of the register to read
500 * @data: value to write to the register
502 * Write to the GG82563 PHY register.
504 static s32
e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw
*hw
,
505 u32 offset
, u16 data
)
511 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
515 /* Select Configuration Page */
516 if ((offset
& MAX_PHY_REG_ADDRESS
) < GG82563_MIN_ALT_REG
) {
517 page_select
= GG82563_PHY_PAGE_SELECT
;
520 * Use Alternative Page Select register to access
521 * registers 30 and 31
523 page_select
= GG82563_PHY_PAGE_SELECT_ALT
;
526 temp
= (u16
)((u16
)offset
>> GG82563_PAGE_SHIFT
);
527 ret_val
= e1000e_write_phy_reg_mdic(hw
, page_select
, temp
);
529 e1000_release_phy_80003es2lan(hw
);
533 if (hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
== true) {
535 * The "ready" bit in the MDIC register may be incorrectly set
536 * before the device has completed the "Page Select" MDI
537 * transaction. So we wait 200us after each MDI command...
541 /* ...and verify the command was successful. */
542 ret_val
= e1000e_read_phy_reg_mdic(hw
, page_select
, &temp
);
544 if (((u16
)offset
>> GG82563_PAGE_SHIFT
) != temp
) {
545 e1000_release_phy_80003es2lan(hw
);
546 return -E1000_ERR_PHY
;
551 ret_val
= e1000e_write_phy_reg_mdic(hw
,
552 MAX_PHY_REG_ADDRESS
& offset
,
557 ret_val
= e1000e_write_phy_reg_mdic(hw
,
558 MAX_PHY_REG_ADDRESS
& offset
,
562 e1000_release_phy_80003es2lan(hw
);
568 * e1000_write_nvm_80003es2lan - Write to ESB2 NVM
569 * @hw: pointer to the HW structure
570 * @offset: offset of the register to read
571 * @words: number of words to write
572 * @data: buffer of data to write to the NVM
574 * Write "words" of data to the ESB2 NVM.
576 static s32
e1000_write_nvm_80003es2lan(struct e1000_hw
*hw
, u16 offset
,
577 u16 words
, u16
*data
)
579 return e1000e_write_nvm_spi(hw
, offset
, words
, data
);
583 * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete
584 * @hw: pointer to the HW structure
586 * Wait a specific amount of time for manageability processes to complete.
587 * This is a function pointer entry point called by the phy module.
589 static s32
e1000_get_cfg_done_80003es2lan(struct e1000_hw
*hw
)
591 s32 timeout
= PHY_CFG_TIMEOUT
;
592 u32 mask
= E1000_NVM_CFG_DONE_PORT_0
;
594 if (hw
->bus
.func
== 1)
595 mask
= E1000_NVM_CFG_DONE_PORT_1
;
598 if (er32(EEMNGCTL
) & mask
)
600 usleep_range(1000, 2000);
604 e_dbg("MNG configuration cycle has not completed.\n");
605 return -E1000_ERR_RESET
;
612 * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex
613 * @hw: pointer to the HW structure
615 * Force the speed and duplex settings onto the PHY. This is a
616 * function pointer entry point called by the phy module.
618 static s32
e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw
*hw
)
625 * Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
626 * forced whenever speed and duplex are forced.
628 ret_val
= e1e_rphy(hw
, M88E1000_PHY_SPEC_CTRL
, &phy_data
);
632 phy_data
&= ~GG82563_PSCR_CROSSOVER_MODE_AUTO
;
633 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, phy_data
);
637 e_dbg("GG82563 PSCR: %X\n", phy_data
);
639 ret_val
= e1e_rphy(hw
, PHY_CONTROL
, &phy_data
);
643 e1000e_phy_force_speed_duplex_setup(hw
, &phy_data
);
645 /* Reset the phy to commit changes. */
646 phy_data
|= MII_CR_RESET
;
648 ret_val
= e1e_wphy(hw
, PHY_CONTROL
, phy_data
);
654 if (hw
->phy
.autoneg_wait_to_complete
) {
655 e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n");
657 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
664 * We didn't get link.
665 * Reset the DSP and cross our fingers.
667 ret_val
= e1000e_phy_reset_dsp(hw
);
673 ret_val
= e1000e_phy_has_link_generic(hw
, PHY_FORCE_LIMIT
,
679 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &phy_data
);
684 * Resetting the phy means we need to verify the TX_CLK corresponds
685 * to the link speed. 10Mbps -> 2.5MHz, else 25MHz.
687 phy_data
&= ~GG82563_MSCR_TX_CLK_MASK
;
688 if (hw
->mac
.forced_speed_duplex
& E1000_ALL_10_SPEED
)
689 phy_data
|= GG82563_MSCR_TX_CLK_10MBPS_2_5
;
691 phy_data
|= GG82563_MSCR_TX_CLK_100MBPS_25
;
694 * In addition, we must re-enable CRS on Tx for both half and full
697 phy_data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
698 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, phy_data
);
704 * e1000_get_cable_length_80003es2lan - Set approximate cable length
705 * @hw: pointer to the HW structure
707 * Find the approximate cable length as measured by the GG82563 PHY.
708 * This is a function pointer entry point called by the phy module.
710 static s32
e1000_get_cable_length_80003es2lan(struct e1000_hw
*hw
)
712 struct e1000_phy_info
*phy
= &hw
->phy
;
716 ret_val
= e1e_rphy(hw
, GG82563_PHY_DSP_DISTANCE
, &phy_data
);
720 index
= phy_data
& GG82563_DSPD_CABLE_LENGTH
;
722 if (index
>= GG82563_CABLE_LENGTH_TABLE_SIZE
- 5) {
723 ret_val
= -E1000_ERR_PHY
;
727 phy
->min_cable_length
= e1000_gg82563_cable_length_table
[index
];
728 phy
->max_cable_length
= e1000_gg82563_cable_length_table
[index
+ 5];
730 phy
->cable_length
= (phy
->min_cable_length
+ phy
->max_cable_length
) / 2;
737 * e1000_get_link_up_info_80003es2lan - Report speed and duplex
738 * @hw: pointer to the HW structure
739 * @speed: pointer to speed buffer
740 * @duplex: pointer to duplex buffer
742 * Retrieve the current speed and duplex configuration.
744 static s32
e1000_get_link_up_info_80003es2lan(struct e1000_hw
*hw
, u16
*speed
,
749 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
750 ret_val
= e1000e_get_speed_and_duplex_copper(hw
,
753 hw
->phy
.ops
.cfg_on_link_up(hw
);
755 ret_val
= e1000e_get_speed_and_duplex_fiber_serdes(hw
,
764 * e1000_reset_hw_80003es2lan - Reset the ESB2 controller
765 * @hw: pointer to the HW structure
767 * Perform a global reset to the ESB2 controller.
769 static s32
e1000_reset_hw_80003es2lan(struct e1000_hw
*hw
)
775 * Prevent the PCI-E bus from sticking if there is no TLP connection
776 * on the last TLP read/write transaction when MAC is reset.
778 ret_val
= e1000e_disable_pcie_master(hw
);
780 e_dbg("PCI-E Master disable polling has failed.\n");
782 e_dbg("Masking off all interrupts\n");
783 ew32(IMC
, 0xffffffff);
786 ew32(TCTL
, E1000_TCTL_PSP
);
789 usleep_range(10000, 20000);
793 ret_val
= e1000_acquire_phy_80003es2lan(hw
);
794 e_dbg("Issuing a global reset to MAC\n");
795 ew32(CTRL
, ctrl
| E1000_CTRL_RST
);
796 e1000_release_phy_80003es2lan(hw
);
798 ret_val
= e1000e_get_auto_rd_done(hw
);
800 /* We don't want to continue accessing MAC registers. */
803 /* Clear any pending interrupt events. */
804 ew32(IMC
, 0xffffffff);
807 ret_val
= e1000_check_alt_mac_addr_generic(hw
);
813 * e1000_init_hw_80003es2lan - Initialize the ESB2 controller
814 * @hw: pointer to the HW structure
816 * Initialize the hw bits, LED, VFTA, MTA, link and hw counters.
818 static s32
e1000_init_hw_80003es2lan(struct e1000_hw
*hw
)
820 struct e1000_mac_info
*mac
= &hw
->mac
;
826 e1000_initialize_hw_bits_80003es2lan(hw
);
828 /* Initialize identification LED */
829 ret_val
= e1000e_id_led_init(hw
);
831 e_dbg("Error initializing identification LED\n");
832 /* This is not fatal and we should not stop init due to this */
834 /* Disabling VLAN filtering */
835 e_dbg("Initializing the IEEE VLAN\n");
836 mac
->ops
.clear_vfta(hw
);
838 /* Setup the receive address. */
839 e1000e_init_rx_addrs(hw
, mac
->rar_entry_count
);
841 /* Zero out the Multicast HASH table */
842 e_dbg("Zeroing the MTA\n");
843 for (i
= 0; i
< mac
->mta_reg_count
; i
++)
844 E1000_WRITE_REG_ARRAY(hw
, E1000_MTA
, i
, 0);
846 /* Setup link and flow control */
847 ret_val
= e1000e_setup_link(hw
);
849 /* Disable IBIST slave mode (far-end loopback) */
850 e1000_read_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
852 kum_reg_data
|= E1000_KMRNCTRLSTA_IBIST_DISABLE
;
853 e1000_write_kmrn_reg_80003es2lan(hw
, E1000_KMRNCTRLSTA_INBAND_PARAM
,
856 /* Set the transmit descriptor write-back policy */
857 reg_data
= er32(TXDCTL(0));
858 reg_data
= (reg_data
& ~E1000_TXDCTL_WTHRESH
) |
859 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
;
860 ew32(TXDCTL(0), reg_data
);
862 /* ...for both queues. */
863 reg_data
= er32(TXDCTL(1));
864 reg_data
= (reg_data
& ~E1000_TXDCTL_WTHRESH
) |
865 E1000_TXDCTL_FULL_TX_DESC_WB
| E1000_TXDCTL_COUNT_DESC
;
866 ew32(TXDCTL(1), reg_data
);
868 /* Enable retransmit on late collisions */
869 reg_data
= er32(TCTL
);
870 reg_data
|= E1000_TCTL_RTLC
;
871 ew32(TCTL
, reg_data
);
873 /* Configure Gigabit Carry Extend Padding */
874 reg_data
= er32(TCTL_EXT
);
875 reg_data
&= ~E1000_TCTL_EXT_GCEX_MASK
;
876 reg_data
|= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN
;
877 ew32(TCTL_EXT
, reg_data
);
879 /* Configure Transmit Inter-Packet Gap */
880 reg_data
= er32(TIPG
);
881 reg_data
&= ~E1000_TIPG_IPGT_MASK
;
882 reg_data
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
883 ew32(TIPG
, reg_data
);
885 reg_data
= E1000_READ_REG_ARRAY(hw
, E1000_FFLT
, 0x0001);
886 reg_data
&= ~0x00100000;
887 E1000_WRITE_REG_ARRAY(hw
, E1000_FFLT
, 0x0001, reg_data
);
889 /* default to true to enable the MDIC W/A */
890 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= true;
892 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
,
893 E1000_KMRNCTRLSTA_OFFSET
>>
894 E1000_KMRNCTRLSTA_OFFSET_SHIFT
,
897 if ((i
& E1000_KMRNCTRLSTA_OPMODE_MASK
) ==
898 E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO
)
899 hw
->dev_spec
.e80003es2lan
.mdic_wa_enable
= false;
903 * Clear all of the statistics registers (clear on read). It is
904 * important that we do this after we have tried to establish link
905 * because the symbol error count will increment wildly if there
908 e1000_clear_hw_cntrs_80003es2lan(hw
);
914 * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2
915 * @hw: pointer to the HW structure
917 * Initializes required hardware-dependent bits needed for normal operation.
919 static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw
*hw
)
923 /* Transmit Descriptor Control 0 */
924 reg
= er32(TXDCTL(0));
926 ew32(TXDCTL(0), reg
);
928 /* Transmit Descriptor Control 1 */
929 reg
= er32(TXDCTL(1));
931 ew32(TXDCTL(1), reg
);
933 /* Transmit Arbitration Control 0 */
935 reg
&= ~(0xF << 27); /* 30:27 */
936 if (hw
->phy
.media_type
!= e1000_media_type_copper
)
940 /* Transmit Arbitration Control 1 */
942 if (er32(TCTL
) & E1000_TCTL_MULR
)
950 * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link
951 * @hw: pointer to the HW structure
953 * Setup some GG82563 PHY registers for obtaining link
955 static s32
e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw
*hw
)
957 struct e1000_phy_info
*phy
= &hw
->phy
;
962 ret_val
= e1e_rphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, &data
);
966 data
|= GG82563_MSCR_ASSERT_CRS_ON_TX
;
967 /* Use 25MHz for both link down and 1000Base-T for Tx clock. */
968 data
|= GG82563_MSCR_TX_CLK_1000MBPS_25
;
970 ret_val
= e1e_wphy(hw
, GG82563_PHY_MAC_SPEC_CTRL
, data
);
976 * MDI/MDI-X = 0 (default)
977 * 0 - Auto for all speeds
980 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
982 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL
, &data
);
986 data
&= ~GG82563_PSCR_CROSSOVER_MODE_MASK
;
990 data
|= GG82563_PSCR_CROSSOVER_MODE_MDI
;
993 data
|= GG82563_PSCR_CROSSOVER_MODE_MDIX
;
997 data
|= GG82563_PSCR_CROSSOVER_MODE_AUTO
;
1003 * disable_polarity_correction = 0 (default)
1004 * Automatic Correction for Reversed Cable Polarity
1008 data
&= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
1009 if (phy
->disable_polarity_correction
)
1010 data
|= GG82563_PSCR_POLARITY_REVERSAL_DISABLE
;
1012 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL
, data
);
1016 /* SW Reset the PHY so all changes take effect */
1017 ret_val
= e1000e_commit_phy(hw
);
1019 e_dbg("Error Resetting the PHY\n");
1023 /* Bypass Rx and Tx FIFO's */
1024 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
,
1025 E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL
,
1026 E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS
|
1027 E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS
);
1031 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
,
1032 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE
,
1036 data
|= E1000_KMRNCTRLSTA_OPMODE_E_IDLE
;
1037 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
,
1038 E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE
,
1043 ret_val
= e1e_rphy(hw
, GG82563_PHY_SPEC_CTRL_2
, &data
);
1047 data
&= ~GG82563_PSCR2_REVERSE_AUTO_NEG
;
1048 ret_val
= e1e_wphy(hw
, GG82563_PHY_SPEC_CTRL_2
, data
);
1052 ctrl_ext
= er32(CTRL_EXT
);
1053 ctrl_ext
&= ~(E1000_CTRL_EXT_LINK_MODE_MASK
);
1054 ew32(CTRL_EXT
, ctrl_ext
);
1056 ret_val
= e1e_rphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, &data
);
1061 * Do not init these registers when the HW is in IAMT mode, since the
1062 * firmware will have already initialized them. We only initialize
1063 * them if the HW is not in IAMT mode.
1065 if (!e1000e_check_mng_mode(hw
)) {
1066 /* Enable Electrical Idle on the PHY */
1067 data
|= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE
;
1068 ret_val
= e1e_wphy(hw
, GG82563_PHY_PWR_MGMT_CTRL
, data
);
1072 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, &data
);
1076 data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1077 ret_val
= e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, data
);
1083 * Workaround: Disable padding in Kumeran interface in the MAC
1084 * and in the PHY to avoid CRC errors.
1086 ret_val
= e1e_rphy(hw
, GG82563_PHY_INBAND_CTRL
, &data
);
1090 data
|= GG82563_ICR_DIS_PADDING
;
1091 ret_val
= e1e_wphy(hw
, GG82563_PHY_INBAND_CTRL
, data
);
1099 * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2
1100 * @hw: pointer to the HW structure
1102 * Essentially a wrapper for setting up all things "copper" related.
1103 * This is a function pointer entry point called by the mac module.
1105 static s32
e1000_setup_copper_link_80003es2lan(struct e1000_hw
*hw
)
1112 ctrl
|= E1000_CTRL_SLU
;
1113 ctrl
&= ~(E1000_CTRL_FRCSPD
| E1000_CTRL_FRCDPX
);
1117 * Set the mac to wait the maximum time between each
1118 * iteration and increase the max iterations when
1119 * polling the phy; this fixes erroneous timeouts at 10Mbps.
1121 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 4),
1125 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 9),
1130 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
, GG82563_REG(0x34, 9),
1134 ret_val
= e1000_read_kmrn_reg_80003es2lan(hw
,
1135 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1139 reg_data
|= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING
;
1140 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
,
1141 E1000_KMRNCTRLSTA_OFFSET_INB_CTRL
,
1146 ret_val
= e1000_copper_link_setup_gg82563_80003es2lan(hw
);
1150 ret_val
= e1000e_setup_copper_link(hw
);
1156 * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up
1157 * @hw: pointer to the HW structure
1158 * @duplex: current duplex setting
1160 * Configure the KMRN interface by applying last minute quirks for
1163 static s32
e1000_cfg_on_link_up_80003es2lan(struct e1000_hw
*hw
)
1169 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
1170 ret_val
= e1000e_get_speed_and_duplex_copper(hw
, &speed
,
1175 if (speed
== SPEED_1000
)
1176 ret_val
= e1000_cfg_kmrn_1000_80003es2lan(hw
);
1178 ret_val
= e1000_cfg_kmrn_10_100_80003es2lan(hw
, duplex
);
1185 * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation
1186 * @hw: pointer to the HW structure
1187 * @duplex: current duplex setting
1189 * Configure the KMRN interface by applying last minute quirks for
1192 static s32
e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw
*hw
, u16 duplex
)
1197 u16 reg_data
, reg_data2
;
1199 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT
;
1200 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
,
1201 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1206 /* Configure Transmit Inter-Packet Gap */
1208 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1209 tipg
|= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN
;
1213 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1217 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1221 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1223 if (duplex
== HALF_DUPLEX
)
1224 reg_data
|= GG82563_KMCR_PASS_FALSE_CARRIER
;
1226 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1228 ret_val
= e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1234 * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation
1235 * @hw: pointer to the HW structure
1237 * Configure the KMRN interface by applying last minute quirks for
1238 * gigabit operation.
1240 static s32
e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw
*hw
)
1243 u16 reg_data
, reg_data2
;
1247 reg_data
= E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT
;
1248 ret_val
= e1000_write_kmrn_reg_80003es2lan(hw
,
1249 E1000_KMRNCTRLSTA_OFFSET_HD_CTRL
,
1254 /* Configure Transmit Inter-Packet Gap */
1256 tipg
&= ~E1000_TIPG_IPGT_MASK
;
1257 tipg
|= DEFAULT_TIPG_IPGT_1000_80003ES2LAN
;
1261 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data
);
1265 ret_val
= e1e_rphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, ®_data2
);
1269 } while ((reg_data
!= reg_data2
) && (i
< GG82563_MAX_KMRN_RETRY
));
1271 reg_data
&= ~GG82563_KMCR_PASS_FALSE_CARRIER
;
1272 ret_val
= e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, reg_data
);
1278 * e1000_read_kmrn_reg_80003es2lan - Read kumeran register
1279 * @hw: pointer to the HW structure
1280 * @offset: register offset to be read
1281 * @data: pointer to the read data
1283 * Acquire semaphore, then read the PHY register at offset
1284 * using the kumeran interface. The information retrieved is stored in data.
1285 * Release the semaphore before exiting.
1287 static s32
e1000_read_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1293 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1297 kmrnctrlsta
= ((offset
<< E1000_KMRNCTRLSTA_OFFSET_SHIFT
) &
1298 E1000_KMRNCTRLSTA_OFFSET
) | E1000_KMRNCTRLSTA_REN
;
1299 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1304 kmrnctrlsta
= er32(KMRNCTRLSTA
);
1305 *data
= (u16
)kmrnctrlsta
;
1307 e1000_release_mac_csr_80003es2lan(hw
);
1313 * e1000_write_kmrn_reg_80003es2lan - Write kumeran register
1314 * @hw: pointer to the HW structure
1315 * @offset: register offset to write to
1316 * @data: data to write at register offset
1318 * Acquire semaphore, then write the data to PHY register
1319 * at the offset using the kumeran interface. Release semaphore
1322 static s32
e1000_write_kmrn_reg_80003es2lan(struct e1000_hw
*hw
, u32 offset
,
1328 ret_val
= e1000_acquire_mac_csr_80003es2lan(hw
);
1332 kmrnctrlsta
= ((offset
<< E1000_KMRNCTRLSTA_OFFSET_SHIFT
) &
1333 E1000_KMRNCTRLSTA_OFFSET
) | data
;
1334 ew32(KMRNCTRLSTA
, kmrnctrlsta
);
1339 e1000_release_mac_csr_80003es2lan(hw
);
1345 * e1000_read_mac_addr_80003es2lan - Read device MAC address
1346 * @hw: pointer to the HW structure
1348 static s32
e1000_read_mac_addr_80003es2lan(struct e1000_hw
*hw
)
1353 * If there's an alternate MAC address place it in RAR0
1354 * so that it will override the Si installed default perm
1357 ret_val
= e1000_check_alt_mac_addr_generic(hw
);
1361 ret_val
= e1000_read_mac_addr_generic(hw
);
1368 * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down
1369 * @hw: pointer to the HW structure
1371 * In the case of a PHY power down to save power, or to turn off link during a
1372 * driver unload, or wake on lan is not enabled, remove the link.
1374 static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw
*hw
)
1376 /* If the management interface is not enabled, then power down */
1377 if (!(hw
->mac
.ops
.check_mng_mode(hw
) ||
1378 hw
->phy
.ops
.check_reset_block(hw
)))
1379 e1000_power_down_phy_copper(hw
);
1383 * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters
1384 * @hw: pointer to the HW structure
1386 * Clears the hardware counters by reading the counter registers.
1388 static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw
*hw
)
1390 e1000e_clear_hw_cntrs_base(hw
);
1428 static const struct e1000_mac_operations es2_mac_ops
= {
1429 .read_mac_addr
= e1000_read_mac_addr_80003es2lan
,
1430 .id_led_init
= e1000e_id_led_init
,
1431 .blink_led
= e1000e_blink_led_generic
,
1432 .check_mng_mode
= e1000e_check_mng_mode_generic
,
1433 /* check_for_link dependent on media type */
1434 .cleanup_led
= e1000e_cleanup_led_generic
,
1435 .clear_hw_cntrs
= e1000_clear_hw_cntrs_80003es2lan
,
1436 .get_bus_info
= e1000e_get_bus_info_pcie
,
1437 .set_lan_id
= e1000_set_lan_id_multi_port_pcie
,
1438 .get_link_up_info
= e1000_get_link_up_info_80003es2lan
,
1439 .led_on
= e1000e_led_on_generic
,
1440 .led_off
= e1000e_led_off_generic
,
1441 .update_mc_addr_list
= e1000e_update_mc_addr_list_generic
,
1442 .write_vfta
= e1000_write_vfta_generic
,
1443 .clear_vfta
= e1000_clear_vfta_generic
,
1444 .reset_hw
= e1000_reset_hw_80003es2lan
,
1445 .init_hw
= e1000_init_hw_80003es2lan
,
1446 .setup_link
= e1000e_setup_link
,
1447 /* setup_physical_interface dependent on media type */
1448 .setup_led
= e1000e_setup_led_generic
,
1451 static const struct e1000_phy_operations es2_phy_ops
= {
1452 .acquire
= e1000_acquire_phy_80003es2lan
,
1453 .check_polarity
= e1000_check_polarity_m88
,
1454 .check_reset_block
= e1000e_check_reset_block_generic
,
1455 .commit
= e1000e_phy_sw_reset
,
1456 .force_speed_duplex
= e1000_phy_force_speed_duplex_80003es2lan
,
1457 .get_cfg_done
= e1000_get_cfg_done_80003es2lan
,
1458 .get_cable_length
= e1000_get_cable_length_80003es2lan
,
1459 .get_info
= e1000e_get_phy_info_m88
,
1460 .read_reg
= e1000_read_phy_reg_gg82563_80003es2lan
,
1461 .release
= e1000_release_phy_80003es2lan
,
1462 .reset
= e1000e_phy_hw_reset_generic
,
1463 .set_d0_lplu_state
= NULL
,
1464 .set_d3_lplu_state
= e1000e_set_d3_lplu_state
,
1465 .write_reg
= e1000_write_phy_reg_gg82563_80003es2lan
,
1466 .cfg_on_link_up
= e1000_cfg_on_link_up_80003es2lan
,
1469 static const struct e1000_nvm_operations es2_nvm_ops
= {
1470 .acquire
= e1000_acquire_nvm_80003es2lan
,
1471 .read
= e1000e_read_nvm_eerd
,
1472 .release
= e1000_release_nvm_80003es2lan
,
1473 .update
= e1000e_update_nvm_checksum_generic
,
1474 .valid_led_default
= e1000e_valid_led_default
,
1475 .validate
= e1000e_validate_nvm_checksum_generic
,
1476 .write
= e1000_write_nvm_80003es2lan
,
1479 const struct e1000_info e1000_es2_info
= {
1480 .mac
= e1000_80003es2lan
,
1481 .flags
= FLAG_HAS_HW_VLAN_FILTER
1482 | FLAG_HAS_JUMBO_FRAMES
1484 | FLAG_APME_IN_CTRL3
1485 | FLAG_HAS_CTRLEXT_ON_LOAD
1486 | FLAG_RX_NEEDS_RESTART
/* errata */
1487 | FLAG_TARC_SET_BIT_ZERO
/* errata */
1488 | FLAG_APME_CHECK_PORT_B
1489 | FLAG_DISABLE_FC_PAUSE_TIME
, /* errata */
1490 .flags2
= FLAG2_DMA_BURST
,
1492 .max_hw_frame_size
= DEFAULT_JUMBO
,
1493 .get_variants
= e1000_get_variants_80003es2lan
,
1494 .mac_ops
= &es2_mac_ops
,
1495 .phy_ops
= &es2_phy_ops
,
1496 .nvm_ops
= &es2_nvm_ops
,