skbuff: update struct sk_buff members comments
[deliverable/linux.git] / drivers / net / igb / e1000_82575.c
CommitLineData
9d5c8243
AK
1/*******************************************************************************
2
3 Intel(R) Gigabit Ethernet Linux driver
86d5d38f 4 Copyright(c) 2007-2009 Intel Corporation.
9d5c8243
AK
5
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 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28/* e1000_82575
29 * e1000_82576
30 */
31
32#include <linux/types.h>
2d064c06 33#include <linux/if_ether.h>
9d5c8243
AK
34
35#include "e1000_mac.h"
36#include "e1000_82575.h"
37
38static s32 igb_get_invariants_82575(struct e1000_hw *);
39static s32 igb_acquire_phy_82575(struct e1000_hw *);
40static void igb_release_phy_82575(struct e1000_hw *);
41static s32 igb_acquire_nvm_82575(struct e1000_hw *);
42static void igb_release_nvm_82575(struct e1000_hw *);
43static s32 igb_check_for_link_82575(struct e1000_hw *);
44static s32 igb_get_cfg_done_82575(struct e1000_hw *);
45static s32 igb_init_hw_82575(struct e1000_hw *);
46static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *);
47static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16 *);
bb2ac47b
AD
48static s32 igb_read_phy_reg_82580(struct e1000_hw *, u32, u16 *);
49static s32 igb_write_phy_reg_82580(struct e1000_hw *, u32, u16);
9d5c8243 50static s32 igb_reset_hw_82575(struct e1000_hw *);
bb2ac47b 51static s32 igb_reset_hw_82580(struct e1000_hw *);
9d5c8243
AK
52static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *, bool);
53static s32 igb_setup_copper_link_82575(struct e1000_hw *);
2fb02a26 54static s32 igb_setup_serdes_link_82575(struct e1000_hw *);
9d5c8243
AK
55static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16);
56static void igb_clear_hw_cntrs_82575(struct e1000_hw *);
57static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *, u16);
9d5c8243
AK
58static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *, u16 *,
59 u16 *);
60static s32 igb_get_phy_id_82575(struct e1000_hw *);
61static void igb_release_swfw_sync_82575(struct e1000_hw *, u16);
62static bool igb_sgmii_active_82575(struct e1000_hw *);
63static s32 igb_reset_init_script_82575(struct e1000_hw *);
64static s32 igb_read_mac_addr_82575(struct e1000_hw *);
009bc06e 65static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw);
99870a73 66static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw);
4322e561
CW
67static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw);
68static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw);
69static s32 igb_update_nvm_checksum_with_offset(struct e1000_hw *hw,
70 u16 offset);
71static s32 igb_validate_nvm_checksum_with_offset(struct e1000_hw *hw,
72 u16 offset);
73static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw);
74static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw);
bb2ac47b
AD
75static const u16 e1000_82580_rxpbs_table[] =
76 { 36, 72, 144, 1, 2, 4, 8, 16,
77 35, 70, 140 };
78#define E1000_82580_RXPBS_TABLE_SIZE \
79 (sizeof(e1000_82580_rxpbs_table)/sizeof(u16))
80
4085f746
NN
81/**
82 * igb_sgmii_uses_mdio_82575 - Determine if I2C pins are for external MDIO
83 * @hw: pointer to the HW structure
84 *
85 * Called to determine if the I2C pins are being used for I2C or as an
86 * external MDIO interface since the two options are mutually exclusive.
87 **/
88static bool igb_sgmii_uses_mdio_82575(struct e1000_hw *hw)
89{
90 u32 reg = 0;
91 bool ext_mdio = false;
92
93 switch (hw->mac.type) {
94 case e1000_82575:
95 case e1000_82576:
96 reg = rd32(E1000_MDIC);
97 ext_mdio = !!(reg & E1000_MDIC_DEST);
98 break;
99 case e1000_82580:
100 case e1000_i350:
101 reg = rd32(E1000_MDICNFG);
102 ext_mdio = !!(reg & E1000_MDICNFG_EXT_MDIO);
103 break;
104 default:
105 break;
106 }
107 return ext_mdio;
108}
109
9d5c8243
AK
110static s32 igb_get_invariants_82575(struct e1000_hw *hw)
111{
112 struct e1000_phy_info *phy = &hw->phy;
113 struct e1000_nvm_info *nvm = &hw->nvm;
114 struct e1000_mac_info *mac = &hw->mac;
c1889bfe 115 struct e1000_dev_spec_82575 * dev_spec = &hw->dev_spec._82575;
9d5c8243
AK
116 u32 eecd;
117 s32 ret_val;
118 u16 size;
119 u32 ctrl_ext = 0;
120
121 switch (hw->device_id) {
122 case E1000_DEV_ID_82575EB_COPPER:
123 case E1000_DEV_ID_82575EB_FIBER_SERDES:
124 case E1000_DEV_ID_82575GB_QUAD_COPPER:
125 mac->type = e1000_82575;
126 break;
2d064c06 127 case E1000_DEV_ID_82576:
9eb2341d 128 case E1000_DEV_ID_82576_NS:
747d49ba 129 case E1000_DEV_ID_82576_NS_SERDES:
2d064c06
AD
130 case E1000_DEV_ID_82576_FIBER:
131 case E1000_DEV_ID_82576_SERDES:
c8ea5ea9 132 case E1000_DEV_ID_82576_QUAD_COPPER:
b894fa26 133 case E1000_DEV_ID_82576_QUAD_COPPER_ET2:
4703bf73 134 case E1000_DEV_ID_82576_SERDES_QUAD:
2d064c06
AD
135 mac->type = e1000_82576;
136 break;
bb2ac47b
AD
137 case E1000_DEV_ID_82580_COPPER:
138 case E1000_DEV_ID_82580_FIBER:
6493d24f 139 case E1000_DEV_ID_82580_QUAD_FIBER:
bb2ac47b
AD
140 case E1000_DEV_ID_82580_SERDES:
141 case E1000_DEV_ID_82580_SGMII:
142 case E1000_DEV_ID_82580_COPPER_DUAL:
308fb39a
JG
143 case E1000_DEV_ID_DH89XXCC_SGMII:
144 case E1000_DEV_ID_DH89XXCC_SERDES:
1b5dda33
GJ
145 case E1000_DEV_ID_DH89XXCC_BACKPLANE:
146 case E1000_DEV_ID_DH89XXCC_SFP:
bb2ac47b
AD
147 mac->type = e1000_82580;
148 break;
d2ba2ed8
AD
149 case E1000_DEV_ID_I350_COPPER:
150 case E1000_DEV_ID_I350_FIBER:
151 case E1000_DEV_ID_I350_SERDES:
152 case E1000_DEV_ID_I350_SGMII:
153 mac->type = e1000_i350;
154 break;
9d5c8243
AK
155 default:
156 return -E1000_ERR_MAC_INIT;
157 break;
158 }
159
9d5c8243
AK
160 /* Set media type */
161 /*
162 * The 82575 uses bits 22:23 for link mode. The mode can be changed
163 * based on the EEPROM. We cannot rely upon device ID. There
164 * is no distinguishable difference between fiber and internal
165 * SerDes mode on the 82575. There can be an external PHY attached
166 * on the SGMII interface. For this, we'll set sgmii_active to true.
167 */
168 phy->media_type = e1000_media_type_copper;
169 dev_spec->sgmii_active = false;
170
171 ctrl_ext = rd32(E1000_CTRL_EXT);
2fb02a26
AD
172 switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) {
173 case E1000_CTRL_EXT_LINK_MODE_SGMII:
9d5c8243 174 dev_spec->sgmii_active = true;
2fb02a26 175 break;
bb2ac47b 176 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
2fb02a26
AD
177 case E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES:
178 hw->phy.media_type = e1000_media_type_internal_serdes;
2fb02a26
AD
179 break;
180 default:
2fb02a26 181 break;
9d5c8243 182 }
2fb02a26 183
9d5c8243
AK
184 /* Set mta register count */
185 mac->mta_reg_count = 128;
186 /* Set rar entry count */
187 mac->rar_entry_count = E1000_RAR_ENTRIES_82575;
2d064c06
AD
188 if (mac->type == e1000_82576)
189 mac->rar_entry_count = E1000_RAR_ENTRIES_82576;
bb2ac47b
AD
190 if (mac->type == e1000_82580)
191 mac->rar_entry_count = E1000_RAR_ENTRIES_82580;
d2ba2ed8
AD
192 if (mac->type == e1000_i350)
193 mac->rar_entry_count = E1000_RAR_ENTRIES_I350;
bb2ac47b 194 /* reset */
d2ba2ed8 195 if (mac->type >= e1000_82580)
bb2ac47b
AD
196 mac->ops.reset_hw = igb_reset_hw_82580;
197 else
198 mac->ops.reset_hw = igb_reset_hw_82575;
9d5c8243
AK
199 /* Set if part includes ASF firmware */
200 mac->asf_firmware_present = true;
201 /* Set if manageability features are enabled. */
202 mac->arc_subsystem_valid =
203 (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK)
204 ? true : false;
09b068d4
CW
205 /* enable EEE on i350 parts */
206 if (mac->type == e1000_i350)
207 dev_spec->eee_disable = false;
208 else
209 dev_spec->eee_disable = true;
9d5c8243
AK
210 /* physical interface link setup */
211 mac->ops.setup_physical_interface =
212 (hw->phy.media_type == e1000_media_type_copper)
213 ? igb_setup_copper_link_82575
2fb02a26 214 : igb_setup_serdes_link_82575;
9d5c8243
AK
215
216 /* NVM initialization */
217 eecd = rd32(E1000_EECD);
218
219 nvm->opcode_bits = 8;
220 nvm->delay_usec = 1;
221 switch (nvm->override) {
222 case e1000_nvm_override_spi_large:
223 nvm->page_size = 32;
224 nvm->address_bits = 16;
225 break;
226 case e1000_nvm_override_spi_small:
227 nvm->page_size = 8;
228 nvm->address_bits = 8;
229 break;
230 default:
231 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
232 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
233 break;
234 }
235
236 nvm->type = e1000_nvm_eeprom_spi;
237
238 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
239 E1000_EECD_SIZE_EX_SHIFT);
240
241 /*
242 * Added to a constant, "size" becomes the left-shift value
243 * for setting word_size.
244 */
245 size += NVM_WORD_SIZE_BASE_SHIFT;
5c3cad75 246
f6b1bfd1
CW
247 /*
248 * Check for invalid size
249 */
250 if ((hw->mac.type == e1000_82576) && (size > 15)) {
251 printk("igb: The NVM size is not valid, "
252 "defaulting to 32K.\n");
253 size = 15;
254 }
9d5c8243 255 nvm->word_size = 1 << size;
4322e561
CW
256 if (nvm->word_size == (1 << 15))
257 nvm->page_size = 128;
258
259 /* NVM Function Pointers */
260 nvm->ops.acquire = igb_acquire_nvm_82575;
261 if (nvm->word_size < (1 << 15))
262 nvm->ops.read = igb_read_nvm_eerd;
263 else
264 nvm->ops.read = igb_read_nvm_spi;
265
266 nvm->ops.release = igb_release_nvm_82575;
267 switch (hw->mac.type) {
268 case e1000_82580:
269 nvm->ops.validate = igb_validate_nvm_checksum_82580;
270 nvm->ops.update = igb_update_nvm_checksum_82580;
271 break;
272 case e1000_i350:
273 nvm->ops.validate = igb_validate_nvm_checksum_i350;
274 nvm->ops.update = igb_update_nvm_checksum_i350;
275 break;
276 default:
277 nvm->ops.validate = igb_validate_nvm_checksum;
278 nvm->ops.update = igb_update_nvm_checksum;
279 }
280 nvm->ops.write = igb_write_nvm_spi;
9d5c8243 281
6b78bb1d
CW
282 /* if part supports SR-IOV then initialize mailbox parameters */
283 switch (mac->type) {
284 case e1000_82576:
285 case e1000_i350:
a0c98605 286 igb_init_mbx_params_pf(hw);
6b78bb1d
CW
287 break;
288 default:
289 break;
290 }
a0c98605 291
9d5c8243
AK
292 /* setup PHY parameters */
293 if (phy->media_type != e1000_media_type_copper) {
294 phy->type = e1000_phy_none;
295 return 0;
296 }
297
298 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
299 phy->reset_delay_us = 100;
300
99870a73
AD
301 ctrl_ext = rd32(E1000_CTRL_EXT);
302
9d5c8243 303 /* PHY function pointers */
99870a73 304 if (igb_sgmii_active_82575(hw)) {
4085f746 305 phy->ops.reset = igb_phy_hw_reset_sgmii_82575;
99870a73
AD
306 ctrl_ext |= E1000_CTRL_I2C_ENA;
307 } else {
4085f746 308 phy->ops.reset = igb_phy_hw_reset;
99870a73
AD
309 ctrl_ext &= ~E1000_CTRL_I2C_ENA;
310 }
311
312 wr32(E1000_CTRL_EXT, ctrl_ext);
313 igb_reset_mdicnfg_82580(hw);
4085f746
NN
314
315 if (igb_sgmii_active_82575(hw) && !igb_sgmii_uses_mdio_82575(hw)) {
316 phy->ops.read_reg = igb_read_phy_reg_sgmii_82575;
317 phy->ops.write_reg = igb_write_phy_reg_sgmii_82575;
d2ba2ed8 318 } else if (hw->mac.type >= e1000_82580) {
4085f746
NN
319 phy->ops.read_reg = igb_read_phy_reg_82580;
320 phy->ops.write_reg = igb_write_phy_reg_82580;
9d5c8243 321 } else {
4085f746
NN
322 phy->ops.read_reg = igb_read_phy_reg_igp;
323 phy->ops.write_reg = igb_write_phy_reg_igp;
9d5c8243
AK
324 }
325
19e588e7
AD
326 /* set lan id */
327 hw->bus.func = (rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) >>
328 E1000_STATUS_FUNC_SHIFT;
329
9d5c8243
AK
330 /* Set phy->phy_addr and phy->id. */
331 ret_val = igb_get_phy_id_82575(hw);
332 if (ret_val)
333 return ret_val;
334
335 /* Verify phy id and set remaining function pointers */
336 switch (phy->id) {
308fb39a
JG
337 case I347AT4_E_PHY_ID:
338 case M88E1112_E_PHY_ID:
9d5c8243
AK
339 case M88E1111_I_PHY_ID:
340 phy->type = e1000_phy_m88;
341 phy->ops.get_phy_info = igb_get_phy_info_m88;
308fb39a
JG
342
343 if (phy->id == I347AT4_E_PHY_ID ||
344 phy->id == M88E1112_E_PHY_ID)
345 phy->ops.get_cable_length = igb_get_cable_length_m88_gen2;
346 else
347 phy->ops.get_cable_length = igb_get_cable_length_m88;
348
9d5c8243
AK
349 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
350 break;
351 case IGP03E1000_E_PHY_ID:
352 phy->type = e1000_phy_igp_3;
353 phy->ops.get_phy_info = igb_get_phy_info_igp;
354 phy->ops.get_cable_length = igb_get_cable_length_igp_2;
355 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_igp;
356 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82575;
357 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state;
358 break;
bb2ac47b 359 case I82580_I_PHY_ID:
d2ba2ed8 360 case I350_I_PHY_ID:
bb2ac47b
AD
361 phy->type = e1000_phy_82580;
362 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_82580;
363 phy->ops.get_cable_length = igb_get_cable_length_82580;
364 phy->ops.get_phy_info = igb_get_phy_info_82580;
365 break;
9d5c8243
AK
366 default:
367 return -E1000_ERR_PHY;
368 }
369
370 return 0;
371}
372
373/**
733596be 374 * igb_acquire_phy_82575 - Acquire rights to access PHY
9d5c8243
AK
375 * @hw: pointer to the HW structure
376 *
377 * Acquire access rights to the correct PHY. This is a
378 * function pointer entry point called by the api module.
379 **/
380static s32 igb_acquire_phy_82575(struct e1000_hw *hw)
381{
008c3422 382 u16 mask = E1000_SWFW_PHY0_SM;
9d5c8243 383
008c3422
AD
384 if (hw->bus.func == E1000_FUNC_1)
385 mask = E1000_SWFW_PHY1_SM;
ede3ef0d
NN
386 else if (hw->bus.func == E1000_FUNC_2)
387 mask = E1000_SWFW_PHY2_SM;
388 else if (hw->bus.func == E1000_FUNC_3)
389 mask = E1000_SWFW_PHY3_SM;
9d5c8243
AK
390
391 return igb_acquire_swfw_sync_82575(hw, mask);
392}
393
394/**
733596be 395 * igb_release_phy_82575 - Release rights to access PHY
9d5c8243
AK
396 * @hw: pointer to the HW structure
397 *
398 * A wrapper to release access rights to the correct PHY. This is a
399 * function pointer entry point called by the api module.
400 **/
401static void igb_release_phy_82575(struct e1000_hw *hw)
402{
008c3422
AD
403 u16 mask = E1000_SWFW_PHY0_SM;
404
405 if (hw->bus.func == E1000_FUNC_1)
406 mask = E1000_SWFW_PHY1_SM;
ede3ef0d
NN
407 else if (hw->bus.func == E1000_FUNC_2)
408 mask = E1000_SWFW_PHY2_SM;
409 else if (hw->bus.func == E1000_FUNC_3)
410 mask = E1000_SWFW_PHY3_SM;
9d5c8243 411
9d5c8243
AK
412 igb_release_swfw_sync_82575(hw, mask);
413}
414
415/**
733596be 416 * igb_read_phy_reg_sgmii_82575 - Read PHY register using sgmii
9d5c8243
AK
417 * @hw: pointer to the HW structure
418 * @offset: register offset to be read
419 * @data: pointer to the read data
420 *
421 * Reads the PHY register at offset using the serial gigabit media independent
422 * interface and stores the retrieved information in data.
423 **/
424static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
425 u16 *data)
426{
bf6f7a92 427 s32 ret_val = -E1000_ERR_PARAM;
9d5c8243
AK
428
429 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
652fff32 430 hw_dbg("PHY Address %u is out of range\n", offset);
bf6f7a92 431 goto out;
9d5c8243
AK
432 }
433
bf6f7a92
AD
434 ret_val = hw->phy.ops.acquire(hw);
435 if (ret_val)
436 goto out;
9d5c8243 437
bf6f7a92 438 ret_val = igb_read_phy_reg_i2c(hw, offset, data);
9d5c8243 439
bf6f7a92
AD
440 hw->phy.ops.release(hw);
441
442out:
443 return ret_val;
9d5c8243
AK
444}
445
446/**
733596be 447 * igb_write_phy_reg_sgmii_82575 - Write PHY register using sgmii
9d5c8243
AK
448 * @hw: pointer to the HW structure
449 * @offset: register offset to write to
450 * @data: data to write at register offset
451 *
452 * Writes the data to PHY register at the offset using the serial gigabit
453 * media independent interface.
454 **/
455static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
456 u16 data)
457{
bf6f7a92
AD
458 s32 ret_val = -E1000_ERR_PARAM;
459
9d5c8243
AK
460
461 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
652fff32 462 hw_dbg("PHY Address %d is out of range\n", offset);
bf6f7a92 463 goto out;
9d5c8243
AK
464 }
465
bf6f7a92
AD
466 ret_val = hw->phy.ops.acquire(hw);
467 if (ret_val)
468 goto out;
9d5c8243 469
bf6f7a92 470 ret_val = igb_write_phy_reg_i2c(hw, offset, data);
9d5c8243 471
bf6f7a92
AD
472 hw->phy.ops.release(hw);
473
474out:
475 return ret_val;
9d5c8243
AK
476}
477
478/**
733596be 479 * igb_get_phy_id_82575 - Retrieve PHY addr and id
9d5c8243
AK
480 * @hw: pointer to the HW structure
481 *
652fff32 482 * Retrieves the PHY address and ID for both PHY's which do and do not use
9d5c8243
AK
483 * sgmi interface.
484 **/
485static s32 igb_get_phy_id_82575(struct e1000_hw *hw)
486{
487 struct e1000_phy_info *phy = &hw->phy;
488 s32 ret_val = 0;
489 u16 phy_id;
2fb02a26 490 u32 ctrl_ext;
4085f746 491 u32 mdic;
9d5c8243
AK
492
493 /*
494 * For SGMII PHYs, we try the list of possible addresses until
495 * we find one that works. For non-SGMII PHYs
496 * (e.g. integrated copper PHYs), an address of 1 should
497 * work. The result of this function should mean phy->phy_addr
498 * and phy->id are set correctly.
499 */
500 if (!(igb_sgmii_active_82575(hw))) {
501 phy->addr = 1;
502 ret_val = igb_get_phy_id(hw);
503 goto out;
504 }
505
4085f746
NN
506 if (igb_sgmii_uses_mdio_82575(hw)) {
507 switch (hw->mac.type) {
508 case e1000_82575:
509 case e1000_82576:
510 mdic = rd32(E1000_MDIC);
511 mdic &= E1000_MDIC_PHY_MASK;
512 phy->addr = mdic >> E1000_MDIC_PHY_SHIFT;
513 break;
514 case e1000_82580:
515 case e1000_i350:
516 mdic = rd32(E1000_MDICNFG);
517 mdic &= E1000_MDICNFG_PHY_MASK;
518 phy->addr = mdic >> E1000_MDICNFG_PHY_SHIFT;
519 break;
520 default:
521 ret_val = -E1000_ERR_PHY;
522 goto out;
523 break;
524 }
525 ret_val = igb_get_phy_id(hw);
526 goto out;
527 }
528
2fb02a26
AD
529 /* Power on sgmii phy if it is disabled */
530 ctrl_ext = rd32(E1000_CTRL_EXT);
531 wr32(E1000_CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_SDP3_DATA);
532 wrfl();
533 msleep(300);
534
9d5c8243
AK
535 /*
536 * The address field in the I2CCMD register is 3 bits and 0 is invalid.
537 * Therefore, we need to test 1-7
538 */
539 for (phy->addr = 1; phy->addr < 8; phy->addr++) {
540 ret_val = igb_read_phy_reg_sgmii_82575(hw, PHY_ID1, &phy_id);
541 if (ret_val == 0) {
652fff32
AK
542 hw_dbg("Vendor ID 0x%08X read at address %u\n",
543 phy_id, phy->addr);
9d5c8243
AK
544 /*
545 * At the time of this writing, The M88 part is
546 * the only supported SGMII PHY product.
547 */
548 if (phy_id == M88_VENDOR)
549 break;
550 } else {
652fff32 551 hw_dbg("PHY address %u was unreadable\n", phy->addr);
9d5c8243
AK
552 }
553 }
554
555 /* A valid PHY type couldn't be found. */
556 if (phy->addr == 8) {
557 phy->addr = 0;
558 ret_val = -E1000_ERR_PHY;
559 goto out;
2fb02a26
AD
560 } else {
561 ret_val = igb_get_phy_id(hw);
9d5c8243
AK
562 }
563
2fb02a26
AD
564 /* restore previous sfp cage power state */
565 wr32(E1000_CTRL_EXT, ctrl_ext);
9d5c8243
AK
566
567out:
568 return ret_val;
569}
570
571/**
733596be 572 * igb_phy_hw_reset_sgmii_82575 - Performs a PHY reset
9d5c8243
AK
573 * @hw: pointer to the HW structure
574 *
575 * Resets the PHY using the serial gigabit media independent interface.
576 **/
577static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw)
578{
579 s32 ret_val;
580
581 /*
582 * This isn't a true "hard" reset, but is the only reset
583 * available to us at this time.
584 */
585
652fff32 586 hw_dbg("Soft resetting SGMII attached PHY...\n");
9d5c8243
AK
587
588 /*
589 * SFP documentation requires the following to configure the SPF module
590 * to work on SGMII. No further documentation is given.
591 */
a8d2a0c2 592 ret_val = hw->phy.ops.write_reg(hw, 0x1B, 0x8084);
9d5c8243
AK
593 if (ret_val)
594 goto out;
595
596 ret_val = igb_phy_sw_reset(hw);
597
598out:
599 return ret_val;
600}
601
602/**
733596be 603 * igb_set_d0_lplu_state_82575 - Set Low Power Linkup D0 state
9d5c8243
AK
604 * @hw: pointer to the HW structure
605 * @active: true to enable LPLU, false to disable
606 *
607 * Sets the LPLU D0 state according to the active flag. When
608 * activating LPLU this function also disables smart speed
609 * and vice versa. LPLU will not be activated unless the
610 * device autonegotiation advertisement meets standards of
611 * either 10 or 10/100 or 10/100/1000 at all duplexes.
612 * This is a function pointer entry point only called by
613 * PHY setup routines.
614 **/
615static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active)
616{
617 struct e1000_phy_info *phy = &hw->phy;
618 s32 ret_val;
619 u16 data;
620
a8d2a0c2 621 ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data);
9d5c8243
AK
622 if (ret_val)
623 goto out;
624
625 if (active) {
626 data |= IGP02E1000_PM_D0_LPLU;
a8d2a0c2 627 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
652fff32 628 data);
9d5c8243
AK
629 if (ret_val)
630 goto out;
631
632 /* When LPLU is enabled, we should disable SmartSpeed */
a8d2a0c2 633 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
652fff32 634 &data);
9d5c8243 635 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
a8d2a0c2 636 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
652fff32 637 data);
9d5c8243
AK
638 if (ret_val)
639 goto out;
640 } else {
641 data &= ~IGP02E1000_PM_D0_LPLU;
a8d2a0c2 642 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
652fff32 643 data);
9d5c8243
AK
644 /*
645 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
646 * during Dx states where the power conservation is most
647 * important. During driver activity we should enable
648 * SmartSpeed, so performance is maintained.
649 */
650 if (phy->smart_speed == e1000_smart_speed_on) {
a8d2a0c2 651 ret_val = phy->ops.read_reg(hw,
652fff32 652 IGP01E1000_PHY_PORT_CONFIG, &data);
9d5c8243
AK
653 if (ret_val)
654 goto out;
655
656 data |= IGP01E1000_PSCFR_SMART_SPEED;
a8d2a0c2 657 ret_val = phy->ops.write_reg(hw,
652fff32 658 IGP01E1000_PHY_PORT_CONFIG, data);
9d5c8243
AK
659 if (ret_val)
660 goto out;
661 } else if (phy->smart_speed == e1000_smart_speed_off) {
a8d2a0c2 662 ret_val = phy->ops.read_reg(hw,
652fff32 663 IGP01E1000_PHY_PORT_CONFIG, &data);
9d5c8243
AK
664 if (ret_val)
665 goto out;
666
667 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
a8d2a0c2 668 ret_val = phy->ops.write_reg(hw,
652fff32 669 IGP01E1000_PHY_PORT_CONFIG, data);
9d5c8243
AK
670 if (ret_val)
671 goto out;
672 }
673 }
674
675out:
676 return ret_val;
677}
678
679/**
733596be 680 * igb_acquire_nvm_82575 - Request for access to EEPROM
9d5c8243
AK
681 * @hw: pointer to the HW structure
682 *
652fff32 683 * Acquire the necessary semaphores for exclusive access to the EEPROM.
9d5c8243
AK
684 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
685 * Return successful if access grant bit set, else clear the request for
686 * EEPROM access and return -E1000_ERR_NVM (-1).
687 **/
688static s32 igb_acquire_nvm_82575(struct e1000_hw *hw)
689{
690 s32 ret_val;
691
692 ret_val = igb_acquire_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
693 if (ret_val)
694 goto out;
695
696 ret_val = igb_acquire_nvm(hw);
697
698 if (ret_val)
699 igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
700
701out:
702 return ret_val;
703}
704
705/**
733596be 706 * igb_release_nvm_82575 - Release exclusive access to EEPROM
9d5c8243
AK
707 * @hw: pointer to the HW structure
708 *
709 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
710 * then release the semaphores acquired.
711 **/
712static void igb_release_nvm_82575(struct e1000_hw *hw)
713{
714 igb_release_nvm(hw);
715 igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
716}
717
718/**
733596be 719 * igb_acquire_swfw_sync_82575 - Acquire SW/FW semaphore
9d5c8243
AK
720 * @hw: pointer to the HW structure
721 * @mask: specifies which semaphore to acquire
722 *
723 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
724 * will also specify which port we're acquiring the lock for.
725 **/
726static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
727{
728 u32 swfw_sync;
729 u32 swmask = mask;
730 u32 fwmask = mask << 16;
731 s32 ret_val = 0;
732 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
733
734 while (i < timeout) {
735 if (igb_get_hw_semaphore(hw)) {
736 ret_val = -E1000_ERR_SWFW_SYNC;
737 goto out;
738 }
739
740 swfw_sync = rd32(E1000_SW_FW_SYNC);
741 if (!(swfw_sync & (fwmask | swmask)))
742 break;
743
744 /*
745 * Firmware currently using resource (fwmask)
746 * or other software thread using resource (swmask)
747 */
748 igb_put_hw_semaphore(hw);
749 mdelay(5);
750 i++;
751 }
752
753 if (i == timeout) {
652fff32 754 hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
9d5c8243
AK
755 ret_val = -E1000_ERR_SWFW_SYNC;
756 goto out;
757 }
758
759 swfw_sync |= swmask;
760 wr32(E1000_SW_FW_SYNC, swfw_sync);
761
762 igb_put_hw_semaphore(hw);
763
764out:
765 return ret_val;
766}
767
768/**
733596be 769 * igb_release_swfw_sync_82575 - Release SW/FW semaphore
9d5c8243
AK
770 * @hw: pointer to the HW structure
771 * @mask: specifies which semaphore to acquire
772 *
773 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
774 * will also specify which port we're releasing the lock for.
775 **/
776static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
777{
778 u32 swfw_sync;
779
780 while (igb_get_hw_semaphore(hw) != 0);
781 /* Empty */
782
783 swfw_sync = rd32(E1000_SW_FW_SYNC);
784 swfw_sync &= ~mask;
785 wr32(E1000_SW_FW_SYNC, swfw_sync);
786
787 igb_put_hw_semaphore(hw);
788}
789
790/**
733596be 791 * igb_get_cfg_done_82575 - Read config done bit
9d5c8243
AK
792 * @hw: pointer to the HW structure
793 *
794 * Read the management control register for the config done bit for
795 * completion status. NOTE: silicon which is EEPROM-less will fail trying
796 * to read the config done bit, so an error is *ONLY* logged and returns
797 * 0. If we were to return with error, EEPROM-less silicon
798 * would not be able to be reset or change link.
799 **/
800static s32 igb_get_cfg_done_82575(struct e1000_hw *hw)
801{
802 s32 timeout = PHY_CFG_TIMEOUT;
803 s32 ret_val = 0;
804 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
805
806 if (hw->bus.func == 1)
807 mask = E1000_NVM_CFG_DONE_PORT_1;
bb2ac47b
AD
808 else if (hw->bus.func == E1000_FUNC_2)
809 mask = E1000_NVM_CFG_DONE_PORT_2;
810 else if (hw->bus.func == E1000_FUNC_3)
811 mask = E1000_NVM_CFG_DONE_PORT_3;
9d5c8243
AK
812
813 while (timeout) {
814 if (rd32(E1000_EEMNGCTL) & mask)
815 break;
816 msleep(1);
817 timeout--;
818 }
819 if (!timeout)
652fff32 820 hw_dbg("MNG configuration cycle has not completed.\n");
9d5c8243
AK
821
822 /* If EEPROM is not marked present, init the PHY manually */
823 if (((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) &&
824 (hw->phy.type == e1000_phy_igp_3))
825 igb_phy_init_script_igp3(hw);
826
827 return ret_val;
828}
829
830/**
733596be 831 * igb_check_for_link_82575 - Check for link
9d5c8243
AK
832 * @hw: pointer to the HW structure
833 *
834 * If sgmii is enabled, then use the pcs register to determine link, otherwise
835 * use the generic interface for determining link.
836 **/
837static s32 igb_check_for_link_82575(struct e1000_hw *hw)
838{
839 s32 ret_val;
840 u16 speed, duplex;
841
70d92f86 842 if (hw->phy.media_type != e1000_media_type_copper) {
9d5c8243 843 ret_val = igb_get_pcs_speed_and_duplex_82575(hw, &speed,
2d064c06 844 &duplex);
5d0932a5
AD
845 /*
846 * Use this flag to determine if link needs to be checked or
847 * not. If we have link clear the flag so that we do not
848 * continue to check for link.
849 */
850 hw->mac.get_link_status = !hw->mac.serdes_has_link;
851 } else {
9d5c8243 852 ret_val = igb_check_for_copper_link(hw);
5d0932a5 853 }
9d5c8243
AK
854
855 return ret_val;
856}
70d92f86 857
88a268c1
NN
858/**
859 * igb_power_up_serdes_link_82575 - Power up the serdes link after shutdown
860 * @hw: pointer to the HW structure
861 **/
862void igb_power_up_serdes_link_82575(struct e1000_hw *hw)
863{
864 u32 reg;
865
866
867 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
868 !igb_sgmii_active_82575(hw))
869 return;
870
871 /* Enable PCS to turn on link */
872 reg = rd32(E1000_PCS_CFG0);
873 reg |= E1000_PCS_CFG_PCS_EN;
874 wr32(E1000_PCS_CFG0, reg);
875
876 /* Power up the laser */
877 reg = rd32(E1000_CTRL_EXT);
878 reg &= ~E1000_CTRL_EXT_SDP3_DATA;
879 wr32(E1000_CTRL_EXT, reg);
880
881 /* flush the write to verify completion */
882 wrfl();
883 msleep(1);
884}
885
9d5c8243 886/**
733596be 887 * igb_get_pcs_speed_and_duplex_82575 - Retrieve current speed/duplex
9d5c8243
AK
888 * @hw: pointer to the HW structure
889 * @speed: stores the current speed
890 * @duplex: stores the current duplex
891 *
652fff32 892 * Using the physical coding sub-layer (PCS), retrieve the current speed and
9d5c8243
AK
893 * duplex, then store the values in the pointers provided.
894 **/
895static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed,
896 u16 *duplex)
897{
898 struct e1000_mac_info *mac = &hw->mac;
899 u32 pcs;
900
901 /* Set up defaults for the return values of this function */
902 mac->serdes_has_link = false;
903 *speed = 0;
904 *duplex = 0;
905
906 /*
907 * Read the PCS Status register for link state. For non-copper mode,
908 * the status register is not accurate. The PCS status register is
909 * used instead.
910 */
911 pcs = rd32(E1000_PCS_LSTAT);
912
913 /*
914 * The link up bit determines when link is up on autoneg. The sync ok
915 * gets set once both sides sync up and agree upon link. Stable link
916 * can be determined by checking for both link up and link sync ok
917 */
918 if ((pcs & E1000_PCS_LSTS_LINK_OK) && (pcs & E1000_PCS_LSTS_SYNK_OK)) {
919 mac->serdes_has_link = true;
920
921 /* Detect and store PCS speed */
922 if (pcs & E1000_PCS_LSTS_SPEED_1000) {
923 *speed = SPEED_1000;
924 } else if (pcs & E1000_PCS_LSTS_SPEED_100) {
925 *speed = SPEED_100;
926 } else {
927 *speed = SPEED_10;
928 }
929
930 /* Detect and store PCS duplex */
931 if (pcs & E1000_PCS_LSTS_DUPLEX_FULL) {
932 *duplex = FULL_DUPLEX;
933 } else {
934 *duplex = HALF_DUPLEX;
935 }
936 }
937
938 return 0;
939}
940
2d064c06 941/**
2fb02a26 942 * igb_shutdown_serdes_link_82575 - Remove link during power down
9d5c8243 943 * @hw: pointer to the HW structure
9d5c8243 944 *
2d064c06
AD
945 * In the case of fiber serdes, shut down optics and PCS on driver unload
946 * when management pass thru is not enabled.
9d5c8243 947 **/
2fb02a26 948void igb_shutdown_serdes_link_82575(struct e1000_hw *hw)
9d5c8243 949{
2d064c06
AD
950 u32 reg;
951
53c992fa 952 if (hw->phy.media_type != e1000_media_type_internal_serdes &&
2fb02a26 953 igb_sgmii_active_82575(hw))
2d064c06
AD
954 return;
955
53c992fa 956 if (!igb_enable_mng_pass_thru(hw)) {
2d064c06
AD
957 /* Disable PCS to turn off link */
958 reg = rd32(E1000_PCS_CFG0);
959 reg &= ~E1000_PCS_CFG_PCS_EN;
960 wr32(E1000_PCS_CFG0, reg);
961
962 /* shutdown the laser */
963 reg = rd32(E1000_CTRL_EXT);
2fb02a26 964 reg |= E1000_CTRL_EXT_SDP3_DATA;
2d064c06
AD
965 wr32(E1000_CTRL_EXT, reg);
966
967 /* flush the write to verify completion */
968 wrfl();
969 msleep(1);
970 }
9d5c8243
AK
971}
972
973/**
733596be 974 * igb_reset_hw_82575 - Reset hardware
9d5c8243
AK
975 * @hw: pointer to the HW structure
976 *
977 * This resets the hardware into a known state. This is a
978 * function pointer entry point called by the api module.
979 **/
980static s32 igb_reset_hw_82575(struct e1000_hw *hw)
981{
982 u32 ctrl, icr;
983 s32 ret_val;
984
985 /*
986 * Prevent the PCI-E bus from sticking if there is no TLP connection
987 * on the last TLP read/write transaction when MAC is reset.
988 */
989 ret_val = igb_disable_pcie_master(hw);
990 if (ret_val)
652fff32 991 hw_dbg("PCI-E Master disable polling has failed.\n");
9d5c8243 992
009bc06e
AD
993 /* set the completion timeout for interface */
994 ret_val = igb_set_pcie_completion_timeout(hw);
995 if (ret_val) {
996 hw_dbg("PCI-E Set completion timeout has failed.\n");
997 }
998
652fff32 999 hw_dbg("Masking off all interrupts\n");
9d5c8243
AK
1000 wr32(E1000_IMC, 0xffffffff);
1001
1002 wr32(E1000_RCTL, 0);
1003 wr32(E1000_TCTL, E1000_TCTL_PSP);
1004 wrfl();
1005
1006 msleep(10);
1007
1008 ctrl = rd32(E1000_CTRL);
1009
652fff32 1010 hw_dbg("Issuing a global reset to MAC\n");
9d5c8243
AK
1011 wr32(E1000_CTRL, ctrl | E1000_CTRL_RST);
1012
1013 ret_val = igb_get_auto_rd_done(hw);
1014 if (ret_val) {
1015 /*
1016 * When auto config read does not complete, do not
1017 * return with an error. This can happen in situations
1018 * where there is no eeprom and prevents getting link.
1019 */
652fff32 1020 hw_dbg("Auto Read Done did not complete\n");
9d5c8243
AK
1021 }
1022
1023 /* If EEPROM is not present, run manual init scripts */
1024 if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0)
1025 igb_reset_init_script_82575(hw);
1026
1027 /* Clear any pending interrupt events. */
1028 wr32(E1000_IMC, 0xffffffff);
1029 icr = rd32(E1000_ICR);
1030
5ac16659
AD
1031 /* Install any alternate MAC address into RAR0 */
1032 ret_val = igb_check_alt_mac_addr(hw);
9d5c8243
AK
1033
1034 return ret_val;
1035}
1036
1037/**
733596be 1038 * igb_init_hw_82575 - Initialize hardware
9d5c8243
AK
1039 * @hw: pointer to the HW structure
1040 *
1041 * This inits the hardware readying it for operation.
1042 **/
1043static s32 igb_init_hw_82575(struct e1000_hw *hw)
1044{
1045 struct e1000_mac_info *mac = &hw->mac;
1046 s32 ret_val;
1047 u16 i, rar_count = mac->rar_entry_count;
1048
1049 /* Initialize identification LED */
1050 ret_val = igb_id_led_init(hw);
1051 if (ret_val) {
652fff32 1052 hw_dbg("Error initializing identification LED\n");
9d5c8243
AK
1053 /* This is not fatal and we should not stop init due to this */
1054 }
1055
1056 /* Disabling VLAN filtering */
652fff32 1057 hw_dbg("Initializing the IEEE VLAN\n");
9d5c8243
AK
1058 igb_clear_vfta(hw);
1059
1060 /* Setup the receive address */
5ac16659
AD
1061 igb_init_rx_addrs(hw, rar_count);
1062
9d5c8243 1063 /* Zero out the Multicast HASH table */
652fff32 1064 hw_dbg("Zeroing the MTA\n");
9d5c8243
AK
1065 for (i = 0; i < mac->mta_reg_count; i++)
1066 array_wr32(E1000_MTA, i, 0);
1067
68d480c4
AD
1068 /* Zero out the Unicast HASH table */
1069 hw_dbg("Zeroing the UTA\n");
1070 for (i = 0; i < mac->uta_reg_count; i++)
1071 array_wr32(E1000_UTA, i, 0);
1072
9d5c8243
AK
1073 /* Setup link and flow control */
1074 ret_val = igb_setup_link(hw);
1075
1076 /*
1077 * Clear all of the statistics registers (clear on read). It is
1078 * important that we do this after we have tried to establish link
1079 * because the symbol error count will increment wildly if there
1080 * is no link.
1081 */
1082 igb_clear_hw_cntrs_82575(hw);
1083
1084 return ret_val;
1085}
1086
1087/**
733596be 1088 * igb_setup_copper_link_82575 - Configure copper link settings
9d5c8243
AK
1089 * @hw: pointer to the HW structure
1090 *
1091 * Configures the link for auto-neg or forced speed and duplex. Then we check
1092 * for link, once link is established calls to configure collision distance
1093 * and flow control are called.
1094 **/
1095static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)
1096{
12645a19 1097 u32 ctrl;
9d5c8243 1098 s32 ret_val;
9d5c8243
AK
1099
1100 ctrl = rd32(E1000_CTRL);
1101 ctrl |= E1000_CTRL_SLU;
1102 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1103 wr32(E1000_CTRL, ctrl);
1104
2fb02a26
AD
1105 ret_val = igb_setup_serdes_link_82575(hw);
1106 if (ret_val)
1107 goto out;
1108
1109 if (igb_sgmii_active_82575(hw) && !hw->phy.reset_disable) {
bb2ac47b
AD
1110 /* allow time for SFP cage time to power up phy */
1111 msleep(300);
1112
2fb02a26
AD
1113 ret_val = hw->phy.ops.reset(hw);
1114 if (ret_val) {
1115 hw_dbg("Error resetting the PHY.\n");
1116 goto out;
1117 }
1118 }
9d5c8243
AK
1119 switch (hw->phy.type) {
1120 case e1000_phy_m88:
308fb39a
JG
1121 if (hw->phy.id == I347AT4_E_PHY_ID ||
1122 hw->phy.id == M88E1112_E_PHY_ID)
1123 ret_val = igb_copper_link_setup_m88_gen2(hw);
1124 else
1125 ret_val = igb_copper_link_setup_m88(hw);
9d5c8243
AK
1126 break;
1127 case e1000_phy_igp_3:
1128 ret_val = igb_copper_link_setup_igp(hw);
9d5c8243 1129 break;
bb2ac47b
AD
1130 case e1000_phy_82580:
1131 ret_val = igb_copper_link_setup_82580(hw);
1132 break;
9d5c8243
AK
1133 default:
1134 ret_val = -E1000_ERR_PHY;
1135 break;
1136 }
1137
1138 if (ret_val)
1139 goto out;
1140
81fadd81 1141 ret_val = igb_setup_copper_link(hw);
9d5c8243
AK
1142out:
1143 return ret_val;
1144}
1145
1146/**
70d92f86 1147 * igb_setup_serdes_link_82575 - Setup link for serdes
9d5c8243
AK
1148 * @hw: pointer to the HW structure
1149 *
70d92f86
AD
1150 * Configure the physical coding sub-layer (PCS) link. The PCS link is
1151 * used on copper connections where the serialized gigabit media independent
1152 * interface (sgmii), or serdes fiber is being used. Configures the link
1153 * for auto-negotiation or forces speed/duplex.
9d5c8243 1154 **/
2fb02a26 1155static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw)
9d5c8243 1156{
bb2ac47b
AD
1157 u32 ctrl_ext, ctrl_reg, reg;
1158 bool pcs_autoneg;
2fb02a26
AD
1159
1160 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
1161 !igb_sgmii_active_82575(hw))
1162 return 0;
9d5c8243
AK
1163
1164 /*
1165 * On the 82575, SerDes loopback mode persists until it is
1166 * explicitly turned off or a power cycle is performed. A read to
1167 * the register does not indicate its status. Therefore, we ensure
1168 * loopback mode is disabled during initialization.
1169 */
1170 wr32(E1000_SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
1171
2fb02a26 1172 /* power on the sfp cage if present */
bb2ac47b
AD
1173 ctrl_ext = rd32(E1000_CTRL_EXT);
1174 ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA;
1175 wr32(E1000_CTRL_EXT, ctrl_ext);
2fb02a26
AD
1176
1177 ctrl_reg = rd32(E1000_CTRL);
1178 ctrl_reg |= E1000_CTRL_SLU;
1179
1180 if (hw->mac.type == e1000_82575 || hw->mac.type == e1000_82576) {
1181 /* set both sw defined pins */
1182 ctrl_reg |= E1000_CTRL_SWDPIN0 | E1000_CTRL_SWDPIN1;
1183
1184 /* Set switch control to serdes energy detect */
1185 reg = rd32(E1000_CONNSW);
1186 reg |= E1000_CONNSW_ENRGSRC;
1187 wr32(E1000_CONNSW, reg);
1188 }
1189
1190 reg = rd32(E1000_PCS_LCTL);
1191
bb2ac47b
AD
1192 /* default pcs_autoneg to the same setting as mac autoneg */
1193 pcs_autoneg = hw->mac.autoneg;
2fb02a26 1194
bb2ac47b
AD
1195 switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) {
1196 case E1000_CTRL_EXT_LINK_MODE_SGMII:
1197 /* sgmii mode lets the phy handle forcing speed/duplex */
1198 pcs_autoneg = true;
1199 /* autoneg time out should be disabled for SGMII mode */
2fb02a26 1200 reg &= ~(E1000_PCS_LCTL_AN_TIMEOUT);
bb2ac47b
AD
1201 break;
1202 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
1203 /* disable PCS autoneg and support parallel detect only */
1204 pcs_autoneg = false;
1205 default:
1206 /*
1207 * non-SGMII modes only supports a speed of 1000/Full for the
1208 * link so it is best to just force the MAC and let the pcs
1209 * link either autoneg or be forced to 1000/Full
1210 */
2fb02a26
AD
1211 ctrl_reg |= E1000_CTRL_SPD_1000 | E1000_CTRL_FRCSPD |
1212 E1000_CTRL_FD | E1000_CTRL_FRCDPX;
bb2ac47b
AD
1213
1214 /* set speed of 1000/Full if speed/duplex is forced */
1215 reg |= E1000_PCS_LCTL_FSV_1000 | E1000_PCS_LCTL_FDV_FULL;
1216 break;
921aa749
AD
1217 }
1218
2fb02a26 1219 wr32(E1000_CTRL, ctrl_reg);
9d5c8243
AK
1220
1221 /*
1222 * New SerDes mode allows for forcing speed or autonegotiating speed
1223 * at 1gb. Autoneg should be default set by most drivers. This is the
1224 * mode that will be compatible with older link partners and switches.
1225 * However, both are supported by the hardware and some drivers/tools.
1226 */
9d5c8243
AK
1227 reg &= ~(E1000_PCS_LCTL_AN_ENABLE | E1000_PCS_LCTL_FLV_LINK_UP |
1228 E1000_PCS_LCTL_FSD | E1000_PCS_LCTL_FORCE_LINK);
1229
2fb02a26
AD
1230 /*
1231 * We force flow control to prevent the CTRL register values from being
1232 * overwritten by the autonegotiated flow control values
1233 */
1234 reg |= E1000_PCS_LCTL_FORCE_FCTRL;
1235
bb2ac47b 1236 if (pcs_autoneg) {
9d5c8243 1237 /* Set PCS register for autoneg */
bb2ac47b 1238 reg |= E1000_PCS_LCTL_AN_ENABLE | /* Enable Autoneg */
70d92f86 1239 E1000_PCS_LCTL_AN_RESTART; /* Restart autoneg */
bb2ac47b 1240 hw_dbg("Configuring Autoneg:PCS_LCTL=0x%08X\n", reg);
9d5c8243 1241 } else {
bb2ac47b 1242 /* Set PCS register for forced link */
d68caec6 1243 reg |= E1000_PCS_LCTL_FSD; /* Force Speed */
bb2ac47b
AD
1244
1245 hw_dbg("Configuring Forced Link:PCS_LCTL=0x%08X\n", reg);
9d5c8243 1246 }
726c09e7 1247
9d5c8243
AK
1248 wr32(E1000_PCS_LCTL, reg);
1249
2fb02a26
AD
1250 if (!igb_sgmii_active_82575(hw))
1251 igb_force_mac_fc(hw);
9d5c8243 1252
2fb02a26 1253 return 0;
9d5c8243
AK
1254}
1255
1256/**
733596be 1257 * igb_sgmii_active_82575 - Return sgmii state
9d5c8243
AK
1258 * @hw: pointer to the HW structure
1259 *
1260 * 82575 silicon has a serialized gigabit media independent interface (sgmii)
1261 * which can be enabled for use in the embedded applications. Simply
1262 * return the current state of the sgmii interface.
1263 **/
1264static bool igb_sgmii_active_82575(struct e1000_hw *hw)
1265{
c1889bfe 1266 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
c1889bfe 1267 return dev_spec->sgmii_active;
9d5c8243
AK
1268}
1269
1270/**
733596be 1271 * igb_reset_init_script_82575 - Inits HW defaults after reset
9d5c8243
AK
1272 * @hw: pointer to the HW structure
1273 *
1274 * Inits recommended HW defaults after a reset when there is no EEPROM
1275 * detected. This is only for the 82575.
1276 **/
1277static s32 igb_reset_init_script_82575(struct e1000_hw *hw)
1278{
1279 if (hw->mac.type == e1000_82575) {
652fff32 1280 hw_dbg("Running reset init script for 82575\n");
9d5c8243
AK
1281 /* SerDes configuration via SERDESCTRL */
1282 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x00, 0x0C);
1283 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x01, 0x78);
1284 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x1B, 0x23);
1285 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x23, 0x15);
1286
1287 /* CCM configuration via CCMCTL register */
1288 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x14, 0x00);
1289 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x10, 0x00);
1290
1291 /* PCIe lanes configuration */
1292 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x00, 0xEC);
1293 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x61, 0xDF);
1294 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x34, 0x05);
1295 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x2F, 0x81);
1296
1297 /* PCIe PLL Configuration */
1298 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x02, 0x47);
1299 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x14, 0x00);
1300 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x10, 0x00);
1301 }
1302
1303 return 0;
1304}
1305
1306/**
733596be 1307 * igb_read_mac_addr_82575 - Read device MAC address
9d5c8243
AK
1308 * @hw: pointer to the HW structure
1309 **/
1310static s32 igb_read_mac_addr_82575(struct e1000_hw *hw)
1311{
1312 s32 ret_val = 0;
1313
22896639
AD
1314 /*
1315 * If there's an alternate MAC address place it in RAR0
1316 * so that it will override the Si installed default perm
1317 * address.
1318 */
1319 ret_val = igb_check_alt_mac_addr(hw);
1320 if (ret_val)
1321 goto out;
1322
1323 ret_val = igb_read_mac_addr(hw);
9d5c8243 1324
22896639 1325out:
9d5c8243
AK
1326 return ret_val;
1327}
1328
88a268c1
NN
1329/**
1330 * igb_power_down_phy_copper_82575 - Remove link during PHY power down
1331 * @hw: pointer to the HW structure
1332 *
1333 * In the case of a PHY power down to save power, or to turn off link during a
1334 * driver unload, or wake on lan is not enabled, remove the link.
1335 **/
1336void igb_power_down_phy_copper_82575(struct e1000_hw *hw)
1337{
1338 /* If the management interface is not enabled, then power down */
1339 if (!(igb_enable_mng_pass_thru(hw) || igb_check_reset_block(hw)))
1340 igb_power_down_phy_copper(hw);
88a268c1
NN
1341}
1342
9d5c8243 1343/**
733596be 1344 * igb_clear_hw_cntrs_82575 - Clear device specific hardware counters
9d5c8243
AK
1345 * @hw: pointer to the HW structure
1346 *
1347 * Clears the hardware counters by reading the counter registers.
1348 **/
1349static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw)
1350{
9d5c8243
AK
1351 igb_clear_hw_cntrs_base(hw);
1352
cc9073bb
AD
1353 rd32(E1000_PRC64);
1354 rd32(E1000_PRC127);
1355 rd32(E1000_PRC255);
1356 rd32(E1000_PRC511);
1357 rd32(E1000_PRC1023);
1358 rd32(E1000_PRC1522);
1359 rd32(E1000_PTC64);
1360 rd32(E1000_PTC127);
1361 rd32(E1000_PTC255);
1362 rd32(E1000_PTC511);
1363 rd32(E1000_PTC1023);
1364 rd32(E1000_PTC1522);
1365
1366 rd32(E1000_ALGNERRC);
1367 rd32(E1000_RXERRC);
1368 rd32(E1000_TNCRS);
1369 rd32(E1000_CEXTERR);
1370 rd32(E1000_TSCTC);
1371 rd32(E1000_TSCTFC);
1372
1373 rd32(E1000_MGTPRC);
1374 rd32(E1000_MGTPDC);
1375 rd32(E1000_MGTPTC);
1376
1377 rd32(E1000_IAC);
1378 rd32(E1000_ICRXOC);
1379
1380 rd32(E1000_ICRXPTC);
1381 rd32(E1000_ICRXATC);
1382 rd32(E1000_ICTXPTC);
1383 rd32(E1000_ICTXATC);
1384 rd32(E1000_ICTXQEC);
1385 rd32(E1000_ICTXQMTC);
1386 rd32(E1000_ICRXDMTC);
1387
1388 rd32(E1000_CBTMPC);
1389 rd32(E1000_HTDPMC);
1390 rd32(E1000_CBRMPC);
1391 rd32(E1000_RPTHC);
1392 rd32(E1000_HGPTC);
1393 rd32(E1000_HTCBDPC);
1394 rd32(E1000_HGORCL);
1395 rd32(E1000_HGORCH);
1396 rd32(E1000_HGOTCL);
1397 rd32(E1000_HGOTCH);
1398 rd32(E1000_LENERRS);
9d5c8243
AK
1399
1400 /* This register should not be read in copper configurations */
2fb02a26
AD
1401 if (hw->phy.media_type == e1000_media_type_internal_serdes ||
1402 igb_sgmii_active_82575(hw))
cc9073bb 1403 rd32(E1000_SCVPC);
9d5c8243
AK
1404}
1405
662d7205
AD
1406/**
1407 * igb_rx_fifo_flush_82575 - Clean rx fifo after RX enable
1408 * @hw: pointer to the HW structure
1409 *
1410 * After rx enable if managability is enabled then there is likely some
1411 * bad data at the start of the fifo and possibly in the DMA fifo. This
1412 * function clears the fifos and flushes any packets that came in as rx was
1413 * being enabled.
1414 **/
1415void igb_rx_fifo_flush_82575(struct e1000_hw *hw)
1416{
1417 u32 rctl, rlpml, rxdctl[4], rfctl, temp_rctl, rx_enabled;
1418 int i, ms_wait;
1419
1420 if (hw->mac.type != e1000_82575 ||
1421 !(rd32(E1000_MANC) & E1000_MANC_RCV_TCO_EN))
1422 return;
1423
1424 /* Disable all RX queues */
1425 for (i = 0; i < 4; i++) {
1426 rxdctl[i] = rd32(E1000_RXDCTL(i));
1427 wr32(E1000_RXDCTL(i),
1428 rxdctl[i] & ~E1000_RXDCTL_QUEUE_ENABLE);
1429 }
1430 /* Poll all queues to verify they have shut down */
1431 for (ms_wait = 0; ms_wait < 10; ms_wait++) {
1432 msleep(1);
1433 rx_enabled = 0;
1434 for (i = 0; i < 4; i++)
1435 rx_enabled |= rd32(E1000_RXDCTL(i));
1436 if (!(rx_enabled & E1000_RXDCTL_QUEUE_ENABLE))
1437 break;
1438 }
1439
1440 if (ms_wait == 10)
1441 hw_dbg("Queue disable timed out after 10ms\n");
1442
1443 /* Clear RLPML, RCTL.SBP, RFCTL.LEF, and set RCTL.LPE so that all
1444 * incoming packets are rejected. Set enable and wait 2ms so that
1445 * any packet that was coming in as RCTL.EN was set is flushed
1446 */
1447 rfctl = rd32(E1000_RFCTL);
1448 wr32(E1000_RFCTL, rfctl & ~E1000_RFCTL_LEF);
1449
1450 rlpml = rd32(E1000_RLPML);
1451 wr32(E1000_RLPML, 0);
1452
1453 rctl = rd32(E1000_RCTL);
1454 temp_rctl = rctl & ~(E1000_RCTL_EN | E1000_RCTL_SBP);
1455 temp_rctl |= E1000_RCTL_LPE;
1456
1457 wr32(E1000_RCTL, temp_rctl);
1458 wr32(E1000_RCTL, temp_rctl | E1000_RCTL_EN);
1459 wrfl();
1460 msleep(2);
1461
1462 /* Enable RX queues that were previously enabled and restore our
1463 * previous state
1464 */
1465 for (i = 0; i < 4; i++)
1466 wr32(E1000_RXDCTL(i), rxdctl[i]);
1467 wr32(E1000_RCTL, rctl);
1468 wrfl();
1469
1470 wr32(E1000_RLPML, rlpml);
1471 wr32(E1000_RFCTL, rfctl);
1472
1473 /* Flush receive errors generated by workaround */
1474 rd32(E1000_ROC);
1475 rd32(E1000_RNBC);
1476 rd32(E1000_MPC);
1477}
1478
009bc06e
AD
1479/**
1480 * igb_set_pcie_completion_timeout - set pci-e completion timeout
1481 * @hw: pointer to the HW structure
1482 *
1483 * The defaults for 82575 and 82576 should be in the range of 50us to 50ms,
1484 * however the hardware default for these parts is 500us to 1ms which is less
1485 * than the 10ms recommended by the pci-e spec. To address this we need to
1486 * increase the value to either 10ms to 200ms for capability version 1 config,
1487 * or 16ms to 55ms for version 2.
1488 **/
1489static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw)
1490{
1491 u32 gcr = rd32(E1000_GCR);
1492 s32 ret_val = 0;
1493 u16 pcie_devctl2;
1494
1495 /* only take action if timeout value is defaulted to 0 */
1496 if (gcr & E1000_GCR_CMPL_TMOUT_MASK)
1497 goto out;
1498
1499 /*
1500 * if capababilities version is type 1 we can write the
1501 * timeout of 10ms to 200ms through the GCR register
1502 */
1503 if (!(gcr & E1000_GCR_CAP_VER2)) {
1504 gcr |= E1000_GCR_CMPL_TMOUT_10ms;
1505 goto out;
1506 }
1507
1508 /*
1509 * for version 2 capabilities we need to write the config space
1510 * directly in order to set the completion timeout value for
1511 * 16ms to 55ms
1512 */
1513 ret_val = igb_read_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1514 &pcie_devctl2);
1515 if (ret_val)
1516 goto out;
1517
1518 pcie_devctl2 |= PCIE_DEVICE_CONTROL2_16ms;
1519
1520 ret_val = igb_write_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1521 &pcie_devctl2);
1522out:
1523 /* disable completion timeout resend */
1524 gcr &= ~E1000_GCR_CMPL_TMOUT_RESEND;
1525
1526 wr32(E1000_GCR, gcr);
1527 return ret_val;
1528}
1529
13800469
GR
1530/**
1531 * igb_vmdq_set_anti_spoofing_pf - enable or disable anti-spoofing
1532 * @hw: pointer to the hardware struct
1533 * @enable: state to enter, either enabled or disabled
1534 * @pf: Physical Function pool - do not set anti-spoofing for the PF
1535 *
1536 * enables/disables L2 switch anti-spoofing functionality.
1537 **/
1538void igb_vmdq_set_anti_spoofing_pf(struct e1000_hw *hw, bool enable, int pf)
1539{
1540 u32 dtxswc;
1541
1542 switch (hw->mac.type) {
1543 case e1000_82576:
1544 case e1000_i350:
1545 dtxswc = rd32(E1000_DTXSWC);
1546 if (enable) {
1547 dtxswc |= (E1000_DTXSWC_MAC_SPOOF_MASK |
1548 E1000_DTXSWC_VLAN_SPOOF_MASK);
1549 /* The PF can spoof - it has to in order to
1550 * support emulation mode NICs */
1551 dtxswc ^= (1 << pf | 1 << (pf + MAX_NUM_VFS));
1552 } else {
1553 dtxswc &= ~(E1000_DTXSWC_MAC_SPOOF_MASK |
1554 E1000_DTXSWC_VLAN_SPOOF_MASK);
1555 }
1556 wr32(E1000_DTXSWC, dtxswc);
1557 break;
1558 default:
1559 break;
1560 }
1561}
1562
4ae196df
AD
1563/**
1564 * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback
1565 * @hw: pointer to the hardware struct
1566 * @enable: state to enter, either enabled or disabled
1567 *
1568 * enables/disables L2 switch loopback functionality.
1569 **/
1570void igb_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable)
1571{
1572 u32 dtxswc = rd32(E1000_DTXSWC);
1573
1574 if (enable)
1575 dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1576 else
1577 dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1578
1579 wr32(E1000_DTXSWC, dtxswc);
1580}
1581
1582/**
1583 * igb_vmdq_set_replication_pf - enable or disable vmdq replication
1584 * @hw: pointer to the hardware struct
1585 * @enable: state to enter, either enabled or disabled
1586 *
1587 * enables/disables replication of packets across multiple pools.
1588 **/
1589void igb_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable)
1590{
1591 u32 vt_ctl = rd32(E1000_VT_CTL);
1592
1593 if (enable)
1594 vt_ctl |= E1000_VT_CTL_VM_REPL_EN;
1595 else
1596 vt_ctl &= ~E1000_VT_CTL_VM_REPL_EN;
1597
1598 wr32(E1000_VT_CTL, vt_ctl);
1599}
1600
bb2ac47b
AD
1601/**
1602 * igb_read_phy_reg_82580 - Read 82580 MDI control register
1603 * @hw: pointer to the HW structure
1604 * @offset: register offset to be read
1605 * @data: pointer to the read data
1606 *
1607 * Reads the MDI control register in the PHY at offset and stores the
1608 * information read to data.
1609 **/
1610static s32 igb_read_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 *data)
1611{
bb2ac47b
AD
1612 s32 ret_val;
1613
1614
1615 ret_val = hw->phy.ops.acquire(hw);
1616 if (ret_val)
1617 goto out;
1618
bb2ac47b
AD
1619 ret_val = igb_read_phy_reg_mdic(hw, offset, data);
1620
1621 hw->phy.ops.release(hw);
1622
1623out:
1624 return ret_val;
1625}
1626
1627/**
1628 * igb_write_phy_reg_82580 - Write 82580 MDI control register
1629 * @hw: pointer to the HW structure
1630 * @offset: register offset to write to
1631 * @data: data to write to register at offset
1632 *
1633 * Writes data to MDI control register in the PHY at offset.
1634 **/
1635static s32 igb_write_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 data)
1636{
bb2ac47b
AD
1637 s32 ret_val;
1638
1639
1640 ret_val = hw->phy.ops.acquire(hw);
1641 if (ret_val)
1642 goto out;
1643
bb2ac47b
AD
1644 ret_val = igb_write_phy_reg_mdic(hw, offset, data);
1645
1646 hw->phy.ops.release(hw);
1647
1648out:
1649 return ret_val;
1650}
1651
08451e25
NN
1652/**
1653 * igb_reset_mdicnfg_82580 - Reset MDICNFG destination and com_mdio bits
1654 * @hw: pointer to the HW structure
1655 *
1656 * This resets the the MDICNFG.Destination and MDICNFG.Com_MDIO bits based on
1657 * the values found in the EEPROM. This addresses an issue in which these
1658 * bits are not restored from EEPROM after reset.
1659 **/
1660static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw)
1661{
1662 s32 ret_val = 0;
1663 u32 mdicnfg;
1b5dda33 1664 u16 nvm_data = 0;
08451e25
NN
1665
1666 if (hw->mac.type != e1000_82580)
1667 goto out;
1668 if (!igb_sgmii_active_82575(hw))
1669 goto out;
1670
1671 ret_val = hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A +
1672 NVM_82580_LAN_FUNC_OFFSET(hw->bus.func), 1,
1673 &nvm_data);
1674 if (ret_val) {
1675 hw_dbg("NVM Read Error\n");
1676 goto out;
1677 }
1678
1679 mdicnfg = rd32(E1000_MDICNFG);
1680 if (nvm_data & NVM_WORD24_EXT_MDIO)
1681 mdicnfg |= E1000_MDICNFG_EXT_MDIO;
1682 if (nvm_data & NVM_WORD24_COM_MDIO)
1683 mdicnfg |= E1000_MDICNFG_COM_MDIO;
1684 wr32(E1000_MDICNFG, mdicnfg);
1685out:
1686 return ret_val;
1687}
1688
bb2ac47b
AD
1689/**
1690 * igb_reset_hw_82580 - Reset hardware
1691 * @hw: pointer to the HW structure
1692 *
1693 * This resets function or entire device (all ports, etc.)
1694 * to a known state.
1695 **/
1696static s32 igb_reset_hw_82580(struct e1000_hw *hw)
1697{
1698 s32 ret_val = 0;
1699 /* BH SW mailbox bit in SW_FW_SYNC */
1700 u16 swmbsw_mask = E1000_SW_SYNCH_MB;
1701 u32 ctrl, icr;
1702 bool global_device_reset = hw->dev_spec._82575.global_device_reset;
1703
1704
1705 hw->dev_spec._82575.global_device_reset = false;
1706
1707 /* Get current control state. */
1708 ctrl = rd32(E1000_CTRL);
1709
1710 /*
1711 * Prevent the PCI-E bus from sticking if there is no TLP connection
1712 * on the last TLP read/write transaction when MAC is reset.
1713 */
1714 ret_val = igb_disable_pcie_master(hw);
1715 if (ret_val)
1716 hw_dbg("PCI-E Master disable polling has failed.\n");
1717
1718 hw_dbg("Masking off all interrupts\n");
1719 wr32(E1000_IMC, 0xffffffff);
1720 wr32(E1000_RCTL, 0);
1721 wr32(E1000_TCTL, E1000_TCTL_PSP);
1722 wrfl();
1723
1724 msleep(10);
1725
1726 /* Determine whether or not a global dev reset is requested */
1727 if (global_device_reset &&
1728 igb_acquire_swfw_sync_82575(hw, swmbsw_mask))
1729 global_device_reset = false;
1730
1731 if (global_device_reset &&
1732 !(rd32(E1000_STATUS) & E1000_STAT_DEV_RST_SET))
1733 ctrl |= E1000_CTRL_DEV_RST;
1734 else
1735 ctrl |= E1000_CTRL_RST;
1736
1737 wr32(E1000_CTRL, ctrl);
1738
1739 /* Add delay to insure DEV_RST has time to complete */
1740 if (global_device_reset)
1741 msleep(5);
1742
1743 ret_val = igb_get_auto_rd_done(hw);
1744 if (ret_val) {
1745 /*
1746 * When auto config read does not complete, do not
1747 * return with an error. This can happen in situations
1748 * where there is no eeprom and prevents getting link.
1749 */
1750 hw_dbg("Auto Read Done did not complete\n");
1751 }
1752
1753 /* If EEPROM is not present, run manual init scripts */
1754 if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0)
1755 igb_reset_init_script_82575(hw);
1756
1757 /* clear global device reset status bit */
1758 wr32(E1000_STATUS, E1000_STAT_DEV_RST_SET);
1759
1760 /* Clear any pending interrupt events. */
1761 wr32(E1000_IMC, 0xffffffff);
1762 icr = rd32(E1000_ICR);
1763
08451e25
NN
1764 ret_val = igb_reset_mdicnfg_82580(hw);
1765 if (ret_val)
1766 hw_dbg("Could not reset MDICNFG based on EEPROM\n");
1767
bb2ac47b
AD
1768 /* Install any alternate MAC address into RAR0 */
1769 ret_val = igb_check_alt_mac_addr(hw);
1770
1771 /* Release semaphore */
1772 if (global_device_reset)
1773 igb_release_swfw_sync_82575(hw, swmbsw_mask);
1774
1775 return ret_val;
1776}
1777
1778/**
1779 * igb_rxpbs_adjust_82580 - adjust RXPBS value to reflect actual RX PBA size
1780 * @data: data received by reading RXPBS register
1781 *
1782 * The 82580 uses a table based approach for packet buffer allocation sizes.
1783 * This function converts the retrieved value into the correct table value
1784 * 0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7
1785 * 0x0 36 72 144 1 2 4 8 16
1786 * 0x8 35 70 140 rsv rsv rsv rsv rsv
1787 */
1788u16 igb_rxpbs_adjust_82580(u32 data)
1789{
1790 u16 ret_val = 0;
1791
1792 if (data < E1000_82580_RXPBS_TABLE_SIZE)
1793 ret_val = e1000_82580_rxpbs_table[data];
1794
1795 return ret_val;
1796}
1797
4322e561
CW
1798/**
1799 * igb_validate_nvm_checksum_with_offset - Validate EEPROM
1800 * checksum
1801 * @hw: pointer to the HW structure
1802 * @offset: offset in words of the checksum protected region
1803 *
1804 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
1805 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
1806 **/
1807s32 igb_validate_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset)
1808{
1809 s32 ret_val = 0;
1810 u16 checksum = 0;
1811 u16 i, nvm_data;
1812
1813 for (i = offset; i < ((NVM_CHECKSUM_REG + offset) + 1); i++) {
1814 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
1815 if (ret_val) {
1816 hw_dbg("NVM Read Error\n");
1817 goto out;
1818 }
1819 checksum += nvm_data;
1820 }
1821
1822 if (checksum != (u16) NVM_SUM) {
1823 hw_dbg("NVM Checksum Invalid\n");
1824 ret_val = -E1000_ERR_NVM;
1825 goto out;
1826 }
1827
1828out:
1829 return ret_val;
1830}
1831
1832/**
1833 * igb_update_nvm_checksum_with_offset - Update EEPROM
1834 * checksum
1835 * @hw: pointer to the HW structure
1836 * @offset: offset in words of the checksum protected region
1837 *
1838 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
1839 * up to the checksum. Then calculates the EEPROM checksum and writes the
1840 * value to the EEPROM.
1841 **/
1842s32 igb_update_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset)
1843{
1844 s32 ret_val;
1845 u16 checksum = 0;
1846 u16 i, nvm_data;
1847
1848 for (i = offset; i < (NVM_CHECKSUM_REG + offset); i++) {
1849 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
1850 if (ret_val) {
1851 hw_dbg("NVM Read Error while updating checksum.\n");
1852 goto out;
1853 }
1854 checksum += nvm_data;
1855 }
1856 checksum = (u16) NVM_SUM - checksum;
1857 ret_val = hw->nvm.ops.write(hw, (NVM_CHECKSUM_REG + offset), 1,
1858 &checksum);
1859 if (ret_val)
1860 hw_dbg("NVM Write Error while updating checksum.\n");
1861
1862out:
1863 return ret_val;
1864}
1865
1866/**
1867 * igb_validate_nvm_checksum_82580 - Validate EEPROM checksum
1868 * @hw: pointer to the HW structure
1869 *
1870 * Calculates the EEPROM section checksum by reading/adding each word of
1871 * the EEPROM and then verifies that the sum of the EEPROM is
1872 * equal to 0xBABA.
1873 **/
1874static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw)
1875{
1876 s32 ret_val = 0;
1877 u16 eeprom_regions_count = 1;
1878 u16 j, nvm_data;
1879 u16 nvm_offset;
1880
1881 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
1882 if (ret_val) {
1883 hw_dbg("NVM Read Error\n");
1884 goto out;
1885 }
1886
1887 if (nvm_data & NVM_COMPATIBILITY_BIT_MASK) {
34a0326e 1888 /* if checksums compatibility bit is set validate checksums
4322e561
CW
1889 * for all 4 ports. */
1890 eeprom_regions_count = 4;
1891 }
1892
1893 for (j = 0; j < eeprom_regions_count; j++) {
1894 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1895 ret_val = igb_validate_nvm_checksum_with_offset(hw,
1896 nvm_offset);
1897 if (ret_val != 0)
1898 goto out;
1899 }
1900
1901out:
1902 return ret_val;
1903}
1904
1905/**
1906 * igb_update_nvm_checksum_82580 - Update EEPROM checksum
1907 * @hw: pointer to the HW structure
1908 *
1909 * Updates the EEPROM section checksums for all 4 ports by reading/adding
1910 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
1911 * checksum and writes the value to the EEPROM.
1912 **/
1913static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw)
1914{
1915 s32 ret_val;
1916 u16 j, nvm_data;
1917 u16 nvm_offset;
1918
1919 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
1920 if (ret_val) {
1921 hw_dbg("NVM Read Error while updating checksum"
1922 " compatibility bit.\n");
1923 goto out;
1924 }
1925
1926 if ((nvm_data & NVM_COMPATIBILITY_BIT_MASK) == 0) {
1927 /* set compatibility bit to validate checksums appropriately */
1928 nvm_data = nvm_data | NVM_COMPATIBILITY_BIT_MASK;
1929 ret_val = hw->nvm.ops.write(hw, NVM_COMPATIBILITY_REG_3, 1,
1930 &nvm_data);
1931 if (ret_val) {
1932 hw_dbg("NVM Write Error while updating checksum"
1933 " compatibility bit.\n");
1934 goto out;
1935 }
1936 }
1937
1938 for (j = 0; j < 4; j++) {
1939 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1940 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
1941 if (ret_val)
1942 goto out;
1943 }
1944
1945out:
1946 return ret_val;
1947}
1948
1949/**
1950 * igb_validate_nvm_checksum_i350 - Validate EEPROM checksum
1951 * @hw: pointer to the HW structure
1952 *
1953 * Calculates the EEPROM section checksum by reading/adding each word of
1954 * the EEPROM and then verifies that the sum of the EEPROM is
1955 * equal to 0xBABA.
1956 **/
1957static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw)
1958{
1959 s32 ret_val = 0;
1960 u16 j;
1961 u16 nvm_offset;
1962
1963 for (j = 0; j < 4; j++) {
1964 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1965 ret_val = igb_validate_nvm_checksum_with_offset(hw,
1966 nvm_offset);
1967 if (ret_val != 0)
1968 goto out;
1969 }
1970
1971out:
1972 return ret_val;
1973}
1974
1975/**
1976 * igb_update_nvm_checksum_i350 - Update EEPROM checksum
1977 * @hw: pointer to the HW structure
1978 *
1979 * Updates the EEPROM section checksums for all 4 ports by reading/adding
1980 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
1981 * checksum and writes the value to the EEPROM.
1982 **/
1983static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw)
1984{
1985 s32 ret_val = 0;
1986 u16 j;
1987 u16 nvm_offset;
1988
1989 for (j = 0; j < 4; j++) {
1990 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
1991 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
1992 if (ret_val != 0)
1993 goto out;
1994 }
1995
1996out:
1997 return ret_val;
1998}
34a0326e 1999
09b068d4
CW
2000/**
2001 * igb_set_eee_i350 - Enable/disable EEE support
2002 * @hw: pointer to the HW structure
2003 *
2004 * Enable/disable EEE based on setting in dev_spec structure.
2005 *
2006 **/
2007s32 igb_set_eee_i350(struct e1000_hw *hw)
2008{
2009 s32 ret_val = 0;
2010 u32 ipcnfg, eeer, ctrl_ext;
2011
2012 ctrl_ext = rd32(E1000_CTRL_EXT);
2013 if ((hw->mac.type != e1000_i350) ||
2014 (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK))
2015 goto out;
2016 ipcnfg = rd32(E1000_IPCNFG);
2017 eeer = rd32(E1000_EEER);
2018
2019 /* enable or disable per user setting */
2020 if (!(hw->dev_spec._82575.eee_disable)) {
2021 ipcnfg |= (E1000_IPCNFG_EEE_1G_AN |
2022 E1000_IPCNFG_EEE_100M_AN);
2023 eeer |= (E1000_EEER_TX_LPI_EN |
2024 E1000_EEER_RX_LPI_EN |
2025 E1000_EEER_LPI_FC);
2026
2027 } else {
2028 ipcnfg &= ~(E1000_IPCNFG_EEE_1G_AN |
2029 E1000_IPCNFG_EEE_100M_AN);
2030 eeer &= ~(E1000_EEER_TX_LPI_EN |
2031 E1000_EEER_RX_LPI_EN |
2032 E1000_EEER_LPI_FC);
2033 }
2034 wr32(E1000_IPCNFG, ipcnfg);
2035 wr32(E1000_EEER, eeer);
2036out:
2037
2038 return ret_val;
2039}
4322e561 2040
9d5c8243 2041static struct e1000_mac_operations e1000_mac_ops_82575 = {
9d5c8243
AK
2042 .init_hw = igb_init_hw_82575,
2043 .check_for_link = igb_check_for_link_82575,
2d064c06 2044 .rar_set = igb_rar_set,
9d5c8243
AK
2045 .read_mac_addr = igb_read_mac_addr_82575,
2046 .get_speed_and_duplex = igb_get_speed_and_duplex_copper,
2047};
2048
2049static struct e1000_phy_operations e1000_phy_ops_82575 = {
a8d2a0c2 2050 .acquire = igb_acquire_phy_82575,
9d5c8243 2051 .get_cfg_done = igb_get_cfg_done_82575,
a8d2a0c2 2052 .release = igb_release_phy_82575,
9d5c8243
AK
2053};
2054
2055static struct e1000_nvm_operations e1000_nvm_ops_82575 = {
312c75ae
AD
2056 .acquire = igb_acquire_nvm_82575,
2057 .read = igb_read_nvm_eerd,
2058 .release = igb_release_nvm_82575,
2059 .write = igb_write_nvm_spi,
9d5c8243
AK
2060};
2061
2062const struct e1000_info e1000_82575_info = {
2063 .get_invariants = igb_get_invariants_82575,
2064 .mac_ops = &e1000_mac_ops_82575,
2065 .phy_ops = &e1000_phy_ops_82575,
2066 .nvm_ops = &e1000_nvm_ops_82575,
2067};
2068
This page took 0.580031 seconds and 5 git commands to generate.