blob: 5604b3e08f3570c1d9051f7e5fa323d045a98a04 [file] [log] [blame]
Auke Kok9d5c8242008-01-24 02:22:38 -08001/*******************************************************************************
2
3 Intel(R) Gigabit Ethernet Linux driver
Alexander Duyck86d5d382009-02-06 23:23:12 +00004 Copyright(c) 2007-2009 Intel Corporation.
Auke Kok9d5c8242008-01-24 02:22:38 -08005
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>
33#include <linux/slab.h>
Alexander Duyck2d064c02008-07-08 15:10:12 -070034#include <linux/if_ether.h>
Auke Kok9d5c8242008-01-24 02:22:38 -080035
36#include "e1000_mac.h"
37#include "e1000_82575.h"
38
39static s32 igb_get_invariants_82575(struct e1000_hw *);
40static s32 igb_acquire_phy_82575(struct e1000_hw *);
41static void igb_release_phy_82575(struct e1000_hw *);
42static s32 igb_acquire_nvm_82575(struct e1000_hw *);
43static void igb_release_nvm_82575(struct e1000_hw *);
44static s32 igb_check_for_link_82575(struct e1000_hw *);
45static s32 igb_get_cfg_done_82575(struct e1000_hw *);
46static s32 igb_init_hw_82575(struct e1000_hw *);
47static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *);
48static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16 *);
Auke Kok9d5c8242008-01-24 02:22:38 -080049static s32 igb_reset_hw_82575(struct e1000_hw *);
50static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *, bool);
51static s32 igb_setup_copper_link_82575(struct e1000_hw *);
Alexander Duyck2fb02a22009-09-14 08:22:54 +000052static s32 igb_setup_serdes_link_82575(struct e1000_hw *);
Auke Kok9d5c8242008-01-24 02:22:38 -080053static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16);
54static void igb_clear_hw_cntrs_82575(struct e1000_hw *);
55static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *, u16);
Auke Kok9d5c8242008-01-24 02:22:38 -080056static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *, u16 *,
57 u16 *);
58static s32 igb_get_phy_id_82575(struct e1000_hw *);
59static void igb_release_swfw_sync_82575(struct e1000_hw *, u16);
60static bool igb_sgmii_active_82575(struct e1000_hw *);
61static s32 igb_reset_init_script_82575(struct e1000_hw *);
62static s32 igb_read_mac_addr_82575(struct e1000_hw *);
Alexander Duyck009bc062009-07-23 18:08:35 +000063static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw);
Auke Kok9d5c8242008-01-24 02:22:38 -080064
Auke Kok9d5c8242008-01-24 02:22:38 -080065static s32 igb_get_invariants_82575(struct e1000_hw *hw)
66{
67 struct e1000_phy_info *phy = &hw->phy;
68 struct e1000_nvm_info *nvm = &hw->nvm;
69 struct e1000_mac_info *mac = &hw->mac;
Alexander Duyckc1889bf2009-02-06 23:16:45 +000070 struct e1000_dev_spec_82575 * dev_spec = &hw->dev_spec._82575;
Auke Kok9d5c8242008-01-24 02:22:38 -080071 u32 eecd;
72 s32 ret_val;
73 u16 size;
74 u32 ctrl_ext = 0;
75
76 switch (hw->device_id) {
77 case E1000_DEV_ID_82575EB_COPPER:
78 case E1000_DEV_ID_82575EB_FIBER_SERDES:
79 case E1000_DEV_ID_82575GB_QUAD_COPPER:
80 mac->type = e1000_82575;
81 break;
Alexander Duyck2d064c02008-07-08 15:10:12 -070082 case E1000_DEV_ID_82576:
Alexander Duyck9eb23412009-03-13 20:42:15 +000083 case E1000_DEV_ID_82576_NS:
Alexander Duyck2d064c02008-07-08 15:10:12 -070084 case E1000_DEV_ID_82576_FIBER:
85 case E1000_DEV_ID_82576_SERDES:
Alexander Duyckc8ea5ea2009-03-13 20:42:35 +000086 case E1000_DEV_ID_82576_QUAD_COPPER:
Alexander Duyck4703bf72009-07-23 18:09:48 +000087 case E1000_DEV_ID_82576_SERDES_QUAD:
Alexander Duyck2d064c02008-07-08 15:10:12 -070088 mac->type = e1000_82576;
89 break;
Auke Kok9d5c8242008-01-24 02:22:38 -080090 default:
91 return -E1000_ERR_MAC_INIT;
92 break;
93 }
94
Auke Kok9d5c8242008-01-24 02:22:38 -080095 /* Set media type */
96 /*
97 * The 82575 uses bits 22:23 for link mode. The mode can be changed
98 * based on the EEPROM. We cannot rely upon device ID. There
99 * is no distinguishable difference between fiber and internal
100 * SerDes mode on the 82575. There can be an external PHY attached
101 * on the SGMII interface. For this, we'll set sgmii_active to true.
102 */
103 phy->media_type = e1000_media_type_copper;
104 dev_spec->sgmii_active = false;
105
106 ctrl_ext = rd32(E1000_CTRL_EXT);
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000107 switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) {
108 case E1000_CTRL_EXT_LINK_MODE_SGMII:
Auke Kok9d5c8242008-01-24 02:22:38 -0800109 dev_spec->sgmii_active = true;
110 ctrl_ext |= E1000_CTRL_I2C_ENA;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000111 break;
112 case E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES:
113 hw->phy.media_type = e1000_media_type_internal_serdes;
114 ctrl_ext |= E1000_CTRL_I2C_ENA;
115 break;
116 default:
Auke Kok9d5c8242008-01-24 02:22:38 -0800117 ctrl_ext &= ~E1000_CTRL_I2C_ENA;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000118 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800119 }
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000120
Auke Kok9d5c8242008-01-24 02:22:38 -0800121 wr32(E1000_CTRL_EXT, ctrl_ext);
122
123 /* Set mta register count */
124 mac->mta_reg_count = 128;
125 /* Set rar entry count */
126 mac->rar_entry_count = E1000_RAR_ENTRIES_82575;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700127 if (mac->type == e1000_82576)
128 mac->rar_entry_count = E1000_RAR_ENTRIES_82576;
Auke Kok9d5c8242008-01-24 02:22:38 -0800129 /* Set if part includes ASF firmware */
130 mac->asf_firmware_present = true;
131 /* Set if manageability features are enabled. */
132 mac->arc_subsystem_valid =
133 (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK)
134 ? true : false;
135
136 /* physical interface link setup */
137 mac->ops.setup_physical_interface =
138 (hw->phy.media_type == e1000_media_type_copper)
139 ? igb_setup_copper_link_82575
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000140 : igb_setup_serdes_link_82575;
Auke Kok9d5c8242008-01-24 02:22:38 -0800141
142 /* NVM initialization */
143 eecd = rd32(E1000_EECD);
144
145 nvm->opcode_bits = 8;
146 nvm->delay_usec = 1;
147 switch (nvm->override) {
148 case e1000_nvm_override_spi_large:
149 nvm->page_size = 32;
150 nvm->address_bits = 16;
151 break;
152 case e1000_nvm_override_spi_small:
153 nvm->page_size = 8;
154 nvm->address_bits = 8;
155 break;
156 default:
157 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
158 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
159 break;
160 }
161
162 nvm->type = e1000_nvm_eeprom_spi;
163
164 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
165 E1000_EECD_SIZE_EX_SHIFT);
166
167 /*
168 * Added to a constant, "size" becomes the left-shift value
169 * for setting word_size.
170 */
171 size += NVM_WORD_SIZE_BASE_SHIFT;
Jeff Kirsher5c3cad72008-06-27 10:59:33 -0700172
173 /* EEPROM access above 16k is unsupported */
174 if (size > 14)
175 size = 14;
Auke Kok9d5c8242008-01-24 02:22:38 -0800176 nvm->word_size = 1 << size;
177
Alexander Duycka0c98602009-07-23 18:10:43 +0000178 /* if 82576 then initialize mailbox parameters */
179 if (mac->type == e1000_82576)
180 igb_init_mbx_params_pf(hw);
181
Auke Kok9d5c8242008-01-24 02:22:38 -0800182 /* setup PHY parameters */
183 if (phy->media_type != e1000_media_type_copper) {
184 phy->type = e1000_phy_none;
185 return 0;
186 }
187
188 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
189 phy->reset_delay_us = 100;
190
191 /* PHY function pointers */
192 if (igb_sgmii_active_82575(hw)) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000193 phy->ops.reset = igb_phy_hw_reset_sgmii_82575;
194 phy->ops.read_reg = igb_read_phy_reg_sgmii_82575;
195 phy->ops.write_reg = igb_write_phy_reg_sgmii_82575;
Auke Kok9d5c8242008-01-24 02:22:38 -0800196 } else {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000197 phy->ops.reset = igb_phy_hw_reset;
198 phy->ops.read_reg = igb_read_phy_reg_igp;
199 phy->ops.write_reg = igb_write_phy_reg_igp;
Auke Kok9d5c8242008-01-24 02:22:38 -0800200 }
201
Alexander Duyck19e588e2009-07-07 13:01:55 +0000202 /* set lan id */
203 hw->bus.func = (rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) >>
204 E1000_STATUS_FUNC_SHIFT;
205
Auke Kok9d5c8242008-01-24 02:22:38 -0800206 /* Set phy->phy_addr and phy->id. */
207 ret_val = igb_get_phy_id_82575(hw);
208 if (ret_val)
209 return ret_val;
210
211 /* Verify phy id and set remaining function pointers */
212 switch (phy->id) {
213 case M88E1111_I_PHY_ID:
214 phy->type = e1000_phy_m88;
215 phy->ops.get_phy_info = igb_get_phy_info_m88;
216 phy->ops.get_cable_length = igb_get_cable_length_m88;
217 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
218 break;
219 case IGP03E1000_E_PHY_ID:
220 phy->type = e1000_phy_igp_3;
221 phy->ops.get_phy_info = igb_get_phy_info_igp;
222 phy->ops.get_cable_length = igb_get_cable_length_igp_2;
223 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_igp;
224 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82575;
225 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state;
226 break;
227 default:
228 return -E1000_ERR_PHY;
229 }
230
231 return 0;
232}
233
234/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700235 * igb_acquire_phy_82575 - Acquire rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800236 * @hw: pointer to the HW structure
237 *
238 * Acquire access rights to the correct PHY. This is a
239 * function pointer entry point called by the api module.
240 **/
241static s32 igb_acquire_phy_82575(struct e1000_hw *hw)
242{
243 u16 mask;
244
245 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
246
247 return igb_acquire_swfw_sync_82575(hw, mask);
248}
249
250/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700251 * igb_release_phy_82575 - Release rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800252 * @hw: pointer to the HW structure
253 *
254 * A wrapper to release access rights to the correct PHY. This is a
255 * function pointer entry point called by the api module.
256 **/
257static void igb_release_phy_82575(struct e1000_hw *hw)
258{
259 u16 mask;
260
261 mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM;
262 igb_release_swfw_sync_82575(hw, mask);
263}
264
265/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700266 * igb_read_phy_reg_sgmii_82575 - Read PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800267 * @hw: pointer to the HW structure
268 * @offset: register offset to be read
269 * @data: pointer to the read data
270 *
271 * Reads the PHY register at offset using the serial gigabit media independent
272 * interface and stores the retrieved information in data.
273 **/
274static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
275 u16 *data)
276{
277 struct e1000_phy_info *phy = &hw->phy;
278 u32 i, i2ccmd = 0;
279
280 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700281 hw_dbg("PHY Address %u is out of range\n", offset);
Auke Kok9d5c8242008-01-24 02:22:38 -0800282 return -E1000_ERR_PARAM;
283 }
284
285 /*
286 * Set up Op-code, Phy Address, and register address in the I2CCMD
287 * register. The MAC will take care of interfacing with the
288 * PHY to retrieve the desired data.
289 */
290 i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
291 (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) |
292 (E1000_I2CCMD_OPCODE_READ));
293
294 wr32(E1000_I2CCMD, i2ccmd);
295
296 /* Poll the ready bit to see if the I2C read completed */
297 for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
298 udelay(50);
299 i2ccmd = rd32(E1000_I2CCMD);
300 if (i2ccmd & E1000_I2CCMD_READY)
301 break;
302 }
303 if (!(i2ccmd & E1000_I2CCMD_READY)) {
Auke Kok652fff32008-06-27 11:00:18 -0700304 hw_dbg("I2CCMD Read did not complete\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800305 return -E1000_ERR_PHY;
306 }
307 if (i2ccmd & E1000_I2CCMD_ERROR) {
Auke Kok652fff32008-06-27 11:00:18 -0700308 hw_dbg("I2CCMD Error bit set\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800309 return -E1000_ERR_PHY;
310 }
311
312 /* Need to byte-swap the 16-bit value. */
313 *data = ((i2ccmd >> 8) & 0x00FF) | ((i2ccmd << 8) & 0xFF00);
314
315 return 0;
316}
317
318/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700319 * igb_write_phy_reg_sgmii_82575 - Write PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800320 * @hw: pointer to the HW structure
321 * @offset: register offset to write to
322 * @data: data to write at register offset
323 *
324 * Writes the data to PHY register at the offset using the serial gigabit
325 * media independent interface.
326 **/
327static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
328 u16 data)
329{
330 struct e1000_phy_info *phy = &hw->phy;
331 u32 i, i2ccmd = 0;
332 u16 phy_data_swapped;
333
334 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700335 hw_dbg("PHY Address %d is out of range\n", offset);
Auke Kok9d5c8242008-01-24 02:22:38 -0800336 return -E1000_ERR_PARAM;
337 }
338
339 /* Swap the data bytes for the I2C interface */
340 phy_data_swapped = ((data >> 8) & 0x00FF) | ((data << 8) & 0xFF00);
341
342 /*
343 * Set up Op-code, Phy Address, and register address in the I2CCMD
344 * register. The MAC will take care of interfacing with the
345 * PHY to retrieve the desired data.
346 */
347 i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
348 (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) |
349 E1000_I2CCMD_OPCODE_WRITE |
350 phy_data_swapped);
351
352 wr32(E1000_I2CCMD, i2ccmd);
353
354 /* Poll the ready bit to see if the I2C read completed */
355 for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
356 udelay(50);
357 i2ccmd = rd32(E1000_I2CCMD);
358 if (i2ccmd & E1000_I2CCMD_READY)
359 break;
360 }
361 if (!(i2ccmd & E1000_I2CCMD_READY)) {
Auke Kok652fff32008-06-27 11:00:18 -0700362 hw_dbg("I2CCMD Write did not complete\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800363 return -E1000_ERR_PHY;
364 }
365 if (i2ccmd & E1000_I2CCMD_ERROR) {
Auke Kok652fff32008-06-27 11:00:18 -0700366 hw_dbg("I2CCMD Error bit set\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800367 return -E1000_ERR_PHY;
368 }
369
370 return 0;
371}
372
373/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700374 * igb_get_phy_id_82575 - Retrieve PHY addr and id
Auke Kok9d5c8242008-01-24 02:22:38 -0800375 * @hw: pointer to the HW structure
376 *
Auke Kok652fff32008-06-27 11:00:18 -0700377 * Retrieves the PHY address and ID for both PHY's which do and do not use
Auke Kok9d5c8242008-01-24 02:22:38 -0800378 * sgmi interface.
379 **/
380static s32 igb_get_phy_id_82575(struct e1000_hw *hw)
381{
382 struct e1000_phy_info *phy = &hw->phy;
383 s32 ret_val = 0;
384 u16 phy_id;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000385 u32 ctrl_ext;
Auke Kok9d5c8242008-01-24 02:22:38 -0800386
387 /*
388 * For SGMII PHYs, we try the list of possible addresses until
389 * we find one that works. For non-SGMII PHYs
390 * (e.g. integrated copper PHYs), an address of 1 should
391 * work. The result of this function should mean phy->phy_addr
392 * and phy->id are set correctly.
393 */
394 if (!(igb_sgmii_active_82575(hw))) {
395 phy->addr = 1;
396 ret_val = igb_get_phy_id(hw);
397 goto out;
398 }
399
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000400 /* Power on sgmii phy if it is disabled */
401 ctrl_ext = rd32(E1000_CTRL_EXT);
402 wr32(E1000_CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_SDP3_DATA);
403 wrfl();
404 msleep(300);
405
Auke Kok9d5c8242008-01-24 02:22:38 -0800406 /*
407 * The address field in the I2CCMD register is 3 bits and 0 is invalid.
408 * Therefore, we need to test 1-7
409 */
410 for (phy->addr = 1; phy->addr < 8; phy->addr++) {
411 ret_val = igb_read_phy_reg_sgmii_82575(hw, PHY_ID1, &phy_id);
412 if (ret_val == 0) {
Auke Kok652fff32008-06-27 11:00:18 -0700413 hw_dbg("Vendor ID 0x%08X read at address %u\n",
414 phy_id, phy->addr);
Auke Kok9d5c8242008-01-24 02:22:38 -0800415 /*
416 * At the time of this writing, The M88 part is
417 * the only supported SGMII PHY product.
418 */
419 if (phy_id == M88_VENDOR)
420 break;
421 } else {
Auke Kok652fff32008-06-27 11:00:18 -0700422 hw_dbg("PHY address %u was unreadable\n", phy->addr);
Auke Kok9d5c8242008-01-24 02:22:38 -0800423 }
424 }
425
426 /* A valid PHY type couldn't be found. */
427 if (phy->addr == 8) {
428 phy->addr = 0;
429 ret_val = -E1000_ERR_PHY;
430 goto out;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000431 } else {
432 ret_val = igb_get_phy_id(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800433 }
434
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000435 /* restore previous sfp cage power state */
436 wr32(E1000_CTRL_EXT, ctrl_ext);
Auke Kok9d5c8242008-01-24 02:22:38 -0800437
438out:
439 return ret_val;
440}
441
442/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700443 * igb_phy_hw_reset_sgmii_82575 - Performs a PHY reset
Auke Kok9d5c8242008-01-24 02:22:38 -0800444 * @hw: pointer to the HW structure
445 *
446 * Resets the PHY using the serial gigabit media independent interface.
447 **/
448static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw)
449{
450 s32 ret_val;
451
452 /*
453 * This isn't a true "hard" reset, but is the only reset
454 * available to us at this time.
455 */
456
Auke Kok652fff32008-06-27 11:00:18 -0700457 hw_dbg("Soft resetting SGMII attached PHY...\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800458
459 /*
460 * SFP documentation requires the following to configure the SPF module
461 * to work on SGMII. No further documentation is given.
462 */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000463 ret_val = hw->phy.ops.write_reg(hw, 0x1B, 0x8084);
Auke Kok9d5c8242008-01-24 02:22:38 -0800464 if (ret_val)
465 goto out;
466
467 ret_val = igb_phy_sw_reset(hw);
468
469out:
470 return ret_val;
471}
472
473/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700474 * igb_set_d0_lplu_state_82575 - Set Low Power Linkup D0 state
Auke Kok9d5c8242008-01-24 02:22:38 -0800475 * @hw: pointer to the HW structure
476 * @active: true to enable LPLU, false to disable
477 *
478 * Sets the LPLU D0 state according to the active flag. When
479 * activating LPLU this function also disables smart speed
480 * and vice versa. LPLU will not be activated unless the
481 * device autonegotiation advertisement meets standards of
482 * either 10 or 10/100 or 10/100/1000 at all duplexes.
483 * This is a function pointer entry point only called by
484 * PHY setup routines.
485 **/
486static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active)
487{
488 struct e1000_phy_info *phy = &hw->phy;
489 s32 ret_val;
490 u16 data;
491
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000492 ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800493 if (ret_val)
494 goto out;
495
496 if (active) {
497 data |= IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000498 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700499 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800500 if (ret_val)
501 goto out;
502
503 /* When LPLU is enabled, we should disable SmartSpeed */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000504 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700505 &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800506 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000507 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700508 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800509 if (ret_val)
510 goto out;
511 } else {
512 data &= ~IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000513 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700514 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800515 /*
516 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
517 * during Dx states where the power conservation is most
518 * important. During driver activity we should enable
519 * SmartSpeed, so performance is maintained.
520 */
521 if (phy->smart_speed == e1000_smart_speed_on) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000522 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700523 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800524 if (ret_val)
525 goto out;
526
527 data |= IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000528 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700529 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800530 if (ret_val)
531 goto out;
532 } else if (phy->smart_speed == e1000_smart_speed_off) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000533 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700534 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800535 if (ret_val)
536 goto out;
537
538 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000539 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700540 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800541 if (ret_val)
542 goto out;
543 }
544 }
545
546out:
547 return ret_val;
548}
549
550/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700551 * igb_acquire_nvm_82575 - Request for access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -0800552 * @hw: pointer to the HW structure
553 *
Auke Kok652fff32008-06-27 11:00:18 -0700554 * Acquire the necessary semaphores for exclusive access to the EEPROM.
Auke Kok9d5c8242008-01-24 02:22:38 -0800555 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
556 * Return successful if access grant bit set, else clear the request for
557 * EEPROM access and return -E1000_ERR_NVM (-1).
558 **/
559static s32 igb_acquire_nvm_82575(struct e1000_hw *hw)
560{
561 s32 ret_val;
562
563 ret_val = igb_acquire_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
564 if (ret_val)
565 goto out;
566
567 ret_val = igb_acquire_nvm(hw);
568
569 if (ret_val)
570 igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
571
572out:
573 return ret_val;
574}
575
576/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700577 * igb_release_nvm_82575 - Release exclusive access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -0800578 * @hw: pointer to the HW structure
579 *
580 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
581 * then release the semaphores acquired.
582 **/
583static void igb_release_nvm_82575(struct e1000_hw *hw)
584{
585 igb_release_nvm(hw);
586 igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
587}
588
589/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700590 * igb_acquire_swfw_sync_82575 - Acquire SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -0800591 * @hw: pointer to the HW structure
592 * @mask: specifies which semaphore to acquire
593 *
594 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
595 * will also specify which port we're acquiring the lock for.
596 **/
597static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
598{
599 u32 swfw_sync;
600 u32 swmask = mask;
601 u32 fwmask = mask << 16;
602 s32 ret_val = 0;
603 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
604
605 while (i < timeout) {
606 if (igb_get_hw_semaphore(hw)) {
607 ret_val = -E1000_ERR_SWFW_SYNC;
608 goto out;
609 }
610
611 swfw_sync = rd32(E1000_SW_FW_SYNC);
612 if (!(swfw_sync & (fwmask | swmask)))
613 break;
614
615 /*
616 * Firmware currently using resource (fwmask)
617 * or other software thread using resource (swmask)
618 */
619 igb_put_hw_semaphore(hw);
620 mdelay(5);
621 i++;
622 }
623
624 if (i == timeout) {
Auke Kok652fff32008-06-27 11:00:18 -0700625 hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800626 ret_val = -E1000_ERR_SWFW_SYNC;
627 goto out;
628 }
629
630 swfw_sync |= swmask;
631 wr32(E1000_SW_FW_SYNC, swfw_sync);
632
633 igb_put_hw_semaphore(hw);
634
635out:
636 return ret_val;
637}
638
639/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700640 * igb_release_swfw_sync_82575 - Release SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -0800641 * @hw: pointer to the HW structure
642 * @mask: specifies which semaphore to acquire
643 *
644 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
645 * will also specify which port we're releasing the lock for.
646 **/
647static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
648{
649 u32 swfw_sync;
650
651 while (igb_get_hw_semaphore(hw) != 0);
652 /* Empty */
653
654 swfw_sync = rd32(E1000_SW_FW_SYNC);
655 swfw_sync &= ~mask;
656 wr32(E1000_SW_FW_SYNC, swfw_sync);
657
658 igb_put_hw_semaphore(hw);
659}
660
661/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700662 * igb_get_cfg_done_82575 - Read config done bit
Auke Kok9d5c8242008-01-24 02:22:38 -0800663 * @hw: pointer to the HW structure
664 *
665 * Read the management control register for the config done bit for
666 * completion status. NOTE: silicon which is EEPROM-less will fail trying
667 * to read the config done bit, so an error is *ONLY* logged and returns
668 * 0. If we were to return with error, EEPROM-less silicon
669 * would not be able to be reset or change link.
670 **/
671static s32 igb_get_cfg_done_82575(struct e1000_hw *hw)
672{
673 s32 timeout = PHY_CFG_TIMEOUT;
674 s32 ret_val = 0;
675 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
676
677 if (hw->bus.func == 1)
678 mask = E1000_NVM_CFG_DONE_PORT_1;
679
680 while (timeout) {
681 if (rd32(E1000_EEMNGCTL) & mask)
682 break;
683 msleep(1);
684 timeout--;
685 }
686 if (!timeout)
Auke Kok652fff32008-06-27 11:00:18 -0700687 hw_dbg("MNG configuration cycle has not completed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800688
689 /* If EEPROM is not marked present, init the PHY manually */
690 if (((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) &&
691 (hw->phy.type == e1000_phy_igp_3))
692 igb_phy_init_script_igp3(hw);
693
694 return ret_val;
695}
696
697/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700698 * igb_check_for_link_82575 - Check for link
Auke Kok9d5c8242008-01-24 02:22:38 -0800699 * @hw: pointer to the HW structure
700 *
701 * If sgmii is enabled, then use the pcs register to determine link, otherwise
702 * use the generic interface for determining link.
703 **/
704static s32 igb_check_for_link_82575(struct e1000_hw *hw)
705{
706 s32 ret_val;
707 u16 speed, duplex;
708
Alexander Duyck70d92f82009-10-05 06:31:47 +0000709 if (hw->phy.media_type != e1000_media_type_copper) {
Auke Kok9d5c8242008-01-24 02:22:38 -0800710 ret_val = igb_get_pcs_speed_and_duplex_82575(hw, &speed,
Alexander Duyck2d064c02008-07-08 15:10:12 -0700711 &duplex);
Alexander Duyck5d0932a2009-01-31 00:53:18 -0800712 /*
713 * Use this flag to determine if link needs to be checked or
714 * not. If we have link clear the flag so that we do not
715 * continue to check for link.
716 */
717 hw->mac.get_link_status = !hw->mac.serdes_has_link;
718 } else {
Auke Kok9d5c8242008-01-24 02:22:38 -0800719 ret_val = igb_check_for_copper_link(hw);
Alexander Duyck5d0932a2009-01-31 00:53:18 -0800720 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800721
722 return ret_val;
723}
Alexander Duyck70d92f82009-10-05 06:31:47 +0000724
Auke Kok9d5c8242008-01-24 02:22:38 -0800725/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700726 * igb_get_pcs_speed_and_duplex_82575 - Retrieve current speed/duplex
Auke Kok9d5c8242008-01-24 02:22:38 -0800727 * @hw: pointer to the HW structure
728 * @speed: stores the current speed
729 * @duplex: stores the current duplex
730 *
Auke Kok652fff32008-06-27 11:00:18 -0700731 * Using the physical coding sub-layer (PCS), retrieve the current speed and
Auke Kok9d5c8242008-01-24 02:22:38 -0800732 * duplex, then store the values in the pointers provided.
733 **/
734static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed,
735 u16 *duplex)
736{
737 struct e1000_mac_info *mac = &hw->mac;
738 u32 pcs;
739
740 /* Set up defaults for the return values of this function */
741 mac->serdes_has_link = false;
742 *speed = 0;
743 *duplex = 0;
744
745 /*
746 * Read the PCS Status register for link state. For non-copper mode,
747 * the status register is not accurate. The PCS status register is
748 * used instead.
749 */
750 pcs = rd32(E1000_PCS_LSTAT);
751
752 /*
753 * The link up bit determines when link is up on autoneg. The sync ok
754 * gets set once both sides sync up and agree upon link. Stable link
755 * can be determined by checking for both link up and link sync ok
756 */
757 if ((pcs & E1000_PCS_LSTS_LINK_OK) && (pcs & E1000_PCS_LSTS_SYNK_OK)) {
758 mac->serdes_has_link = true;
759
760 /* Detect and store PCS speed */
761 if (pcs & E1000_PCS_LSTS_SPEED_1000) {
762 *speed = SPEED_1000;
763 } else if (pcs & E1000_PCS_LSTS_SPEED_100) {
764 *speed = SPEED_100;
765 } else {
766 *speed = SPEED_10;
767 }
768
769 /* Detect and store PCS duplex */
770 if (pcs & E1000_PCS_LSTS_DUPLEX_FULL) {
771 *duplex = FULL_DUPLEX;
772 } else {
773 *duplex = HALF_DUPLEX;
774 }
775 }
776
777 return 0;
778}
779
780/**
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000781 * igb_shutdown_serdes_link_82575 - Remove link during power down
Alexander Duyck2d064c02008-07-08 15:10:12 -0700782 * @hw: pointer to the HW structure
783 *
784 * In the case of fiber serdes, shut down optics and PCS on driver unload
785 * when management pass thru is not enabled.
786 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000787void igb_shutdown_serdes_link_82575(struct e1000_hw *hw)
Alexander Duyck2d064c02008-07-08 15:10:12 -0700788{
789 u32 reg;
Alexander Duyck70d92f82009-10-05 06:31:47 +0000790 u16 eeprom_data = 0;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700791
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000792 if (hw->phy.media_type != e1000_media_type_internal_serdes ||
793 igb_sgmii_active_82575(hw))
Alexander Duyck2d064c02008-07-08 15:10:12 -0700794 return;
795
Alexander Duyck70d92f82009-10-05 06:31:47 +0000796 if (hw->bus.func == E1000_FUNC_0)
797 hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
798 else if (hw->bus.func == E1000_FUNC_1)
799 hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
800
801 /*
802 * If APM is not enabled in the EEPROM and management interface is
803 * not enabled, then power down.
804 */
805 if (!(eeprom_data & E1000_NVM_APME_82575) &&
806 !igb_enable_mng_pass_thru(hw)) {
Alexander Duyck2d064c02008-07-08 15:10:12 -0700807 /* Disable PCS to turn off link */
808 reg = rd32(E1000_PCS_CFG0);
809 reg &= ~E1000_PCS_CFG_PCS_EN;
810 wr32(E1000_PCS_CFG0, reg);
811
812 /* shutdown the laser */
813 reg = rd32(E1000_CTRL_EXT);
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000814 reg |= E1000_CTRL_EXT_SDP3_DATA;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700815 wr32(E1000_CTRL_EXT, reg);
816
817 /* flush the write to verify completion */
818 wrfl();
819 msleep(1);
820 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800821
822 return;
823}
824
825/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700826 * igb_reset_hw_82575 - Reset hardware
Auke Kok9d5c8242008-01-24 02:22:38 -0800827 * @hw: pointer to the HW structure
828 *
829 * This resets the hardware into a known state. This is a
830 * function pointer entry point called by the api module.
831 **/
832static s32 igb_reset_hw_82575(struct e1000_hw *hw)
833{
834 u32 ctrl, icr;
835 s32 ret_val;
836
837 /*
838 * Prevent the PCI-E bus from sticking if there is no TLP connection
839 * on the last TLP read/write transaction when MAC is reset.
840 */
841 ret_val = igb_disable_pcie_master(hw);
842 if (ret_val)
Auke Kok652fff32008-06-27 11:00:18 -0700843 hw_dbg("PCI-E Master disable polling has failed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800844
Alexander Duyck009bc062009-07-23 18:08:35 +0000845 /* set the completion timeout for interface */
846 ret_val = igb_set_pcie_completion_timeout(hw);
847 if (ret_val) {
848 hw_dbg("PCI-E Set completion timeout has failed.\n");
849 }
850
Auke Kok652fff32008-06-27 11:00:18 -0700851 hw_dbg("Masking off all interrupts\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800852 wr32(E1000_IMC, 0xffffffff);
853
854 wr32(E1000_RCTL, 0);
855 wr32(E1000_TCTL, E1000_TCTL_PSP);
856 wrfl();
857
858 msleep(10);
859
860 ctrl = rd32(E1000_CTRL);
861
Auke Kok652fff32008-06-27 11:00:18 -0700862 hw_dbg("Issuing a global reset to MAC\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800863 wr32(E1000_CTRL, ctrl | E1000_CTRL_RST);
864
865 ret_val = igb_get_auto_rd_done(hw);
866 if (ret_val) {
867 /*
868 * When auto config read does not complete, do not
869 * return with an error. This can happen in situations
870 * where there is no eeprom and prevents getting link.
871 */
Auke Kok652fff32008-06-27 11:00:18 -0700872 hw_dbg("Auto Read Done did not complete\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800873 }
874
875 /* If EEPROM is not present, run manual init scripts */
876 if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0)
877 igb_reset_init_script_82575(hw);
878
879 /* Clear any pending interrupt events. */
880 wr32(E1000_IMC, 0xffffffff);
881 icr = rd32(E1000_ICR);
882
Alexander Duyck5ac16652009-07-23 18:09:12 +0000883 /* Install any alternate MAC address into RAR0 */
884 ret_val = igb_check_alt_mac_addr(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800885
886 return ret_val;
887}
888
889/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700890 * igb_init_hw_82575 - Initialize hardware
Auke Kok9d5c8242008-01-24 02:22:38 -0800891 * @hw: pointer to the HW structure
892 *
893 * This inits the hardware readying it for operation.
894 **/
895static s32 igb_init_hw_82575(struct e1000_hw *hw)
896{
897 struct e1000_mac_info *mac = &hw->mac;
898 s32 ret_val;
899 u16 i, rar_count = mac->rar_entry_count;
900
901 /* Initialize identification LED */
902 ret_val = igb_id_led_init(hw);
903 if (ret_val) {
Auke Kok652fff32008-06-27 11:00:18 -0700904 hw_dbg("Error initializing identification LED\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800905 /* This is not fatal and we should not stop init due to this */
906 }
907
908 /* Disabling VLAN filtering */
Auke Kok652fff32008-06-27 11:00:18 -0700909 hw_dbg("Initializing the IEEE VLAN\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800910 igb_clear_vfta(hw);
911
912 /* Setup the receive address */
Alexander Duyck5ac16652009-07-23 18:09:12 +0000913 igb_init_rx_addrs(hw, rar_count);
914
Auke Kok9d5c8242008-01-24 02:22:38 -0800915 /* Zero out the Multicast HASH table */
Auke Kok652fff32008-06-27 11:00:18 -0700916 hw_dbg("Zeroing the MTA\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800917 for (i = 0; i < mac->mta_reg_count; i++)
918 array_wr32(E1000_MTA, i, 0);
919
920 /* Setup link and flow control */
921 ret_val = igb_setup_link(hw);
922
923 /*
924 * Clear all of the statistics registers (clear on read). It is
925 * important that we do this after we have tried to establish link
926 * because the symbol error count will increment wildly if there
927 * is no link.
928 */
929 igb_clear_hw_cntrs_82575(hw);
930
931 return ret_val;
932}
933
934/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700935 * igb_setup_copper_link_82575 - Configure copper link settings
Auke Kok9d5c8242008-01-24 02:22:38 -0800936 * @hw: pointer to the HW structure
937 *
938 * Configures the link for auto-neg or forced speed and duplex. Then we check
939 * for link, once link is established calls to configure collision distance
940 * and flow control are called.
941 **/
942static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)
943{
Alexander Duyck12645a12009-07-23 18:08:16 +0000944 u32 ctrl;
Auke Kok9d5c8242008-01-24 02:22:38 -0800945 s32 ret_val;
946 bool link;
947
948 ctrl = rd32(E1000_CTRL);
949 ctrl |= E1000_CTRL_SLU;
950 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
951 wr32(E1000_CTRL, ctrl);
952
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000953 ret_val = igb_setup_serdes_link_82575(hw);
954 if (ret_val)
955 goto out;
956
957 if (igb_sgmii_active_82575(hw) && !hw->phy.reset_disable) {
958 ret_val = hw->phy.ops.reset(hw);
959 if (ret_val) {
960 hw_dbg("Error resetting the PHY.\n");
961 goto out;
962 }
963 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800964 switch (hw->phy.type) {
965 case e1000_phy_m88:
966 ret_val = igb_copper_link_setup_m88(hw);
967 break;
968 case e1000_phy_igp_3:
969 ret_val = igb_copper_link_setup_igp(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800970 break;
971 default:
972 ret_val = -E1000_ERR_PHY;
973 break;
974 }
975
976 if (ret_val)
977 goto out;
978
979 if (hw->mac.autoneg) {
980 /*
981 * Setup autoneg and flow control advertisement
982 * and perform autonegotiation.
983 */
984 ret_val = igb_copper_link_autoneg(hw);
985 if (ret_val)
986 goto out;
987 } else {
988 /*
989 * PHY will be set to 10H, 10F, 100H or 100F
990 * depending on user settings.
991 */
Auke Kok652fff32008-06-27 11:00:18 -0700992 hw_dbg("Forcing Speed and Duplex\n");
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000993 ret_val = hw->phy.ops.force_speed_duplex(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800994 if (ret_val) {
Auke Kok652fff32008-06-27 11:00:18 -0700995 hw_dbg("Error Forcing Speed and Duplex\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800996 goto out;
997 }
998 }
999
Auke Kok9d5c8242008-01-24 02:22:38 -08001000 /*
1001 * Check link status. Wait up to 100 microseconds for link to become
1002 * valid.
1003 */
Auke Kok652fff32008-06-27 11:00:18 -07001004 ret_val = igb_phy_has_link(hw, COPPER_LINK_UP_LIMIT, 10, &link);
Auke Kok9d5c8242008-01-24 02:22:38 -08001005 if (ret_val)
1006 goto out;
1007
1008 if (link) {
Auke Kok652fff32008-06-27 11:00:18 -07001009 hw_dbg("Valid link established!!!\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001010 /* Config the MAC and PHY after link is up */
1011 igb_config_collision_dist(hw);
1012 ret_val = igb_config_fc_after_link_up(hw);
1013 } else {
Auke Kok652fff32008-06-27 11:00:18 -07001014 hw_dbg("Unable to establish link!!!\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001015 }
1016
1017out:
1018 return ret_val;
1019}
1020
1021/**
Alexander Duyck70d92f82009-10-05 06:31:47 +00001022 * igb_setup_serdes_link_82575 - Setup link for serdes
Auke Kok9d5c8242008-01-24 02:22:38 -08001023 * @hw: pointer to the HW structure
1024 *
Alexander Duyck70d92f82009-10-05 06:31:47 +00001025 * Configure the physical coding sub-layer (PCS) link. The PCS link is
1026 * used on copper connections where the serialized gigabit media independent
1027 * interface (sgmii), or serdes fiber is being used. Configures the link
1028 * for auto-negotiation or forces speed/duplex.
Auke Kok9d5c8242008-01-24 02:22:38 -08001029 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001030static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw)
Auke Kok9d5c8242008-01-24 02:22:38 -08001031{
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001032 u32 ctrl_reg, reg;
1033
1034 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
1035 !igb_sgmii_active_82575(hw))
1036 return 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08001037
1038 /*
1039 * On the 82575, SerDes loopback mode persists until it is
1040 * explicitly turned off or a power cycle is performed. A read to
1041 * the register does not indicate its status. Therefore, we ensure
1042 * loopback mode is disabled during initialization.
1043 */
1044 wr32(E1000_SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
1045
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001046 /* power on the sfp cage if present */
1047 reg = rd32(E1000_CTRL_EXT);
1048 reg &= ~E1000_CTRL_EXT_SDP3_DATA;
1049 wr32(E1000_CTRL_EXT, reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001050
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001051 ctrl_reg = rd32(E1000_CTRL);
1052 ctrl_reg |= E1000_CTRL_SLU;
1053
1054 if (hw->mac.type == e1000_82575 || hw->mac.type == e1000_82576) {
1055 /* set both sw defined pins */
1056 ctrl_reg |= E1000_CTRL_SWDPIN0 | E1000_CTRL_SWDPIN1;
1057
1058 /* Set switch control to serdes energy detect */
1059 reg = rd32(E1000_CONNSW);
1060 reg |= E1000_CONNSW_ENRGSRC;
1061 wr32(E1000_CONNSW, reg);
Alexander Duyck921aa742009-01-21 14:42:28 -08001062 }
1063
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001064 reg = rd32(E1000_PCS_LCTL);
1065
1066 if (igb_sgmii_active_82575(hw)) {
1067 /* allow time for SFP cage to power up phy */
1068 msleep(300);
1069
1070 /* AN time out should be disabled for SGMII mode */
1071 reg &= ~(E1000_PCS_LCTL_AN_TIMEOUT);
1072 } else {
1073 ctrl_reg |= E1000_CTRL_SPD_1000 | E1000_CTRL_FRCSPD |
1074 E1000_CTRL_FD | E1000_CTRL_FRCDPX;
1075 }
1076
1077 wr32(E1000_CTRL, ctrl_reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001078
1079 /*
1080 * New SerDes mode allows for forcing speed or autonegotiating speed
1081 * at 1gb. Autoneg should be default set by most drivers. This is the
1082 * mode that will be compatible with older link partners and switches.
1083 * However, both are supported by the hardware and some drivers/tools.
1084 */
Auke Kok9d5c8242008-01-24 02:22:38 -08001085
1086 reg &= ~(E1000_PCS_LCTL_AN_ENABLE | E1000_PCS_LCTL_FLV_LINK_UP |
1087 E1000_PCS_LCTL_FSD | E1000_PCS_LCTL_FORCE_LINK);
1088
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001089 /*
1090 * We force flow control to prevent the CTRL register values from being
1091 * overwritten by the autonegotiated flow control values
1092 */
1093 reg |= E1000_PCS_LCTL_FORCE_FCTRL;
1094
1095 /*
1096 * we always set sgmii to autoneg since it is the phy that will be
1097 * forcing the link and the serdes is just a go-between
1098 */
1099 if (hw->mac.autoneg || igb_sgmii_active_82575(hw)) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001100 /* Set PCS register for autoneg */
Alexander Duyck70d92f82009-10-05 06:31:47 +00001101 reg |= E1000_PCS_LCTL_FSV_1000 | /* Force 1000 */
1102 E1000_PCS_LCTL_FDV_FULL | /* SerDes Full dplx */
1103 E1000_PCS_LCTL_AN_ENABLE | /* Enable Autoneg */
1104 E1000_PCS_LCTL_AN_RESTART; /* Restart autoneg */
Auke Kok652fff32008-06-27 11:00:18 -07001105 hw_dbg("Configuring Autoneg; PCS_LCTL = 0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001106 } else {
Alexander Duyck70d92f82009-10-05 06:31:47 +00001107 /* Check for duplex first */
1108 if (hw->mac.forced_speed_duplex & E1000_ALL_FULL_DUPLEX)
1109 reg |= E1000_PCS_LCTL_FDV_FULL;
1110
1111 /* No need to check for 1000/full since the spec states that
1112 * it requires autoneg to be enabled */
1113 /* Now set speed */
1114 if (hw->mac.forced_speed_duplex & E1000_ALL_100_SPEED)
1115 reg |= E1000_PCS_LCTL_FSV_100;
1116
1117 /* Force speed and force link */
1118 reg |= E1000_PCS_LCTL_FSD |
1119 E1000_PCS_LCTL_FORCE_LINK |
1120 E1000_PCS_LCTL_FLV_LINK_UP;
1121
Auke Kok652fff32008-06-27 11:00:18 -07001122 hw_dbg("Configuring Forced Link; PCS_LCTL = 0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001123 }
Alexander Duyck726c09e2008-08-04 14:59:56 -07001124
Auke Kok9d5c8242008-01-24 02:22:38 -08001125 wr32(E1000_PCS_LCTL, reg);
1126
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001127 if (!igb_sgmii_active_82575(hw))
1128 igb_force_mac_fc(hw);
1129
Auke Kok9d5c8242008-01-24 02:22:38 -08001130 return 0;
1131}
1132
1133/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001134 * igb_sgmii_active_82575 - Return sgmii state
Auke Kok9d5c8242008-01-24 02:22:38 -08001135 * @hw: pointer to the HW structure
1136 *
1137 * 82575 silicon has a serialized gigabit media independent interface (sgmii)
1138 * which can be enabled for use in the embedded applications. Simply
1139 * return the current state of the sgmii interface.
1140 **/
1141static bool igb_sgmii_active_82575(struct e1000_hw *hw)
1142{
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001143 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001144 return dev_spec->sgmii_active;
Auke Kok9d5c8242008-01-24 02:22:38 -08001145}
1146
1147/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001148 * igb_reset_init_script_82575 - Inits HW defaults after reset
Auke Kok9d5c8242008-01-24 02:22:38 -08001149 * @hw: pointer to the HW structure
1150 *
1151 * Inits recommended HW defaults after a reset when there is no EEPROM
1152 * detected. This is only for the 82575.
1153 **/
1154static s32 igb_reset_init_script_82575(struct e1000_hw *hw)
1155{
1156 if (hw->mac.type == e1000_82575) {
Auke Kok652fff32008-06-27 11:00:18 -07001157 hw_dbg("Running reset init script for 82575\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001158 /* SerDes configuration via SERDESCTRL */
1159 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x00, 0x0C);
1160 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x01, 0x78);
1161 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x1B, 0x23);
1162 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x23, 0x15);
1163
1164 /* CCM configuration via CCMCTL register */
1165 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x14, 0x00);
1166 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x10, 0x00);
1167
1168 /* PCIe lanes configuration */
1169 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x00, 0xEC);
1170 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x61, 0xDF);
1171 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x34, 0x05);
1172 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x2F, 0x81);
1173
1174 /* PCIe PLL Configuration */
1175 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x02, 0x47);
1176 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x14, 0x00);
1177 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x10, 0x00);
1178 }
1179
1180 return 0;
1181}
1182
1183/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001184 * igb_read_mac_addr_82575 - Read device MAC address
Auke Kok9d5c8242008-01-24 02:22:38 -08001185 * @hw: pointer to the HW structure
1186 **/
1187static s32 igb_read_mac_addr_82575(struct e1000_hw *hw)
1188{
1189 s32 ret_val = 0;
1190
1191 if (igb_check_alt_mac_addr(hw))
1192 ret_val = igb_read_mac_addr(hw);
1193
1194 return ret_val;
1195}
1196
1197/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001198 * igb_clear_hw_cntrs_82575 - Clear device specific hardware counters
Auke Kok9d5c8242008-01-24 02:22:38 -08001199 * @hw: pointer to the HW structure
1200 *
1201 * Clears the hardware counters by reading the counter registers.
1202 **/
1203static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw)
1204{
Auke Kok9d5c8242008-01-24 02:22:38 -08001205 igb_clear_hw_cntrs_base(hw);
1206
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001207 rd32(E1000_PRC64);
1208 rd32(E1000_PRC127);
1209 rd32(E1000_PRC255);
1210 rd32(E1000_PRC511);
1211 rd32(E1000_PRC1023);
1212 rd32(E1000_PRC1522);
1213 rd32(E1000_PTC64);
1214 rd32(E1000_PTC127);
1215 rd32(E1000_PTC255);
1216 rd32(E1000_PTC511);
1217 rd32(E1000_PTC1023);
1218 rd32(E1000_PTC1522);
Auke Kok9d5c8242008-01-24 02:22:38 -08001219
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001220 rd32(E1000_ALGNERRC);
1221 rd32(E1000_RXERRC);
1222 rd32(E1000_TNCRS);
1223 rd32(E1000_CEXTERR);
1224 rd32(E1000_TSCTC);
1225 rd32(E1000_TSCTFC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001226
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001227 rd32(E1000_MGTPRC);
1228 rd32(E1000_MGTPDC);
1229 rd32(E1000_MGTPTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001230
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001231 rd32(E1000_IAC);
1232 rd32(E1000_ICRXOC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001233
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001234 rd32(E1000_ICRXPTC);
1235 rd32(E1000_ICRXATC);
1236 rd32(E1000_ICTXPTC);
1237 rd32(E1000_ICTXATC);
1238 rd32(E1000_ICTXQEC);
1239 rd32(E1000_ICTXQMTC);
1240 rd32(E1000_ICRXDMTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001241
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001242 rd32(E1000_CBTMPC);
1243 rd32(E1000_HTDPMC);
1244 rd32(E1000_CBRMPC);
1245 rd32(E1000_RPTHC);
1246 rd32(E1000_HGPTC);
1247 rd32(E1000_HTCBDPC);
1248 rd32(E1000_HGORCL);
1249 rd32(E1000_HGORCH);
1250 rd32(E1000_HGOTCL);
1251 rd32(E1000_HGOTCH);
1252 rd32(E1000_LENERRS);
Auke Kok9d5c8242008-01-24 02:22:38 -08001253
1254 /* This register should not be read in copper configurations */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001255 if (hw->phy.media_type == e1000_media_type_internal_serdes ||
1256 igb_sgmii_active_82575(hw))
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001257 rd32(E1000_SCVPC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001258}
1259
Alexander Duyck662d7202008-06-27 11:00:29 -07001260/**
1261 * igb_rx_fifo_flush_82575 - Clean rx fifo after RX enable
1262 * @hw: pointer to the HW structure
1263 *
1264 * After rx enable if managability is enabled then there is likely some
1265 * bad data at the start of the fifo and possibly in the DMA fifo. This
1266 * function clears the fifos and flushes any packets that came in as rx was
1267 * being enabled.
1268 **/
1269void igb_rx_fifo_flush_82575(struct e1000_hw *hw)
1270{
1271 u32 rctl, rlpml, rxdctl[4], rfctl, temp_rctl, rx_enabled;
1272 int i, ms_wait;
1273
1274 if (hw->mac.type != e1000_82575 ||
1275 !(rd32(E1000_MANC) & E1000_MANC_RCV_TCO_EN))
1276 return;
1277
1278 /* Disable all RX queues */
1279 for (i = 0; i < 4; i++) {
1280 rxdctl[i] = rd32(E1000_RXDCTL(i));
1281 wr32(E1000_RXDCTL(i),
1282 rxdctl[i] & ~E1000_RXDCTL_QUEUE_ENABLE);
1283 }
1284 /* Poll all queues to verify they have shut down */
1285 for (ms_wait = 0; ms_wait < 10; ms_wait++) {
1286 msleep(1);
1287 rx_enabled = 0;
1288 for (i = 0; i < 4; i++)
1289 rx_enabled |= rd32(E1000_RXDCTL(i));
1290 if (!(rx_enabled & E1000_RXDCTL_QUEUE_ENABLE))
1291 break;
1292 }
1293
1294 if (ms_wait == 10)
1295 hw_dbg("Queue disable timed out after 10ms\n");
1296
1297 /* Clear RLPML, RCTL.SBP, RFCTL.LEF, and set RCTL.LPE so that all
1298 * incoming packets are rejected. Set enable and wait 2ms so that
1299 * any packet that was coming in as RCTL.EN was set is flushed
1300 */
1301 rfctl = rd32(E1000_RFCTL);
1302 wr32(E1000_RFCTL, rfctl & ~E1000_RFCTL_LEF);
1303
1304 rlpml = rd32(E1000_RLPML);
1305 wr32(E1000_RLPML, 0);
1306
1307 rctl = rd32(E1000_RCTL);
1308 temp_rctl = rctl & ~(E1000_RCTL_EN | E1000_RCTL_SBP);
1309 temp_rctl |= E1000_RCTL_LPE;
1310
1311 wr32(E1000_RCTL, temp_rctl);
1312 wr32(E1000_RCTL, temp_rctl | E1000_RCTL_EN);
1313 wrfl();
1314 msleep(2);
1315
1316 /* Enable RX queues that were previously enabled and restore our
1317 * previous state
1318 */
1319 for (i = 0; i < 4; i++)
1320 wr32(E1000_RXDCTL(i), rxdctl[i]);
1321 wr32(E1000_RCTL, rctl);
1322 wrfl();
1323
1324 wr32(E1000_RLPML, rlpml);
1325 wr32(E1000_RFCTL, rfctl);
1326
1327 /* Flush receive errors generated by workaround */
1328 rd32(E1000_ROC);
1329 rd32(E1000_RNBC);
1330 rd32(E1000_MPC);
1331}
1332
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001333/**
Alexander Duyck009bc062009-07-23 18:08:35 +00001334 * igb_set_pcie_completion_timeout - set pci-e completion timeout
1335 * @hw: pointer to the HW structure
1336 *
1337 * The defaults for 82575 and 82576 should be in the range of 50us to 50ms,
1338 * however the hardware default for these parts is 500us to 1ms which is less
1339 * than the 10ms recommended by the pci-e spec. To address this we need to
1340 * increase the value to either 10ms to 200ms for capability version 1 config,
1341 * or 16ms to 55ms for version 2.
1342 **/
1343static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw)
1344{
1345 u32 gcr = rd32(E1000_GCR);
1346 s32 ret_val = 0;
1347 u16 pcie_devctl2;
1348
1349 /* only take action if timeout value is defaulted to 0 */
1350 if (gcr & E1000_GCR_CMPL_TMOUT_MASK)
1351 goto out;
1352
1353 /*
1354 * if capababilities version is type 1 we can write the
1355 * timeout of 10ms to 200ms through the GCR register
1356 */
1357 if (!(gcr & E1000_GCR_CAP_VER2)) {
1358 gcr |= E1000_GCR_CMPL_TMOUT_10ms;
1359 goto out;
1360 }
1361
1362 /*
1363 * for version 2 capabilities we need to write the config space
1364 * directly in order to set the completion timeout value for
1365 * 16ms to 55ms
1366 */
1367 ret_val = igb_read_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1368 &pcie_devctl2);
1369 if (ret_val)
1370 goto out;
1371
1372 pcie_devctl2 |= PCIE_DEVICE_CONTROL2_16ms;
1373
1374 ret_val = igb_write_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1375 &pcie_devctl2);
1376out:
1377 /* disable completion timeout resend */
1378 gcr &= ~E1000_GCR_CMPL_TMOUT_RESEND;
1379
1380 wr32(E1000_GCR, gcr);
1381 return ret_val;
1382}
1383
1384/**
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001385 * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback
1386 * @hw: pointer to the hardware struct
1387 * @enable: state to enter, either enabled or disabled
1388 *
1389 * enables/disables L2 switch loopback functionality.
1390 **/
1391void igb_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable)
1392{
1393 u32 dtxswc = rd32(E1000_DTXSWC);
1394
1395 if (enable)
1396 dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1397 else
1398 dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1399
1400 wr32(E1000_DTXSWC, dtxswc);
1401}
1402
1403/**
1404 * igb_vmdq_set_replication_pf - enable or disable vmdq replication
1405 * @hw: pointer to the hardware struct
1406 * @enable: state to enter, either enabled or disabled
1407 *
1408 * enables/disables replication of packets across multiple pools.
1409 **/
1410void igb_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable)
1411{
1412 u32 vt_ctl = rd32(E1000_VT_CTL);
1413
1414 if (enable)
1415 vt_ctl |= E1000_VT_CTL_VM_REPL_EN;
1416 else
1417 vt_ctl &= ~E1000_VT_CTL_VM_REPL_EN;
1418
1419 wr32(E1000_VT_CTL, vt_ctl);
1420}
1421
Auke Kok9d5c8242008-01-24 02:22:38 -08001422static struct e1000_mac_operations e1000_mac_ops_82575 = {
1423 .reset_hw = igb_reset_hw_82575,
1424 .init_hw = igb_init_hw_82575,
1425 .check_for_link = igb_check_for_link_82575,
Alexander Duyck2d064c02008-07-08 15:10:12 -07001426 .rar_set = igb_rar_set,
Auke Kok9d5c8242008-01-24 02:22:38 -08001427 .read_mac_addr = igb_read_mac_addr_82575,
1428 .get_speed_and_duplex = igb_get_speed_and_duplex_copper,
1429};
1430
1431static struct e1000_phy_operations e1000_phy_ops_82575 = {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00001432 .acquire = igb_acquire_phy_82575,
Auke Kok9d5c8242008-01-24 02:22:38 -08001433 .get_cfg_done = igb_get_cfg_done_82575,
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00001434 .release = igb_release_phy_82575,
Auke Kok9d5c8242008-01-24 02:22:38 -08001435};
1436
1437static struct e1000_nvm_operations e1000_nvm_ops_82575 = {
Alexander Duyck312c75a2009-02-06 23:17:47 +00001438 .acquire = igb_acquire_nvm_82575,
1439 .read = igb_read_nvm_eerd,
1440 .release = igb_release_nvm_82575,
1441 .write = igb_write_nvm_spi,
Auke Kok9d5c8242008-01-24 02:22:38 -08001442};
1443
1444const struct e1000_info e1000_82575_info = {
1445 .get_invariants = igb_get_invariants_82575,
1446 .mac_ops = &e1000_mac_ops_82575,
1447 .phy_ops = &e1000_phy_ops_82575,
1448 .nvm_ops = &e1000_nvm_ops_82575,
1449};
1450