blob: ca663f19d7df97563dec1ac9192e30042cef8cc6 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allan451152d2010-06-16 13:28:11 +00004 Copyright(c) 1999 - 2010 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
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.
9
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
13 more details.
14
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.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
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
26
27*******************************************************************************/
28
29/*
30 * 82571EB Gigabit Ethernet Controller
Bruce Allan16059272008-11-21 16:51:06 -080031 * 82571EB Gigabit Ethernet Controller (Copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -070032 * 82571EB Gigabit Ethernet Controller (Fiber)
Bruce Allanad680762008-03-28 09:15:03 -070033 * 82571EB Dual Port Gigabit Mezzanine Adapter
34 * 82571EB Quad Port Gigabit Mezzanine Adapter
35 * 82571PT Gigabit PT Quad Port Server ExpressModule
Auke Kokbc7f75f2007-09-17 12:30:59 -070036 * 82572EI Gigabit Ethernet Controller (Copper)
37 * 82572EI Gigabit Ethernet Controller (Fiber)
38 * 82572EI Gigabit Ethernet Controller
39 * 82573V Gigabit Ethernet Controller (Copper)
40 * 82573E Gigabit Ethernet Controller (Copper)
41 * 82573L Gigabit Ethernet Controller
Bruce Allan4662e822008-08-26 18:37:06 -070042 * 82574L Gigabit Network Connection
Alexander Duyck8c81c9c2009-03-19 01:12:27 +000043 * 82583V Gigabit Network Connection
Auke Kokbc7f75f2007-09-17 12:30:59 -070044 */
45
Auke Kokbc7f75f2007-09-17 12:30:59 -070046#include "e1000.h"
47
48#define ID_LED_RESERVED_F746 0xF746
49#define ID_LED_DEFAULT_82573 ((ID_LED_DEF1_DEF2 << 12) | \
50 (ID_LED_OFF1_ON2 << 8) | \
51 (ID_LED_DEF1_DEF2 << 4) | \
52 (ID_LED_DEF1_DEF2))
53
54#define E1000_GCR_L1_ACT_WITHOUT_L0S_RX 0x08000000
55
Bruce Allan4662e822008-08-26 18:37:06 -070056#define E1000_NVM_INIT_CTRL2_MNGM 0x6000 /* Manageability Operation Mode mask */
57
Auke Kokbc7f75f2007-09-17 12:30:59 -070058static s32 e1000_get_phy_id_82571(struct e1000_hw *hw);
59static s32 e1000_setup_copper_link_82571(struct e1000_hw *hw);
60static s32 e1000_setup_fiber_serdes_link_82571(struct e1000_hw *hw);
dave grahamc9523372009-02-10 12:52:28 +000061static s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -070062static s32 e1000_write_nvm_eewr_82571(struct e1000_hw *hw, u16 offset,
63 u16 words, u16 *data);
64static s32 e1000_fix_nvm_checksum_82571(struct e1000_hw *hw);
65static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw);
66static s32 e1000_setup_link_82571(struct e1000_hw *hw);
67static void e1000_clear_hw_cntrs_82571(struct e1000_hw *hw);
Bruce Allancaaddaf2009-12-01 15:46:43 +000068static void e1000_clear_vfta_82571(struct e1000_hw *hw);
Bruce Allan4662e822008-08-26 18:37:06 -070069static bool e1000_check_mng_mode_82574(struct e1000_hw *hw);
70static s32 e1000_led_on_82574(struct e1000_hw *hw);
Dave Graham23a2d1b2009-06-08 14:28:17 +000071static void e1000_put_hw_semaphore_82571(struct e1000_hw *hw);
Bruce Allan17f208d2009-12-01 15:47:22 +000072static void e1000_power_down_phy_copper_82571(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -070073
74/**
75 * e1000_init_phy_params_82571 - Init PHY func ptrs.
76 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -070077 **/
78static s32 e1000_init_phy_params_82571(struct e1000_hw *hw)
79{
80 struct e1000_phy_info *phy = &hw->phy;
81 s32 ret_val;
82
Jeff Kirsher318a94d2008-03-28 09:15:16 -070083 if (hw->phy.media_type != e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -070084 phy->type = e1000_phy_none;
85 return 0;
86 }
87
88 phy->addr = 1;
89 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
90 phy->reset_delay_us = 100;
91
Bruce Allan17f208d2009-12-01 15:47:22 +000092 phy->ops.power_up = e1000_power_up_phy_copper;
93 phy->ops.power_down = e1000_power_down_phy_copper_82571;
94
Auke Kokbc7f75f2007-09-17 12:30:59 -070095 switch (hw->mac.type) {
96 case e1000_82571:
97 case e1000_82572:
98 phy->type = e1000_phy_igp_2;
99 break;
100 case e1000_82573:
101 phy->type = e1000_phy_m88;
102 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700103 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000104 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -0700105 phy->type = e1000_phy_bm;
106 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700107 default:
108 return -E1000_ERR_PHY;
109 break;
110 }
111
112 /* This can only be done after all function pointers are setup. */
113 ret_val = e1000_get_phy_id_82571(hw);
114
115 /* Verify phy id */
116 switch (hw->mac.type) {
117 case e1000_82571:
118 case e1000_82572:
119 if (phy->id != IGP01E1000_I_PHY_ID)
120 return -E1000_ERR_PHY;
121 break;
122 case e1000_82573:
123 if (phy->id != M88E1111_I_PHY_ID)
124 return -E1000_ERR_PHY;
125 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700126 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000127 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -0700128 if (phy->id != BME1000_E_PHY_ID_R2)
129 return -E1000_ERR_PHY;
130 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700131 default:
132 return -E1000_ERR_PHY;
133 break;
134 }
135
136 return 0;
137}
138
139/**
140 * e1000_init_nvm_params_82571 - Init NVM func ptrs.
141 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700142 **/
143static s32 e1000_init_nvm_params_82571(struct e1000_hw *hw)
144{
145 struct e1000_nvm_info *nvm = &hw->nvm;
146 u32 eecd = er32(EECD);
147 u16 size;
148
149 nvm->opcode_bits = 8;
150 nvm->delay_usec = 1;
151 switch (nvm->override) {
152 case e1000_nvm_override_spi_large:
153 nvm->page_size = 32;
154 nvm->address_bits = 16;
155 break;
156 case e1000_nvm_override_spi_small:
157 nvm->page_size = 8;
158 nvm->address_bits = 8;
159 break;
160 default:
161 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
162 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
163 break;
164 }
165
166 switch (hw->mac.type) {
167 case e1000_82573:
Bruce Allan4662e822008-08-26 18:37:06 -0700168 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000169 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700170 if (((eecd >> 15) & 0x3) == 0x3) {
171 nvm->type = e1000_nvm_flash_hw;
172 nvm->word_size = 2048;
Bruce Allanad680762008-03-28 09:15:03 -0700173 /*
174 * Autonomous Flash update bit must be cleared due
Auke Kokbc7f75f2007-09-17 12:30:59 -0700175 * to Flash update issue.
176 */
177 eecd &= ~E1000_EECD_AUPDEN;
178 ew32(EECD, eecd);
179 break;
180 }
181 /* Fall Through */
182 default:
Bruce Allanad680762008-03-28 09:15:03 -0700183 nvm->type = e1000_nvm_eeprom_spi;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700184 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
185 E1000_EECD_SIZE_EX_SHIFT);
Bruce Allanad680762008-03-28 09:15:03 -0700186 /*
187 * Added to a constant, "size" becomes the left-shift value
Auke Kokbc7f75f2007-09-17 12:30:59 -0700188 * for setting word_size.
189 */
190 size += NVM_WORD_SIZE_BASE_SHIFT;
Jeff Kirsher8d7c2942008-04-02 13:48:07 -0700191
192 /* EEPROM access above 16k is unsupported */
193 if (size > 14)
194 size = 14;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195 nvm->word_size = 1 << size;
196 break;
197 }
198
199 return 0;
200}
201
202/**
203 * e1000_init_mac_params_82571 - Init MAC func ptrs.
204 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700205 **/
206static s32 e1000_init_mac_params_82571(struct e1000_adapter *adapter)
207{
208 struct e1000_hw *hw = &adapter->hw;
209 struct e1000_mac_info *mac = &hw->mac;
210 struct e1000_mac_operations *func = &mac->ops;
Dave Graham23a2d1b2009-06-08 14:28:17 +0000211 u32 swsm = 0;
212 u32 swsm2 = 0;
213 bool force_clear_smbi = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700214
215 /* Set media type */
216 switch (adapter->pdev->device) {
217 case E1000_DEV_ID_82571EB_FIBER:
218 case E1000_DEV_ID_82572EI_FIBER:
219 case E1000_DEV_ID_82571EB_QUAD_FIBER:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700220 hw->phy.media_type = e1000_media_type_fiber;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700221 break;
222 case E1000_DEV_ID_82571EB_SERDES:
223 case E1000_DEV_ID_82572EI_SERDES:
Auke Kok040babf2007-10-31 15:22:05 -0700224 case E1000_DEV_ID_82571EB_SERDES_DUAL:
225 case E1000_DEV_ID_82571EB_SERDES_QUAD:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700226 hw->phy.media_type = e1000_media_type_internal_serdes;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700227 break;
228 default:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700229 hw->phy.media_type = e1000_media_type_copper;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700230 break;
231 }
232
233 /* Set mta register count */
234 mac->mta_reg_count = 128;
235 /* Set rar entry count */
236 mac->rar_entry_count = E1000_RAR_ENTRIES;
Bruce Allanf464ba82010-01-07 16:31:35 +0000237 /* Adaptive IFS supported */
238 mac->adaptive_ifs = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700239
240 /* check for link */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700241 switch (hw->phy.media_type) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700242 case e1000_media_type_copper:
243 func->setup_physical_interface = e1000_setup_copper_link_82571;
244 func->check_for_link = e1000e_check_for_copper_link;
245 func->get_link_up_info = e1000e_get_speed_and_duplex_copper;
246 break;
247 case e1000_media_type_fiber:
Bruce Allanad680762008-03-28 09:15:03 -0700248 func->setup_physical_interface =
249 e1000_setup_fiber_serdes_link_82571;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700250 func->check_for_link = e1000e_check_for_fiber_link;
Bruce Allanad680762008-03-28 09:15:03 -0700251 func->get_link_up_info =
252 e1000e_get_speed_and_duplex_fiber_serdes;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700253 break;
254 case e1000_media_type_internal_serdes:
Bruce Allanad680762008-03-28 09:15:03 -0700255 func->setup_physical_interface =
256 e1000_setup_fiber_serdes_link_82571;
dave grahamc9523372009-02-10 12:52:28 +0000257 func->check_for_link = e1000_check_for_serdes_link_82571;
Bruce Allanad680762008-03-28 09:15:03 -0700258 func->get_link_up_info =
259 e1000e_get_speed_and_duplex_fiber_serdes;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700260 break;
261 default:
262 return -E1000_ERR_CONFIG;
263 break;
264 }
265
Bruce Allan4662e822008-08-26 18:37:06 -0700266 switch (hw->mac.type) {
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000267 case e1000_82573:
268 func->set_lan_id = e1000_set_lan_id_single_port;
269 func->check_mng_mode = e1000e_check_mng_mode_generic;
270 func->led_on = e1000e_led_on_generic;
Bruce Allana65a4a02010-05-10 15:01:51 +0000271
272 /* FWSM register */
273 mac->has_fwsm = true;
274 /*
275 * ARC supported; valid only if manageability features are
276 * enabled.
277 */
278 mac->arc_subsystem_valid =
279 (er32(FWSM) & E1000_FWSM_MODE_MASK)
280 ? true : false;
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000281 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700282 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000283 case e1000_82583:
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000284 func->set_lan_id = e1000_set_lan_id_single_port;
Bruce Allan4662e822008-08-26 18:37:06 -0700285 func->check_mng_mode = e1000_check_mng_mode_82574;
286 func->led_on = e1000_led_on_82574;
287 break;
288 default:
289 func->check_mng_mode = e1000e_check_mng_mode_generic;
290 func->led_on = e1000e_led_on_generic;
Bruce Allana65a4a02010-05-10 15:01:51 +0000291
292 /* FWSM register */
293 mac->has_fwsm = true;
Bruce Allan4662e822008-08-26 18:37:06 -0700294 break;
295 }
296
Dave Graham23a2d1b2009-06-08 14:28:17 +0000297 /*
298 * Ensure that the inter-port SWSM.SMBI lock bit is clear before
299 * first NVM or PHY acess. This should be done for single-port
300 * devices, and for one port only on dual-port devices so that
301 * for those devices we can still use the SMBI lock to synchronize
302 * inter-port accesses to the PHY & NVM.
303 */
304 switch (hw->mac.type) {
305 case e1000_82571:
306 case e1000_82572:
307 swsm2 = er32(SWSM2);
308
309 if (!(swsm2 & E1000_SWSM2_LOCK)) {
310 /* Only do this for the first interface on this card */
311 ew32(SWSM2,
312 swsm2 | E1000_SWSM2_LOCK);
313 force_clear_smbi = true;
314 } else
315 force_clear_smbi = false;
316 break;
317 default:
318 force_clear_smbi = true;
319 break;
320 }
321
322 if (force_clear_smbi) {
323 /* Make sure SWSM.SMBI is clear */
324 swsm = er32(SWSM);
325 if (swsm & E1000_SWSM_SMBI) {
326 /* This bit should not be set on a first interface, and
327 * indicates that the bootagent or EFI code has
328 * improperly left this bit enabled
329 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000330 e_dbg("Please update your 82571 Bootagent\n");
Dave Graham23a2d1b2009-06-08 14:28:17 +0000331 }
332 ew32(SWSM, swsm & ~E1000_SWSM_SMBI);
333 }
334
335 /*
Joe Perches2c73e1f2010-03-26 20:16:59 +0000336 * Initialize device specific counter of SMBI acquisition
Dave Graham23a2d1b2009-06-08 14:28:17 +0000337 * timeouts.
338 */
339 hw->dev_spec.e82571.smb_counter = 0;
340
Auke Kokbc7f75f2007-09-17 12:30:59 -0700341 return 0;
342}
343
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700344static s32 e1000_get_variants_82571(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700345{
346 struct e1000_hw *hw = &adapter->hw;
347 static int global_quad_port_a; /* global port a indication */
348 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700349 int is_port_b = er32(STATUS) & E1000_STATUS_FUNC_1;
350 s32 rc;
351
352 rc = e1000_init_mac_params_82571(adapter);
353 if (rc)
354 return rc;
355
356 rc = e1000_init_nvm_params_82571(hw);
357 if (rc)
358 return rc;
359
360 rc = e1000_init_phy_params_82571(hw);
361 if (rc)
362 return rc;
363
364 /* tag quad port adapters first, it's used below */
365 switch (pdev->device) {
366 case E1000_DEV_ID_82571EB_QUAD_COPPER:
367 case E1000_DEV_ID_82571EB_QUAD_FIBER:
368 case E1000_DEV_ID_82571EB_QUAD_COPPER_LP:
Auke Kok040babf2007-10-31 15:22:05 -0700369 case E1000_DEV_ID_82571PT_QUAD_COPPER:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700370 adapter->flags |= FLAG_IS_QUAD_PORT;
371 /* mark the first port */
372 if (global_quad_port_a == 0)
373 adapter->flags |= FLAG_IS_QUAD_PORT_A;
374 /* Reset for multiple quad port adapters */
375 global_quad_port_a++;
376 if (global_quad_port_a == 4)
377 global_quad_port_a = 0;
378 break;
379 default:
380 break;
381 }
382
383 switch (adapter->hw.mac.type) {
384 case e1000_82571:
385 /* these dual ports don't have WoL on port B at all */
386 if (((pdev->device == E1000_DEV_ID_82571EB_FIBER) ||
387 (pdev->device == E1000_DEV_ID_82571EB_SERDES) ||
388 (pdev->device == E1000_DEV_ID_82571EB_COPPER)) &&
389 (is_port_b))
390 adapter->flags &= ~FLAG_HAS_WOL;
391 /* quad ports only support WoL on port A */
392 if (adapter->flags & FLAG_IS_QUAD_PORT &&
Roel Kluin6e4ca802007-10-29 10:50:05 -0700393 (!(adapter->flags & FLAG_IS_QUAD_PORT_A)))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700394 adapter->flags &= ~FLAG_HAS_WOL;
Auke Kok040babf2007-10-31 15:22:05 -0700395 /* Does not support WoL on any port */
396 if (pdev->device == E1000_DEV_ID_82571EB_SERDES_QUAD)
397 adapter->flags &= ~FLAG_HAS_WOL;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700398 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700399 case e1000_82573:
Bruce Allan6f461f62010-04-27 03:33:04 +0000400 case e1000_82574:
401 case e1000_82583:
402 /* Disable ASPM L0s due to hardware errata */
403 e1000e_disable_aspm(adapter->pdev, PCIE_LINK_STATE_L0S);
404
Auke Kokbc7f75f2007-09-17 12:30:59 -0700405 if (pdev->device == E1000_DEV_ID_82573L) {
Bruce Allan6f461f62010-04-27 03:33:04 +0000406 adapter->flags |= FLAG_HAS_JUMBO_FRAMES;
407 adapter->max_hw_frame_size = DEFAULT_JUMBO;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700408 }
409 break;
410 default:
411 break;
412 }
413
414 return 0;
415}
416
417/**
418 * e1000_get_phy_id_82571 - Retrieve the PHY ID and revision
419 * @hw: pointer to the HW structure
420 *
421 * Reads the PHY registers and stores the PHY ID and possibly the PHY
422 * revision in the hardware structure.
423 **/
424static s32 e1000_get_phy_id_82571(struct e1000_hw *hw)
425{
426 struct e1000_phy_info *phy = &hw->phy;
Bruce Allan4662e822008-08-26 18:37:06 -0700427 s32 ret_val;
428 u16 phy_id = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700429
430 switch (hw->mac.type) {
431 case e1000_82571:
432 case e1000_82572:
Bruce Allanad680762008-03-28 09:15:03 -0700433 /*
434 * The 82571 firmware may still be configuring the PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700435 * In this case, we cannot access the PHY until the
436 * configuration is done. So we explicitly set the
Bruce Allanad680762008-03-28 09:15:03 -0700437 * PHY ID.
438 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700439 phy->id = IGP01E1000_I_PHY_ID;
440 break;
441 case e1000_82573:
442 return e1000e_get_phy_id(hw);
443 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700444 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000445 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -0700446 ret_val = e1e_rphy(hw, PHY_ID1, &phy_id);
447 if (ret_val)
448 return ret_val;
449
450 phy->id = (u32)(phy_id << 16);
451 udelay(20);
452 ret_val = e1e_rphy(hw, PHY_ID2, &phy_id);
453 if (ret_val)
454 return ret_val;
455
456 phy->id |= (u32)(phy_id);
457 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
458 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700459 default:
460 return -E1000_ERR_PHY;
461 break;
462 }
463
464 return 0;
465}
466
467/**
468 * e1000_get_hw_semaphore_82571 - Acquire hardware semaphore
469 * @hw: pointer to the HW structure
470 *
471 * Acquire the HW semaphore to access the PHY or NVM
472 **/
473static s32 e1000_get_hw_semaphore_82571(struct e1000_hw *hw)
474{
475 u32 swsm;
Dave Graham23a2d1b2009-06-08 14:28:17 +0000476 s32 sw_timeout = hw->nvm.word_size + 1;
477 s32 fw_timeout = hw->nvm.word_size + 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700478 s32 i = 0;
479
Dave Graham23a2d1b2009-06-08 14:28:17 +0000480 /*
481 * If we have timedout 3 times on trying to acquire
482 * the inter-port SMBI semaphore, there is old code
483 * operating on the other port, and it is not
484 * releasing SMBI. Modify the number of times that
485 * we try for the semaphore to interwork with this
486 * older code.
487 */
488 if (hw->dev_spec.e82571.smb_counter > 2)
489 sw_timeout = 1;
490
491 /* Get the SW semaphore */
492 while (i < sw_timeout) {
493 swsm = er32(SWSM);
494 if (!(swsm & E1000_SWSM_SMBI))
495 break;
496
497 udelay(50);
498 i++;
499 }
500
501 if (i == sw_timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000502 e_dbg("Driver can't access device - SMBI bit is set.\n");
Dave Graham23a2d1b2009-06-08 14:28:17 +0000503 hw->dev_spec.e82571.smb_counter++;
504 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700505 /* Get the FW semaphore. */
Dave Graham23a2d1b2009-06-08 14:28:17 +0000506 for (i = 0; i < fw_timeout; i++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700507 swsm = er32(SWSM);
508 ew32(SWSM, swsm | E1000_SWSM_SWESMBI);
509
510 /* Semaphore acquired if bit latched */
511 if (er32(SWSM) & E1000_SWSM_SWESMBI)
512 break;
513
514 udelay(50);
515 }
516
Dave Graham23a2d1b2009-06-08 14:28:17 +0000517 if (i == fw_timeout) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700518 /* Release semaphores */
Dave Graham23a2d1b2009-06-08 14:28:17 +0000519 e1000_put_hw_semaphore_82571(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000520 e_dbg("Driver can't access the NVM\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700521 return -E1000_ERR_NVM;
522 }
523
524 return 0;
525}
526
527/**
528 * e1000_put_hw_semaphore_82571 - Release hardware semaphore
529 * @hw: pointer to the HW structure
530 *
531 * Release hardware semaphore used to access the PHY or NVM
532 **/
533static void e1000_put_hw_semaphore_82571(struct e1000_hw *hw)
534{
535 u32 swsm;
536
537 swsm = er32(SWSM);
Dave Graham23a2d1b2009-06-08 14:28:17 +0000538 swsm &= ~(E1000_SWSM_SMBI | E1000_SWSM_SWESMBI);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700539 ew32(SWSM, swsm);
540}
541
542/**
543 * e1000_acquire_nvm_82571 - Request for access to the EEPROM
544 * @hw: pointer to the HW structure
545 *
546 * To gain access to the EEPROM, first we must obtain a hardware semaphore.
547 * Then for non-82573 hardware, set the EEPROM access request bit and wait
548 * for EEPROM access grant bit. If the access grant bit is not set, release
549 * hardware semaphore.
550 **/
551static s32 e1000_acquire_nvm_82571(struct e1000_hw *hw)
552{
553 s32 ret_val;
554
555 ret_val = e1000_get_hw_semaphore_82571(hw);
556 if (ret_val)
557 return ret_val;
558
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000559 switch (hw->mac.type) {
560 case e1000_82573:
561 case e1000_82574:
562 case e1000_82583:
563 break;
564 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700565 ret_val = e1000e_acquire_nvm(hw);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000566 break;
567 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700568
569 if (ret_val)
570 e1000_put_hw_semaphore_82571(hw);
571
572 return ret_val;
573}
574
575/**
576 * e1000_release_nvm_82571 - Release exclusive access to EEPROM
577 * @hw: pointer to the HW structure
578 *
579 * Stop any current commands to the EEPROM and clear the EEPROM request bit.
580 **/
581static void e1000_release_nvm_82571(struct e1000_hw *hw)
582{
583 e1000e_release_nvm(hw);
584 e1000_put_hw_semaphore_82571(hw);
585}
586
587/**
588 * e1000_write_nvm_82571 - Write to EEPROM using appropriate interface
589 * @hw: pointer to the HW structure
590 * @offset: offset within the EEPROM to be written to
591 * @words: number of words to write
592 * @data: 16 bit word(s) to be written to the EEPROM
593 *
594 * For non-82573 silicon, write data to EEPROM at offset using SPI interface.
595 *
596 * If e1000e_update_nvm_checksum is not called after this function, the
Auke Kok489815c2008-02-21 15:11:07 -0800597 * EEPROM will most likely contain an invalid checksum.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700598 **/
599static s32 e1000_write_nvm_82571(struct e1000_hw *hw, u16 offset, u16 words,
600 u16 *data)
601{
602 s32 ret_val;
603
604 switch (hw->mac.type) {
605 case e1000_82573:
Bruce Allan4662e822008-08-26 18:37:06 -0700606 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000607 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700608 ret_val = e1000_write_nvm_eewr_82571(hw, offset, words, data);
609 break;
610 case e1000_82571:
611 case e1000_82572:
612 ret_val = e1000e_write_nvm_spi(hw, offset, words, data);
613 break;
614 default:
615 ret_val = -E1000_ERR_NVM;
616 break;
617 }
618
619 return ret_val;
620}
621
622/**
623 * e1000_update_nvm_checksum_82571 - Update EEPROM checksum
624 * @hw: pointer to the HW structure
625 *
626 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
627 * up to the checksum. Then calculates the EEPROM checksum and writes the
628 * value to the EEPROM.
629 **/
630static s32 e1000_update_nvm_checksum_82571(struct e1000_hw *hw)
631{
632 u32 eecd;
633 s32 ret_val;
634 u16 i;
635
636 ret_val = e1000e_update_nvm_checksum_generic(hw);
637 if (ret_val)
638 return ret_val;
639
Bruce Allanad680762008-03-28 09:15:03 -0700640 /*
641 * If our nvm is an EEPROM, then we're done
642 * otherwise, commit the checksum to the flash NVM.
643 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700644 if (hw->nvm.type != e1000_nvm_flash_hw)
645 return ret_val;
646
647 /* Check for pending operations. */
648 for (i = 0; i < E1000_FLASH_UPDATES; i++) {
649 msleep(1);
650 if ((er32(EECD) & E1000_EECD_FLUPD) == 0)
651 break;
652 }
653
654 if (i == E1000_FLASH_UPDATES)
655 return -E1000_ERR_NVM;
656
657 /* Reset the firmware if using STM opcode. */
658 if ((er32(FLOP) & 0xFF00) == E1000_STM_OPCODE) {
Bruce Allanad680762008-03-28 09:15:03 -0700659 /*
660 * The enabling of and the actual reset must be done
Auke Kokbc7f75f2007-09-17 12:30:59 -0700661 * in two write cycles.
662 */
663 ew32(HICR, E1000_HICR_FW_RESET_ENABLE);
664 e1e_flush();
665 ew32(HICR, E1000_HICR_FW_RESET);
666 }
667
668 /* Commit the write to flash */
669 eecd = er32(EECD) | E1000_EECD_FLUPD;
670 ew32(EECD, eecd);
671
672 for (i = 0; i < E1000_FLASH_UPDATES; i++) {
673 msleep(1);
674 if ((er32(EECD) & E1000_EECD_FLUPD) == 0)
675 break;
676 }
677
678 if (i == E1000_FLASH_UPDATES)
679 return -E1000_ERR_NVM;
680
681 return 0;
682}
683
684/**
685 * e1000_validate_nvm_checksum_82571 - Validate EEPROM checksum
686 * @hw: pointer to the HW structure
687 *
688 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
689 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
690 **/
691static s32 e1000_validate_nvm_checksum_82571(struct e1000_hw *hw)
692{
693 if (hw->nvm.type == e1000_nvm_flash_hw)
694 e1000_fix_nvm_checksum_82571(hw);
695
696 return e1000e_validate_nvm_checksum_generic(hw);
697}
698
699/**
700 * e1000_write_nvm_eewr_82571 - Write to EEPROM for 82573 silicon
701 * @hw: pointer to the HW structure
702 * @offset: offset within the EEPROM to be written to
703 * @words: number of words to write
704 * @data: 16 bit word(s) to be written to the EEPROM
705 *
706 * After checking for invalid values, poll the EEPROM to ensure the previous
707 * command has completed before trying to write the next word. After write
708 * poll for completion.
709 *
710 * If e1000e_update_nvm_checksum is not called after this function, the
Auke Kok489815c2008-02-21 15:11:07 -0800711 * EEPROM will most likely contain an invalid checksum.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700712 **/
713static s32 e1000_write_nvm_eewr_82571(struct e1000_hw *hw, u16 offset,
714 u16 words, u16 *data)
715{
716 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allana708dd82009-11-20 23:28:37 +0000717 u32 i, eewr = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700718 s32 ret_val = 0;
719
Bruce Allanad680762008-03-28 09:15:03 -0700720 /*
721 * A check for invalid values: offset too large, too many words,
722 * and not enough words.
723 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700724 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) ||
725 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000726 e_dbg("nvm parameter(s) out of bounds\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700727 return -E1000_ERR_NVM;
728 }
729
730 for (i = 0; i < words; i++) {
731 eewr = (data[i] << E1000_NVM_RW_REG_DATA) |
732 ((offset+i) << E1000_NVM_RW_ADDR_SHIFT) |
733 E1000_NVM_RW_REG_START;
734
735 ret_val = e1000e_poll_eerd_eewr_done(hw, E1000_NVM_POLL_WRITE);
736 if (ret_val)
737 break;
738
739 ew32(EEWR, eewr);
740
741 ret_val = e1000e_poll_eerd_eewr_done(hw, E1000_NVM_POLL_WRITE);
742 if (ret_val)
743 break;
744 }
745
746 return ret_val;
747}
748
749/**
750 * e1000_get_cfg_done_82571 - Poll for configuration done
751 * @hw: pointer to the HW structure
752 *
753 * Reads the management control register for the config done bit to be set.
754 **/
755static s32 e1000_get_cfg_done_82571(struct e1000_hw *hw)
756{
757 s32 timeout = PHY_CFG_TIMEOUT;
758
759 while (timeout) {
760 if (er32(EEMNGCTL) &
761 E1000_NVM_CFG_DONE_PORT_0)
762 break;
763 msleep(1);
764 timeout--;
765 }
766 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000767 e_dbg("MNG configuration cycle has not completed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700768 return -E1000_ERR_RESET;
769 }
770
771 return 0;
772}
773
774/**
775 * e1000_set_d0_lplu_state_82571 - Set Low Power Linkup D0 state
776 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +0000777 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -0700778 *
779 * Sets the LPLU D0 state according to the active flag. When activating LPLU
780 * this function also disables smart speed and vice versa. LPLU will not be
781 * activated unless the device autonegotiation advertisement meets standards
782 * of either 10 or 10/100 or 10/100/1000 at all duplexes. This is a function
783 * pointer entry point only called by PHY setup routines.
784 **/
785static s32 e1000_set_d0_lplu_state_82571(struct e1000_hw *hw, bool active)
786{
787 struct e1000_phy_info *phy = &hw->phy;
788 s32 ret_val;
789 u16 data;
790
791 ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data);
792 if (ret_val)
793 return ret_val;
794
795 if (active) {
796 data |= IGP02E1000_PM_D0_LPLU;
797 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
798 if (ret_val)
799 return ret_val;
800
801 /* When LPLU is enabled, we should disable SmartSpeed */
802 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
803 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
804 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
805 if (ret_val)
806 return ret_val;
807 } else {
808 data &= ~IGP02E1000_PM_D0_LPLU;
809 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
Bruce Allanad680762008-03-28 09:15:03 -0700810 /*
811 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -0700812 * during Dx states where the power conservation is most
813 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -0700814 * SmartSpeed, so performance is maintained.
815 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700816 if (phy->smart_speed == e1000_smart_speed_on) {
817 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700818 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700819 if (ret_val)
820 return ret_val;
821
822 data |= IGP01E1000_PSCFR_SMART_SPEED;
823 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700824 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700825 if (ret_val)
826 return ret_val;
827 } else if (phy->smart_speed == e1000_smart_speed_off) {
828 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700829 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700830 if (ret_val)
831 return ret_val;
832
833 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
834 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700835 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700836 if (ret_val)
837 return ret_val;
838 }
839 }
840
841 return 0;
842}
843
844/**
845 * e1000_reset_hw_82571 - Reset hardware
846 * @hw: pointer to the HW structure
847 *
Bruce Allanfe401672009-11-20 23:26:05 +0000848 * This resets the hardware into a known state.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700849 **/
850static s32 e1000_reset_hw_82571(struct e1000_hw *hw)
851{
Bruce Allana708dd82009-11-20 23:28:37 +0000852 u32 ctrl, extcnf_ctrl, ctrl_ext, icr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700853 s32 ret_val;
854 u16 i = 0;
855
Bruce Allanad680762008-03-28 09:15:03 -0700856 /*
857 * Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -0700858 * on the last TLP read/write transaction when MAC is reset.
859 */
860 ret_val = e1000e_disable_pcie_master(hw);
861 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000862 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700863
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000864 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700865 ew32(IMC, 0xffffffff);
866
867 ew32(RCTL, 0);
868 ew32(TCTL, E1000_TCTL_PSP);
869 e1e_flush();
870
871 msleep(10);
872
Bruce Allanad680762008-03-28 09:15:03 -0700873 /*
874 * Must acquire the MDIO ownership before MAC reset.
875 * Ownership defaults to firmware after a reset.
876 */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000877 switch (hw->mac.type) {
878 case e1000_82573:
879 case e1000_82574:
880 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700881 extcnf_ctrl = er32(EXTCNF_CTRL);
882 extcnf_ctrl |= E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP;
883
884 do {
885 ew32(EXTCNF_CTRL, extcnf_ctrl);
886 extcnf_ctrl = er32(EXTCNF_CTRL);
887
888 if (extcnf_ctrl & E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP)
889 break;
890
891 extcnf_ctrl |= E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP;
892
893 msleep(2);
894 i++;
895 } while (i < MDIO_OWNERSHIP_TIMEOUT);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000896 break;
897 default:
898 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700899 }
900
901 ctrl = er32(CTRL);
902
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000903 e_dbg("Issuing a global reset to MAC\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700904 ew32(CTRL, ctrl | E1000_CTRL_RST);
905
906 if (hw->nvm.type == e1000_nvm_flash_hw) {
907 udelay(10);
908 ctrl_ext = er32(CTRL_EXT);
909 ctrl_ext |= E1000_CTRL_EXT_EE_RST;
910 ew32(CTRL_EXT, ctrl_ext);
911 e1e_flush();
912 }
913
914 ret_val = e1000e_get_auto_rd_done(hw);
915 if (ret_val)
916 /* We don't want to continue accessing MAC registers. */
917 return ret_val;
918
Bruce Allanad680762008-03-28 09:15:03 -0700919 /*
920 * Phy configuration from NVM just starts after EECD_AUTO_RD is set.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700921 * Need to wait for Phy configuration completion before accessing
922 * NVM and Phy.
923 */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000924
925 switch (hw->mac.type) {
926 case e1000_82573:
927 case e1000_82574:
928 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700929 msleep(25);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000930 break;
931 default:
932 break;
933 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700934
935 /* Clear any pending interrupt events. */
936 ew32(IMC, 0xffffffff);
937 icr = er32(ICR);
938
Bruce Allan1aef70e2010-08-19 15:48:52 -0700939 if (hw->mac.type == e1000_82571) {
940 /* Install any alternate MAC address into RAR0 */
941 ret_val = e1000_check_alt_mac_addr_generic(hw);
942 if (ret_val)
943 return ret_val;
Bruce Allan608f8a02010-01-13 02:04:58 +0000944
Bruce Allan1aef70e2010-08-19 15:48:52 -0700945 e1000e_set_laa_state_82571(hw, true);
946 }
Bill Hayes93ca1612007-10-31 15:21:52 -0700947
dave grahamc9523372009-02-10 12:52:28 +0000948 /* Reinitialize the 82571 serdes link state machine */
949 if (hw->phy.media_type == e1000_media_type_internal_serdes)
950 hw->mac.serdes_link_state = e1000_serdes_link_down;
951
Auke Kokbc7f75f2007-09-17 12:30:59 -0700952 return 0;
953}
954
955/**
956 * e1000_init_hw_82571 - Initialize hardware
957 * @hw: pointer to the HW structure
958 *
959 * This inits the hardware readying it for operation.
960 **/
961static s32 e1000_init_hw_82571(struct e1000_hw *hw)
962{
963 struct e1000_mac_info *mac = &hw->mac;
964 u32 reg_data;
965 s32 ret_val;
Bruce Allana708dd82009-11-20 23:28:37 +0000966 u16 i, rar_count = mac->rar_entry_count;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700967
968 e1000_initialize_hw_bits_82571(hw);
969
970 /* Initialize identification LED */
971 ret_val = e1000e_id_led_init(hw);
Bruce Allande39b752009-11-20 23:27:59 +0000972 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000973 e_dbg("Error initializing identification LED\n");
Bruce Allande39b752009-11-20 23:27:59 +0000974 /* This is not fatal and we should not stop init due to this */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700975
976 /* Disabling VLAN filtering */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000977 e_dbg("Initializing the IEEE VLAN\n");
Bruce Allancaaddaf2009-12-01 15:46:43 +0000978 mac->ops.clear_vfta(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700979
980 /* Setup the receive address. */
Bruce Allanad680762008-03-28 09:15:03 -0700981 /*
982 * If, however, a locally administered address was assigned to the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700983 * 82571, we must reserve a RAR for it to work around an issue where
984 * resetting one port will reload the MAC on the other port.
985 */
986 if (e1000e_get_laa_state_82571(hw))
987 rar_count--;
988 e1000e_init_rx_addrs(hw, rar_count);
989
990 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000991 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700992 for (i = 0; i < mac->mta_reg_count; i++)
993 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
994
995 /* Setup link and flow control */
996 ret_val = e1000_setup_link_82571(hw);
997
998 /* Set the transmit descriptor write-back policy */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -0700999 reg_data = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001000 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
1001 E1000_TXDCTL_FULL_TX_DESC_WB |
1002 E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001003 ew32(TXDCTL(0), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001004
1005 /* ...for both queues. */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001006 switch (mac->type) {
1007 case e1000_82573:
Bruce Allana65a4a02010-05-10 15:01:51 +00001008 e1000e_enable_tx_pkt_filtering(hw);
1009 /* fall through */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001010 case e1000_82574:
1011 case e1000_82583:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001012 reg_data = er32(GCR);
1013 reg_data |= E1000_GCR_L1_ACT_WITHOUT_L0S_RX;
1014 ew32(GCR, reg_data);
1015 break;
1016 default:
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001017 reg_data = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001018 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
1019 E1000_TXDCTL_FULL_TX_DESC_WB |
1020 E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001021 ew32(TXDCTL(1), reg_data);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001022 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001023 }
1024
Bruce Allanad680762008-03-28 09:15:03 -07001025 /*
1026 * Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001027 * important that we do this after we have tried to establish link
1028 * because the symbol error count will increment wildly if there
1029 * is no link.
1030 */
1031 e1000_clear_hw_cntrs_82571(hw);
1032
1033 return ret_val;
1034}
1035
1036/**
1037 * e1000_initialize_hw_bits_82571 - Initialize hardware-dependent bits
1038 * @hw: pointer to the HW structure
1039 *
1040 * Initializes required hardware-dependent bits needed for normal operation.
1041 **/
1042static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
1043{
1044 u32 reg;
1045
1046 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001047 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001048 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001049 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001050
1051 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001052 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001053 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001054 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001055
1056 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001057 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001058 reg &= ~(0xF << 27); /* 30:27 */
1059 switch (hw->mac.type) {
1060 case e1000_82571:
1061 case e1000_82572:
1062 reg |= (1 << 23) | (1 << 24) | (1 << 25) | (1 << 26);
1063 break;
1064 default:
1065 break;
1066 }
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001067 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001068
1069 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001070 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001071 switch (hw->mac.type) {
1072 case e1000_82571:
1073 case e1000_82572:
1074 reg &= ~((1 << 29) | (1 << 30));
1075 reg |= (1 << 22) | (1 << 24) | (1 << 25) | (1 << 26);
1076 if (er32(TCTL) & E1000_TCTL_MULR)
1077 reg &= ~(1 << 28);
1078 else
1079 reg |= (1 << 28);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001080 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001081 break;
1082 default:
1083 break;
1084 }
1085
1086 /* Device Control */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001087 switch (hw->mac.type) {
1088 case e1000_82573:
1089 case e1000_82574:
1090 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001091 reg = er32(CTRL);
1092 reg &= ~(1 << 29);
1093 ew32(CTRL, reg);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001094 break;
1095 default:
1096 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001097 }
1098
1099 /* Extended Device Control */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001100 switch (hw->mac.type) {
1101 case e1000_82573:
1102 case e1000_82574:
1103 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001104 reg = er32(CTRL_EXT);
1105 reg &= ~(1 << 23);
1106 reg |= (1 << 22);
1107 ew32(CTRL_EXT, reg);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001108 break;
1109 default:
1110 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001111 }
Bruce Allan4662e822008-08-26 18:37:06 -07001112
Alexander Duyck6ea7ae12008-11-14 06:54:36 +00001113 if (hw->mac.type == e1000_82571) {
1114 reg = er32(PBA_ECC);
1115 reg |= E1000_PBA_ECC_CORR_EN;
1116 ew32(PBA_ECC, reg);
1117 }
dave graham5df3f0e2009-02-10 12:51:41 +00001118 /*
1119 * Workaround for hardware errata.
1120 * Ensure that DMA Dynamic Clock gating is disabled on 82571 and 82572
1121 */
1122
1123 if ((hw->mac.type == e1000_82571) ||
1124 (hw->mac.type == e1000_82572)) {
1125 reg = er32(CTRL_EXT);
1126 reg &= ~E1000_CTRL_EXT_DMA_DYN_CLK_EN;
1127 ew32(CTRL_EXT, reg);
1128 }
1129
Alexander Duyck6ea7ae12008-11-14 06:54:36 +00001130
Jesse Brandeburg78272bb2009-01-26 12:16:26 -08001131 /* PCI-Ex Control Registers */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001132 switch (hw->mac.type) {
1133 case e1000_82574:
1134 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -07001135 reg = er32(GCR);
1136 reg |= (1 << 22);
1137 ew32(GCR, reg);
Jesse Brandeburg78272bb2009-01-26 12:16:26 -08001138
Bruce Allan84efb7b2009-11-20 23:26:24 +00001139 /*
1140 * Workaround for hardware errata.
1141 * apply workaround for hardware errata documented in errata
1142 * docs Fixes issue where some error prone or unreliable PCIe
1143 * completions are occurring, particularly with ASPM enabled.
1144 * Without fix, issue can cause tx timeouts.
1145 */
Jesse Brandeburg78272bb2009-01-26 12:16:26 -08001146 reg = er32(GCR2);
1147 reg |= 1;
1148 ew32(GCR2, reg);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001149 break;
1150 default:
1151 break;
Bruce Allan4662e822008-08-26 18:37:06 -07001152 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001153}
1154
1155/**
Bruce Allancaaddaf2009-12-01 15:46:43 +00001156 * e1000_clear_vfta_82571 - Clear VLAN filter table
Auke Kokbc7f75f2007-09-17 12:30:59 -07001157 * @hw: pointer to the HW structure
1158 *
1159 * Clears the register array which contains the VLAN filter table by
1160 * setting all the values to 0.
1161 **/
Bruce Allancaaddaf2009-12-01 15:46:43 +00001162static void e1000_clear_vfta_82571(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001163{
1164 u32 offset;
1165 u32 vfta_value = 0;
1166 u32 vfta_offset = 0;
1167 u32 vfta_bit_in_reg = 0;
1168
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001169 switch (hw->mac.type) {
1170 case e1000_82573:
1171 case e1000_82574:
1172 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001173 if (hw->mng_cookie.vlan_id != 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001174 /*
1175 * The VFTA is a 4096b bit-field, each identifying
Auke Kokbc7f75f2007-09-17 12:30:59 -07001176 * a single VLAN ID. The following operations
1177 * determine which 32b entry (i.e. offset) into the
1178 * array we want to set the VLAN ID (i.e. bit) of
1179 * the manageability unit.
1180 */
1181 vfta_offset = (hw->mng_cookie.vlan_id >>
1182 E1000_VFTA_ENTRY_SHIFT) &
1183 E1000_VFTA_ENTRY_MASK;
1184 vfta_bit_in_reg = 1 << (hw->mng_cookie.vlan_id &
1185 E1000_VFTA_ENTRY_BIT_SHIFT_MASK);
1186 }
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001187 break;
1188 default:
1189 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001190 }
1191 for (offset = 0; offset < E1000_VLAN_FILTER_TBL_SIZE; offset++) {
Bruce Allanad680762008-03-28 09:15:03 -07001192 /*
1193 * If the offset we want to clear is the same offset of the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001194 * manageability VLAN ID, then clear all bits except that of
1195 * the manageability unit.
1196 */
1197 vfta_value = (offset == vfta_offset) ? vfta_bit_in_reg : 0;
1198 E1000_WRITE_REG_ARRAY(hw, E1000_VFTA, offset, vfta_value);
1199 e1e_flush();
1200 }
1201}
1202
1203/**
Bruce Allan4662e822008-08-26 18:37:06 -07001204 * e1000_check_mng_mode_82574 - Check manageability is enabled
1205 * @hw: pointer to the HW structure
1206 *
1207 * Reads the NVM Initialization Control Word 2 and returns true
1208 * (>0) if any manageability is enabled, else false (0).
1209 **/
1210static bool e1000_check_mng_mode_82574(struct e1000_hw *hw)
1211{
1212 u16 data;
1213
1214 e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &data);
1215 return (data & E1000_NVM_INIT_CTRL2_MNGM) != 0;
1216}
1217
1218/**
1219 * e1000_led_on_82574 - Turn LED on
1220 * @hw: pointer to the HW structure
1221 *
1222 * Turn LED on.
1223 **/
1224static s32 e1000_led_on_82574(struct e1000_hw *hw)
1225{
1226 u32 ctrl;
1227 u32 i;
1228
1229 ctrl = hw->mac.ledctl_mode2;
1230 if (!(E1000_STATUS_LU & er32(STATUS))) {
1231 /*
1232 * If no link, then turn LED on by setting the invert bit
1233 * for each LED that's "on" (0x0E) in ledctl_mode2.
1234 */
1235 for (i = 0; i < 4; i++)
1236 if (((hw->mac.ledctl_mode2 >> (i * 8)) & 0xFF) ==
1237 E1000_LEDCTL_MODE_LED_ON)
1238 ctrl |= (E1000_LEDCTL_LED0_IVRT << (i * 8));
1239 }
1240 ew32(LEDCTL, ctrl);
1241
1242 return 0;
1243}
1244
1245/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001246 * e1000_setup_link_82571 - Setup flow control and link settings
1247 * @hw: pointer to the HW structure
1248 *
1249 * Determines which flow control settings to use, then configures flow
1250 * control. Calls the appropriate media-specific link configuration
1251 * function. Assuming the adapter has a valid link partner, a valid link
1252 * should be established. Assumes the hardware has previously been reset
1253 * and the transmitter and receiver are not enabled.
1254 **/
1255static s32 e1000_setup_link_82571(struct e1000_hw *hw)
1256{
Bruce Allanad680762008-03-28 09:15:03 -07001257 /*
1258 * 82573 does not have a word in the NVM to determine
Auke Kokbc7f75f2007-09-17 12:30:59 -07001259 * the default flow control setting, so we explicitly
1260 * set it to full.
1261 */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001262 switch (hw->mac.type) {
1263 case e1000_82573:
1264 case e1000_82574:
1265 case e1000_82583:
1266 if (hw->fc.requested_mode == e1000_fc_default)
1267 hw->fc.requested_mode = e1000_fc_full;
1268 break;
1269 default:
1270 break;
1271 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001272
1273 return e1000e_setup_link(hw);
1274}
1275
1276/**
1277 * e1000_setup_copper_link_82571 - Configure copper link settings
1278 * @hw: pointer to the HW structure
1279 *
1280 * Configures the link for auto-neg or forced speed and duplex. Then we check
1281 * for link, once link is established calls to configure collision distance
1282 * and flow control are called.
1283 **/
1284static s32 e1000_setup_copper_link_82571(struct e1000_hw *hw)
1285{
1286 u32 ctrl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001287 s32 ret_val;
1288
1289 ctrl = er32(CTRL);
1290 ctrl |= E1000_CTRL_SLU;
1291 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1292 ew32(CTRL, ctrl);
1293
1294 switch (hw->phy.type) {
1295 case e1000_phy_m88:
Bruce Allan4662e822008-08-26 18:37:06 -07001296 case e1000_phy_bm:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001297 ret_val = e1000e_copper_link_setup_m88(hw);
1298 break;
1299 case e1000_phy_igp_2:
1300 ret_val = e1000e_copper_link_setup_igp(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001301 break;
1302 default:
1303 return -E1000_ERR_PHY;
1304 break;
1305 }
1306
1307 if (ret_val)
1308 return ret_val;
1309
1310 ret_val = e1000e_setup_copper_link(hw);
1311
1312 return ret_val;
1313}
1314
1315/**
1316 * e1000_setup_fiber_serdes_link_82571 - Setup link for fiber/serdes
1317 * @hw: pointer to the HW structure
1318 *
1319 * Configures collision distance and flow control for fiber and serdes links.
1320 * Upon successful setup, poll for link.
1321 **/
1322static s32 e1000_setup_fiber_serdes_link_82571(struct e1000_hw *hw)
1323{
1324 switch (hw->mac.type) {
1325 case e1000_82571:
1326 case e1000_82572:
Bruce Allanad680762008-03-28 09:15:03 -07001327 /*
1328 * If SerDes loopback mode is entered, there is no form
Auke Kokbc7f75f2007-09-17 12:30:59 -07001329 * of reset to take the adapter out of that mode. So we
1330 * have to explicitly take the adapter out of loopback
Auke Kok489815c2008-02-21 15:11:07 -08001331 * mode. This prevents drivers from twiddling their thumbs
Auke Kokbc7f75f2007-09-17 12:30:59 -07001332 * if another tool failed to take it out of loopback mode.
1333 */
Bruce Allanad680762008-03-28 09:15:03 -07001334 ew32(SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001335 break;
1336 default:
1337 break;
1338 }
1339
1340 return e1000e_setup_fiber_serdes_link(hw);
1341}
1342
1343/**
dave grahamc9523372009-02-10 12:52:28 +00001344 * e1000_check_for_serdes_link_82571 - Check for link (Serdes)
1345 * @hw: pointer to the HW structure
1346 *
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001347 * Reports the link state as up or down.
1348 *
1349 * If autonegotiation is supported by the link partner, the link state is
1350 * determined by the result of autonegotiation. This is the most likely case.
1351 * If autonegotiation is not supported by the link partner, and the link
1352 * has a valid signal, force the link up.
1353 *
1354 * The link state is represented internally here by 4 states:
1355 *
1356 * 1) down
1357 * 2) autoneg_progress
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001358 * 3) autoneg_complete (the link successfully autonegotiated)
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001359 * 4) forced_up (the link has been forced up, it did not autonegotiate)
1360 *
dave grahamc9523372009-02-10 12:52:28 +00001361 **/
Hannes Ederf6370112009-02-14 11:32:25 +00001362static s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
dave grahamc9523372009-02-10 12:52:28 +00001363{
1364 struct e1000_mac_info *mac = &hw->mac;
1365 u32 rxcw;
1366 u32 ctrl;
1367 u32 status;
1368 s32 ret_val = 0;
1369
1370 ctrl = er32(CTRL);
1371 status = er32(STATUS);
1372 rxcw = er32(RXCW);
1373
1374 if ((rxcw & E1000_RXCW_SYNCH) && !(rxcw & E1000_RXCW_IV)) {
1375
1376 /* Receiver is synchronized with no invalid bits. */
1377 switch (mac->serdes_link_state) {
1378 case e1000_serdes_link_autoneg_complete:
1379 if (!(status & E1000_STATUS_LU)) {
1380 /*
1381 * We have lost link, retry autoneg before
1382 * reporting link failure
1383 */
1384 mac->serdes_link_state =
1385 e1000_serdes_link_autoneg_progress;
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001386 mac->serdes_has_link = false;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001387 e_dbg("AN_UP -> AN_PROG\n");
dave grahamc9523372009-02-10 12:52:28 +00001388 }
1389 break;
1390
1391 case e1000_serdes_link_forced_up:
1392 /*
1393 * If we are receiving /C/ ordered sets, re-enable
1394 * auto-negotiation in the TXCW register and disable
1395 * forced link in the Device Control register in an
1396 * attempt to auto-negotiate with our link partner.
1397 */
1398 if (rxcw & E1000_RXCW_C) {
1399 /* Enable autoneg, and unforce link up */
1400 ew32(TXCW, mac->txcw);
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001401 ew32(CTRL, (ctrl & ~E1000_CTRL_SLU));
dave grahamc9523372009-02-10 12:52:28 +00001402 mac->serdes_link_state =
1403 e1000_serdes_link_autoneg_progress;
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001404 mac->serdes_has_link = false;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001405 e_dbg("FORCED_UP -> AN_PROG\n");
dave grahamc9523372009-02-10 12:52:28 +00001406 }
1407 break;
1408
1409 case e1000_serdes_link_autoneg_progress:
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001410 if (rxcw & E1000_RXCW_C) {
1411 /*
1412 * We received /C/ ordered sets, meaning the
1413 * link partner has autonegotiated, and we can
1414 * trust the Link Up (LU) status bit.
1415 */
1416 if (status & E1000_STATUS_LU) {
1417 mac->serdes_link_state =
1418 e1000_serdes_link_autoneg_complete;
1419 e_dbg("AN_PROG -> AN_UP\n");
1420 mac->serdes_has_link = true;
1421 } else {
1422 /* Autoneg completed, but failed. */
1423 mac->serdes_link_state =
1424 e1000_serdes_link_down;
1425 e_dbg("AN_PROG -> DOWN\n");
1426 }
dave grahamc9523372009-02-10 12:52:28 +00001427 } else {
1428 /*
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001429 * The link partner did not autoneg.
1430 * Force link up and full duplex, and change
1431 * state to forced.
dave grahamc9523372009-02-10 12:52:28 +00001432 */
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001433 ew32(TXCW, (mac->txcw & ~E1000_TXCW_ANE));
dave grahamc9523372009-02-10 12:52:28 +00001434 ctrl |= (E1000_CTRL_SLU | E1000_CTRL_FD);
1435 ew32(CTRL, ctrl);
1436
1437 /* Configure Flow Control after link up. */
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001438 ret_val = e1000e_config_fc_after_link_up(hw);
dave grahamc9523372009-02-10 12:52:28 +00001439 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001440 e_dbg("Error config flow control\n");
dave grahamc9523372009-02-10 12:52:28 +00001441 break;
1442 }
1443 mac->serdes_link_state =
1444 e1000_serdes_link_forced_up;
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001445 mac->serdes_has_link = true;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001446 e_dbg("AN_PROG -> FORCED_UP\n");
dave grahamc9523372009-02-10 12:52:28 +00001447 }
dave grahamc9523372009-02-10 12:52:28 +00001448 break;
1449
1450 case e1000_serdes_link_down:
1451 default:
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001452 /*
1453 * The link was down but the receiver has now gained
dave grahamc9523372009-02-10 12:52:28 +00001454 * valid sync, so lets see if we can bring the link
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001455 * up.
1456 */
dave grahamc9523372009-02-10 12:52:28 +00001457 ew32(TXCW, mac->txcw);
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001458 ew32(CTRL, (ctrl & ~E1000_CTRL_SLU));
dave grahamc9523372009-02-10 12:52:28 +00001459 mac->serdes_link_state =
1460 e1000_serdes_link_autoneg_progress;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001461 e_dbg("DOWN -> AN_PROG\n");
dave grahamc9523372009-02-10 12:52:28 +00001462 break;
1463 }
1464 } else {
1465 if (!(rxcw & E1000_RXCW_SYNCH)) {
1466 mac->serdes_has_link = false;
1467 mac->serdes_link_state = e1000_serdes_link_down;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001468 e_dbg("ANYSTATE -> DOWN\n");
dave grahamc9523372009-02-10 12:52:28 +00001469 } else {
1470 /*
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001471 * We have sync, and can tolerate one invalid (IV)
1472 * codeword before declaring link down, so reread
1473 * to look again.
dave grahamc9523372009-02-10 12:52:28 +00001474 */
1475 udelay(10);
1476 rxcw = er32(RXCW);
1477 if (rxcw & E1000_RXCW_IV) {
1478 mac->serdes_link_state = e1000_serdes_link_down;
1479 mac->serdes_has_link = false;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001480 e_dbg("ANYSTATE -> DOWN\n");
dave grahamc9523372009-02-10 12:52:28 +00001481 }
1482 }
1483 }
1484
1485 return ret_val;
1486}
1487
1488/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001489 * e1000_valid_led_default_82571 - Verify a valid default LED config
1490 * @hw: pointer to the HW structure
1491 * @data: pointer to the NVM (EEPROM)
1492 *
1493 * Read the EEPROM for the current default LED configuration. If the
1494 * LED configuration is not valid, set to a valid LED configuration.
1495 **/
1496static s32 e1000_valid_led_default_82571(struct e1000_hw *hw, u16 *data)
1497{
1498 s32 ret_val;
1499
1500 ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data);
1501 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001502 e_dbg("NVM Read Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001503 return ret_val;
1504 }
1505
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001506 switch (hw->mac.type) {
1507 case e1000_82573:
1508 case e1000_82574:
1509 case e1000_82583:
1510 if (*data == ID_LED_RESERVED_F746)
1511 *data = ID_LED_DEFAULT_82573;
1512 break;
1513 default:
1514 if (*data == ID_LED_RESERVED_0000 ||
1515 *data == ID_LED_RESERVED_FFFF)
1516 *data = ID_LED_DEFAULT;
1517 break;
1518 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001519
1520 return 0;
1521}
1522
1523/**
1524 * e1000e_get_laa_state_82571 - Get locally administered address state
1525 * @hw: pointer to the HW structure
1526 *
Auke Kok489815c2008-02-21 15:11:07 -08001527 * Retrieve and return the current locally administered address state.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001528 **/
1529bool e1000e_get_laa_state_82571(struct e1000_hw *hw)
1530{
1531 if (hw->mac.type != e1000_82571)
Bruce Allan564ea9b2009-11-20 23:26:44 +00001532 return false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001533
1534 return hw->dev_spec.e82571.laa_is_present;
1535}
1536
1537/**
1538 * e1000e_set_laa_state_82571 - Set locally administered address state
1539 * @hw: pointer to the HW structure
1540 * @state: enable/disable locally administered address
1541 *
Bruce Allan5ff5b662009-12-01 15:51:11 +00001542 * Enable/Disable the current locally administered address state.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001543 **/
1544void e1000e_set_laa_state_82571(struct e1000_hw *hw, bool state)
1545{
1546 if (hw->mac.type != e1000_82571)
1547 return;
1548
1549 hw->dev_spec.e82571.laa_is_present = state;
1550
1551 /* If workaround is activated... */
1552 if (state)
Bruce Allanad680762008-03-28 09:15:03 -07001553 /*
1554 * Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07001555 * between the time RAR[0] gets clobbered and the time it
1556 * gets fixed, the actual LAA is in one of the RARs and no
1557 * incoming packets directed to this port are dropped.
1558 * Eventually the LAA will be in RAR[0] and RAR[14].
1559 */
1560 e1000e_rar_set(hw, hw->mac.addr, hw->mac.rar_entry_count - 1);
1561}
1562
1563/**
1564 * e1000_fix_nvm_checksum_82571 - Fix EEPROM checksum
1565 * @hw: pointer to the HW structure
1566 *
1567 * Verifies that the EEPROM has completed the update. After updating the
1568 * EEPROM, we need to check bit 15 in work 0x23 for the checksum fix. If
1569 * the checksum fix is not implemented, we need to set the bit and update
1570 * the checksum. Otherwise, if bit 15 is set and the checksum is incorrect,
1571 * we need to return bad checksum.
1572 **/
1573static s32 e1000_fix_nvm_checksum_82571(struct e1000_hw *hw)
1574{
1575 struct e1000_nvm_info *nvm = &hw->nvm;
1576 s32 ret_val;
1577 u16 data;
1578
1579 if (nvm->type != e1000_nvm_flash_hw)
1580 return 0;
1581
Bruce Allanad680762008-03-28 09:15:03 -07001582 /*
1583 * Check bit 4 of word 10h. If it is 0, firmware is done updating
Auke Kokbc7f75f2007-09-17 12:30:59 -07001584 * 10h-12h. Checksum may need to be fixed.
1585 */
1586 ret_val = e1000_read_nvm(hw, 0x10, 1, &data);
1587 if (ret_val)
1588 return ret_val;
1589
1590 if (!(data & 0x10)) {
Bruce Allanad680762008-03-28 09:15:03 -07001591 /*
1592 * Read 0x23 and check bit 15. This bit is a 1
Auke Kokbc7f75f2007-09-17 12:30:59 -07001593 * when the checksum has already been fixed. If
1594 * the checksum is still wrong and this bit is a
1595 * 1, we need to return bad checksum. Otherwise,
1596 * we need to set this bit to a 1 and update the
1597 * checksum.
1598 */
1599 ret_val = e1000_read_nvm(hw, 0x23, 1, &data);
1600 if (ret_val)
1601 return ret_val;
1602
1603 if (!(data & 0x8000)) {
1604 data |= 0x8000;
1605 ret_val = e1000_write_nvm(hw, 0x23, 1, &data);
1606 if (ret_val)
1607 return ret_val;
1608 ret_val = e1000e_update_nvm_checksum(hw);
1609 }
1610 }
1611
1612 return 0;
1613}
1614
1615/**
Bruce Allan608f8a02010-01-13 02:04:58 +00001616 * e1000_read_mac_addr_82571 - Read device MAC address
1617 * @hw: pointer to the HW structure
1618 **/
1619static s32 e1000_read_mac_addr_82571(struct e1000_hw *hw)
1620{
1621 s32 ret_val = 0;
1622
Bruce Allan1aef70e2010-08-19 15:48:52 -07001623 if (hw->mac.type == e1000_82571) {
1624 /*
1625 * If there's an alternate MAC address place it in RAR0
1626 * so that it will override the Si installed default perm
1627 * address.
1628 */
1629 ret_val = e1000_check_alt_mac_addr_generic(hw);
1630 if (ret_val)
1631 goto out;
1632 }
Bruce Allan608f8a02010-01-13 02:04:58 +00001633
1634 ret_val = e1000_read_mac_addr_generic(hw);
1635
1636out:
1637 return ret_val;
1638}
1639
1640/**
Bruce Allan17f208d2009-12-01 15:47:22 +00001641 * e1000_power_down_phy_copper_82571 - Remove link during PHY power down
1642 * @hw: pointer to the HW structure
1643 *
1644 * In the case of a PHY power down to save power, or to turn off link during a
1645 * driver unload, or wake on lan is not enabled, remove the link.
1646 **/
1647static void e1000_power_down_phy_copper_82571(struct e1000_hw *hw)
1648{
1649 struct e1000_phy_info *phy = &hw->phy;
1650 struct e1000_mac_info *mac = &hw->mac;
1651
1652 if (!(phy->ops.check_reset_block))
1653 return;
1654
1655 /* If the management interface is not enabled, then power down */
1656 if (!(mac->ops.check_mng_mode(hw) || phy->ops.check_reset_block(hw)))
1657 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00001658}
1659
1660/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001661 * e1000_clear_hw_cntrs_82571 - Clear device specific hardware counters
1662 * @hw: pointer to the HW structure
1663 *
1664 * Clears the hardware counters by reading the counter registers.
1665 **/
1666static void e1000_clear_hw_cntrs_82571(struct e1000_hw *hw)
1667{
Auke Kokbc7f75f2007-09-17 12:30:59 -07001668 e1000e_clear_hw_cntrs_base(hw);
1669
Bruce Allan99673d92009-11-20 23:27:21 +00001670 er32(PRC64);
1671 er32(PRC127);
1672 er32(PRC255);
1673 er32(PRC511);
1674 er32(PRC1023);
1675 er32(PRC1522);
1676 er32(PTC64);
1677 er32(PTC127);
1678 er32(PTC255);
1679 er32(PTC511);
1680 er32(PTC1023);
1681 er32(PTC1522);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001682
Bruce Allan99673d92009-11-20 23:27:21 +00001683 er32(ALGNERRC);
1684 er32(RXERRC);
1685 er32(TNCRS);
1686 er32(CEXTERR);
1687 er32(TSCTC);
1688 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001689
Bruce Allan99673d92009-11-20 23:27:21 +00001690 er32(MGTPRC);
1691 er32(MGTPDC);
1692 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001693
Bruce Allan99673d92009-11-20 23:27:21 +00001694 er32(IAC);
1695 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001696
Bruce Allan99673d92009-11-20 23:27:21 +00001697 er32(ICRXPTC);
1698 er32(ICRXATC);
1699 er32(ICTXPTC);
1700 er32(ICTXATC);
1701 er32(ICTXQEC);
1702 er32(ICTXQMTC);
1703 er32(ICRXDMTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001704}
1705
1706static struct e1000_mac_operations e82571_mac_ops = {
Bruce Allan4662e822008-08-26 18:37:06 -07001707 /* .check_mng_mode: mac type dependent */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001708 /* .check_for_link: media type dependent */
Bruce Allana4f58f52009-06-02 11:29:18 +00001709 .id_led_init = e1000e_id_led_init,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001710 .cleanup_led = e1000e_cleanup_led_generic,
1711 .clear_hw_cntrs = e1000_clear_hw_cntrs_82571,
1712 .get_bus_info = e1000e_get_bus_info_pcie,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00001713 .set_lan_id = e1000_set_lan_id_multi_port_pcie,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001714 /* .get_link_up_info: media type dependent */
Bruce Allan4662e822008-08-26 18:37:06 -07001715 /* .led_on: mac type dependent */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001716 .led_off = e1000e_led_off_generic,
Bruce Allanab8932f2010-01-13 02:05:38 +00001717 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Bruce Allancaaddaf2009-12-01 15:46:43 +00001718 .write_vfta = e1000_write_vfta_generic,
1719 .clear_vfta = e1000_clear_vfta_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001720 .reset_hw = e1000_reset_hw_82571,
1721 .init_hw = e1000_init_hw_82571,
1722 .setup_link = e1000_setup_link_82571,
1723 /* .setup_physical_interface: media type dependent */
Bruce Allana4f58f52009-06-02 11:29:18 +00001724 .setup_led = e1000e_setup_led_generic,
Bruce Allan608f8a02010-01-13 02:04:58 +00001725 .read_mac_addr = e1000_read_mac_addr_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001726};
1727
1728static struct e1000_phy_operations e82_phy_ops_igp = {
Bruce Allan94d81862009-11-20 23:25:26 +00001729 .acquire = e1000_get_hw_semaphore_82571,
Bruce Allan94e5b652009-12-02 17:02:14 +00001730 .check_polarity = e1000_check_polarity_igp,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001731 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001732 .commit = NULL,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001733 .force_speed_duplex = e1000e_phy_force_speed_duplex_igp,
1734 .get_cfg_done = e1000_get_cfg_done_82571,
1735 .get_cable_length = e1000e_get_cable_length_igp_2,
Bruce Allan94d81862009-11-20 23:25:26 +00001736 .get_info = e1000e_get_phy_info_igp,
1737 .read_reg = e1000e_read_phy_reg_igp,
1738 .release = e1000_put_hw_semaphore_82571,
1739 .reset = e1000e_phy_hw_reset_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001740 .set_d0_lplu_state = e1000_set_d0_lplu_state_82571,
1741 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001742 .write_reg = e1000e_write_phy_reg_igp,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001743 .cfg_on_link_up = NULL,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001744};
1745
1746static struct e1000_phy_operations e82_phy_ops_m88 = {
Bruce Allan94d81862009-11-20 23:25:26 +00001747 .acquire = e1000_get_hw_semaphore_82571,
Bruce Allan94e5b652009-12-02 17:02:14 +00001748 .check_polarity = e1000_check_polarity_m88,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001749 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001750 .commit = e1000e_phy_sw_reset,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001751 .force_speed_duplex = e1000e_phy_force_speed_duplex_m88,
1752 .get_cfg_done = e1000e_get_cfg_done,
1753 .get_cable_length = e1000e_get_cable_length_m88,
Bruce Allan94d81862009-11-20 23:25:26 +00001754 .get_info = e1000e_get_phy_info_m88,
1755 .read_reg = e1000e_read_phy_reg_m88,
1756 .release = e1000_put_hw_semaphore_82571,
1757 .reset = e1000e_phy_hw_reset_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001758 .set_d0_lplu_state = e1000_set_d0_lplu_state_82571,
1759 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001760 .write_reg = e1000e_write_phy_reg_m88,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001761 .cfg_on_link_up = NULL,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001762};
1763
Bruce Allan4662e822008-08-26 18:37:06 -07001764static struct e1000_phy_operations e82_phy_ops_bm = {
Bruce Allan94d81862009-11-20 23:25:26 +00001765 .acquire = e1000_get_hw_semaphore_82571,
Bruce Allan94e5b652009-12-02 17:02:14 +00001766 .check_polarity = e1000_check_polarity_m88,
Bruce Allan4662e822008-08-26 18:37:06 -07001767 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001768 .commit = e1000e_phy_sw_reset,
Bruce Allan4662e822008-08-26 18:37:06 -07001769 .force_speed_duplex = e1000e_phy_force_speed_duplex_m88,
1770 .get_cfg_done = e1000e_get_cfg_done,
1771 .get_cable_length = e1000e_get_cable_length_m88,
Bruce Allan94d81862009-11-20 23:25:26 +00001772 .get_info = e1000e_get_phy_info_m88,
1773 .read_reg = e1000e_read_phy_reg_bm2,
1774 .release = e1000_put_hw_semaphore_82571,
1775 .reset = e1000e_phy_hw_reset_generic,
Bruce Allan4662e822008-08-26 18:37:06 -07001776 .set_d0_lplu_state = e1000_set_d0_lplu_state_82571,
1777 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001778 .write_reg = e1000e_write_phy_reg_bm2,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001779 .cfg_on_link_up = NULL,
Bruce Allan4662e822008-08-26 18:37:06 -07001780};
1781
Auke Kokbc7f75f2007-09-17 12:30:59 -07001782static struct e1000_nvm_operations e82571_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001783 .acquire = e1000_acquire_nvm_82571,
1784 .read = e1000e_read_nvm_eerd,
1785 .release = e1000_release_nvm_82571,
1786 .update = e1000_update_nvm_checksum_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001787 .valid_led_default = e1000_valid_led_default_82571,
Bruce Allan94d81862009-11-20 23:25:26 +00001788 .validate = e1000_validate_nvm_checksum_82571,
1789 .write = e1000_write_nvm_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001790};
1791
1792struct e1000_info e1000_82571_info = {
1793 .mac = e1000_82571,
1794 .flags = FLAG_HAS_HW_VLAN_FILTER
1795 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07001796 | FLAG_HAS_WOL
1797 | FLAG_APME_IN_CTRL3
1798 | FLAG_RX_CSUM_ENABLED
1799 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07001800 | FLAG_HAS_SMART_POWER_DOWN
1801 | FLAG_RESET_OVERWRITES_LAA /* errata */
1802 | FLAG_TARC_SPEED_MODE_BIT /* errata */
1803 | FLAG_APME_CHECK_PORT_B,
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00001804 .flags2 = FLAG2_DISABLE_ASPM_L1 /* errata 13 */
1805 | FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001806 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00001807 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001808 .get_variants = e1000_get_variants_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001809 .mac_ops = &e82571_mac_ops,
1810 .phy_ops = &e82_phy_ops_igp,
1811 .nvm_ops = &e82571_nvm_ops,
1812};
1813
1814struct e1000_info e1000_82572_info = {
1815 .mac = e1000_82572,
1816 .flags = FLAG_HAS_HW_VLAN_FILTER
1817 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07001818 | FLAG_HAS_WOL
1819 | FLAG_APME_IN_CTRL3
1820 | FLAG_RX_CSUM_ENABLED
1821 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07001822 | FLAG_TARC_SPEED_MODE_BIT, /* errata */
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00001823 .flags2 = FLAG2_DISABLE_ASPM_L1 /* errata 13 */
1824 | FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001825 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00001826 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001827 .get_variants = e1000_get_variants_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001828 .mac_ops = &e82571_mac_ops,
1829 .phy_ops = &e82_phy_ops_igp,
1830 .nvm_ops = &e82571_nvm_ops,
1831};
1832
1833struct e1000_info e1000_82573_info = {
1834 .mac = e1000_82573,
1835 .flags = FLAG_HAS_HW_VLAN_FILTER
Auke Kokbc7f75f2007-09-17 12:30:59 -07001836 | FLAG_HAS_WOL
1837 | FLAG_APME_IN_CTRL3
1838 | FLAG_RX_CSUM_ENABLED
Auke Kokbc7f75f2007-09-17 12:30:59 -07001839 | FLAG_HAS_SMART_POWER_DOWN
1840 | FLAG_HAS_AMT
Auke Kokbc7f75f2007-09-17 12:30:59 -07001841 | FLAG_HAS_SWSM_ON_LOAD,
Bruce Allan19833b52010-08-19 15:48:30 -07001842 .flags2 = FLAG2_DISABLE_ASPM_L1,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001843 .pba = 20,
Bruce Allan2adc55c2009-06-02 11:28:58 +00001844 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07001845 .get_variants = e1000_get_variants_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001846 .mac_ops = &e82571_mac_ops,
1847 .phy_ops = &e82_phy_ops_m88,
Auke Kok31f8c4f2008-02-21 15:10:47 -08001848 .nvm_ops = &e82571_nvm_ops,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001849};
1850
Bruce Allan4662e822008-08-26 18:37:06 -07001851struct e1000_info e1000_82574_info = {
1852 .mac = e1000_82574,
1853 .flags = FLAG_HAS_HW_VLAN_FILTER
1854 | FLAG_HAS_MSIX
1855 | FLAG_HAS_JUMBO_FRAMES
1856 | FLAG_HAS_WOL
1857 | FLAG_APME_IN_CTRL3
1858 | FLAG_RX_CSUM_ENABLED
1859 | FLAG_HAS_SMART_POWER_DOWN
1860 | FLAG_HAS_AMT
1861 | FLAG_HAS_CTRLEXT_ON_LOAD,
Alexander Duyckedf15c12010-05-04 22:25:42 +00001862 .pba = 36,
Alexander Duycka825e002009-10-02 12:30:42 +00001863 .max_hw_frame_size = DEFAULT_JUMBO,
Bruce Allan4662e822008-08-26 18:37:06 -07001864 .get_variants = e1000_get_variants_82571,
1865 .mac_ops = &e82571_mac_ops,
1866 .phy_ops = &e82_phy_ops_bm,
1867 .nvm_ops = &e82571_nvm_ops,
1868};
1869
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001870struct e1000_info e1000_82583_info = {
1871 .mac = e1000_82583,
1872 .flags = FLAG_HAS_HW_VLAN_FILTER
1873 | FLAG_HAS_WOL
1874 | FLAG_APME_IN_CTRL3
1875 | FLAG_RX_CSUM_ENABLED
1876 | FLAG_HAS_SMART_POWER_DOWN
1877 | FLAG_HAS_AMT
1878 | FLAG_HAS_CTRLEXT_ON_LOAD,
Alexander Duyckedf15c12010-05-04 22:25:42 +00001879 .pba = 36,
Alexander Duycka825e002009-10-02 12:30:42 +00001880 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001881 .get_variants = e1000_get_variants_82571,
1882 .mac_ops = &e82571_mac_ops,
1883 .phy_ops = &e82_phy_ops_bm,
1884 .nvm_ops = &e82571_nvm_ops,
1885};
1886