blob: 7b02e87b0b65bf3831db31d3e77aa511d657e002 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanf5e261e2012-01-01 16:00:03 +00004 Copyright(c) 1999 - 2012 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
Bruce Alland9c76f92010-11-24 06:01:35 +000055#define AN_RETRY_COUNT 5 /* Autoneg Retry Count value */
Carolyn Wybornyff10e132010-10-28 00:59:53 +000056#define E1000_BASE1000T_STATUS 10
57#define E1000_IDLE_ERROR_COUNT_MASK 0xFF
58#define E1000_RECEIVE_ERROR_COUNTER 21
59#define E1000_RECEIVE_ERROR_MAX 0xFFFF
Auke Kokbc7f75f2007-09-17 12:30:59 -070060
Bruce Allan4662e822008-08-26 18:37:06 -070061#define E1000_NVM_INIT_CTRL2_MNGM 0x6000 /* Manageability Operation Mode mask */
62
Auke Kokbc7f75f2007-09-17 12:30:59 -070063static s32 e1000_get_phy_id_82571(struct e1000_hw *hw);
64static s32 e1000_setup_copper_link_82571(struct e1000_hw *hw);
65static s32 e1000_setup_fiber_serdes_link_82571(struct e1000_hw *hw);
dave grahamc9523372009-02-10 12:52:28 +000066static s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -070067static s32 e1000_write_nvm_eewr_82571(struct e1000_hw *hw, u16 offset,
68 u16 words, u16 *data);
69static s32 e1000_fix_nvm_checksum_82571(struct e1000_hw *hw);
70static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw);
71static s32 e1000_setup_link_82571(struct e1000_hw *hw);
72static void e1000_clear_hw_cntrs_82571(struct e1000_hw *hw);
Bruce Allancaaddaf2009-12-01 15:46:43 +000073static void e1000_clear_vfta_82571(struct e1000_hw *hw);
Bruce Allan4662e822008-08-26 18:37:06 -070074static bool e1000_check_mng_mode_82574(struct e1000_hw *hw);
75static s32 e1000_led_on_82574(struct e1000_hw *hw);
Dave Graham23a2d1b2009-06-08 14:28:17 +000076static void e1000_put_hw_semaphore_82571(struct e1000_hw *hw);
Bruce Allan17f208d2009-12-01 15:47:22 +000077static void e1000_power_down_phy_copper_82571(struct e1000_hw *hw);
Bruce Allan1b98c2b2010-11-16 19:50:14 -080078static void e1000_put_hw_semaphore_82573(struct e1000_hw *hw);
79static s32 e1000_get_hw_semaphore_82574(struct e1000_hw *hw);
80static void e1000_put_hw_semaphore_82574(struct e1000_hw *hw);
Bruce Allan77996d12011-01-06 14:29:53 +000081static s32 e1000_set_d0_lplu_state_82574(struct e1000_hw *hw, bool active);
82static s32 e1000_set_d3_lplu_state_82574(struct e1000_hw *hw, bool active);
Auke Kokbc7f75f2007-09-17 12:30:59 -070083
84/**
85 * e1000_init_phy_params_82571 - Init PHY func ptrs.
86 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -070087 **/
88static s32 e1000_init_phy_params_82571(struct e1000_hw *hw)
89{
90 struct e1000_phy_info *phy = &hw->phy;
91 s32 ret_val;
92
Jeff Kirsher318a94d2008-03-28 09:15:16 -070093 if (hw->phy.media_type != e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -070094 phy->type = e1000_phy_none;
95 return 0;
96 }
97
98 phy->addr = 1;
99 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
100 phy->reset_delay_us = 100;
101
Bruce Allan17f208d2009-12-01 15:47:22 +0000102 phy->ops.power_up = e1000_power_up_phy_copper;
103 phy->ops.power_down = e1000_power_down_phy_copper_82571;
104
Auke Kokbc7f75f2007-09-17 12:30:59 -0700105 switch (hw->mac.type) {
106 case e1000_82571:
107 case e1000_82572:
108 phy->type = e1000_phy_igp_2;
109 break;
110 case e1000_82573:
111 phy->type = e1000_phy_m88;
112 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700113 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000114 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -0700115 phy->type = e1000_phy_bm;
Bruce Allan1b98c2b2010-11-16 19:50:14 -0800116 phy->ops.acquire = e1000_get_hw_semaphore_82574;
117 phy->ops.release = e1000_put_hw_semaphore_82574;
Bruce Allan77996d12011-01-06 14:29:53 +0000118 phy->ops.set_d0_lplu_state = e1000_set_d0_lplu_state_82574;
119 phy->ops.set_d3_lplu_state = e1000_set_d3_lplu_state_82574;
Bruce Allan4662e822008-08-26 18:37:06 -0700120 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700121 default:
122 return -E1000_ERR_PHY;
123 break;
124 }
125
126 /* This can only be done after all function pointers are setup. */
127 ret_val = e1000_get_phy_id_82571(hw);
Bruce Allandd93f952011-01-06 14:29:48 +0000128 if (ret_val) {
129 e_dbg("Error getting PHY ID\n");
130 return ret_val;
131 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700132
133 /* Verify phy id */
134 switch (hw->mac.type) {
135 case e1000_82571:
136 case e1000_82572:
137 if (phy->id != IGP01E1000_I_PHY_ID)
Bruce Allandd93f952011-01-06 14:29:48 +0000138 ret_val = -E1000_ERR_PHY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700139 break;
140 case e1000_82573:
141 if (phy->id != M88E1111_I_PHY_ID)
Bruce Allandd93f952011-01-06 14:29:48 +0000142 ret_val = -E1000_ERR_PHY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700143 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700144 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000145 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -0700146 if (phy->id != BME1000_E_PHY_ID_R2)
Bruce Allandd93f952011-01-06 14:29:48 +0000147 ret_val = -E1000_ERR_PHY;
Bruce Allan4662e822008-08-26 18:37:06 -0700148 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700149 default:
Bruce Allandd93f952011-01-06 14:29:48 +0000150 ret_val = -E1000_ERR_PHY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700151 break;
152 }
153
Bruce Allandd93f952011-01-06 14:29:48 +0000154 if (ret_val)
155 e_dbg("PHY ID unknown: type = 0x%08x\n", phy->id);
156
157 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700158}
159
160/**
161 * e1000_init_nvm_params_82571 - Init NVM func ptrs.
162 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700163 **/
164static s32 e1000_init_nvm_params_82571(struct e1000_hw *hw)
165{
166 struct e1000_nvm_info *nvm = &hw->nvm;
167 u32 eecd = er32(EECD);
168 u16 size;
169
170 nvm->opcode_bits = 8;
171 nvm->delay_usec = 1;
172 switch (nvm->override) {
173 case e1000_nvm_override_spi_large:
174 nvm->page_size = 32;
175 nvm->address_bits = 16;
176 break;
177 case e1000_nvm_override_spi_small:
178 nvm->page_size = 8;
179 nvm->address_bits = 8;
180 break;
181 default:
182 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
183 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
184 break;
185 }
186
187 switch (hw->mac.type) {
188 case e1000_82573:
Bruce Allan4662e822008-08-26 18:37:06 -0700189 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000190 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700191 if (((eecd >> 15) & 0x3) == 0x3) {
192 nvm->type = e1000_nvm_flash_hw;
193 nvm->word_size = 2048;
Bruce Allanad680762008-03-28 09:15:03 -0700194 /*
195 * Autonomous Flash update bit must be cleared due
Auke Kokbc7f75f2007-09-17 12:30:59 -0700196 * to Flash update issue.
197 */
198 eecd &= ~E1000_EECD_AUPDEN;
199 ew32(EECD, eecd);
200 break;
201 }
202 /* Fall Through */
203 default:
Bruce Allanad680762008-03-28 09:15:03 -0700204 nvm->type = e1000_nvm_eeprom_spi;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700205 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
206 E1000_EECD_SIZE_EX_SHIFT);
Bruce Allanad680762008-03-28 09:15:03 -0700207 /*
208 * Added to a constant, "size" becomes the left-shift value
Auke Kokbc7f75f2007-09-17 12:30:59 -0700209 * for setting word_size.
210 */
211 size += NVM_WORD_SIZE_BASE_SHIFT;
Jeff Kirsher8d7c2942008-04-02 13:48:07 -0700212
213 /* EEPROM access above 16k is unsupported */
214 if (size > 14)
215 size = 14;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700216 nvm->word_size = 1 << size;
217 break;
218 }
219
Bruce Allan1b98c2b2010-11-16 19:50:14 -0800220 /* Function Pointers */
221 switch (hw->mac.type) {
222 case e1000_82574:
223 case e1000_82583:
224 nvm->ops.acquire = e1000_get_hw_semaphore_82574;
225 nvm->ops.release = e1000_put_hw_semaphore_82574;
226 break;
227 default:
228 break;
229 }
230
Auke Kokbc7f75f2007-09-17 12:30:59 -0700231 return 0;
232}
233
234/**
235 * e1000_init_mac_params_82571 - Init MAC func ptrs.
236 * @hw: pointer to the HW structure
Auke Kokbc7f75f2007-09-17 12:30:59 -0700237 **/
Bruce Allanec34c172012-02-01 10:53:05 +0000238static s32 e1000_init_mac_params_82571(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700239{
Auke Kokbc7f75f2007-09-17 12:30:59 -0700240 struct e1000_mac_info *mac = &hw->mac;
Dave Graham23a2d1b2009-06-08 14:28:17 +0000241 u32 swsm = 0;
242 u32 swsm2 = 0;
243 bool force_clear_smbi = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700244
Bruce Allan66092f52012-01-31 06:37:48 +0000245 /* Set media type and media-dependent function pointers */
Bruce Allanec34c172012-02-01 10:53:05 +0000246 switch (hw->adapter->pdev->device) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700247 case E1000_DEV_ID_82571EB_FIBER:
248 case E1000_DEV_ID_82572EI_FIBER:
249 case E1000_DEV_ID_82571EB_QUAD_FIBER:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700250 hw->phy.media_type = e1000_media_type_fiber;
Bruce Allan66092f52012-01-31 06:37:48 +0000251 mac->ops.setup_physical_interface =
252 e1000_setup_fiber_serdes_link_82571;
253 mac->ops.check_for_link = e1000e_check_for_fiber_link;
254 mac->ops.get_link_up_info =
255 e1000e_get_speed_and_duplex_fiber_serdes;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700256 break;
257 case E1000_DEV_ID_82571EB_SERDES:
Auke Kok040babf2007-10-31 15:22:05 -0700258 case E1000_DEV_ID_82571EB_SERDES_DUAL:
259 case E1000_DEV_ID_82571EB_SERDES_QUAD:
Bruce Allan66092f52012-01-31 06:37:48 +0000260 case E1000_DEV_ID_82572EI_SERDES:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700261 hw->phy.media_type = e1000_media_type_internal_serdes;
Bruce Allan66092f52012-01-31 06:37:48 +0000262 mac->ops.setup_physical_interface =
263 e1000_setup_fiber_serdes_link_82571;
264 mac->ops.check_for_link = e1000_check_for_serdes_link_82571;
265 mac->ops.get_link_up_info =
266 e1000e_get_speed_and_duplex_fiber_serdes;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700267 break;
268 default:
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700269 hw->phy.media_type = e1000_media_type_copper;
Bruce Allan66092f52012-01-31 06:37:48 +0000270 mac->ops.setup_physical_interface =
271 e1000_setup_copper_link_82571;
272 mac->ops.check_for_link = e1000e_check_for_copper_link;
273 mac->ops.get_link_up_info = e1000e_get_speed_and_duplex_copper;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700274 break;
275 }
276
277 /* Set mta register count */
278 mac->mta_reg_count = 128;
279 /* Set rar entry count */
280 mac->rar_entry_count = E1000_RAR_ENTRIES;
Bruce Allanf464ba82010-01-07 16:31:35 +0000281 /* Adaptive IFS supported */
282 mac->adaptive_ifs = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700283
Bruce Allan66092f52012-01-31 06:37:48 +0000284 /* MAC-specific function pointers */
Bruce Allan4662e822008-08-26 18:37:06 -0700285 switch (hw->mac.type) {
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000286 case e1000_82573:
Bruce Allan66092f52012-01-31 06:37:48 +0000287 mac->ops.set_lan_id = e1000_set_lan_id_single_port;
288 mac->ops.check_mng_mode = e1000e_check_mng_mode_generic;
289 mac->ops.led_on = e1000e_led_on_generic;
290 mac->ops.blink_led = e1000e_blink_led_generic;
Bruce Allana65a4a02010-05-10 15:01:51 +0000291
292 /* FWSM register */
293 mac->has_fwsm = true;
294 /*
295 * ARC supported; valid only if manageability features are
296 * enabled.
297 */
Bruce Allan04499ec2012-04-13 00:08:31 +0000298 mac->arc_subsystem_valid = !!(er32(FWSM) &
299 E1000_FWSM_MODE_MASK);
Bruce Allanf4d2dd42010-01-13 02:05:18 +0000300 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700301 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000302 case e1000_82583:
Bruce Allan66092f52012-01-31 06:37:48 +0000303 mac->ops.set_lan_id = e1000_set_lan_id_single_port;
304 mac->ops.check_mng_mode = e1000_check_mng_mode_82574;
305 mac->ops.led_on = e1000_led_on_82574;
Bruce Allan4662e822008-08-26 18:37:06 -0700306 break;
307 default:
Bruce Allan66092f52012-01-31 06:37:48 +0000308 mac->ops.check_mng_mode = e1000e_check_mng_mode_generic;
309 mac->ops.led_on = e1000e_led_on_generic;
310 mac->ops.blink_led = e1000e_blink_led_generic;
Bruce Allana65a4a02010-05-10 15:01:51 +0000311
312 /* FWSM register */
313 mac->has_fwsm = true;
Bruce Allan4662e822008-08-26 18:37:06 -0700314 break;
315 }
316
Dave Graham23a2d1b2009-06-08 14:28:17 +0000317 /*
318 * Ensure that the inter-port SWSM.SMBI lock bit is clear before
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400319 * first NVM or PHY access. This should be done for single-port
Dave Graham23a2d1b2009-06-08 14:28:17 +0000320 * devices, and for one port only on dual-port devices so that
321 * for those devices we can still use the SMBI lock to synchronize
322 * inter-port accesses to the PHY & NVM.
323 */
324 switch (hw->mac.type) {
325 case e1000_82571:
326 case e1000_82572:
327 swsm2 = er32(SWSM2);
328
329 if (!(swsm2 & E1000_SWSM2_LOCK)) {
330 /* Only do this for the first interface on this card */
Bruce Allan66092f52012-01-31 06:37:48 +0000331 ew32(SWSM2, swsm2 | E1000_SWSM2_LOCK);
Dave Graham23a2d1b2009-06-08 14:28:17 +0000332 force_clear_smbi = true;
Bruce Allan66092f52012-01-31 06:37:48 +0000333 } else {
Dave Graham23a2d1b2009-06-08 14:28:17 +0000334 force_clear_smbi = false;
Bruce Allan66092f52012-01-31 06:37:48 +0000335 }
Dave Graham23a2d1b2009-06-08 14:28:17 +0000336 break;
337 default:
338 force_clear_smbi = true;
339 break;
340 }
341
342 if (force_clear_smbi) {
343 /* Make sure SWSM.SMBI is clear */
344 swsm = er32(SWSM);
345 if (swsm & E1000_SWSM_SMBI) {
346 /* This bit should not be set on a first interface, and
347 * indicates that the bootagent or EFI code has
348 * improperly left this bit enabled
349 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000350 e_dbg("Please update your 82571 Bootagent\n");
Dave Graham23a2d1b2009-06-08 14:28:17 +0000351 }
352 ew32(SWSM, swsm & ~E1000_SWSM_SMBI);
353 }
354
355 /*
Joe Perches2c73e1f2010-03-26 20:16:59 +0000356 * Initialize device specific counter of SMBI acquisition
Dave Graham23a2d1b2009-06-08 14:28:17 +0000357 * timeouts.
358 */
359 hw->dev_spec.e82571.smb_counter = 0;
360
Auke Kokbc7f75f2007-09-17 12:30:59 -0700361 return 0;
362}
363
Jeff Kirsher69e3fd82008-04-02 13:48:18 -0700364static s32 e1000_get_variants_82571(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700365{
366 struct e1000_hw *hw = &adapter->hw;
367 static int global_quad_port_a; /* global port a indication */
368 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700369 int is_port_b = er32(STATUS) & E1000_STATUS_FUNC_1;
370 s32 rc;
371
Bruce Allanec34c172012-02-01 10:53:05 +0000372 rc = e1000_init_mac_params_82571(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700373 if (rc)
374 return rc;
375
376 rc = e1000_init_nvm_params_82571(hw);
377 if (rc)
378 return rc;
379
380 rc = e1000_init_phy_params_82571(hw);
381 if (rc)
382 return rc;
383
384 /* tag quad port adapters first, it's used below */
385 switch (pdev->device) {
386 case E1000_DEV_ID_82571EB_QUAD_COPPER:
387 case E1000_DEV_ID_82571EB_QUAD_FIBER:
388 case E1000_DEV_ID_82571EB_QUAD_COPPER_LP:
Auke Kok040babf2007-10-31 15:22:05 -0700389 case E1000_DEV_ID_82571PT_QUAD_COPPER:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700390 adapter->flags |= FLAG_IS_QUAD_PORT;
391 /* mark the first port */
392 if (global_quad_port_a == 0)
393 adapter->flags |= FLAG_IS_QUAD_PORT_A;
394 /* Reset for multiple quad port adapters */
395 global_quad_port_a++;
396 if (global_quad_port_a == 4)
397 global_quad_port_a = 0;
398 break;
399 default:
400 break;
401 }
402
403 switch (adapter->hw.mac.type) {
404 case e1000_82571:
405 /* these dual ports don't have WoL on port B at all */
406 if (((pdev->device == E1000_DEV_ID_82571EB_FIBER) ||
407 (pdev->device == E1000_DEV_ID_82571EB_SERDES) ||
408 (pdev->device == E1000_DEV_ID_82571EB_COPPER)) &&
409 (is_port_b))
410 adapter->flags &= ~FLAG_HAS_WOL;
411 /* quad ports only support WoL on port A */
412 if (adapter->flags & FLAG_IS_QUAD_PORT &&
Roel Kluin6e4ca802007-10-29 10:50:05 -0700413 (!(adapter->flags & FLAG_IS_QUAD_PORT_A)))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700414 adapter->flags &= ~FLAG_HAS_WOL;
Auke Kok040babf2007-10-31 15:22:05 -0700415 /* Does not support WoL on any port */
416 if (pdev->device == E1000_DEV_ID_82571EB_SERDES_QUAD)
417 adapter->flags &= ~FLAG_HAS_WOL;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700418 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700419 case e1000_82573:
420 if (pdev->device == E1000_DEV_ID_82573L) {
Bruce Allan6f461f62010-04-27 03:33:04 +0000421 adapter->flags |= FLAG_HAS_JUMBO_FRAMES;
422 adapter->max_hw_frame_size = DEFAULT_JUMBO;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700423 }
424 break;
425 default:
426 break;
427 }
428
429 return 0;
430}
431
432/**
433 * e1000_get_phy_id_82571 - Retrieve the PHY ID and revision
434 * @hw: pointer to the HW structure
435 *
436 * Reads the PHY registers and stores the PHY ID and possibly the PHY
437 * revision in the hardware structure.
438 **/
439static s32 e1000_get_phy_id_82571(struct e1000_hw *hw)
440{
441 struct e1000_phy_info *phy = &hw->phy;
Bruce Allan4662e822008-08-26 18:37:06 -0700442 s32 ret_val;
443 u16 phy_id = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700444
445 switch (hw->mac.type) {
446 case e1000_82571:
447 case e1000_82572:
Bruce Allanad680762008-03-28 09:15:03 -0700448 /*
449 * The 82571 firmware may still be configuring the PHY.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700450 * In this case, we cannot access the PHY until the
451 * configuration is done. So we explicitly set the
Bruce Allanad680762008-03-28 09:15:03 -0700452 * PHY ID.
453 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700454 phy->id = IGP01E1000_I_PHY_ID;
455 break;
456 case e1000_82573:
457 return e1000e_get_phy_id(hw);
458 break;
Bruce Allan4662e822008-08-26 18:37:06 -0700459 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000460 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -0700461 ret_val = e1e_rphy(hw, PHY_ID1, &phy_id);
462 if (ret_val)
463 return ret_val;
464
465 phy->id = (u32)(phy_id << 16);
466 udelay(20);
467 ret_val = e1e_rphy(hw, PHY_ID2, &phy_id);
468 if (ret_val)
469 return ret_val;
470
471 phy->id |= (u32)(phy_id);
472 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
473 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700474 default:
475 return -E1000_ERR_PHY;
476 break;
477 }
478
479 return 0;
480}
481
482/**
483 * e1000_get_hw_semaphore_82571 - Acquire hardware semaphore
484 * @hw: pointer to the HW structure
485 *
486 * Acquire the HW semaphore to access the PHY or NVM
487 **/
488static s32 e1000_get_hw_semaphore_82571(struct e1000_hw *hw)
489{
490 u32 swsm;
Dave Graham23a2d1b2009-06-08 14:28:17 +0000491 s32 sw_timeout = hw->nvm.word_size + 1;
492 s32 fw_timeout = hw->nvm.word_size + 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700493 s32 i = 0;
494
Dave Graham23a2d1b2009-06-08 14:28:17 +0000495 /*
496 * If we have timedout 3 times on trying to acquire
497 * the inter-port SMBI semaphore, there is old code
498 * operating on the other port, and it is not
499 * releasing SMBI. Modify the number of times that
500 * we try for the semaphore to interwork with this
501 * older code.
502 */
503 if (hw->dev_spec.e82571.smb_counter > 2)
504 sw_timeout = 1;
505
506 /* Get the SW semaphore */
507 while (i < sw_timeout) {
508 swsm = er32(SWSM);
509 if (!(swsm & E1000_SWSM_SMBI))
510 break;
511
512 udelay(50);
513 i++;
514 }
515
516 if (i == sw_timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000517 e_dbg("Driver can't access device - SMBI bit is set.\n");
Dave Graham23a2d1b2009-06-08 14:28:17 +0000518 hw->dev_spec.e82571.smb_counter++;
519 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700520 /* Get the FW semaphore. */
Dave Graham23a2d1b2009-06-08 14:28:17 +0000521 for (i = 0; i < fw_timeout; i++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700522 swsm = er32(SWSM);
523 ew32(SWSM, swsm | E1000_SWSM_SWESMBI);
524
525 /* Semaphore acquired if bit latched */
526 if (er32(SWSM) & E1000_SWSM_SWESMBI)
527 break;
528
529 udelay(50);
530 }
531
Dave Graham23a2d1b2009-06-08 14:28:17 +0000532 if (i == fw_timeout) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700533 /* Release semaphores */
Dave Graham23a2d1b2009-06-08 14:28:17 +0000534 e1000_put_hw_semaphore_82571(hw);
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000535 e_dbg("Driver can't access the NVM\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700536 return -E1000_ERR_NVM;
537 }
538
539 return 0;
540}
541
542/**
543 * e1000_put_hw_semaphore_82571 - Release hardware semaphore
544 * @hw: pointer to the HW structure
545 *
546 * Release hardware semaphore used to access the PHY or NVM
547 **/
548static void e1000_put_hw_semaphore_82571(struct e1000_hw *hw)
549{
550 u32 swsm;
551
552 swsm = er32(SWSM);
Dave Graham23a2d1b2009-06-08 14:28:17 +0000553 swsm &= ~(E1000_SWSM_SMBI | E1000_SWSM_SWESMBI);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700554 ew32(SWSM, swsm);
555}
Bruce Allan1b98c2b2010-11-16 19:50:14 -0800556/**
557 * e1000_get_hw_semaphore_82573 - Acquire hardware semaphore
558 * @hw: pointer to the HW structure
559 *
560 * Acquire the HW semaphore during reset.
561 *
562 **/
563static s32 e1000_get_hw_semaphore_82573(struct e1000_hw *hw)
564{
565 u32 extcnf_ctrl;
Bruce Allan1b98c2b2010-11-16 19:50:14 -0800566 s32 i = 0;
567
568 extcnf_ctrl = er32(EXTCNF_CTRL);
569 extcnf_ctrl |= E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP;
570 do {
571 ew32(EXTCNF_CTRL, extcnf_ctrl);
572 extcnf_ctrl = er32(EXTCNF_CTRL);
573
574 if (extcnf_ctrl & E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP)
575 break;
576
577 extcnf_ctrl |= E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP;
578
Bruce Allan1bba4382011-03-19 00:27:20 +0000579 usleep_range(2000, 4000);
Bruce Allan1b98c2b2010-11-16 19:50:14 -0800580 i++;
581 } while (i < MDIO_OWNERSHIP_TIMEOUT);
582
583 if (i == MDIO_OWNERSHIP_TIMEOUT) {
584 /* Release semaphores */
585 e1000_put_hw_semaphore_82573(hw);
586 e_dbg("Driver can't access the PHY\n");
Bruce Allan5015e532012-02-08 02:55:56 +0000587 return -E1000_ERR_PHY;
Bruce Allan1b98c2b2010-11-16 19:50:14 -0800588 }
589
Bruce Allan5015e532012-02-08 02:55:56 +0000590 return 0;
Bruce Allan1b98c2b2010-11-16 19:50:14 -0800591}
592
593/**
594 * e1000_put_hw_semaphore_82573 - Release hardware semaphore
595 * @hw: pointer to the HW structure
596 *
597 * Release hardware semaphore used during reset.
598 *
599 **/
600static void e1000_put_hw_semaphore_82573(struct e1000_hw *hw)
601{
602 u32 extcnf_ctrl;
603
604 extcnf_ctrl = er32(EXTCNF_CTRL);
605 extcnf_ctrl &= ~E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP;
606 ew32(EXTCNF_CTRL, extcnf_ctrl);
607}
608
609static DEFINE_MUTEX(swflag_mutex);
610
611/**
612 * e1000_get_hw_semaphore_82574 - Acquire hardware semaphore
613 * @hw: pointer to the HW structure
614 *
615 * Acquire the HW semaphore to access the PHY or NVM.
616 *
617 **/
618static s32 e1000_get_hw_semaphore_82574(struct e1000_hw *hw)
619{
620 s32 ret_val;
621
622 mutex_lock(&swflag_mutex);
623 ret_val = e1000_get_hw_semaphore_82573(hw);
624 if (ret_val)
625 mutex_unlock(&swflag_mutex);
626 return ret_val;
627}
628
629/**
630 * e1000_put_hw_semaphore_82574 - Release hardware semaphore
631 * @hw: pointer to the HW structure
632 *
633 * Release hardware semaphore used to access the PHY or NVM
634 *
635 **/
636static void e1000_put_hw_semaphore_82574(struct e1000_hw *hw)
637{
638 e1000_put_hw_semaphore_82573(hw);
639 mutex_unlock(&swflag_mutex);
640}
Auke Kokbc7f75f2007-09-17 12:30:59 -0700641
642/**
Bruce Allan77996d12011-01-06 14:29:53 +0000643 * e1000_set_d0_lplu_state_82574 - Set Low Power Linkup D0 state
644 * @hw: pointer to the HW structure
645 * @active: true to enable LPLU, false to disable
646 *
647 * Sets the LPLU D0 state according to the active flag.
648 * LPLU will not be activated unless the
649 * device autonegotiation advertisement meets standards of
650 * either 10 or 10/100 or 10/100/1000 at all duplexes.
651 * This is a function pointer entry point only called by
652 * PHY setup routines.
653 **/
654static s32 e1000_set_d0_lplu_state_82574(struct e1000_hw *hw, bool active)
655{
656 u16 data = er32(POEMB);
657
658 if (active)
659 data |= E1000_PHY_CTRL_D0A_LPLU;
660 else
661 data &= ~E1000_PHY_CTRL_D0A_LPLU;
662
663 ew32(POEMB, data);
664 return 0;
665}
666
667/**
668 * e1000_set_d3_lplu_state_82574 - Sets low power link up state for D3
669 * @hw: pointer to the HW structure
670 * @active: boolean used to enable/disable lplu
671 *
672 * The low power link up (lplu) state is set to the power management level D3
673 * when active is true, else clear lplu for D3. LPLU
674 * is used during Dx states where the power conservation is most important.
675 * During driver activity, SmartSpeed should be enabled so performance is
676 * maintained.
677 **/
678static s32 e1000_set_d3_lplu_state_82574(struct e1000_hw *hw, bool active)
679{
680 u16 data = er32(POEMB);
681
682 if (!active) {
683 data &= ~E1000_PHY_CTRL_NOND0A_LPLU;
684 } else if ((hw->phy.autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
685 (hw->phy.autoneg_advertised == E1000_ALL_NOT_GIG) ||
686 (hw->phy.autoneg_advertised == E1000_ALL_10_SPEED)) {
687 data |= E1000_PHY_CTRL_NOND0A_LPLU;
688 }
689
690 ew32(POEMB, data);
691 return 0;
692}
693
694/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700695 * e1000_acquire_nvm_82571 - Request for access to the EEPROM
696 * @hw: pointer to the HW structure
697 *
698 * To gain access to the EEPROM, first we must obtain a hardware semaphore.
699 * Then for non-82573 hardware, set the EEPROM access request bit and wait
700 * for EEPROM access grant bit. If the access grant bit is not set, release
701 * hardware semaphore.
702 **/
703static s32 e1000_acquire_nvm_82571(struct e1000_hw *hw)
704{
705 s32 ret_val;
706
707 ret_val = e1000_get_hw_semaphore_82571(hw);
708 if (ret_val)
709 return ret_val;
710
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000711 switch (hw->mac.type) {
712 case e1000_82573:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000713 break;
714 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700715 ret_val = e1000e_acquire_nvm(hw);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000716 break;
717 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700718
719 if (ret_val)
720 e1000_put_hw_semaphore_82571(hw);
721
722 return ret_val;
723}
724
725/**
726 * e1000_release_nvm_82571 - Release exclusive access to EEPROM
727 * @hw: pointer to the HW structure
728 *
729 * Stop any current commands to the EEPROM and clear the EEPROM request bit.
730 **/
731static void e1000_release_nvm_82571(struct e1000_hw *hw)
732{
733 e1000e_release_nvm(hw);
734 e1000_put_hw_semaphore_82571(hw);
735}
736
737/**
738 * e1000_write_nvm_82571 - Write to EEPROM using appropriate interface
739 * @hw: pointer to the HW structure
740 * @offset: offset within the EEPROM to be written to
741 * @words: number of words to write
742 * @data: 16 bit word(s) to be written to the EEPROM
743 *
744 * For non-82573 silicon, write data to EEPROM at offset using SPI interface.
745 *
746 * If e1000e_update_nvm_checksum is not called after this function, the
Auke Kok489815c2008-02-21 15:11:07 -0800747 * EEPROM will most likely contain an invalid checksum.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700748 **/
749static s32 e1000_write_nvm_82571(struct e1000_hw *hw, u16 offset, u16 words,
750 u16 *data)
751{
752 s32 ret_val;
753
754 switch (hw->mac.type) {
755 case e1000_82573:
Bruce Allan4662e822008-08-26 18:37:06 -0700756 case e1000_82574:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +0000757 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700758 ret_val = e1000_write_nvm_eewr_82571(hw, offset, words, data);
759 break;
760 case e1000_82571:
761 case e1000_82572:
762 ret_val = e1000e_write_nvm_spi(hw, offset, words, data);
763 break;
764 default:
765 ret_val = -E1000_ERR_NVM;
766 break;
767 }
768
769 return ret_val;
770}
771
772/**
773 * e1000_update_nvm_checksum_82571 - Update EEPROM checksum
774 * @hw: pointer to the HW structure
775 *
776 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
777 * up to the checksum. Then calculates the EEPROM checksum and writes the
778 * value to the EEPROM.
779 **/
780static s32 e1000_update_nvm_checksum_82571(struct e1000_hw *hw)
781{
782 u32 eecd;
783 s32 ret_val;
784 u16 i;
785
786 ret_val = e1000e_update_nvm_checksum_generic(hw);
787 if (ret_val)
788 return ret_val;
789
Bruce Allanad680762008-03-28 09:15:03 -0700790 /*
791 * If our nvm is an EEPROM, then we're done
792 * otherwise, commit the checksum to the flash NVM.
793 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700794 if (hw->nvm.type != e1000_nvm_flash_hw)
Bruce Allan82607252012-02-08 02:55:09 +0000795 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700796
797 /* Check for pending operations. */
798 for (i = 0; i < E1000_FLASH_UPDATES; i++) {
Bruce Allan1bba4382011-03-19 00:27:20 +0000799 usleep_range(1000, 2000);
Bruce Allan04499ec2012-04-13 00:08:31 +0000800 if (!(er32(EECD) & E1000_EECD_FLUPD))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700801 break;
802 }
803
804 if (i == E1000_FLASH_UPDATES)
805 return -E1000_ERR_NVM;
806
807 /* Reset the firmware if using STM opcode. */
808 if ((er32(FLOP) & 0xFF00) == E1000_STM_OPCODE) {
Bruce Allanad680762008-03-28 09:15:03 -0700809 /*
810 * The enabling of and the actual reset must be done
Auke Kokbc7f75f2007-09-17 12:30:59 -0700811 * in two write cycles.
812 */
813 ew32(HICR, E1000_HICR_FW_RESET_ENABLE);
814 e1e_flush();
815 ew32(HICR, E1000_HICR_FW_RESET);
816 }
817
818 /* Commit the write to flash */
819 eecd = er32(EECD) | E1000_EECD_FLUPD;
820 ew32(EECD, eecd);
821
822 for (i = 0; i < E1000_FLASH_UPDATES; i++) {
Bruce Allan1bba4382011-03-19 00:27:20 +0000823 usleep_range(1000, 2000);
Bruce Allan04499ec2012-04-13 00:08:31 +0000824 if (!(er32(EECD) & E1000_EECD_FLUPD))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700825 break;
826 }
827
828 if (i == E1000_FLASH_UPDATES)
829 return -E1000_ERR_NVM;
830
831 return 0;
832}
833
834/**
835 * e1000_validate_nvm_checksum_82571 - Validate EEPROM checksum
836 * @hw: pointer to the HW structure
837 *
838 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
839 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
840 **/
841static s32 e1000_validate_nvm_checksum_82571(struct e1000_hw *hw)
842{
843 if (hw->nvm.type == e1000_nvm_flash_hw)
844 e1000_fix_nvm_checksum_82571(hw);
845
846 return e1000e_validate_nvm_checksum_generic(hw);
847}
848
849/**
850 * e1000_write_nvm_eewr_82571 - Write to EEPROM for 82573 silicon
851 * @hw: pointer to the HW structure
852 * @offset: offset within the EEPROM to be written to
853 * @words: number of words to write
854 * @data: 16 bit word(s) to be written to the EEPROM
855 *
856 * After checking for invalid values, poll the EEPROM to ensure the previous
857 * command has completed before trying to write the next word. After write
858 * poll for completion.
859 *
860 * If e1000e_update_nvm_checksum is not called after this function, the
Auke Kok489815c2008-02-21 15:11:07 -0800861 * EEPROM will most likely contain an invalid checksum.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700862 **/
863static s32 e1000_write_nvm_eewr_82571(struct e1000_hw *hw, u16 offset,
864 u16 words, u16 *data)
865{
866 struct e1000_nvm_info *nvm = &hw->nvm;
Bruce Allana708dd82009-11-20 23:28:37 +0000867 u32 i, eewr = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700868 s32 ret_val = 0;
869
Bruce Allanad680762008-03-28 09:15:03 -0700870 /*
871 * A check for invalid values: offset too large, too many words,
872 * and not enough words.
873 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700874 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) ||
875 (words == 0)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000876 e_dbg("nvm parameter(s) out of bounds\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700877 return -E1000_ERR_NVM;
878 }
879
880 for (i = 0; i < words; i++) {
881 eewr = (data[i] << E1000_NVM_RW_REG_DATA) |
882 ((offset+i) << E1000_NVM_RW_ADDR_SHIFT) |
883 E1000_NVM_RW_REG_START;
884
885 ret_val = e1000e_poll_eerd_eewr_done(hw, E1000_NVM_POLL_WRITE);
886 if (ret_val)
887 break;
888
889 ew32(EEWR, eewr);
890
891 ret_val = e1000e_poll_eerd_eewr_done(hw, E1000_NVM_POLL_WRITE);
892 if (ret_val)
893 break;
894 }
895
896 return ret_val;
897}
898
899/**
900 * e1000_get_cfg_done_82571 - Poll for configuration done
901 * @hw: pointer to the HW structure
902 *
903 * Reads the management control register for the config done bit to be set.
904 **/
905static s32 e1000_get_cfg_done_82571(struct e1000_hw *hw)
906{
907 s32 timeout = PHY_CFG_TIMEOUT;
908
909 while (timeout) {
910 if (er32(EEMNGCTL) &
911 E1000_NVM_CFG_DONE_PORT_0)
912 break;
Bruce Allan1bba4382011-03-19 00:27:20 +0000913 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700914 timeout--;
915 }
916 if (!timeout) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000917 e_dbg("MNG configuration cycle has not completed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700918 return -E1000_ERR_RESET;
919 }
920
921 return 0;
922}
923
924/**
925 * e1000_set_d0_lplu_state_82571 - Set Low Power Linkup D0 state
926 * @hw: pointer to the HW structure
Bruce Allan564ea9b2009-11-20 23:26:44 +0000927 * @active: true to enable LPLU, false to disable
Auke Kokbc7f75f2007-09-17 12:30:59 -0700928 *
929 * Sets the LPLU D0 state according to the active flag. When activating LPLU
930 * this function also disables smart speed and vice versa. LPLU will not be
931 * activated unless the device autonegotiation advertisement meets standards
932 * of either 10 or 10/100 or 10/100/1000 at all duplexes. This is a function
933 * pointer entry point only called by PHY setup routines.
934 **/
935static s32 e1000_set_d0_lplu_state_82571(struct e1000_hw *hw, bool active)
936{
937 struct e1000_phy_info *phy = &hw->phy;
938 s32 ret_val;
939 u16 data;
940
941 ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data);
942 if (ret_val)
943 return ret_val;
944
945 if (active) {
946 data |= IGP02E1000_PM_D0_LPLU;
947 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
948 if (ret_val)
949 return ret_val;
950
951 /* When LPLU is enabled, we should disable SmartSpeed */
952 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
953 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
954 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
955 if (ret_val)
956 return ret_val;
957 } else {
958 data &= ~IGP02E1000_PM_D0_LPLU;
959 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
Bruce Allanad680762008-03-28 09:15:03 -0700960 /*
961 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -0700962 * during Dx states where the power conservation is most
963 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -0700964 * SmartSpeed, so performance is maintained.
965 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700966 if (phy->smart_speed == e1000_smart_speed_on) {
967 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700968 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700969 if (ret_val)
970 return ret_val;
971
972 data |= IGP01E1000_PSCFR_SMART_SPEED;
973 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700974 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700975 if (ret_val)
976 return ret_val;
977 } else if (phy->smart_speed == e1000_smart_speed_off) {
978 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700979 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700980 if (ret_val)
981 return ret_val;
982
983 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
984 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700985 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700986 if (ret_val)
987 return ret_val;
988 }
989 }
990
991 return 0;
992}
993
994/**
995 * e1000_reset_hw_82571 - Reset hardware
996 * @hw: pointer to the HW structure
997 *
Bruce Allanfe401672009-11-20 23:26:05 +0000998 * This resets the hardware into a known state.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700999 **/
1000static s32 e1000_reset_hw_82571(struct e1000_hw *hw)
1001{
Bruce Allandd93f952011-01-06 14:29:48 +00001002 u32 ctrl, ctrl_ext;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001003 s32 ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001004
Bruce Allanad680762008-03-28 09:15:03 -07001005 /*
1006 * Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kokbc7f75f2007-09-17 12:30:59 -07001007 * on the last TLP read/write transaction when MAC is reset.
1008 */
1009 ret_val = e1000e_disable_pcie_master(hw);
1010 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001011 e_dbg("PCI-E Master disable polling has failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001012
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001013 e_dbg("Masking off all interrupts\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001014 ew32(IMC, 0xffffffff);
1015
1016 ew32(RCTL, 0);
1017 ew32(TCTL, E1000_TCTL_PSP);
1018 e1e_flush();
1019
Bruce Allan1bba4382011-03-19 00:27:20 +00001020 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001021
Bruce Allanad680762008-03-28 09:15:03 -07001022 /*
1023 * Must acquire the MDIO ownership before MAC reset.
1024 * Ownership defaults to firmware after a reset.
1025 */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001026 switch (hw->mac.type) {
1027 case e1000_82573:
Bruce Allan1b98c2b2010-11-16 19:50:14 -08001028 ret_val = e1000_get_hw_semaphore_82573(hw);
1029 break;
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001030 case e1000_82574:
1031 case e1000_82583:
Bruce Allan1b98c2b2010-11-16 19:50:14 -08001032 ret_val = e1000_get_hw_semaphore_82574(hw);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001033 break;
1034 default:
1035 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001036 }
Bruce Allan1b98c2b2010-11-16 19:50:14 -08001037 if (ret_val)
1038 e_dbg("Cannot acquire MDIO ownership\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001039
1040 ctrl = er32(CTRL);
1041
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001042 e_dbg("Issuing a global reset to MAC\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001043 ew32(CTRL, ctrl | E1000_CTRL_RST);
1044
Bruce Allan1b98c2b2010-11-16 19:50:14 -08001045 /* Must release MDIO ownership and mutex after MAC reset. */
1046 switch (hw->mac.type) {
1047 case e1000_82574:
1048 case e1000_82583:
1049 e1000_put_hw_semaphore_82574(hw);
1050 break;
1051 default:
1052 break;
1053 }
1054
Auke Kokbc7f75f2007-09-17 12:30:59 -07001055 if (hw->nvm.type == e1000_nvm_flash_hw) {
1056 udelay(10);
1057 ctrl_ext = er32(CTRL_EXT);
1058 ctrl_ext |= E1000_CTRL_EXT_EE_RST;
1059 ew32(CTRL_EXT, ctrl_ext);
1060 e1e_flush();
1061 }
1062
1063 ret_val = e1000e_get_auto_rd_done(hw);
1064 if (ret_val)
1065 /* We don't want to continue accessing MAC registers. */
1066 return ret_val;
1067
Bruce Allanad680762008-03-28 09:15:03 -07001068 /*
1069 * Phy configuration from NVM just starts after EECD_AUTO_RD is set.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001070 * Need to wait for Phy configuration completion before accessing
1071 * NVM and Phy.
1072 */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001073
1074 switch (hw->mac.type) {
1075 case e1000_82573:
1076 case e1000_82574:
1077 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001078 msleep(25);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001079 break;
1080 default:
1081 break;
1082 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001083
1084 /* Clear any pending interrupt events. */
1085 ew32(IMC, 0xffffffff);
Bruce Allandd93f952011-01-06 14:29:48 +00001086 er32(ICR);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001087
Bruce Allan1aef70e2010-08-19 15:48:52 -07001088 if (hw->mac.type == e1000_82571) {
1089 /* Install any alternate MAC address into RAR0 */
1090 ret_val = e1000_check_alt_mac_addr_generic(hw);
1091 if (ret_val)
1092 return ret_val;
Bruce Allan608f8a02010-01-13 02:04:58 +00001093
Bruce Allan1aef70e2010-08-19 15:48:52 -07001094 e1000e_set_laa_state_82571(hw, true);
1095 }
Bill Hayes93ca1612007-10-31 15:21:52 -07001096
dave grahamc9523372009-02-10 12:52:28 +00001097 /* Reinitialize the 82571 serdes link state machine */
1098 if (hw->phy.media_type == e1000_media_type_internal_serdes)
1099 hw->mac.serdes_link_state = e1000_serdes_link_down;
1100
Auke Kokbc7f75f2007-09-17 12:30:59 -07001101 return 0;
1102}
1103
1104/**
1105 * e1000_init_hw_82571 - Initialize hardware
1106 * @hw: pointer to the HW structure
1107 *
1108 * This inits the hardware readying it for operation.
1109 **/
1110static s32 e1000_init_hw_82571(struct e1000_hw *hw)
1111{
1112 struct e1000_mac_info *mac = &hw->mac;
1113 u32 reg_data;
1114 s32 ret_val;
Bruce Allana708dd82009-11-20 23:28:37 +00001115 u16 i, rar_count = mac->rar_entry_count;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001116
1117 e1000_initialize_hw_bits_82571(hw);
1118
1119 /* Initialize identification LED */
Bruce Alland1964eb2012-02-22 09:02:21 +00001120 ret_val = mac->ops.id_led_init(hw);
Bruce Allande39b752009-11-20 23:27:59 +00001121 if (ret_val)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001122 e_dbg("Error initializing identification LED\n");
Bruce Allande39b752009-11-20 23:27:59 +00001123 /* This is not fatal and we should not stop init due to this */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001124
1125 /* Disabling VLAN filtering */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001126 e_dbg("Initializing the IEEE VLAN\n");
Bruce Allancaaddaf2009-12-01 15:46:43 +00001127 mac->ops.clear_vfta(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001128
1129 /* Setup the receive address. */
Bruce Allanad680762008-03-28 09:15:03 -07001130 /*
1131 * If, however, a locally administered address was assigned to the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001132 * 82571, we must reserve a RAR for it to work around an issue where
1133 * resetting one port will reload the MAC on the other port.
1134 */
1135 if (e1000e_get_laa_state_82571(hw))
1136 rar_count--;
1137 e1000e_init_rx_addrs(hw, rar_count);
1138
1139 /* Zero out the Multicast HASH table */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001140 e_dbg("Zeroing the MTA\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001141 for (i = 0; i < mac->mta_reg_count; i++)
1142 E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0);
1143
1144 /* Setup link and flow control */
Bruce Allan1a46b402012-02-22 09:02:26 +00001145 ret_val = mac->ops.setup_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001146
1147 /* Set the transmit descriptor write-back policy */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001148 reg_data = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001149 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
1150 E1000_TXDCTL_FULL_TX_DESC_WB |
1151 E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001152 ew32(TXDCTL(0), reg_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001153
1154 /* ...for both queues. */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001155 switch (mac->type) {
1156 case e1000_82573:
Bruce Allana65a4a02010-05-10 15:01:51 +00001157 e1000e_enable_tx_pkt_filtering(hw);
1158 /* fall through */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001159 case e1000_82574:
1160 case e1000_82583:
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001161 reg_data = er32(GCR);
1162 reg_data |= E1000_GCR_L1_ACT_WITHOUT_L0S_RX;
1163 ew32(GCR, reg_data);
1164 break;
1165 default:
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001166 reg_data = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001167 reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
1168 E1000_TXDCTL_FULL_TX_DESC_WB |
1169 E1000_TXDCTL_COUNT_DESC;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001170 ew32(TXDCTL(1), reg_data);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001171 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001172 }
1173
Bruce Allanad680762008-03-28 09:15:03 -07001174 /*
1175 * Clear all of the statistics registers (clear on read). It is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001176 * important that we do this after we have tried to establish link
1177 * because the symbol error count will increment wildly if there
1178 * is no link.
1179 */
1180 e1000_clear_hw_cntrs_82571(hw);
1181
1182 return ret_val;
1183}
1184
1185/**
1186 * e1000_initialize_hw_bits_82571 - Initialize hardware-dependent bits
1187 * @hw: pointer to the HW structure
1188 *
1189 * Initializes required hardware-dependent bits needed for normal operation.
1190 **/
1191static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
1192{
1193 u32 reg;
1194
1195 /* Transmit Descriptor Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001196 reg = er32(TXDCTL(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001197 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001198 ew32(TXDCTL(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001199
1200 /* Transmit Descriptor Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001201 reg = er32(TXDCTL(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001202 reg |= (1 << 22);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001203 ew32(TXDCTL(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001204
1205 /* Transmit Arbitration Control 0 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001206 reg = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001207 reg &= ~(0xF << 27); /* 30:27 */
1208 switch (hw->mac.type) {
1209 case e1000_82571:
1210 case e1000_82572:
1211 reg |= (1 << 23) | (1 << 24) | (1 << 25) | (1 << 26);
1212 break;
Bruce Alland6cb17d2011-12-16 00:46:22 +00001213 case e1000_82574:
1214 case e1000_82583:
1215 reg |= (1 << 26);
1216 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001217 default:
1218 break;
1219 }
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001220 ew32(TARC(0), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001221
1222 /* Transmit Arbitration Control 1 */
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001223 reg = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001224 switch (hw->mac.type) {
1225 case e1000_82571:
1226 case e1000_82572:
1227 reg &= ~((1 << 29) | (1 << 30));
1228 reg |= (1 << 22) | (1 << 24) | (1 << 25) | (1 << 26);
1229 if (er32(TCTL) & E1000_TCTL_MULR)
1230 reg &= ~(1 << 28);
1231 else
1232 reg |= (1 << 28);
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07001233 ew32(TARC(1), reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001234 break;
1235 default:
1236 break;
1237 }
1238
1239 /* Device Control */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001240 switch (hw->mac.type) {
1241 case e1000_82573:
1242 case e1000_82574:
1243 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001244 reg = er32(CTRL);
1245 reg &= ~(1 << 29);
1246 ew32(CTRL, reg);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001247 break;
1248 default:
1249 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001250 }
1251
1252 /* Extended Device Control */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001253 switch (hw->mac.type) {
1254 case e1000_82573:
1255 case e1000_82574:
1256 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001257 reg = er32(CTRL_EXT);
1258 reg &= ~(1 << 23);
1259 reg |= (1 << 22);
1260 ew32(CTRL_EXT, reg);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001261 break;
1262 default:
1263 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001264 }
Bruce Allan4662e822008-08-26 18:37:06 -07001265
Alexander Duyck6ea7ae12008-11-14 06:54:36 +00001266 if (hw->mac.type == e1000_82571) {
1267 reg = er32(PBA_ECC);
1268 reg |= E1000_PBA_ECC_CORR_EN;
1269 ew32(PBA_ECC, reg);
1270 }
Bruce Allan3d3a1672012-02-23 03:13:18 +00001271
dave graham5df3f0e2009-02-10 12:51:41 +00001272 /*
1273 * Workaround for hardware errata.
1274 * Ensure that DMA Dynamic Clock gating is disabled on 82571 and 82572
1275 */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001276 if ((hw->mac.type == e1000_82571) || (hw->mac.type == e1000_82572)) {
1277 reg = er32(CTRL_EXT);
1278 reg &= ~E1000_CTRL_EXT_DMA_DYN_CLK_EN;
1279 ew32(CTRL_EXT, reg);
1280 }
Alexander Duyck6ea7ae12008-11-14 06:54:36 +00001281
Jesse Brandeburg78272bb2009-01-26 12:16:26 -08001282 /* PCI-Ex Control Registers */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001283 switch (hw->mac.type) {
1284 case e1000_82574:
1285 case e1000_82583:
Bruce Allan4662e822008-08-26 18:37:06 -07001286 reg = er32(GCR);
1287 reg |= (1 << 22);
1288 ew32(GCR, reg);
Jesse Brandeburg78272bb2009-01-26 12:16:26 -08001289
Bruce Allan84efb7b2009-11-20 23:26:24 +00001290 /*
1291 * Workaround for hardware errata.
1292 * apply workaround for hardware errata documented in errata
1293 * docs Fixes issue where some error prone or unreliable PCIe
1294 * completions are occurring, particularly with ASPM enabled.
Bruce Allanaf667a22010-12-31 06:10:01 +00001295 * Without fix, issue can cause Tx timeouts.
Bruce Allan84efb7b2009-11-20 23:26:24 +00001296 */
Jesse Brandeburg78272bb2009-01-26 12:16:26 -08001297 reg = er32(GCR2);
1298 reg |= 1;
1299 ew32(GCR2, reg);
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001300 break;
1301 default:
1302 break;
Bruce Allan4662e822008-08-26 18:37:06 -07001303 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001304}
1305
1306/**
Bruce Allancaaddaf2009-12-01 15:46:43 +00001307 * e1000_clear_vfta_82571 - Clear VLAN filter table
Auke Kokbc7f75f2007-09-17 12:30:59 -07001308 * @hw: pointer to the HW structure
1309 *
1310 * Clears the register array which contains the VLAN filter table by
1311 * setting all the values to 0.
1312 **/
Bruce Allancaaddaf2009-12-01 15:46:43 +00001313static void e1000_clear_vfta_82571(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001314{
1315 u32 offset;
1316 u32 vfta_value = 0;
1317 u32 vfta_offset = 0;
1318 u32 vfta_bit_in_reg = 0;
1319
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001320 switch (hw->mac.type) {
1321 case e1000_82573:
1322 case e1000_82574:
1323 case e1000_82583:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001324 if (hw->mng_cookie.vlan_id != 0) {
Bruce Allanad680762008-03-28 09:15:03 -07001325 /*
1326 * The VFTA is a 4096b bit-field, each identifying
Auke Kokbc7f75f2007-09-17 12:30:59 -07001327 * a single VLAN ID. The following operations
1328 * determine which 32b entry (i.e. offset) into the
1329 * array we want to set the VLAN ID (i.e. bit) of
1330 * the manageability unit.
1331 */
1332 vfta_offset = (hw->mng_cookie.vlan_id >>
1333 E1000_VFTA_ENTRY_SHIFT) &
1334 E1000_VFTA_ENTRY_MASK;
1335 vfta_bit_in_reg = 1 << (hw->mng_cookie.vlan_id &
1336 E1000_VFTA_ENTRY_BIT_SHIFT_MASK);
1337 }
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001338 break;
1339 default:
1340 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001341 }
1342 for (offset = 0; offset < E1000_VLAN_FILTER_TBL_SIZE; offset++) {
Bruce Allanad680762008-03-28 09:15:03 -07001343 /*
1344 * If the offset we want to clear is the same offset of the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001345 * manageability VLAN ID, then clear all bits except that of
1346 * the manageability unit.
1347 */
1348 vfta_value = (offset == vfta_offset) ? vfta_bit_in_reg : 0;
1349 E1000_WRITE_REG_ARRAY(hw, E1000_VFTA, offset, vfta_value);
1350 e1e_flush();
1351 }
1352}
1353
1354/**
Bruce Allan4662e822008-08-26 18:37:06 -07001355 * e1000_check_mng_mode_82574 - Check manageability is enabled
1356 * @hw: pointer to the HW structure
1357 *
1358 * Reads the NVM Initialization Control Word 2 and returns true
1359 * (>0) if any manageability is enabled, else false (0).
1360 **/
1361static bool e1000_check_mng_mode_82574(struct e1000_hw *hw)
1362{
1363 u16 data;
1364
1365 e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &data);
1366 return (data & E1000_NVM_INIT_CTRL2_MNGM) != 0;
1367}
1368
1369/**
1370 * e1000_led_on_82574 - Turn LED on
1371 * @hw: pointer to the HW structure
1372 *
1373 * Turn LED on.
1374 **/
1375static s32 e1000_led_on_82574(struct e1000_hw *hw)
1376{
1377 u32 ctrl;
1378 u32 i;
1379
1380 ctrl = hw->mac.ledctl_mode2;
1381 if (!(E1000_STATUS_LU & er32(STATUS))) {
1382 /*
1383 * If no link, then turn LED on by setting the invert bit
1384 * for each LED that's "on" (0x0E) in ledctl_mode2.
1385 */
1386 for (i = 0; i < 4; i++)
1387 if (((hw->mac.ledctl_mode2 >> (i * 8)) & 0xFF) ==
1388 E1000_LEDCTL_MODE_LED_ON)
1389 ctrl |= (E1000_LEDCTL_LED0_IVRT << (i * 8));
1390 }
1391 ew32(LEDCTL, ctrl);
1392
1393 return 0;
1394}
1395
1396/**
Carolyn Wybornyff10e132010-10-28 00:59:53 +00001397 * e1000_check_phy_82574 - check 82574 phy hung state
1398 * @hw: pointer to the HW structure
1399 *
1400 * Returns whether phy is hung or not
1401 **/
1402bool e1000_check_phy_82574(struct e1000_hw *hw)
1403{
1404 u16 status_1kbt = 0;
1405 u16 receive_errors = 0;
Carolyn Wybornyff10e132010-10-28 00:59:53 +00001406 s32 ret_val = 0;
1407
1408 /*
1409 * Read PHY Receive Error counter first, if its is max - all F's then
1410 * read the Base1000T status register If both are max then PHY is hung.
1411 */
1412 ret_val = e1e_rphy(hw, E1000_RECEIVE_ERROR_COUNTER, &receive_errors);
Carolyn Wybornyff10e132010-10-28 00:59:53 +00001413 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001414 return false;
Carolyn Wybornyff10e132010-10-28 00:59:53 +00001415 if (receive_errors == E1000_RECEIVE_ERROR_MAX) {
1416 ret_val = e1e_rphy(hw, E1000_BASE1000T_STATUS, &status_1kbt);
1417 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001418 return false;
Carolyn Wybornyff10e132010-10-28 00:59:53 +00001419 if ((status_1kbt & E1000_IDLE_ERROR_COUNT_MASK) ==
1420 E1000_IDLE_ERROR_COUNT_MASK)
Bruce Allan5015e532012-02-08 02:55:56 +00001421 return true;
Carolyn Wybornyff10e132010-10-28 00:59:53 +00001422 }
Bruce Allan5015e532012-02-08 02:55:56 +00001423
1424 return false;
Carolyn Wybornyff10e132010-10-28 00:59:53 +00001425}
1426
1427/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001428 * e1000_setup_link_82571 - Setup flow control and link settings
1429 * @hw: pointer to the HW structure
1430 *
1431 * Determines which flow control settings to use, then configures flow
1432 * control. Calls the appropriate media-specific link configuration
1433 * function. Assuming the adapter has a valid link partner, a valid link
1434 * should be established. Assumes the hardware has previously been reset
1435 * and the transmitter and receiver are not enabled.
1436 **/
1437static s32 e1000_setup_link_82571(struct e1000_hw *hw)
1438{
Bruce Allanad680762008-03-28 09:15:03 -07001439 /*
1440 * 82573 does not have a word in the NVM to determine
Auke Kokbc7f75f2007-09-17 12:30:59 -07001441 * the default flow control setting, so we explicitly
1442 * set it to full.
1443 */
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001444 switch (hw->mac.type) {
1445 case e1000_82573:
1446 case e1000_82574:
1447 case e1000_82583:
1448 if (hw->fc.requested_mode == e1000_fc_default)
1449 hw->fc.requested_mode = e1000_fc_full;
1450 break;
1451 default:
1452 break;
1453 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001454
Bruce Allan1a46b402012-02-22 09:02:26 +00001455 return e1000e_setup_link_generic(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001456}
1457
1458/**
1459 * e1000_setup_copper_link_82571 - Configure copper link settings
1460 * @hw: pointer to the HW structure
1461 *
1462 * Configures the link for auto-neg or forced speed and duplex. Then we check
1463 * for link, once link is established calls to configure collision distance
1464 * and flow control are called.
1465 **/
1466static s32 e1000_setup_copper_link_82571(struct e1000_hw *hw)
1467{
1468 u32 ctrl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001469 s32 ret_val;
1470
1471 ctrl = er32(CTRL);
1472 ctrl |= E1000_CTRL_SLU;
1473 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1474 ew32(CTRL, ctrl);
1475
1476 switch (hw->phy.type) {
1477 case e1000_phy_m88:
Bruce Allan4662e822008-08-26 18:37:06 -07001478 case e1000_phy_bm:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001479 ret_val = e1000e_copper_link_setup_m88(hw);
1480 break;
1481 case e1000_phy_igp_2:
1482 ret_val = e1000e_copper_link_setup_igp(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001483 break;
1484 default:
1485 return -E1000_ERR_PHY;
1486 break;
1487 }
1488
1489 if (ret_val)
1490 return ret_val;
1491
Bruce Allan7eb61d82012-02-08 02:55:03 +00001492 return e1000e_setup_copper_link(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001493}
1494
1495/**
1496 * e1000_setup_fiber_serdes_link_82571 - Setup link for fiber/serdes
1497 * @hw: pointer to the HW structure
1498 *
1499 * Configures collision distance and flow control for fiber and serdes links.
1500 * Upon successful setup, poll for link.
1501 **/
1502static s32 e1000_setup_fiber_serdes_link_82571(struct e1000_hw *hw)
1503{
1504 switch (hw->mac.type) {
1505 case e1000_82571:
1506 case e1000_82572:
Bruce Allanad680762008-03-28 09:15:03 -07001507 /*
1508 * If SerDes loopback mode is entered, there is no form
Auke Kokbc7f75f2007-09-17 12:30:59 -07001509 * of reset to take the adapter out of that mode. So we
1510 * have to explicitly take the adapter out of loopback
Auke Kok489815c2008-02-21 15:11:07 -08001511 * mode. This prevents drivers from twiddling their thumbs
Auke Kokbc7f75f2007-09-17 12:30:59 -07001512 * if another tool failed to take it out of loopback mode.
1513 */
Bruce Allanad680762008-03-28 09:15:03 -07001514 ew32(SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001515 break;
1516 default:
1517 break;
1518 }
1519
1520 return e1000e_setup_fiber_serdes_link(hw);
1521}
1522
1523/**
dave grahamc9523372009-02-10 12:52:28 +00001524 * e1000_check_for_serdes_link_82571 - Check for link (Serdes)
1525 * @hw: pointer to the HW structure
1526 *
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001527 * Reports the link state as up or down.
1528 *
1529 * If autonegotiation is supported by the link partner, the link state is
1530 * determined by the result of autonegotiation. This is the most likely case.
1531 * If autonegotiation is not supported by the link partner, and the link
1532 * has a valid signal, force the link up.
1533 *
1534 * The link state is represented internally here by 4 states:
1535 *
1536 * 1) down
1537 * 2) autoneg_progress
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001538 * 3) autoneg_complete (the link successfully autonegotiated)
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001539 * 4) forced_up (the link has been forced up, it did not autonegotiate)
1540 *
dave grahamc9523372009-02-10 12:52:28 +00001541 **/
Hannes Ederf6370112009-02-14 11:32:25 +00001542static s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
dave grahamc9523372009-02-10 12:52:28 +00001543{
1544 struct e1000_mac_info *mac = &hw->mac;
1545 u32 rxcw;
1546 u32 ctrl;
1547 u32 status;
Bruce Alland9c76f92010-11-24 06:01:35 +00001548 u32 txcw;
1549 u32 i;
dave grahamc9523372009-02-10 12:52:28 +00001550 s32 ret_val = 0;
1551
1552 ctrl = er32(CTRL);
1553 status = er32(STATUS);
1554 rxcw = er32(RXCW);
1555
1556 if ((rxcw & E1000_RXCW_SYNCH) && !(rxcw & E1000_RXCW_IV)) {
1557
1558 /* Receiver is synchronized with no invalid bits. */
1559 switch (mac->serdes_link_state) {
1560 case e1000_serdes_link_autoneg_complete:
1561 if (!(status & E1000_STATUS_LU)) {
1562 /*
1563 * We have lost link, retry autoneg before
1564 * reporting link failure
1565 */
1566 mac->serdes_link_state =
1567 e1000_serdes_link_autoneg_progress;
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001568 mac->serdes_has_link = false;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001569 e_dbg("AN_UP -> AN_PROG\n");
Bruce Allana82a14f2010-11-24 06:01:20 +00001570 } else {
1571 mac->serdes_has_link = true;
dave grahamc9523372009-02-10 12:52:28 +00001572 }
Bruce Allana82a14f2010-11-24 06:01:20 +00001573 break;
dave grahamc9523372009-02-10 12:52:28 +00001574
1575 case e1000_serdes_link_forced_up:
1576 /*
1577 * If we are receiving /C/ ordered sets, re-enable
1578 * auto-negotiation in the TXCW register and disable
1579 * forced link in the Device Control register in an
1580 * attempt to auto-negotiate with our link partner.
Bruce Alland478eb42010-11-16 19:50:13 -08001581 * If the partner code word is null, stop forcing
1582 * and restart auto negotiation.
dave grahamc9523372009-02-10 12:52:28 +00001583 */
Bruce Alland478eb42010-11-16 19:50:13 -08001584 if ((rxcw & E1000_RXCW_C) || !(rxcw & E1000_RXCW_CW)) {
dave grahamc9523372009-02-10 12:52:28 +00001585 /* Enable autoneg, and unforce link up */
1586 ew32(TXCW, mac->txcw);
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001587 ew32(CTRL, (ctrl & ~E1000_CTRL_SLU));
dave grahamc9523372009-02-10 12:52:28 +00001588 mac->serdes_link_state =
1589 e1000_serdes_link_autoneg_progress;
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001590 mac->serdes_has_link = false;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001591 e_dbg("FORCED_UP -> AN_PROG\n");
Bruce Allana82a14f2010-11-24 06:01:20 +00001592 } else {
1593 mac->serdes_has_link = true;
dave grahamc9523372009-02-10 12:52:28 +00001594 }
1595 break;
1596
1597 case e1000_serdes_link_autoneg_progress:
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001598 if (rxcw & E1000_RXCW_C) {
1599 /*
1600 * We received /C/ ordered sets, meaning the
1601 * link partner has autonegotiated, and we can
1602 * trust the Link Up (LU) status bit.
1603 */
1604 if (status & E1000_STATUS_LU) {
1605 mac->serdes_link_state =
1606 e1000_serdes_link_autoneg_complete;
1607 e_dbg("AN_PROG -> AN_UP\n");
1608 mac->serdes_has_link = true;
1609 } else {
1610 /* Autoneg completed, but failed. */
1611 mac->serdes_link_state =
1612 e1000_serdes_link_down;
1613 e_dbg("AN_PROG -> DOWN\n");
1614 }
dave grahamc9523372009-02-10 12:52:28 +00001615 } else {
1616 /*
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001617 * The link partner did not autoneg.
1618 * Force link up and full duplex, and change
1619 * state to forced.
dave grahamc9523372009-02-10 12:52:28 +00001620 */
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001621 ew32(TXCW, (mac->txcw & ~E1000_TXCW_ANE));
dave grahamc9523372009-02-10 12:52:28 +00001622 ctrl |= (E1000_CTRL_SLU | E1000_CTRL_FD);
1623 ew32(CTRL, ctrl);
1624
1625 /* Configure Flow Control after link up. */
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001626 ret_val = e1000e_config_fc_after_link_up(hw);
dave grahamc9523372009-02-10 12:52:28 +00001627 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001628 e_dbg("Error config flow control\n");
dave grahamc9523372009-02-10 12:52:28 +00001629 break;
1630 }
1631 mac->serdes_link_state =
1632 e1000_serdes_link_forced_up;
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001633 mac->serdes_has_link = true;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001634 e_dbg("AN_PROG -> FORCED_UP\n");
dave grahamc9523372009-02-10 12:52:28 +00001635 }
dave grahamc9523372009-02-10 12:52:28 +00001636 break;
1637
1638 case e1000_serdes_link_down:
1639 default:
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001640 /*
1641 * The link was down but the receiver has now gained
dave grahamc9523372009-02-10 12:52:28 +00001642 * valid sync, so lets see if we can bring the link
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001643 * up.
1644 */
dave grahamc9523372009-02-10 12:52:28 +00001645 ew32(TXCW, mac->txcw);
Bruce Allan1a40d5c2009-12-01 15:49:51 +00001646 ew32(CTRL, (ctrl & ~E1000_CTRL_SLU));
dave grahamc9523372009-02-10 12:52:28 +00001647 mac->serdes_link_state =
1648 e1000_serdes_link_autoneg_progress;
Bruce Allana82a14f2010-11-24 06:01:20 +00001649 mac->serdes_has_link = false;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001650 e_dbg("DOWN -> AN_PROG\n");
dave grahamc9523372009-02-10 12:52:28 +00001651 break;
1652 }
1653 } else {
1654 if (!(rxcw & E1000_RXCW_SYNCH)) {
1655 mac->serdes_has_link = false;
1656 mac->serdes_link_state = e1000_serdes_link_down;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001657 e_dbg("ANYSTATE -> DOWN\n");
dave grahamc9523372009-02-10 12:52:28 +00001658 } else {
1659 /*
Bruce Alland9c76f92010-11-24 06:01:35 +00001660 * Check several times, if Sync and Config
1661 * both are consistently 1 then simply ignore
1662 * the Invalid bit and restart Autoneg
dave grahamc9523372009-02-10 12:52:28 +00001663 */
Bruce Alland9c76f92010-11-24 06:01:35 +00001664 for (i = 0; i < AN_RETRY_COUNT; i++) {
1665 udelay(10);
1666 rxcw = er32(RXCW);
1667 if ((rxcw & E1000_RXCW_IV) &&
1668 !((rxcw & E1000_RXCW_SYNCH) &&
1669 (rxcw & E1000_RXCW_C))) {
1670 mac->serdes_has_link = false;
1671 mac->serdes_link_state =
1672 e1000_serdes_link_down;
1673 e_dbg("ANYSTATE -> DOWN\n");
1674 break;
1675 }
1676 }
1677
1678 if (i == AN_RETRY_COUNT) {
1679 txcw = er32(TXCW);
1680 txcw |= E1000_TXCW_ANE;
1681 ew32(TXCW, txcw);
1682 mac->serdes_link_state =
1683 e1000_serdes_link_autoneg_progress;
dave grahamc9523372009-02-10 12:52:28 +00001684 mac->serdes_has_link = false;
Bruce Alland9c76f92010-11-24 06:01:35 +00001685 e_dbg("ANYSTATE -> AN_PROG\n");
dave grahamc9523372009-02-10 12:52:28 +00001686 }
1687 }
1688 }
1689
1690 return ret_val;
1691}
1692
1693/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001694 * e1000_valid_led_default_82571 - Verify a valid default LED config
1695 * @hw: pointer to the HW structure
1696 * @data: pointer to the NVM (EEPROM)
1697 *
1698 * Read the EEPROM for the current default LED configuration. If the
1699 * LED configuration is not valid, set to a valid LED configuration.
1700 **/
1701static s32 e1000_valid_led_default_82571(struct e1000_hw *hw, u16 *data)
1702{
1703 s32 ret_val;
1704
1705 ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data);
1706 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001707 e_dbg("NVM Read Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001708 return ret_val;
1709 }
1710
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00001711 switch (hw->mac.type) {
1712 case e1000_82573:
1713 case e1000_82574:
1714 case e1000_82583:
1715 if (*data == ID_LED_RESERVED_F746)
1716 *data = ID_LED_DEFAULT_82573;
1717 break;
1718 default:
1719 if (*data == ID_LED_RESERVED_0000 ||
1720 *data == ID_LED_RESERVED_FFFF)
1721 *data = ID_LED_DEFAULT;
1722 break;
1723 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001724
1725 return 0;
1726}
1727
1728/**
1729 * e1000e_get_laa_state_82571 - Get locally administered address state
1730 * @hw: pointer to the HW structure
1731 *
Auke Kok489815c2008-02-21 15:11:07 -08001732 * Retrieve and return the current locally administered address state.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001733 **/
1734bool e1000e_get_laa_state_82571(struct e1000_hw *hw)
1735{
1736 if (hw->mac.type != e1000_82571)
Bruce Allan564ea9b2009-11-20 23:26:44 +00001737 return false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001738
1739 return hw->dev_spec.e82571.laa_is_present;
1740}
1741
1742/**
1743 * e1000e_set_laa_state_82571 - Set locally administered address state
1744 * @hw: pointer to the HW structure
1745 * @state: enable/disable locally administered address
1746 *
Bruce Allan5ff5b662009-12-01 15:51:11 +00001747 * Enable/Disable the current locally administered address state.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001748 **/
1749void e1000e_set_laa_state_82571(struct e1000_hw *hw, bool state)
1750{
1751 if (hw->mac.type != e1000_82571)
1752 return;
1753
1754 hw->dev_spec.e82571.laa_is_present = state;
1755
1756 /* If workaround is activated... */
1757 if (state)
Bruce Allanad680762008-03-28 09:15:03 -07001758 /*
1759 * Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07001760 * between the time RAR[0] gets clobbered and the time it
1761 * gets fixed, the actual LAA is in one of the RARs and no
1762 * incoming packets directed to this port are dropped.
1763 * Eventually the LAA will be in RAR[0] and RAR[14].
1764 */
Bruce Allan69e1e012012-04-14 03:28:50 +00001765 hw->mac.ops.rar_set(hw, hw->mac.addr,
1766 hw->mac.rar_entry_count - 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001767}
1768
1769/**
1770 * e1000_fix_nvm_checksum_82571 - Fix EEPROM checksum
1771 * @hw: pointer to the HW structure
1772 *
1773 * Verifies that the EEPROM has completed the update. After updating the
1774 * EEPROM, we need to check bit 15 in work 0x23 for the checksum fix. If
1775 * the checksum fix is not implemented, we need to set the bit and update
1776 * the checksum. Otherwise, if bit 15 is set and the checksum is incorrect,
1777 * we need to return bad checksum.
1778 **/
1779static s32 e1000_fix_nvm_checksum_82571(struct e1000_hw *hw)
1780{
1781 struct e1000_nvm_info *nvm = &hw->nvm;
1782 s32 ret_val;
1783 u16 data;
1784
1785 if (nvm->type != e1000_nvm_flash_hw)
1786 return 0;
1787
Bruce Allanad680762008-03-28 09:15:03 -07001788 /*
1789 * Check bit 4 of word 10h. If it is 0, firmware is done updating
Auke Kokbc7f75f2007-09-17 12:30:59 -07001790 * 10h-12h. Checksum may need to be fixed.
1791 */
1792 ret_val = e1000_read_nvm(hw, 0x10, 1, &data);
1793 if (ret_val)
1794 return ret_val;
1795
1796 if (!(data & 0x10)) {
Bruce Allanad680762008-03-28 09:15:03 -07001797 /*
1798 * Read 0x23 and check bit 15. This bit is a 1
Auke Kokbc7f75f2007-09-17 12:30:59 -07001799 * when the checksum has already been fixed. If
1800 * the checksum is still wrong and this bit is a
1801 * 1, we need to return bad checksum. Otherwise,
1802 * we need to set this bit to a 1 and update the
1803 * checksum.
1804 */
1805 ret_val = e1000_read_nvm(hw, 0x23, 1, &data);
1806 if (ret_val)
1807 return ret_val;
1808
1809 if (!(data & 0x8000)) {
1810 data |= 0x8000;
1811 ret_val = e1000_write_nvm(hw, 0x23, 1, &data);
1812 if (ret_val)
1813 return ret_val;
1814 ret_val = e1000e_update_nvm_checksum(hw);
1815 }
1816 }
1817
1818 return 0;
1819}
1820
1821/**
Bruce Allan608f8a02010-01-13 02:04:58 +00001822 * e1000_read_mac_addr_82571 - Read device MAC address
1823 * @hw: pointer to the HW structure
1824 **/
1825static s32 e1000_read_mac_addr_82571(struct e1000_hw *hw)
1826{
Bruce Allan1aef70e2010-08-19 15:48:52 -07001827 if (hw->mac.type == e1000_82571) {
Bruce Allan5015e532012-02-08 02:55:56 +00001828 s32 ret_val = 0;
1829
Bruce Allan1aef70e2010-08-19 15:48:52 -07001830 /*
1831 * If there's an alternate MAC address place it in RAR0
1832 * so that it will override the Si installed default perm
1833 * address.
1834 */
1835 ret_val = e1000_check_alt_mac_addr_generic(hw);
1836 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001837 return ret_val;
Bruce Allan1aef70e2010-08-19 15:48:52 -07001838 }
Bruce Allan608f8a02010-01-13 02:04:58 +00001839
Bruce Allan5015e532012-02-08 02:55:56 +00001840 return e1000_read_mac_addr_generic(hw);
Bruce Allan608f8a02010-01-13 02:04:58 +00001841}
1842
1843/**
Bruce Allan17f208d2009-12-01 15:47:22 +00001844 * e1000_power_down_phy_copper_82571 - Remove link during PHY power down
1845 * @hw: pointer to the HW structure
1846 *
1847 * In the case of a PHY power down to save power, or to turn off link during a
1848 * driver unload, or wake on lan is not enabled, remove the link.
1849 **/
1850static void e1000_power_down_phy_copper_82571(struct e1000_hw *hw)
1851{
1852 struct e1000_phy_info *phy = &hw->phy;
1853 struct e1000_mac_info *mac = &hw->mac;
1854
Bruce Allan668018d2012-01-31 07:02:56 +00001855 if (!phy->ops.check_reset_block)
Bruce Allan17f208d2009-12-01 15:47:22 +00001856 return;
1857
1858 /* If the management interface is not enabled, then power down */
1859 if (!(mac->ops.check_mng_mode(hw) || phy->ops.check_reset_block(hw)))
1860 e1000_power_down_phy_copper(hw);
Bruce Allan17f208d2009-12-01 15:47:22 +00001861}
1862
1863/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001864 * e1000_clear_hw_cntrs_82571 - Clear device specific hardware counters
1865 * @hw: pointer to the HW structure
1866 *
1867 * Clears the hardware counters by reading the counter registers.
1868 **/
1869static void e1000_clear_hw_cntrs_82571(struct e1000_hw *hw)
1870{
Auke Kokbc7f75f2007-09-17 12:30:59 -07001871 e1000e_clear_hw_cntrs_base(hw);
1872
Bruce Allan99673d92009-11-20 23:27:21 +00001873 er32(PRC64);
1874 er32(PRC127);
1875 er32(PRC255);
1876 er32(PRC511);
1877 er32(PRC1023);
1878 er32(PRC1522);
1879 er32(PTC64);
1880 er32(PTC127);
1881 er32(PTC255);
1882 er32(PTC511);
1883 er32(PTC1023);
1884 er32(PTC1522);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001885
Bruce Allan99673d92009-11-20 23:27:21 +00001886 er32(ALGNERRC);
1887 er32(RXERRC);
1888 er32(TNCRS);
1889 er32(CEXTERR);
1890 er32(TSCTC);
1891 er32(TSCTFC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001892
Bruce Allan99673d92009-11-20 23:27:21 +00001893 er32(MGTPRC);
1894 er32(MGTPDC);
1895 er32(MGTPTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001896
Bruce Allan99673d92009-11-20 23:27:21 +00001897 er32(IAC);
1898 er32(ICRXOC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001899
Bruce Allan99673d92009-11-20 23:27:21 +00001900 er32(ICRXPTC);
1901 er32(ICRXATC);
1902 er32(ICTXPTC);
1903 er32(ICTXATC);
1904 er32(ICTXQEC);
1905 er32(ICTXQMTC);
1906 er32(ICRXDMTC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001907}
1908
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001909static const struct e1000_mac_operations e82571_mac_ops = {
Bruce Allan4662e822008-08-26 18:37:06 -07001910 /* .check_mng_mode: mac type dependent */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001911 /* .check_for_link: media type dependent */
Bruce Alland1964eb2012-02-22 09:02:21 +00001912 .id_led_init = e1000e_id_led_init_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001913 .cleanup_led = e1000e_cleanup_led_generic,
1914 .clear_hw_cntrs = e1000_clear_hw_cntrs_82571,
1915 .get_bus_info = e1000e_get_bus_info_pcie,
Bruce Allanf4d2dd42010-01-13 02:05:18 +00001916 .set_lan_id = e1000_set_lan_id_multi_port_pcie,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001917 /* .get_link_up_info: media type dependent */
Bruce Allan4662e822008-08-26 18:37:06 -07001918 /* .led_on: mac type dependent */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001919 .led_off = e1000e_led_off_generic,
Bruce Allanab8932f2010-01-13 02:05:38 +00001920 .update_mc_addr_list = e1000e_update_mc_addr_list_generic,
Bruce Allancaaddaf2009-12-01 15:46:43 +00001921 .write_vfta = e1000_write_vfta_generic,
1922 .clear_vfta = e1000_clear_vfta_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001923 .reset_hw = e1000_reset_hw_82571,
1924 .init_hw = e1000_init_hw_82571,
1925 .setup_link = e1000_setup_link_82571,
1926 /* .setup_physical_interface: media type dependent */
Bruce Allana4f58f52009-06-02 11:29:18 +00001927 .setup_led = e1000e_setup_led_generic,
Bruce Allan57cde762012-02-22 09:02:58 +00001928 .config_collision_dist = e1000e_config_collision_dist_generic,
Bruce Allan608f8a02010-01-13 02:04:58 +00001929 .read_mac_addr = e1000_read_mac_addr_82571,
Bruce Allan69e1e012012-04-14 03:28:50 +00001930 .rar_set = e1000e_rar_set_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001931};
1932
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001933static const struct e1000_phy_operations e82_phy_ops_igp = {
Bruce Allan94d81862009-11-20 23:25:26 +00001934 .acquire = e1000_get_hw_semaphore_82571,
Bruce Allan94e5b652009-12-02 17:02:14 +00001935 .check_polarity = e1000_check_polarity_igp,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001936 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001937 .commit = NULL,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001938 .force_speed_duplex = e1000e_phy_force_speed_duplex_igp,
1939 .get_cfg_done = e1000_get_cfg_done_82571,
1940 .get_cable_length = e1000e_get_cable_length_igp_2,
Bruce Allan94d81862009-11-20 23:25:26 +00001941 .get_info = e1000e_get_phy_info_igp,
1942 .read_reg = e1000e_read_phy_reg_igp,
1943 .release = e1000_put_hw_semaphore_82571,
1944 .reset = e1000e_phy_hw_reset_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001945 .set_d0_lplu_state = e1000_set_d0_lplu_state_82571,
1946 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001947 .write_reg = e1000e_write_phy_reg_igp,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001948 .cfg_on_link_up = NULL,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001949};
1950
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001951static const struct e1000_phy_operations e82_phy_ops_m88 = {
Bruce Allan94d81862009-11-20 23:25:26 +00001952 .acquire = e1000_get_hw_semaphore_82571,
Bruce Allan94e5b652009-12-02 17:02:14 +00001953 .check_polarity = e1000_check_polarity_m88,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001954 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001955 .commit = e1000e_phy_sw_reset,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001956 .force_speed_duplex = e1000e_phy_force_speed_duplex_m88,
1957 .get_cfg_done = e1000e_get_cfg_done,
1958 .get_cable_length = e1000e_get_cable_length_m88,
Bruce Allan94d81862009-11-20 23:25:26 +00001959 .get_info = e1000e_get_phy_info_m88,
1960 .read_reg = e1000e_read_phy_reg_m88,
1961 .release = e1000_put_hw_semaphore_82571,
1962 .reset = e1000e_phy_hw_reset_generic,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001963 .set_d0_lplu_state = e1000_set_d0_lplu_state_82571,
1964 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001965 .write_reg = e1000e_write_phy_reg_m88,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001966 .cfg_on_link_up = NULL,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001967};
1968
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001969static const struct e1000_phy_operations e82_phy_ops_bm = {
Bruce Allan94d81862009-11-20 23:25:26 +00001970 .acquire = e1000_get_hw_semaphore_82571,
Bruce Allan94e5b652009-12-02 17:02:14 +00001971 .check_polarity = e1000_check_polarity_m88,
Bruce Allan4662e822008-08-26 18:37:06 -07001972 .check_reset_block = e1000e_check_reset_block_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001973 .commit = e1000e_phy_sw_reset,
Bruce Allan4662e822008-08-26 18:37:06 -07001974 .force_speed_duplex = e1000e_phy_force_speed_duplex_m88,
1975 .get_cfg_done = e1000e_get_cfg_done,
1976 .get_cable_length = e1000e_get_cable_length_m88,
Bruce Allan94d81862009-11-20 23:25:26 +00001977 .get_info = e1000e_get_phy_info_m88,
1978 .read_reg = e1000e_read_phy_reg_bm2,
1979 .release = e1000_put_hw_semaphore_82571,
1980 .reset = e1000e_phy_hw_reset_generic,
Bruce Allan4662e822008-08-26 18:37:06 -07001981 .set_d0_lplu_state = e1000_set_d0_lplu_state_82571,
1982 .set_d3_lplu_state = e1000e_set_d3_lplu_state,
Bruce Allan94d81862009-11-20 23:25:26 +00001983 .write_reg = e1000e_write_phy_reg_bm2,
Bruce Allan75eb0fa2008-11-21 16:53:51 -08001984 .cfg_on_link_up = NULL,
Bruce Allan4662e822008-08-26 18:37:06 -07001985};
1986
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001987static const struct e1000_nvm_operations e82571_nvm_ops = {
Bruce Allan94d81862009-11-20 23:25:26 +00001988 .acquire = e1000_acquire_nvm_82571,
1989 .read = e1000e_read_nvm_eerd,
1990 .release = e1000_release_nvm_82571,
Bruce Allane85e3632012-02-22 09:03:14 +00001991 .reload = e1000e_reload_nvm_generic,
Bruce Allan94d81862009-11-20 23:25:26 +00001992 .update = e1000_update_nvm_checksum_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001993 .valid_led_default = e1000_valid_led_default_82571,
Bruce Allan94d81862009-11-20 23:25:26 +00001994 .validate = e1000_validate_nvm_checksum_82571,
1995 .write = e1000_write_nvm_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001996};
1997
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00001998const struct e1000_info e1000_82571_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001999 .mac = e1000_82571,
2000 .flags = FLAG_HAS_HW_VLAN_FILTER
2001 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07002002 | FLAG_HAS_WOL
2003 | FLAG_APME_IN_CTRL3
Auke Kokbc7f75f2007-09-17 12:30:59 -07002004 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07002005 | FLAG_HAS_SMART_POWER_DOWN
2006 | FLAG_RESET_OVERWRITES_LAA /* errata */
2007 | FLAG_TARC_SPEED_MODE_BIT /* errata */
2008 | FLAG_APME_CHECK_PORT_B,
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002009 .flags2 = FLAG2_DISABLE_ASPM_L1 /* errata 13 */
2010 | FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002011 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00002012 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07002013 .get_variants = e1000_get_variants_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002014 .mac_ops = &e82571_mac_ops,
2015 .phy_ops = &e82_phy_ops_igp,
2016 .nvm_ops = &e82571_nvm_ops,
2017};
2018
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00002019const struct e1000_info e1000_82572_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002020 .mac = e1000_82572,
2021 .flags = FLAG_HAS_HW_VLAN_FILTER
2022 | FLAG_HAS_JUMBO_FRAMES
Auke Kokbc7f75f2007-09-17 12:30:59 -07002023 | FLAG_HAS_WOL
2024 | FLAG_APME_IN_CTRL3
Auke Kokbc7f75f2007-09-17 12:30:59 -07002025 | FLAG_HAS_CTRLEXT_ON_LOAD
Auke Kokbc7f75f2007-09-17 12:30:59 -07002026 | FLAG_TARC_SPEED_MODE_BIT, /* errata */
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002027 .flags2 = FLAG2_DISABLE_ASPM_L1 /* errata 13 */
2028 | FLAG2_DMA_BURST,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002029 .pba = 38,
Bruce Allan2adc55c2009-06-02 11:28:58 +00002030 .max_hw_frame_size = DEFAULT_JUMBO,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07002031 .get_variants = e1000_get_variants_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002032 .mac_ops = &e82571_mac_ops,
2033 .phy_ops = &e82_phy_ops_igp,
2034 .nvm_ops = &e82571_nvm_ops,
2035};
2036
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00002037const struct e1000_info e1000_82573_info = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002038 .mac = e1000_82573,
2039 .flags = FLAG_HAS_HW_VLAN_FILTER
Auke Kokbc7f75f2007-09-17 12:30:59 -07002040 | FLAG_HAS_WOL
2041 | FLAG_APME_IN_CTRL3
Auke Kokbc7f75f2007-09-17 12:30:59 -07002042 | FLAG_HAS_SMART_POWER_DOWN
2043 | FLAG_HAS_AMT
Auke Kokbc7f75f2007-09-17 12:30:59 -07002044 | FLAG_HAS_SWSM_ON_LOAD,
Bruce Allan78cd29d2011-03-24 03:09:03 +00002045 .flags2 = FLAG2_DISABLE_ASPM_L1
2046 | FLAG2_DISABLE_ASPM_L0S,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002047 .pba = 20,
Bruce Allan2adc55c2009-06-02 11:28:58 +00002048 .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN,
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07002049 .get_variants = e1000_get_variants_82571,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002050 .mac_ops = &e82571_mac_ops,
2051 .phy_ops = &e82_phy_ops_m88,
Auke Kok31f8c4f2008-02-21 15:10:47 -08002052 .nvm_ops = &e82571_nvm_ops,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002053};
2054
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00002055const struct e1000_info e1000_82574_info = {
Bruce Allan4662e822008-08-26 18:37:06 -07002056 .mac = e1000_82574,
2057 .flags = FLAG_HAS_HW_VLAN_FILTER
2058 | FLAG_HAS_MSIX
2059 | FLAG_HAS_JUMBO_FRAMES
2060 | FLAG_HAS_WOL
2061 | FLAG_APME_IN_CTRL3
Bruce Allan4662e822008-08-26 18:37:06 -07002062 | FLAG_HAS_SMART_POWER_DOWN
2063 | FLAG_HAS_AMT
2064 | FLAG_HAS_CTRLEXT_ON_LOAD,
Bruce Allan78cd29d2011-03-24 03:09:03 +00002065 .flags2 = FLAG2_CHECK_PHY_HANG
Bruce Allan7f99ae62011-07-22 06:21:35 +00002066 | FLAG2_DISABLE_ASPM_L0S
Matthew Vick2cb7a9c2012-03-16 09:02:59 +00002067 | FLAG2_NO_DISABLE_RX
2068 | FLAG2_DMA_BURST,
Bruce Allaned5c2b02010-11-24 06:01:25 +00002069 .pba = 32,
Alexander Duycka825e002009-10-02 12:30:42 +00002070 .max_hw_frame_size = DEFAULT_JUMBO,
Bruce Allan4662e822008-08-26 18:37:06 -07002071 .get_variants = e1000_get_variants_82571,
2072 .mac_ops = &e82571_mac_ops,
2073 .phy_ops = &e82_phy_ops_bm,
2074 .nvm_ops = &e82571_nvm_ops,
2075};
2076
Jeff Kirsher8ce9d6c2011-09-24 13:23:52 +00002077const struct e1000_info e1000_82583_info = {
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00002078 .mac = e1000_82583,
2079 .flags = FLAG_HAS_HW_VLAN_FILTER
2080 | FLAG_HAS_WOL
2081 | FLAG_APME_IN_CTRL3
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00002082 | FLAG_HAS_SMART_POWER_DOWN
2083 | FLAG_HAS_AMT
Carolyn Wybornya3d72d52011-07-12 16:10:11 +00002084 | FLAG_HAS_JUMBO_FRAMES
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00002085 | FLAG_HAS_CTRLEXT_ON_LOAD,
Bruce Allan7f99ae62011-07-22 06:21:35 +00002086 .flags2 = FLAG2_DISABLE_ASPM_L0S
2087 | FLAG2_NO_DISABLE_RX,
Bruce Allaned5c2b02010-11-24 06:01:25 +00002088 .pba = 32,
Carolyn Wybornya3d72d52011-07-12 16:10:11 +00002089 .max_hw_frame_size = DEFAULT_JUMBO,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00002090 .get_variants = e1000_get_variants_82571,
2091 .mac_ops = &e82571_mac_ops,
2092 .phy_ops = &e82_phy_ops_bm,
2093 .nvm_ops = &e82571_nvm_ops,
2094};
2095