blob: ea944f518215af5837fc08f0653ce790c0893b1f [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 *);
Alexander Duyckbb2ac472009-11-19 12:42:01 +000049static s32 igb_read_phy_reg_82580(struct e1000_hw *, u32, u16 *);
50static s32 igb_write_phy_reg_82580(struct e1000_hw *, u32, u16);
Auke Kok9d5c8242008-01-24 02:22:38 -080051static s32 igb_reset_hw_82575(struct e1000_hw *);
Alexander Duyckbb2ac472009-11-19 12:42:01 +000052static s32 igb_reset_hw_82580(struct e1000_hw *);
Auke Kok9d5c8242008-01-24 02:22:38 -080053static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *, bool);
54static s32 igb_setup_copper_link_82575(struct e1000_hw *);
Alexander Duyck2fb02a22009-09-14 08:22:54 +000055static s32 igb_setup_serdes_link_82575(struct e1000_hw *);
Auke Kok9d5c8242008-01-24 02:22:38 -080056static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16);
57static void igb_clear_hw_cntrs_82575(struct e1000_hw *);
58static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *, u16);
Auke Kok9d5c8242008-01-24 02:22:38 -080059static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *, u16 *,
60 u16 *);
61static s32 igb_get_phy_id_82575(struct e1000_hw *);
62static void igb_release_swfw_sync_82575(struct e1000_hw *, u16);
63static bool igb_sgmii_active_82575(struct e1000_hw *);
64static s32 igb_reset_init_script_82575(struct e1000_hw *);
65static s32 igb_read_mac_addr_82575(struct e1000_hw *);
Alexander Duyck009bc062009-07-23 18:08:35 +000066static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw);
Auke Kok9d5c8242008-01-24 02:22:38 -080067
Alexander Duyckbb2ac472009-11-19 12:42:01 +000068static const u16 e1000_82580_rxpbs_table[] =
69 { 36, 72, 144, 1, 2, 4, 8, 16,
70 35, 70, 140 };
71#define E1000_82580_RXPBS_TABLE_SIZE \
72 (sizeof(e1000_82580_rxpbs_table)/sizeof(u16))
73
Auke Kok9d5c8242008-01-24 02:22:38 -080074static s32 igb_get_invariants_82575(struct e1000_hw *hw)
75{
76 struct e1000_phy_info *phy = &hw->phy;
77 struct e1000_nvm_info *nvm = &hw->nvm;
78 struct e1000_mac_info *mac = &hw->mac;
Alexander Duyckc1889bf2009-02-06 23:16:45 +000079 struct e1000_dev_spec_82575 * dev_spec = &hw->dev_spec._82575;
Auke Kok9d5c8242008-01-24 02:22:38 -080080 u32 eecd;
81 s32 ret_val;
82 u16 size;
83 u32 ctrl_ext = 0;
84
85 switch (hw->device_id) {
86 case E1000_DEV_ID_82575EB_COPPER:
87 case E1000_DEV_ID_82575EB_FIBER_SERDES:
88 case E1000_DEV_ID_82575GB_QUAD_COPPER:
89 mac->type = e1000_82575;
90 break;
Alexander Duyck2d064c02008-07-08 15:10:12 -070091 case E1000_DEV_ID_82576:
Alexander Duyck9eb23412009-03-13 20:42:15 +000092 case E1000_DEV_ID_82576_NS:
Alexander Duyck747d49b2009-10-05 06:33:27 +000093 case E1000_DEV_ID_82576_NS_SERDES:
Alexander Duyck2d064c02008-07-08 15:10:12 -070094 case E1000_DEV_ID_82576_FIBER:
95 case E1000_DEV_ID_82576_SERDES:
Alexander Duyckc8ea5ea2009-03-13 20:42:35 +000096 case E1000_DEV_ID_82576_QUAD_COPPER:
Carolyn Wybornyb894fa22010-03-19 06:07:48 +000097 case E1000_DEV_ID_82576_QUAD_COPPER_ET2:
Alexander Duyck4703bf72009-07-23 18:09:48 +000098 case E1000_DEV_ID_82576_SERDES_QUAD:
Alexander Duyck2d064c02008-07-08 15:10:12 -070099 mac->type = e1000_82576;
100 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000101 case E1000_DEV_ID_82580_COPPER:
102 case E1000_DEV_ID_82580_FIBER:
103 case E1000_DEV_ID_82580_SERDES:
104 case E1000_DEV_ID_82580_SGMII:
105 case E1000_DEV_ID_82580_COPPER_DUAL:
106 mac->type = e1000_82580;
107 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800108 default:
109 return -E1000_ERR_MAC_INIT;
110 break;
111 }
112
Auke Kok9d5c8242008-01-24 02:22:38 -0800113 /* Set media type */
114 /*
115 * The 82575 uses bits 22:23 for link mode. The mode can be changed
116 * based on the EEPROM. We cannot rely upon device ID. There
117 * is no distinguishable difference between fiber and internal
118 * SerDes mode on the 82575. There can be an external PHY attached
119 * on the SGMII interface. For this, we'll set sgmii_active to true.
120 */
121 phy->media_type = e1000_media_type_copper;
122 dev_spec->sgmii_active = false;
123
124 ctrl_ext = rd32(E1000_CTRL_EXT);
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000125 switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) {
126 case E1000_CTRL_EXT_LINK_MODE_SGMII:
Auke Kok9d5c8242008-01-24 02:22:38 -0800127 dev_spec->sgmii_active = true;
128 ctrl_ext |= E1000_CTRL_I2C_ENA;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000129 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000130 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000131 case E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES:
132 hw->phy.media_type = e1000_media_type_internal_serdes;
133 ctrl_ext |= E1000_CTRL_I2C_ENA;
134 break;
135 default:
Auke Kok9d5c8242008-01-24 02:22:38 -0800136 ctrl_ext &= ~E1000_CTRL_I2C_ENA;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000137 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800138 }
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000139
Auke Kok9d5c8242008-01-24 02:22:38 -0800140 wr32(E1000_CTRL_EXT, ctrl_ext);
141
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000142 /*
143 * if using i2c make certain the MDICNFG register is cleared to prevent
144 * communications from being misrouted to the mdic registers
145 */
146 if ((ctrl_ext & E1000_CTRL_I2C_ENA) && (hw->mac.type == e1000_82580))
147 wr32(E1000_MDICNFG, 0);
148
Auke Kok9d5c8242008-01-24 02:22:38 -0800149 /* Set mta register count */
150 mac->mta_reg_count = 128;
151 /* Set rar entry count */
152 mac->rar_entry_count = E1000_RAR_ENTRIES_82575;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700153 if (mac->type == e1000_82576)
154 mac->rar_entry_count = E1000_RAR_ENTRIES_82576;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000155 if (mac->type == e1000_82580)
156 mac->rar_entry_count = E1000_RAR_ENTRIES_82580;
157 /* reset */
158 if (mac->type == e1000_82580)
159 mac->ops.reset_hw = igb_reset_hw_82580;
160 else
161 mac->ops.reset_hw = igb_reset_hw_82575;
Auke Kok9d5c8242008-01-24 02:22:38 -0800162 /* Set if part includes ASF firmware */
163 mac->asf_firmware_present = true;
164 /* Set if manageability features are enabled. */
165 mac->arc_subsystem_valid =
166 (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK)
167 ? true : false;
168
169 /* physical interface link setup */
170 mac->ops.setup_physical_interface =
171 (hw->phy.media_type == e1000_media_type_copper)
172 ? igb_setup_copper_link_82575
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000173 : igb_setup_serdes_link_82575;
Auke Kok9d5c8242008-01-24 02:22:38 -0800174
175 /* NVM initialization */
176 eecd = rd32(E1000_EECD);
177
178 nvm->opcode_bits = 8;
179 nvm->delay_usec = 1;
180 switch (nvm->override) {
181 case e1000_nvm_override_spi_large:
182 nvm->page_size = 32;
183 nvm->address_bits = 16;
184 break;
185 case e1000_nvm_override_spi_small:
186 nvm->page_size = 8;
187 nvm->address_bits = 8;
188 break;
189 default:
190 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
191 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8;
192 break;
193 }
194
195 nvm->type = e1000_nvm_eeprom_spi;
196
197 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
198 E1000_EECD_SIZE_EX_SHIFT);
199
200 /*
201 * Added to a constant, "size" becomes the left-shift value
202 * for setting word_size.
203 */
204 size += NVM_WORD_SIZE_BASE_SHIFT;
Jeff Kirsher5c3cad72008-06-27 10:59:33 -0700205
206 /* EEPROM access above 16k is unsupported */
207 if (size > 14)
208 size = 14;
Auke Kok9d5c8242008-01-24 02:22:38 -0800209 nvm->word_size = 1 << size;
210
Alexander Duycka0c98602009-07-23 18:10:43 +0000211 /* if 82576 then initialize mailbox parameters */
212 if (mac->type == e1000_82576)
213 igb_init_mbx_params_pf(hw);
214
Auke Kok9d5c8242008-01-24 02:22:38 -0800215 /* setup PHY parameters */
216 if (phy->media_type != e1000_media_type_copper) {
217 phy->type = e1000_phy_none;
218 return 0;
219 }
220
221 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
222 phy->reset_delay_us = 100;
223
224 /* PHY function pointers */
225 if (igb_sgmii_active_82575(hw)) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000226 phy->ops.reset = igb_phy_hw_reset_sgmii_82575;
227 phy->ops.read_reg = igb_read_phy_reg_sgmii_82575;
228 phy->ops.write_reg = igb_write_phy_reg_sgmii_82575;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000229 } else if (hw->mac.type == e1000_82580) {
230 phy->ops.reset = igb_phy_hw_reset;
231 phy->ops.read_reg = igb_read_phy_reg_82580;
232 phy->ops.write_reg = igb_write_phy_reg_82580;
Auke Kok9d5c8242008-01-24 02:22:38 -0800233 } else {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000234 phy->ops.reset = igb_phy_hw_reset;
235 phy->ops.read_reg = igb_read_phy_reg_igp;
236 phy->ops.write_reg = igb_write_phy_reg_igp;
Auke Kok9d5c8242008-01-24 02:22:38 -0800237 }
238
Alexander Duyck19e588e2009-07-07 13:01:55 +0000239 /* set lan id */
240 hw->bus.func = (rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) >>
241 E1000_STATUS_FUNC_SHIFT;
242
Auke Kok9d5c8242008-01-24 02:22:38 -0800243 /* Set phy->phy_addr and phy->id. */
244 ret_val = igb_get_phy_id_82575(hw);
245 if (ret_val)
246 return ret_val;
247
248 /* Verify phy id and set remaining function pointers */
249 switch (phy->id) {
250 case M88E1111_I_PHY_ID:
251 phy->type = e1000_phy_m88;
252 phy->ops.get_phy_info = igb_get_phy_info_m88;
253 phy->ops.get_cable_length = igb_get_cable_length_m88;
254 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
255 break;
256 case IGP03E1000_E_PHY_ID:
257 phy->type = e1000_phy_igp_3;
258 phy->ops.get_phy_info = igb_get_phy_info_igp;
259 phy->ops.get_cable_length = igb_get_cable_length_igp_2;
260 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_igp;
261 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82575;
262 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state;
263 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000264 case I82580_I_PHY_ID:
265 phy->type = e1000_phy_82580;
266 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_82580;
267 phy->ops.get_cable_length = igb_get_cable_length_82580;
268 phy->ops.get_phy_info = igb_get_phy_info_82580;
269 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800270 default:
271 return -E1000_ERR_PHY;
272 }
273
274 return 0;
275}
276
277/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700278 * igb_acquire_phy_82575 - Acquire rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800279 * @hw: pointer to the HW structure
280 *
281 * Acquire access rights to the correct PHY. This is a
282 * function pointer entry point called by the api module.
283 **/
284static s32 igb_acquire_phy_82575(struct e1000_hw *hw)
285{
Alexander Duyck008c3422009-10-05 06:32:07 +0000286 u16 mask = E1000_SWFW_PHY0_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800287
Alexander Duyck008c3422009-10-05 06:32:07 +0000288 if (hw->bus.func == E1000_FUNC_1)
289 mask = E1000_SWFW_PHY1_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800290
291 return igb_acquire_swfw_sync_82575(hw, mask);
292}
293
294/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700295 * igb_release_phy_82575 - Release rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800296 * @hw: pointer to the HW structure
297 *
298 * A wrapper to release access rights to the correct PHY. This is a
299 * function pointer entry point called by the api module.
300 **/
301static void igb_release_phy_82575(struct e1000_hw *hw)
302{
Alexander Duyck008c3422009-10-05 06:32:07 +0000303 u16 mask = E1000_SWFW_PHY0_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800304
Alexander Duyck008c3422009-10-05 06:32:07 +0000305 if (hw->bus.func == E1000_FUNC_1)
306 mask = E1000_SWFW_PHY1_SM;
307
Auke Kok9d5c8242008-01-24 02:22:38 -0800308 igb_release_swfw_sync_82575(hw, mask);
309}
310
311/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700312 * igb_read_phy_reg_sgmii_82575 - Read PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800313 * @hw: pointer to the HW structure
314 * @offset: register offset to be read
315 * @data: pointer to the read data
316 *
317 * Reads the PHY register at offset using the serial gigabit media independent
318 * interface and stores the retrieved information in data.
319 **/
320static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
321 u16 *data)
322{
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000323 s32 ret_val = -E1000_ERR_PARAM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800324
325 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700326 hw_dbg("PHY Address %u is out of range\n", offset);
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000327 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800328 }
329
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000330 ret_val = hw->phy.ops.acquire(hw);
331 if (ret_val)
332 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800333
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000334 ret_val = igb_read_phy_reg_i2c(hw, offset, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800335
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000336 hw->phy.ops.release(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800337
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000338out:
339 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800340}
341
342/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700343 * igb_write_phy_reg_sgmii_82575 - Write PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800344 * @hw: pointer to the HW structure
345 * @offset: register offset to write to
346 * @data: data to write at register offset
347 *
348 * Writes the data to PHY register at the offset using the serial gigabit
349 * media independent interface.
350 **/
351static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
352 u16 data)
353{
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000354 s32 ret_val = -E1000_ERR_PARAM;
355
Auke Kok9d5c8242008-01-24 02:22:38 -0800356
357 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700358 hw_dbg("PHY Address %d is out of range\n", offset);
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000359 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800360 }
361
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000362 ret_val = hw->phy.ops.acquire(hw);
363 if (ret_val)
364 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800365
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000366 ret_val = igb_write_phy_reg_i2c(hw, offset, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800367
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000368 hw->phy.ops.release(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800369
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000370out:
371 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800372}
373
374/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700375 * igb_get_phy_id_82575 - Retrieve PHY addr and id
Auke Kok9d5c8242008-01-24 02:22:38 -0800376 * @hw: pointer to the HW structure
377 *
Auke Kok652fff32008-06-27 11:00:18 -0700378 * Retrieves the PHY address and ID for both PHY's which do and do not use
Auke Kok9d5c8242008-01-24 02:22:38 -0800379 * sgmi interface.
380 **/
381static s32 igb_get_phy_id_82575(struct e1000_hw *hw)
382{
383 struct e1000_phy_info *phy = &hw->phy;
384 s32 ret_val = 0;
385 u16 phy_id;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000386 u32 ctrl_ext;
Auke Kok9d5c8242008-01-24 02:22:38 -0800387
388 /*
389 * For SGMII PHYs, we try the list of possible addresses until
390 * we find one that works. For non-SGMII PHYs
391 * (e.g. integrated copper PHYs), an address of 1 should
392 * work. The result of this function should mean phy->phy_addr
393 * and phy->id are set correctly.
394 */
395 if (!(igb_sgmii_active_82575(hw))) {
396 phy->addr = 1;
397 ret_val = igb_get_phy_id(hw);
398 goto out;
399 }
400
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000401 /* Power on sgmii phy if it is disabled */
402 ctrl_ext = rd32(E1000_CTRL_EXT);
403 wr32(E1000_CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_SDP3_DATA);
404 wrfl();
405 msleep(300);
406
Auke Kok9d5c8242008-01-24 02:22:38 -0800407 /*
408 * The address field in the I2CCMD register is 3 bits and 0 is invalid.
409 * Therefore, we need to test 1-7
410 */
411 for (phy->addr = 1; phy->addr < 8; phy->addr++) {
412 ret_val = igb_read_phy_reg_sgmii_82575(hw, PHY_ID1, &phy_id);
413 if (ret_val == 0) {
Auke Kok652fff32008-06-27 11:00:18 -0700414 hw_dbg("Vendor ID 0x%08X read at address %u\n",
415 phy_id, phy->addr);
Auke Kok9d5c8242008-01-24 02:22:38 -0800416 /*
417 * At the time of this writing, The M88 part is
418 * the only supported SGMII PHY product.
419 */
420 if (phy_id == M88_VENDOR)
421 break;
422 } else {
Auke Kok652fff32008-06-27 11:00:18 -0700423 hw_dbg("PHY address %u was unreadable\n", phy->addr);
Auke Kok9d5c8242008-01-24 02:22:38 -0800424 }
425 }
426
427 /* A valid PHY type couldn't be found. */
428 if (phy->addr == 8) {
429 phy->addr = 0;
430 ret_val = -E1000_ERR_PHY;
431 goto out;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000432 } else {
433 ret_val = igb_get_phy_id(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800434 }
435
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000436 /* restore previous sfp cage power state */
437 wr32(E1000_CTRL_EXT, ctrl_ext);
Auke Kok9d5c8242008-01-24 02:22:38 -0800438
439out:
440 return ret_val;
441}
442
443/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700444 * igb_phy_hw_reset_sgmii_82575 - Performs a PHY reset
Auke Kok9d5c8242008-01-24 02:22:38 -0800445 * @hw: pointer to the HW structure
446 *
447 * Resets the PHY using the serial gigabit media independent interface.
448 **/
449static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw)
450{
451 s32 ret_val;
452
453 /*
454 * This isn't a true "hard" reset, but is the only reset
455 * available to us at this time.
456 */
457
Auke Kok652fff32008-06-27 11:00:18 -0700458 hw_dbg("Soft resetting SGMII attached PHY...\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800459
460 /*
461 * SFP documentation requires the following to configure the SPF module
462 * to work on SGMII. No further documentation is given.
463 */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000464 ret_val = hw->phy.ops.write_reg(hw, 0x1B, 0x8084);
Auke Kok9d5c8242008-01-24 02:22:38 -0800465 if (ret_val)
466 goto out;
467
468 ret_val = igb_phy_sw_reset(hw);
469
470out:
471 return ret_val;
472}
473
474/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700475 * igb_set_d0_lplu_state_82575 - Set Low Power Linkup D0 state
Auke Kok9d5c8242008-01-24 02:22:38 -0800476 * @hw: pointer to the HW structure
477 * @active: true to enable LPLU, false to disable
478 *
479 * Sets the LPLU D0 state according to the active flag. When
480 * activating LPLU this function also disables smart speed
481 * and vice versa. LPLU will not be activated unless the
482 * device autonegotiation advertisement meets standards of
483 * either 10 or 10/100 or 10/100/1000 at all duplexes.
484 * This is a function pointer entry point only called by
485 * PHY setup routines.
486 **/
487static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active)
488{
489 struct e1000_phy_info *phy = &hw->phy;
490 s32 ret_val;
491 u16 data;
492
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000493 ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800494 if (ret_val)
495 goto out;
496
497 if (active) {
498 data |= IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000499 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700500 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800501 if (ret_val)
502 goto out;
503
504 /* When LPLU is enabled, we should disable SmartSpeed */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000505 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700506 &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800507 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000508 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700509 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800510 if (ret_val)
511 goto out;
512 } else {
513 data &= ~IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000514 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700515 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800516 /*
517 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
518 * during Dx states where the power conservation is most
519 * important. During driver activity we should enable
520 * SmartSpeed, so performance is maintained.
521 */
522 if (phy->smart_speed == e1000_smart_speed_on) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000523 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700524 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800525 if (ret_val)
526 goto out;
527
528 data |= IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000529 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700530 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800531 if (ret_val)
532 goto out;
533 } else if (phy->smart_speed == e1000_smart_speed_off) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000534 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700535 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800536 if (ret_val)
537 goto out;
538
539 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000540 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700541 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800542 if (ret_val)
543 goto out;
544 }
545 }
546
547out:
548 return ret_val;
549}
550
551/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700552 * igb_acquire_nvm_82575 - Request for access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -0800553 * @hw: pointer to the HW structure
554 *
Auke Kok652fff32008-06-27 11:00:18 -0700555 * Acquire the necessary semaphores for exclusive access to the EEPROM.
Auke Kok9d5c8242008-01-24 02:22:38 -0800556 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
557 * Return successful if access grant bit set, else clear the request for
558 * EEPROM access and return -E1000_ERR_NVM (-1).
559 **/
560static s32 igb_acquire_nvm_82575(struct e1000_hw *hw)
561{
562 s32 ret_val;
563
564 ret_val = igb_acquire_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
565 if (ret_val)
566 goto out;
567
568 ret_val = igb_acquire_nvm(hw);
569
570 if (ret_val)
571 igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
572
573out:
574 return ret_val;
575}
576
577/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700578 * igb_release_nvm_82575 - Release exclusive access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -0800579 * @hw: pointer to the HW structure
580 *
581 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
582 * then release the semaphores acquired.
583 **/
584static void igb_release_nvm_82575(struct e1000_hw *hw)
585{
586 igb_release_nvm(hw);
587 igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM);
588}
589
590/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700591 * igb_acquire_swfw_sync_82575 - Acquire SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -0800592 * @hw: pointer to the HW structure
593 * @mask: specifies which semaphore to acquire
594 *
595 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
596 * will also specify which port we're acquiring the lock for.
597 **/
598static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
599{
600 u32 swfw_sync;
601 u32 swmask = mask;
602 u32 fwmask = mask << 16;
603 s32 ret_val = 0;
604 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
605
606 while (i < timeout) {
607 if (igb_get_hw_semaphore(hw)) {
608 ret_val = -E1000_ERR_SWFW_SYNC;
609 goto out;
610 }
611
612 swfw_sync = rd32(E1000_SW_FW_SYNC);
613 if (!(swfw_sync & (fwmask | swmask)))
614 break;
615
616 /*
617 * Firmware currently using resource (fwmask)
618 * or other software thread using resource (swmask)
619 */
620 igb_put_hw_semaphore(hw);
621 mdelay(5);
622 i++;
623 }
624
625 if (i == timeout) {
Auke Kok652fff32008-06-27 11:00:18 -0700626 hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800627 ret_val = -E1000_ERR_SWFW_SYNC;
628 goto out;
629 }
630
631 swfw_sync |= swmask;
632 wr32(E1000_SW_FW_SYNC, swfw_sync);
633
634 igb_put_hw_semaphore(hw);
635
636out:
637 return ret_val;
638}
639
640/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700641 * igb_release_swfw_sync_82575 - Release SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -0800642 * @hw: pointer to the HW structure
643 * @mask: specifies which semaphore to acquire
644 *
645 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
646 * will also specify which port we're releasing the lock for.
647 **/
648static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
649{
650 u32 swfw_sync;
651
652 while (igb_get_hw_semaphore(hw) != 0);
653 /* Empty */
654
655 swfw_sync = rd32(E1000_SW_FW_SYNC);
656 swfw_sync &= ~mask;
657 wr32(E1000_SW_FW_SYNC, swfw_sync);
658
659 igb_put_hw_semaphore(hw);
660}
661
662/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700663 * igb_get_cfg_done_82575 - Read config done bit
Auke Kok9d5c8242008-01-24 02:22:38 -0800664 * @hw: pointer to the HW structure
665 *
666 * Read the management control register for the config done bit for
667 * completion status. NOTE: silicon which is EEPROM-less will fail trying
668 * to read the config done bit, so an error is *ONLY* logged and returns
669 * 0. If we were to return with error, EEPROM-less silicon
670 * would not be able to be reset or change link.
671 **/
672static s32 igb_get_cfg_done_82575(struct e1000_hw *hw)
673{
674 s32 timeout = PHY_CFG_TIMEOUT;
675 s32 ret_val = 0;
676 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
677
678 if (hw->bus.func == 1)
679 mask = E1000_NVM_CFG_DONE_PORT_1;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000680 else if (hw->bus.func == E1000_FUNC_2)
681 mask = E1000_NVM_CFG_DONE_PORT_2;
682 else if (hw->bus.func == E1000_FUNC_3)
683 mask = E1000_NVM_CFG_DONE_PORT_3;
Auke Kok9d5c8242008-01-24 02:22:38 -0800684
685 while (timeout) {
686 if (rd32(E1000_EEMNGCTL) & mask)
687 break;
688 msleep(1);
689 timeout--;
690 }
691 if (!timeout)
Auke Kok652fff32008-06-27 11:00:18 -0700692 hw_dbg("MNG configuration cycle has not completed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800693
694 /* If EEPROM is not marked present, init the PHY manually */
695 if (((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) &&
696 (hw->phy.type == e1000_phy_igp_3))
697 igb_phy_init_script_igp3(hw);
698
699 return ret_val;
700}
701
702/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700703 * igb_check_for_link_82575 - Check for link
Auke Kok9d5c8242008-01-24 02:22:38 -0800704 * @hw: pointer to the HW structure
705 *
706 * If sgmii is enabled, then use the pcs register to determine link, otherwise
707 * use the generic interface for determining link.
708 **/
709static s32 igb_check_for_link_82575(struct e1000_hw *hw)
710{
711 s32 ret_val;
712 u16 speed, duplex;
713
Alexander Duyck70d92f82009-10-05 06:31:47 +0000714 if (hw->phy.media_type != e1000_media_type_copper) {
Auke Kok9d5c8242008-01-24 02:22:38 -0800715 ret_val = igb_get_pcs_speed_and_duplex_82575(hw, &speed,
Alexander Duyck2d064c02008-07-08 15:10:12 -0700716 &duplex);
Alexander Duyck5d0932a2009-01-31 00:53:18 -0800717 /*
718 * Use this flag to determine if link needs to be checked or
719 * not. If we have link clear the flag so that we do not
720 * continue to check for link.
721 */
722 hw->mac.get_link_status = !hw->mac.serdes_has_link;
723 } else {
Auke Kok9d5c8242008-01-24 02:22:38 -0800724 ret_val = igb_check_for_copper_link(hw);
Alexander Duyck5d0932a2009-01-31 00:53:18 -0800725 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800726
727 return ret_val;
728}
Alexander Duyck70d92f82009-10-05 06:31:47 +0000729
Auke Kok9d5c8242008-01-24 02:22:38 -0800730/**
Nick Nunley88a268c2010-02-17 01:01:59 +0000731 * igb_power_up_serdes_link_82575 - Power up the serdes link after shutdown
732 * @hw: pointer to the HW structure
733 **/
734void igb_power_up_serdes_link_82575(struct e1000_hw *hw)
735{
736 u32 reg;
737
738
739 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
740 !igb_sgmii_active_82575(hw))
741 return;
742
743 /* Enable PCS to turn on link */
744 reg = rd32(E1000_PCS_CFG0);
745 reg |= E1000_PCS_CFG_PCS_EN;
746 wr32(E1000_PCS_CFG0, reg);
747
748 /* Power up the laser */
749 reg = rd32(E1000_CTRL_EXT);
750 reg &= ~E1000_CTRL_EXT_SDP3_DATA;
751 wr32(E1000_CTRL_EXT, reg);
752
753 /* flush the write to verify completion */
754 wrfl();
755 msleep(1);
756}
757
758/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700759 * igb_get_pcs_speed_and_duplex_82575 - Retrieve current speed/duplex
Auke Kok9d5c8242008-01-24 02:22:38 -0800760 * @hw: pointer to the HW structure
761 * @speed: stores the current speed
762 * @duplex: stores the current duplex
763 *
Auke Kok652fff32008-06-27 11:00:18 -0700764 * Using the physical coding sub-layer (PCS), retrieve the current speed and
Auke Kok9d5c8242008-01-24 02:22:38 -0800765 * duplex, then store the values in the pointers provided.
766 **/
767static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed,
768 u16 *duplex)
769{
770 struct e1000_mac_info *mac = &hw->mac;
771 u32 pcs;
772
773 /* Set up defaults for the return values of this function */
774 mac->serdes_has_link = false;
775 *speed = 0;
776 *duplex = 0;
777
778 /*
779 * Read the PCS Status register for link state. For non-copper mode,
780 * the status register is not accurate. The PCS status register is
781 * used instead.
782 */
783 pcs = rd32(E1000_PCS_LSTAT);
784
785 /*
786 * The link up bit determines when link is up on autoneg. The sync ok
787 * gets set once both sides sync up and agree upon link. Stable link
788 * can be determined by checking for both link up and link sync ok
789 */
790 if ((pcs & E1000_PCS_LSTS_LINK_OK) && (pcs & E1000_PCS_LSTS_SYNK_OK)) {
791 mac->serdes_has_link = true;
792
793 /* Detect and store PCS speed */
794 if (pcs & E1000_PCS_LSTS_SPEED_1000) {
795 *speed = SPEED_1000;
796 } else if (pcs & E1000_PCS_LSTS_SPEED_100) {
797 *speed = SPEED_100;
798 } else {
799 *speed = SPEED_10;
800 }
801
802 /* Detect and store PCS duplex */
803 if (pcs & E1000_PCS_LSTS_DUPLEX_FULL) {
804 *duplex = FULL_DUPLEX;
805 } else {
806 *duplex = HALF_DUPLEX;
807 }
808 }
809
810 return 0;
811}
812
813/**
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000814 * igb_shutdown_serdes_link_82575 - Remove link during power down
Alexander Duyck2d064c02008-07-08 15:10:12 -0700815 * @hw: pointer to the HW structure
816 *
817 * In the case of fiber serdes, shut down optics and PCS on driver unload
818 * when management pass thru is not enabled.
819 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000820void igb_shutdown_serdes_link_82575(struct e1000_hw *hw)
Alexander Duyck2d064c02008-07-08 15:10:12 -0700821{
822 u32 reg;
823
Nick Nunley53c992f2010-02-17 01:01:40 +0000824 if (hw->phy.media_type != e1000_media_type_internal_serdes &&
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000825 igb_sgmii_active_82575(hw))
Alexander Duyck2d064c02008-07-08 15:10:12 -0700826 return;
827
Nick Nunley53c992f2010-02-17 01:01:40 +0000828 if (!igb_enable_mng_pass_thru(hw)) {
Alexander Duyck2d064c02008-07-08 15:10:12 -0700829 /* Disable PCS to turn off link */
830 reg = rd32(E1000_PCS_CFG0);
831 reg &= ~E1000_PCS_CFG_PCS_EN;
832 wr32(E1000_PCS_CFG0, reg);
833
834 /* shutdown the laser */
835 reg = rd32(E1000_CTRL_EXT);
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000836 reg |= E1000_CTRL_EXT_SDP3_DATA;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700837 wr32(E1000_CTRL_EXT, reg);
838
839 /* flush the write to verify completion */
840 wrfl();
841 msleep(1);
842 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800843}
844
845/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700846 * igb_reset_hw_82575 - Reset hardware
Auke Kok9d5c8242008-01-24 02:22:38 -0800847 * @hw: pointer to the HW structure
848 *
849 * This resets the hardware into a known state. This is a
850 * function pointer entry point called by the api module.
851 **/
852static s32 igb_reset_hw_82575(struct e1000_hw *hw)
853{
854 u32 ctrl, icr;
855 s32 ret_val;
856
857 /*
858 * Prevent the PCI-E bus from sticking if there is no TLP connection
859 * on the last TLP read/write transaction when MAC is reset.
860 */
861 ret_val = igb_disable_pcie_master(hw);
862 if (ret_val)
Auke Kok652fff32008-06-27 11:00:18 -0700863 hw_dbg("PCI-E Master disable polling has failed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800864
Alexander Duyck009bc062009-07-23 18:08:35 +0000865 /* set the completion timeout for interface */
866 ret_val = igb_set_pcie_completion_timeout(hw);
867 if (ret_val) {
868 hw_dbg("PCI-E Set completion timeout has failed.\n");
869 }
870
Auke Kok652fff32008-06-27 11:00:18 -0700871 hw_dbg("Masking off all interrupts\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800872 wr32(E1000_IMC, 0xffffffff);
873
874 wr32(E1000_RCTL, 0);
875 wr32(E1000_TCTL, E1000_TCTL_PSP);
876 wrfl();
877
878 msleep(10);
879
880 ctrl = rd32(E1000_CTRL);
881
Auke Kok652fff32008-06-27 11:00:18 -0700882 hw_dbg("Issuing a global reset to MAC\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800883 wr32(E1000_CTRL, ctrl | E1000_CTRL_RST);
884
885 ret_val = igb_get_auto_rd_done(hw);
886 if (ret_val) {
887 /*
888 * When auto config read does not complete, do not
889 * return with an error. This can happen in situations
890 * where there is no eeprom and prevents getting link.
891 */
Auke Kok652fff32008-06-27 11:00:18 -0700892 hw_dbg("Auto Read Done did not complete\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800893 }
894
895 /* If EEPROM is not present, run manual init scripts */
896 if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0)
897 igb_reset_init_script_82575(hw);
898
899 /* Clear any pending interrupt events. */
900 wr32(E1000_IMC, 0xffffffff);
901 icr = rd32(E1000_ICR);
902
Alexander Duyck5ac16652009-07-23 18:09:12 +0000903 /* Install any alternate MAC address into RAR0 */
904 ret_val = igb_check_alt_mac_addr(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800905
906 return ret_val;
907}
908
909/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700910 * igb_init_hw_82575 - Initialize hardware
Auke Kok9d5c8242008-01-24 02:22:38 -0800911 * @hw: pointer to the HW structure
912 *
913 * This inits the hardware readying it for operation.
914 **/
915static s32 igb_init_hw_82575(struct e1000_hw *hw)
916{
917 struct e1000_mac_info *mac = &hw->mac;
918 s32 ret_val;
919 u16 i, rar_count = mac->rar_entry_count;
920
921 /* Initialize identification LED */
922 ret_val = igb_id_led_init(hw);
923 if (ret_val) {
Auke Kok652fff32008-06-27 11:00:18 -0700924 hw_dbg("Error initializing identification LED\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800925 /* This is not fatal and we should not stop init due to this */
926 }
927
928 /* Disabling VLAN filtering */
Auke Kok652fff32008-06-27 11:00:18 -0700929 hw_dbg("Initializing the IEEE VLAN\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800930 igb_clear_vfta(hw);
931
932 /* Setup the receive address */
Alexander Duyck5ac16652009-07-23 18:09:12 +0000933 igb_init_rx_addrs(hw, rar_count);
934
Auke Kok9d5c8242008-01-24 02:22:38 -0800935 /* Zero out the Multicast HASH table */
Auke Kok652fff32008-06-27 11:00:18 -0700936 hw_dbg("Zeroing the MTA\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800937 for (i = 0; i < mac->mta_reg_count; i++)
938 array_wr32(E1000_MTA, i, 0);
939
Alexander Duyck68d480c2009-10-05 06:33:08 +0000940 /* Zero out the Unicast HASH table */
941 hw_dbg("Zeroing the UTA\n");
942 for (i = 0; i < mac->uta_reg_count; i++)
943 array_wr32(E1000_UTA, i, 0);
944
Auke Kok9d5c8242008-01-24 02:22:38 -0800945 /* Setup link and flow control */
946 ret_val = igb_setup_link(hw);
947
948 /*
949 * Clear all of the statistics registers (clear on read). It is
950 * important that we do this after we have tried to establish link
951 * because the symbol error count will increment wildly if there
952 * is no link.
953 */
954 igb_clear_hw_cntrs_82575(hw);
955
956 return ret_val;
957}
958
959/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700960 * igb_setup_copper_link_82575 - Configure copper link settings
Auke Kok9d5c8242008-01-24 02:22:38 -0800961 * @hw: pointer to the HW structure
962 *
963 * Configures the link for auto-neg or forced speed and duplex. Then we check
964 * for link, once link is established calls to configure collision distance
965 * and flow control are called.
966 **/
967static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)
968{
Alexander Duyck12645a12009-07-23 18:08:16 +0000969 u32 ctrl;
Auke Kok9d5c8242008-01-24 02:22:38 -0800970 s32 ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800971
972 ctrl = rd32(E1000_CTRL);
973 ctrl |= E1000_CTRL_SLU;
974 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
975 wr32(E1000_CTRL, ctrl);
976
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000977 ret_val = igb_setup_serdes_link_82575(hw);
978 if (ret_val)
979 goto out;
980
981 if (igb_sgmii_active_82575(hw) && !hw->phy.reset_disable) {
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000982 /* allow time for SFP cage time to power up phy */
983 msleep(300);
984
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000985 ret_val = hw->phy.ops.reset(hw);
986 if (ret_val) {
987 hw_dbg("Error resetting the PHY.\n");
988 goto out;
989 }
990 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800991 switch (hw->phy.type) {
992 case e1000_phy_m88:
993 ret_val = igb_copper_link_setup_m88(hw);
994 break;
995 case e1000_phy_igp_3:
996 ret_val = igb_copper_link_setup_igp(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800997 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000998 case e1000_phy_82580:
999 ret_val = igb_copper_link_setup_82580(hw);
1000 break;
Auke Kok9d5c8242008-01-24 02:22:38 -08001001 default:
1002 ret_val = -E1000_ERR_PHY;
1003 break;
1004 }
1005
1006 if (ret_val)
1007 goto out;
1008
Alexander Duyck81fadd82009-10-05 06:35:03 +00001009 ret_val = igb_setup_copper_link(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001010out:
1011 return ret_val;
1012}
1013
1014/**
Alexander Duyck70d92f82009-10-05 06:31:47 +00001015 * igb_setup_serdes_link_82575 - Setup link for serdes
Auke Kok9d5c8242008-01-24 02:22:38 -08001016 * @hw: pointer to the HW structure
1017 *
Alexander Duyck70d92f82009-10-05 06:31:47 +00001018 * Configure the physical coding sub-layer (PCS) link. The PCS link is
1019 * used on copper connections where the serialized gigabit media independent
1020 * interface (sgmii), or serdes fiber is being used. Configures the link
1021 * for auto-negotiation or forces speed/duplex.
Auke Kok9d5c8242008-01-24 02:22:38 -08001022 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001023static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw)
Auke Kok9d5c8242008-01-24 02:22:38 -08001024{
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001025 u32 ctrl_ext, ctrl_reg, reg;
1026 bool pcs_autoneg;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001027
1028 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
1029 !igb_sgmii_active_82575(hw))
1030 return 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08001031
1032 /*
1033 * On the 82575, SerDes loopback mode persists until it is
1034 * explicitly turned off or a power cycle is performed. A read to
1035 * the register does not indicate its status. Therefore, we ensure
1036 * loopback mode is disabled during initialization.
1037 */
1038 wr32(E1000_SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
1039
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001040 /* power on the sfp cage if present */
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001041 ctrl_ext = rd32(E1000_CTRL_EXT);
1042 ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA;
1043 wr32(E1000_CTRL_EXT, ctrl_ext);
Auke Kok9d5c8242008-01-24 02:22:38 -08001044
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001045 ctrl_reg = rd32(E1000_CTRL);
1046 ctrl_reg |= E1000_CTRL_SLU;
1047
1048 if (hw->mac.type == e1000_82575 || hw->mac.type == e1000_82576) {
1049 /* set both sw defined pins */
1050 ctrl_reg |= E1000_CTRL_SWDPIN0 | E1000_CTRL_SWDPIN1;
1051
1052 /* Set switch control to serdes energy detect */
1053 reg = rd32(E1000_CONNSW);
1054 reg |= E1000_CONNSW_ENRGSRC;
1055 wr32(E1000_CONNSW, reg);
Alexander Duyck921aa742009-01-21 14:42:28 -08001056 }
1057
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001058 reg = rd32(E1000_PCS_LCTL);
1059
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001060 /* default pcs_autoneg to the same setting as mac autoneg */
1061 pcs_autoneg = hw->mac.autoneg;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001062
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001063 switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) {
1064 case E1000_CTRL_EXT_LINK_MODE_SGMII:
1065 /* sgmii mode lets the phy handle forcing speed/duplex */
1066 pcs_autoneg = true;
1067 /* autoneg time out should be disabled for SGMII mode */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001068 reg &= ~(E1000_PCS_LCTL_AN_TIMEOUT);
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001069 break;
1070 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
1071 /* disable PCS autoneg and support parallel detect only */
1072 pcs_autoneg = false;
1073 default:
1074 /*
1075 * non-SGMII modes only supports a speed of 1000/Full for the
1076 * link so it is best to just force the MAC and let the pcs
1077 * link either autoneg or be forced to 1000/Full
1078 */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001079 ctrl_reg |= E1000_CTRL_SPD_1000 | E1000_CTRL_FRCSPD |
1080 E1000_CTRL_FD | E1000_CTRL_FRCDPX;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001081
1082 /* set speed of 1000/Full if speed/duplex is forced */
1083 reg |= E1000_PCS_LCTL_FSV_1000 | E1000_PCS_LCTL_FDV_FULL;
1084 break;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001085 }
1086
1087 wr32(E1000_CTRL, ctrl_reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001088
1089 /*
1090 * New SerDes mode allows for forcing speed or autonegotiating speed
1091 * at 1gb. Autoneg should be default set by most drivers. This is the
1092 * mode that will be compatible with older link partners and switches.
1093 * However, both are supported by the hardware and some drivers/tools.
1094 */
Auke Kok9d5c8242008-01-24 02:22:38 -08001095 reg &= ~(E1000_PCS_LCTL_AN_ENABLE | E1000_PCS_LCTL_FLV_LINK_UP |
1096 E1000_PCS_LCTL_FSD | E1000_PCS_LCTL_FORCE_LINK);
1097
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001098 /*
1099 * We force flow control to prevent the CTRL register values from being
1100 * overwritten by the autonegotiated flow control values
1101 */
1102 reg |= E1000_PCS_LCTL_FORCE_FCTRL;
1103
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001104 if (pcs_autoneg) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001105 /* Set PCS register for autoneg */
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001106 reg |= E1000_PCS_LCTL_AN_ENABLE | /* Enable Autoneg */
Alexander Duyck70d92f82009-10-05 06:31:47 +00001107 E1000_PCS_LCTL_AN_RESTART; /* Restart autoneg */
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001108 hw_dbg("Configuring Autoneg:PCS_LCTL=0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001109 } else {
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001110 /* Set PCS register for forced link */
Alexander Duyckd68caec2009-12-23 13:20:47 +00001111 reg |= E1000_PCS_LCTL_FSD; /* Force Speed */
Alexander Duyck70d92f82009-10-05 06:31:47 +00001112
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001113 hw_dbg("Configuring Forced Link:PCS_LCTL=0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001114 }
Alexander Duyck726c09e2008-08-04 14:59:56 -07001115
Auke Kok9d5c8242008-01-24 02:22:38 -08001116 wr32(E1000_PCS_LCTL, reg);
1117
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001118 if (!igb_sgmii_active_82575(hw))
1119 igb_force_mac_fc(hw);
1120
Auke Kok9d5c8242008-01-24 02:22:38 -08001121 return 0;
1122}
1123
1124/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001125 * igb_sgmii_active_82575 - Return sgmii state
Auke Kok9d5c8242008-01-24 02:22:38 -08001126 * @hw: pointer to the HW structure
1127 *
1128 * 82575 silicon has a serialized gigabit media independent interface (sgmii)
1129 * which can be enabled for use in the embedded applications. Simply
1130 * return the current state of the sgmii interface.
1131 **/
1132static bool igb_sgmii_active_82575(struct e1000_hw *hw)
1133{
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001134 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001135 return dev_spec->sgmii_active;
Auke Kok9d5c8242008-01-24 02:22:38 -08001136}
1137
1138/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001139 * igb_reset_init_script_82575 - Inits HW defaults after reset
Auke Kok9d5c8242008-01-24 02:22:38 -08001140 * @hw: pointer to the HW structure
1141 *
1142 * Inits recommended HW defaults after a reset when there is no EEPROM
1143 * detected. This is only for the 82575.
1144 **/
1145static s32 igb_reset_init_script_82575(struct e1000_hw *hw)
1146{
1147 if (hw->mac.type == e1000_82575) {
Auke Kok652fff32008-06-27 11:00:18 -07001148 hw_dbg("Running reset init script for 82575\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001149 /* SerDes configuration via SERDESCTRL */
1150 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x00, 0x0C);
1151 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x01, 0x78);
1152 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x1B, 0x23);
1153 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x23, 0x15);
1154
1155 /* CCM configuration via CCMCTL register */
1156 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x14, 0x00);
1157 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x10, 0x00);
1158
1159 /* PCIe lanes configuration */
1160 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x00, 0xEC);
1161 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x61, 0xDF);
1162 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x34, 0x05);
1163 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x2F, 0x81);
1164
1165 /* PCIe PLL Configuration */
1166 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x02, 0x47);
1167 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x14, 0x00);
1168 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x10, 0x00);
1169 }
1170
1171 return 0;
1172}
1173
1174/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001175 * igb_read_mac_addr_82575 - Read device MAC address
Auke Kok9d5c8242008-01-24 02:22:38 -08001176 * @hw: pointer to the HW structure
1177 **/
1178static s32 igb_read_mac_addr_82575(struct e1000_hw *hw)
1179{
1180 s32 ret_val = 0;
1181
Alexander Duyck22896632009-10-05 06:34:25 +00001182 /*
1183 * If there's an alternate MAC address place it in RAR0
1184 * so that it will override the Si installed default perm
1185 * address.
1186 */
1187 ret_val = igb_check_alt_mac_addr(hw);
1188 if (ret_val)
1189 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -08001190
Alexander Duyck22896632009-10-05 06:34:25 +00001191 ret_val = igb_read_mac_addr(hw);
1192
1193out:
Auke Kok9d5c8242008-01-24 02:22:38 -08001194 return ret_val;
1195}
1196
1197/**
Nick Nunley88a268c2010-02-17 01:01:59 +00001198 * igb_power_down_phy_copper_82575 - Remove link during PHY power down
1199 * @hw: pointer to the HW structure
1200 *
1201 * In the case of a PHY power down to save power, or to turn off link during a
1202 * driver unload, or wake on lan is not enabled, remove the link.
1203 **/
1204void igb_power_down_phy_copper_82575(struct e1000_hw *hw)
1205{
1206 /* If the management interface is not enabled, then power down */
1207 if (!(igb_enable_mng_pass_thru(hw) || igb_check_reset_block(hw)))
1208 igb_power_down_phy_copper(hw);
1209
1210 return;
1211}
1212
1213/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001214 * igb_clear_hw_cntrs_82575 - Clear device specific hardware counters
Auke Kok9d5c8242008-01-24 02:22:38 -08001215 * @hw: pointer to the HW structure
1216 *
1217 * Clears the hardware counters by reading the counter registers.
1218 **/
1219static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw)
1220{
Auke Kok9d5c8242008-01-24 02:22:38 -08001221 igb_clear_hw_cntrs_base(hw);
1222
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001223 rd32(E1000_PRC64);
1224 rd32(E1000_PRC127);
1225 rd32(E1000_PRC255);
1226 rd32(E1000_PRC511);
1227 rd32(E1000_PRC1023);
1228 rd32(E1000_PRC1522);
1229 rd32(E1000_PTC64);
1230 rd32(E1000_PTC127);
1231 rd32(E1000_PTC255);
1232 rd32(E1000_PTC511);
1233 rd32(E1000_PTC1023);
1234 rd32(E1000_PTC1522);
Auke Kok9d5c8242008-01-24 02:22:38 -08001235
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001236 rd32(E1000_ALGNERRC);
1237 rd32(E1000_RXERRC);
1238 rd32(E1000_TNCRS);
1239 rd32(E1000_CEXTERR);
1240 rd32(E1000_TSCTC);
1241 rd32(E1000_TSCTFC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001242
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001243 rd32(E1000_MGTPRC);
1244 rd32(E1000_MGTPDC);
1245 rd32(E1000_MGTPTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001246
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001247 rd32(E1000_IAC);
1248 rd32(E1000_ICRXOC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001249
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001250 rd32(E1000_ICRXPTC);
1251 rd32(E1000_ICRXATC);
1252 rd32(E1000_ICTXPTC);
1253 rd32(E1000_ICTXATC);
1254 rd32(E1000_ICTXQEC);
1255 rd32(E1000_ICTXQMTC);
1256 rd32(E1000_ICRXDMTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001257
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001258 rd32(E1000_CBTMPC);
1259 rd32(E1000_HTDPMC);
1260 rd32(E1000_CBRMPC);
1261 rd32(E1000_RPTHC);
1262 rd32(E1000_HGPTC);
1263 rd32(E1000_HTCBDPC);
1264 rd32(E1000_HGORCL);
1265 rd32(E1000_HGORCH);
1266 rd32(E1000_HGOTCL);
1267 rd32(E1000_HGOTCH);
1268 rd32(E1000_LENERRS);
Auke Kok9d5c8242008-01-24 02:22:38 -08001269
1270 /* This register should not be read in copper configurations */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001271 if (hw->phy.media_type == e1000_media_type_internal_serdes ||
1272 igb_sgmii_active_82575(hw))
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001273 rd32(E1000_SCVPC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001274}
1275
Alexander Duyck662d7202008-06-27 11:00:29 -07001276/**
1277 * igb_rx_fifo_flush_82575 - Clean rx fifo after RX enable
1278 * @hw: pointer to the HW structure
1279 *
1280 * After rx enable if managability is enabled then there is likely some
1281 * bad data at the start of the fifo and possibly in the DMA fifo. This
1282 * function clears the fifos and flushes any packets that came in as rx was
1283 * being enabled.
1284 **/
1285void igb_rx_fifo_flush_82575(struct e1000_hw *hw)
1286{
1287 u32 rctl, rlpml, rxdctl[4], rfctl, temp_rctl, rx_enabled;
1288 int i, ms_wait;
1289
1290 if (hw->mac.type != e1000_82575 ||
1291 !(rd32(E1000_MANC) & E1000_MANC_RCV_TCO_EN))
1292 return;
1293
1294 /* Disable all RX queues */
1295 for (i = 0; i < 4; i++) {
1296 rxdctl[i] = rd32(E1000_RXDCTL(i));
1297 wr32(E1000_RXDCTL(i),
1298 rxdctl[i] & ~E1000_RXDCTL_QUEUE_ENABLE);
1299 }
1300 /* Poll all queues to verify they have shut down */
1301 for (ms_wait = 0; ms_wait < 10; ms_wait++) {
1302 msleep(1);
1303 rx_enabled = 0;
1304 for (i = 0; i < 4; i++)
1305 rx_enabled |= rd32(E1000_RXDCTL(i));
1306 if (!(rx_enabled & E1000_RXDCTL_QUEUE_ENABLE))
1307 break;
1308 }
1309
1310 if (ms_wait == 10)
1311 hw_dbg("Queue disable timed out after 10ms\n");
1312
1313 /* Clear RLPML, RCTL.SBP, RFCTL.LEF, and set RCTL.LPE so that all
1314 * incoming packets are rejected. Set enable and wait 2ms so that
1315 * any packet that was coming in as RCTL.EN was set is flushed
1316 */
1317 rfctl = rd32(E1000_RFCTL);
1318 wr32(E1000_RFCTL, rfctl & ~E1000_RFCTL_LEF);
1319
1320 rlpml = rd32(E1000_RLPML);
1321 wr32(E1000_RLPML, 0);
1322
1323 rctl = rd32(E1000_RCTL);
1324 temp_rctl = rctl & ~(E1000_RCTL_EN | E1000_RCTL_SBP);
1325 temp_rctl |= E1000_RCTL_LPE;
1326
1327 wr32(E1000_RCTL, temp_rctl);
1328 wr32(E1000_RCTL, temp_rctl | E1000_RCTL_EN);
1329 wrfl();
1330 msleep(2);
1331
1332 /* Enable RX queues that were previously enabled and restore our
1333 * previous state
1334 */
1335 for (i = 0; i < 4; i++)
1336 wr32(E1000_RXDCTL(i), rxdctl[i]);
1337 wr32(E1000_RCTL, rctl);
1338 wrfl();
1339
1340 wr32(E1000_RLPML, rlpml);
1341 wr32(E1000_RFCTL, rfctl);
1342
1343 /* Flush receive errors generated by workaround */
1344 rd32(E1000_ROC);
1345 rd32(E1000_RNBC);
1346 rd32(E1000_MPC);
1347}
1348
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001349/**
Alexander Duyck009bc062009-07-23 18:08:35 +00001350 * igb_set_pcie_completion_timeout - set pci-e completion timeout
1351 * @hw: pointer to the HW structure
1352 *
1353 * The defaults for 82575 and 82576 should be in the range of 50us to 50ms,
1354 * however the hardware default for these parts is 500us to 1ms which is less
1355 * than the 10ms recommended by the pci-e spec. To address this we need to
1356 * increase the value to either 10ms to 200ms for capability version 1 config,
1357 * or 16ms to 55ms for version 2.
1358 **/
1359static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw)
1360{
1361 u32 gcr = rd32(E1000_GCR);
1362 s32 ret_val = 0;
1363 u16 pcie_devctl2;
1364
1365 /* only take action if timeout value is defaulted to 0 */
1366 if (gcr & E1000_GCR_CMPL_TMOUT_MASK)
1367 goto out;
1368
1369 /*
1370 * if capababilities version is type 1 we can write the
1371 * timeout of 10ms to 200ms through the GCR register
1372 */
1373 if (!(gcr & E1000_GCR_CAP_VER2)) {
1374 gcr |= E1000_GCR_CMPL_TMOUT_10ms;
1375 goto out;
1376 }
1377
1378 /*
1379 * for version 2 capabilities we need to write the config space
1380 * directly in order to set the completion timeout value for
1381 * 16ms to 55ms
1382 */
1383 ret_val = igb_read_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1384 &pcie_devctl2);
1385 if (ret_val)
1386 goto out;
1387
1388 pcie_devctl2 |= PCIE_DEVICE_CONTROL2_16ms;
1389
1390 ret_val = igb_write_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1391 &pcie_devctl2);
1392out:
1393 /* disable completion timeout resend */
1394 gcr &= ~E1000_GCR_CMPL_TMOUT_RESEND;
1395
1396 wr32(E1000_GCR, gcr);
1397 return ret_val;
1398}
1399
1400/**
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001401 * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback
1402 * @hw: pointer to the hardware struct
1403 * @enable: state to enter, either enabled or disabled
1404 *
1405 * enables/disables L2 switch loopback functionality.
1406 **/
1407void igb_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable)
1408{
1409 u32 dtxswc = rd32(E1000_DTXSWC);
1410
1411 if (enable)
1412 dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1413 else
1414 dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1415
1416 wr32(E1000_DTXSWC, dtxswc);
1417}
1418
1419/**
1420 * igb_vmdq_set_replication_pf - enable or disable vmdq replication
1421 * @hw: pointer to the hardware struct
1422 * @enable: state to enter, either enabled or disabled
1423 *
1424 * enables/disables replication of packets across multiple pools.
1425 **/
1426void igb_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable)
1427{
1428 u32 vt_ctl = rd32(E1000_VT_CTL);
1429
1430 if (enable)
1431 vt_ctl |= E1000_VT_CTL_VM_REPL_EN;
1432 else
1433 vt_ctl &= ~E1000_VT_CTL_VM_REPL_EN;
1434
1435 wr32(E1000_VT_CTL, vt_ctl);
1436}
1437
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001438/**
1439 * igb_read_phy_reg_82580 - Read 82580 MDI control register
1440 * @hw: pointer to the HW structure
1441 * @offset: register offset to be read
1442 * @data: pointer to the read data
1443 *
1444 * Reads the MDI control register in the PHY at offset and stores the
1445 * information read to data.
1446 **/
1447static s32 igb_read_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 *data)
1448{
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001449 s32 ret_val;
1450
1451
1452 ret_val = hw->phy.ops.acquire(hw);
1453 if (ret_val)
1454 goto out;
1455
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001456 ret_val = igb_read_phy_reg_mdic(hw, offset, data);
1457
1458 hw->phy.ops.release(hw);
1459
1460out:
1461 return ret_val;
1462}
1463
1464/**
1465 * igb_write_phy_reg_82580 - Write 82580 MDI control register
1466 * @hw: pointer to the HW structure
1467 * @offset: register offset to write to
1468 * @data: data to write to register at offset
1469 *
1470 * Writes data to MDI control register in the PHY at offset.
1471 **/
1472static s32 igb_write_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 data)
1473{
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001474 s32 ret_val;
1475
1476
1477 ret_val = hw->phy.ops.acquire(hw);
1478 if (ret_val)
1479 goto out;
1480
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001481 ret_val = igb_write_phy_reg_mdic(hw, offset, data);
1482
1483 hw->phy.ops.release(hw);
1484
1485out:
1486 return ret_val;
1487}
1488
1489/**
1490 * igb_reset_hw_82580 - Reset hardware
1491 * @hw: pointer to the HW structure
1492 *
1493 * This resets function or entire device (all ports, etc.)
1494 * to a known state.
1495 **/
1496static s32 igb_reset_hw_82580(struct e1000_hw *hw)
1497{
1498 s32 ret_val = 0;
1499 /* BH SW mailbox bit in SW_FW_SYNC */
1500 u16 swmbsw_mask = E1000_SW_SYNCH_MB;
1501 u32 ctrl, icr;
1502 bool global_device_reset = hw->dev_spec._82575.global_device_reset;
1503
1504
1505 hw->dev_spec._82575.global_device_reset = false;
1506
1507 /* Get current control state. */
1508 ctrl = rd32(E1000_CTRL);
1509
1510 /*
1511 * Prevent the PCI-E bus from sticking if there is no TLP connection
1512 * on the last TLP read/write transaction when MAC is reset.
1513 */
1514 ret_val = igb_disable_pcie_master(hw);
1515 if (ret_val)
1516 hw_dbg("PCI-E Master disable polling has failed.\n");
1517
1518 hw_dbg("Masking off all interrupts\n");
1519 wr32(E1000_IMC, 0xffffffff);
1520 wr32(E1000_RCTL, 0);
1521 wr32(E1000_TCTL, E1000_TCTL_PSP);
1522 wrfl();
1523
1524 msleep(10);
1525
1526 /* Determine whether or not a global dev reset is requested */
1527 if (global_device_reset &&
1528 igb_acquire_swfw_sync_82575(hw, swmbsw_mask))
1529 global_device_reset = false;
1530
1531 if (global_device_reset &&
1532 !(rd32(E1000_STATUS) & E1000_STAT_DEV_RST_SET))
1533 ctrl |= E1000_CTRL_DEV_RST;
1534 else
1535 ctrl |= E1000_CTRL_RST;
1536
1537 wr32(E1000_CTRL, ctrl);
1538
1539 /* Add delay to insure DEV_RST has time to complete */
1540 if (global_device_reset)
1541 msleep(5);
1542
1543 ret_val = igb_get_auto_rd_done(hw);
1544 if (ret_val) {
1545 /*
1546 * When auto config read does not complete, do not
1547 * return with an error. This can happen in situations
1548 * where there is no eeprom and prevents getting link.
1549 */
1550 hw_dbg("Auto Read Done did not complete\n");
1551 }
1552
1553 /* If EEPROM is not present, run manual init scripts */
1554 if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0)
1555 igb_reset_init_script_82575(hw);
1556
1557 /* clear global device reset status bit */
1558 wr32(E1000_STATUS, E1000_STAT_DEV_RST_SET);
1559
1560 /* Clear any pending interrupt events. */
1561 wr32(E1000_IMC, 0xffffffff);
1562 icr = rd32(E1000_ICR);
1563
1564 /* Install any alternate MAC address into RAR0 */
1565 ret_val = igb_check_alt_mac_addr(hw);
1566
1567 /* Release semaphore */
1568 if (global_device_reset)
1569 igb_release_swfw_sync_82575(hw, swmbsw_mask);
1570
1571 return ret_val;
1572}
1573
1574/**
1575 * igb_rxpbs_adjust_82580 - adjust RXPBS value to reflect actual RX PBA size
1576 * @data: data received by reading RXPBS register
1577 *
1578 * The 82580 uses a table based approach for packet buffer allocation sizes.
1579 * This function converts the retrieved value into the correct table value
1580 * 0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7
1581 * 0x0 36 72 144 1 2 4 8 16
1582 * 0x8 35 70 140 rsv rsv rsv rsv rsv
1583 */
1584u16 igb_rxpbs_adjust_82580(u32 data)
1585{
1586 u16 ret_val = 0;
1587
1588 if (data < E1000_82580_RXPBS_TABLE_SIZE)
1589 ret_val = e1000_82580_rxpbs_table[data];
1590
1591 return ret_val;
1592}
1593
Auke Kok9d5c8242008-01-24 02:22:38 -08001594static struct e1000_mac_operations e1000_mac_ops_82575 = {
Auke Kok9d5c8242008-01-24 02:22:38 -08001595 .init_hw = igb_init_hw_82575,
1596 .check_for_link = igb_check_for_link_82575,
Alexander Duyck2d064c02008-07-08 15:10:12 -07001597 .rar_set = igb_rar_set,
Auke Kok9d5c8242008-01-24 02:22:38 -08001598 .read_mac_addr = igb_read_mac_addr_82575,
1599 .get_speed_and_duplex = igb_get_speed_and_duplex_copper,
1600};
1601
1602static struct e1000_phy_operations e1000_phy_ops_82575 = {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00001603 .acquire = igb_acquire_phy_82575,
Auke Kok9d5c8242008-01-24 02:22:38 -08001604 .get_cfg_done = igb_get_cfg_done_82575,
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00001605 .release = igb_release_phy_82575,
Auke Kok9d5c8242008-01-24 02:22:38 -08001606};
1607
1608static struct e1000_nvm_operations e1000_nvm_ops_82575 = {
Alexander Duyck312c75a2009-02-06 23:17:47 +00001609 .acquire = igb_acquire_nvm_82575,
1610 .read = igb_read_nvm_eerd,
1611 .release = igb_release_nvm_82575,
1612 .write = igb_write_nvm_spi,
Auke Kok9d5c8242008-01-24 02:22:38 -08001613};
1614
1615const struct e1000_info e1000_82575_info = {
1616 .get_invariants = igb_get_invariants_82575,
1617 .mac_ops = &e1000_mac_ops_82575,
1618 .phy_ops = &e1000_phy_ops_82575,
1619 .nvm_ops = &e1000_nvm_ops_82575,
1620};
1621