blob: 8d79face07173a9cee599335340d53de04ac7955 [file] [log] [blame]
Auke Kok9d5c8242008-01-24 02:22:38 -08001/*******************************************************************************
2
3 Intel(R) Gigabit Ethernet Linux driver
Akeem G. Abodunrin4b9ea462013-01-08 18:31:12 +00004 Copyright(c) 2007-2013 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
Joe Perches82bbcde2011-10-21 20:04:09 +000032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
Auke Kok9d5c8242008-01-24 02:22:38 -080034#include <linux/types.h>
Alexander Duyck2d064c02008-07-08 15:10:12 -070035#include <linux/if_ether.h>
Carolyn Wyborny441fc6f2012-12-07 03:00:30 +000036#include <linux/i2c.h>
Auke Kok9d5c8242008-01-24 02:22:38 -080037
38#include "e1000_mac.h"
39#include "e1000_82575.h"
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +000040#include "e1000_i210.h"
Auke Kok9d5c8242008-01-24 02:22:38 -080041
42static s32 igb_get_invariants_82575(struct e1000_hw *);
43static s32 igb_acquire_phy_82575(struct e1000_hw *);
44static void igb_release_phy_82575(struct e1000_hw *);
45static s32 igb_acquire_nvm_82575(struct e1000_hw *);
46static void igb_release_nvm_82575(struct e1000_hw *);
47static s32 igb_check_for_link_82575(struct e1000_hw *);
48static s32 igb_get_cfg_done_82575(struct e1000_hw *);
49static s32 igb_init_hw_82575(struct e1000_hw *);
50static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *);
51static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16 *);
Alexander Duyckbb2ac472009-11-19 12:42:01 +000052static s32 igb_read_phy_reg_82580(struct e1000_hw *, u32, u16 *);
53static s32 igb_write_phy_reg_82580(struct e1000_hw *, u32, u16);
Auke Kok9d5c8242008-01-24 02:22:38 -080054static s32 igb_reset_hw_82575(struct e1000_hw *);
Alexander Duyckbb2ac472009-11-19 12:42:01 +000055static s32 igb_reset_hw_82580(struct e1000_hw *);
Auke Kok9d5c8242008-01-24 02:22:38 -080056static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *, bool);
Carolyn Wybornyda02cde2012-03-04 03:26:26 +000057static s32 igb_set_d0_lplu_state_82580(struct e1000_hw *, bool);
58static s32 igb_set_d3_lplu_state_82580(struct e1000_hw *, bool);
Auke Kok9d5c8242008-01-24 02:22:38 -080059static s32 igb_setup_copper_link_82575(struct e1000_hw *);
Alexander Duyck2fb02a22009-09-14 08:22:54 +000060static s32 igb_setup_serdes_link_82575(struct e1000_hw *);
Auke Kok9d5c8242008-01-24 02:22:38 -080061static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16);
62static void igb_clear_hw_cntrs_82575(struct e1000_hw *);
63static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *, u16);
Auke Kok9d5c8242008-01-24 02:22:38 -080064static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *, u16 *,
65 u16 *);
66static s32 igb_get_phy_id_82575(struct e1000_hw *);
67static void igb_release_swfw_sync_82575(struct e1000_hw *, u16);
68static bool igb_sgmii_active_82575(struct e1000_hw *);
69static s32 igb_reset_init_script_82575(struct e1000_hw *);
70static s32 igb_read_mac_addr_82575(struct e1000_hw *);
Alexander Duyck009bc062009-07-23 18:08:35 +000071static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw);
Alexander Duyck99870a72010-08-03 11:50:08 +000072static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw);
Carolyn Wyborny4322e562011-03-11 20:43:18 -080073static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw);
74static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw);
Carolyn Wyborny4322e562011-03-11 20:43:18 -080075static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw);
76static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw);
Alexander Duyckbb2ac472009-11-19 12:42:01 +000077static const u16 e1000_82580_rxpbs_table[] =
78 { 36, 72, 144, 1, 2, 4, 8, 16,
79 35, 70, 140 };
80#define E1000_82580_RXPBS_TABLE_SIZE \
81 (sizeof(e1000_82580_rxpbs_table)/sizeof(u16))
82
Nick Nunley4085f742010-07-26 13:15:06 +000083/**
84 * igb_sgmii_uses_mdio_82575 - Determine if I2C pins are for external MDIO
85 * @hw: pointer to the HW structure
86 *
87 * Called to determine if the I2C pins are being used for I2C or as an
88 * external MDIO interface since the two options are mutually exclusive.
89 **/
90static bool igb_sgmii_uses_mdio_82575(struct e1000_hw *hw)
91{
92 u32 reg = 0;
93 bool ext_mdio = false;
94
95 switch (hw->mac.type) {
96 case e1000_82575:
97 case e1000_82576:
98 reg = rd32(E1000_MDIC);
99 ext_mdio = !!(reg & E1000_MDIC_DEST);
100 break;
101 case e1000_82580:
102 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000103 case e1000_i354:
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000104 case e1000_i210:
105 case e1000_i211:
Nick Nunley4085f742010-07-26 13:15:06 +0000106 reg = rd32(E1000_MDICNFG);
107 ext_mdio = !!(reg & E1000_MDICNFG_EXT_MDIO);
108 break;
109 default:
110 break;
111 }
112 return ext_mdio;
113}
114
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000115/**
116 * igb_init_phy_params_82575 - Init PHY func ptrs.
117 * @hw: pointer to the HW structure
118 **/
119static s32 igb_init_phy_params_82575(struct e1000_hw *hw)
120{
121 struct e1000_phy_info *phy = &hw->phy;
122 s32 ret_val = 0;
123 u32 ctrl_ext;
124
125 if (hw->phy.media_type != e1000_media_type_copper) {
126 phy->type = e1000_phy_none;
127 goto out;
128 }
129
130 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
131 phy->reset_delay_us = 100;
132
133 ctrl_ext = rd32(E1000_CTRL_EXT);
134
135 if (igb_sgmii_active_82575(hw)) {
136 phy->ops.reset = igb_phy_hw_reset_sgmii_82575;
137 ctrl_ext |= E1000_CTRL_I2C_ENA;
138 } else {
139 phy->ops.reset = igb_phy_hw_reset;
140 ctrl_ext &= ~E1000_CTRL_I2C_ENA;
141 }
142
143 wr32(E1000_CTRL_EXT, ctrl_ext);
144 igb_reset_mdicnfg_82580(hw);
145
146 if (igb_sgmii_active_82575(hw) && !igb_sgmii_uses_mdio_82575(hw)) {
147 phy->ops.read_reg = igb_read_phy_reg_sgmii_82575;
148 phy->ops.write_reg = igb_write_phy_reg_sgmii_82575;
149 } else {
150 switch (hw->mac.type) {
151 case e1000_82580:
152 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000153 case e1000_i354:
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000154 phy->ops.read_reg = igb_read_phy_reg_82580;
155 phy->ops.write_reg = igb_write_phy_reg_82580;
156 break;
157 case e1000_i210:
158 case e1000_i211:
159 phy->ops.read_reg = igb_read_phy_reg_gs40g;
160 phy->ops.write_reg = igb_write_phy_reg_gs40g;
161 break;
162 default:
163 phy->ops.read_reg = igb_read_phy_reg_igp;
164 phy->ops.write_reg = igb_write_phy_reg_igp;
165 }
166 }
167
168 /* set lan id */
169 hw->bus.func = (rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) >>
170 E1000_STATUS_FUNC_SHIFT;
171
172 /* Set phy->phy_addr and phy->id. */
173 ret_val = igb_get_phy_id_82575(hw);
174 if (ret_val)
175 return ret_val;
176
177 /* Verify phy id and set remaining function pointers */
178 switch (phy->id) {
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000179 case M88E1545_E_PHY_ID:
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000180 case I347AT4_E_PHY_ID:
181 case M88E1112_E_PHY_ID:
182 case M88E1111_I_PHY_ID:
183 phy->type = e1000_phy_m88;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000184 phy->ops.check_polarity = igb_check_polarity_m88;
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000185 phy->ops.get_phy_info = igb_get_phy_info_m88;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000186 if (phy->id != M88E1111_I_PHY_ID)
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000187 phy->ops.get_cable_length =
188 igb_get_cable_length_m88_gen2;
189 else
190 phy->ops.get_cable_length = igb_get_cable_length_m88;
191 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
192 break;
193 case IGP03E1000_E_PHY_ID:
194 phy->type = e1000_phy_igp_3;
195 phy->ops.get_phy_info = igb_get_phy_info_igp;
196 phy->ops.get_cable_length = igb_get_cable_length_igp_2;
197 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_igp;
198 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82575;
199 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state;
200 break;
201 case I82580_I_PHY_ID:
202 case I350_I_PHY_ID:
203 phy->type = e1000_phy_82580;
204 phy->ops.force_speed_duplex =
205 igb_phy_force_speed_duplex_82580;
206 phy->ops.get_cable_length = igb_get_cable_length_82580;
207 phy->ops.get_phy_info = igb_get_phy_info_82580;
208 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82580;
209 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state_82580;
210 break;
211 case I210_I_PHY_ID:
212 phy->type = e1000_phy_i210;
213 phy->ops.check_polarity = igb_check_polarity_m88;
214 phy->ops.get_phy_info = igb_get_phy_info_m88;
215 phy->ops.get_cable_length = igb_get_cable_length_m88_gen2;
216 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82580;
217 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state_82580;
218 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
219 break;
220 default:
221 ret_val = -E1000_ERR_PHY;
222 goto out;
223 }
224
225out:
226 return ret_val;
227}
228
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000229/**
230 * igb_init_nvm_params_82575 - Init NVM func ptrs.
231 * @hw: pointer to the HW structure
232 **/
Akeem G. Abodunrinc8268922013-02-16 07:09:06 +0000233static s32 igb_init_nvm_params_82575(struct e1000_hw *hw)
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000234{
235 struct e1000_nvm_info *nvm = &hw->nvm;
236 u32 eecd = rd32(E1000_EECD);
237 u16 size;
238
239 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
240 E1000_EECD_SIZE_EX_SHIFT);
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000241
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000242 /* Added to a constant, "size" becomes the left-shift value
243 * for setting word_size.
244 */
245 size += NVM_WORD_SIZE_BASE_SHIFT;
246
247 /* Just in case size is out of range, cap it to the largest
248 * EEPROM size supported
249 */
250 if (size > 15)
251 size = 15;
252
253 nvm->word_size = 1 << size;
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000254 nvm->opcode_bits = 8;
255 nvm->delay_usec = 1;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000256
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000257 switch (nvm->override) {
258 case e1000_nvm_override_spi_large:
259 nvm->page_size = 32;
260 nvm->address_bits = 16;
261 break;
262 case e1000_nvm_override_spi_small:
263 nvm->page_size = 8;
264 nvm->address_bits = 8;
265 break;
266 default:
267 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
268 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ?
269 16 : 8;
270 break;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000271 }
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000272 if (nvm->word_size == (1 << 15))
273 nvm->page_size = 128;
274
275 nvm->type = e1000_nvm_eeprom_spi;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000276
277 /* NVM Function Pointers */
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000278 nvm->ops.acquire = igb_acquire_nvm_82575;
279 nvm->ops.release = igb_release_nvm_82575;
280 nvm->ops.write = igb_write_nvm_spi;
281 nvm->ops.validate = igb_validate_nvm_checksum;
282 nvm->ops.update = igb_update_nvm_checksum;
283 if (nvm->word_size < (1 << 15))
284 nvm->ops.read = igb_read_nvm_eerd;
285 else
286 nvm->ops.read = igb_read_nvm_spi;
287
288 /* override generic family function pointers for specific descendants */
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000289 switch (hw->mac.type) {
290 case e1000_82580:
291 nvm->ops.validate = igb_validate_nvm_checksum_82580;
292 nvm->ops.update = igb_update_nvm_checksum_82580;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000293 break;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000294 case e1000_i354:
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000295 case e1000_i350:
296 nvm->ops.validate = igb_validate_nvm_checksum_i350;
297 nvm->ops.update = igb_update_nvm_checksum_i350;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000298 break;
299 default:
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000300 break;
301 }
302
303 return 0;
304}
305
Akeem G. Abodunrina1bf1f42013-01-29 10:15:05 +0000306/**
307 * igb_init_mac_params_82575 - Init MAC func ptrs.
308 * @hw: pointer to the HW structure
309 **/
310static s32 igb_init_mac_params_82575(struct e1000_hw *hw)
311{
312 struct e1000_mac_info *mac = &hw->mac;
313 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
314
315 /* Set mta register count */
316 mac->mta_reg_count = 128;
317 /* Set rar entry count */
318 switch (mac->type) {
319 case e1000_82576:
320 mac->rar_entry_count = E1000_RAR_ENTRIES_82576;
321 break;
322 case e1000_82580:
323 mac->rar_entry_count = E1000_RAR_ENTRIES_82580;
324 break;
325 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000326 case e1000_i354:
Akeem G. Abodunrina1bf1f42013-01-29 10:15:05 +0000327 mac->rar_entry_count = E1000_RAR_ENTRIES_I350;
328 break;
329 default:
330 mac->rar_entry_count = E1000_RAR_ENTRIES_82575;
331 break;
332 }
333 /* reset */
334 if (mac->type >= e1000_82580)
335 mac->ops.reset_hw = igb_reset_hw_82580;
336 else
337 mac->ops.reset_hw = igb_reset_hw_82575;
338
339 if (mac->type >= e1000_i210) {
340 mac->ops.acquire_swfw_sync = igb_acquire_swfw_sync_i210;
341 mac->ops.release_swfw_sync = igb_release_swfw_sync_i210;
342
343 } else {
344 mac->ops.acquire_swfw_sync = igb_acquire_swfw_sync_82575;
345 mac->ops.release_swfw_sync = igb_release_swfw_sync_82575;
346 }
347
348 /* Set if part includes ASF firmware */
349 mac->asf_firmware_present = true;
350 /* Set if manageability features are enabled. */
351 mac->arc_subsystem_valid =
352 (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK)
353 ? true : false;
354 /* enable EEE on i350 parts and later parts */
355 if (mac->type >= e1000_i350)
356 dev_spec->eee_disable = false;
357 else
358 dev_spec->eee_disable = true;
Matthew Vickd44e7a92013-03-22 07:34:20 +0000359 /* Allow a single clear of the SW semaphore on I210 and newer */
360 if (mac->type >= e1000_i210)
361 dev_spec->clear_semaphore_once = true;
Akeem G. Abodunrina1bf1f42013-01-29 10:15:05 +0000362 /* physical interface link setup */
363 mac->ops.setup_physical_interface =
364 (hw->phy.media_type == e1000_media_type_copper)
365 ? igb_setup_copper_link_82575
366 : igb_setup_serdes_link_82575;
367
368 return 0;
369}
370
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000371/**
372 * igb_set_sfp_media_type_82575 - derives SFP module media type.
373 * @hw: pointer to the HW structure
374 *
375 * The media type is chosen based on SFP module.
376 * compatibility flags retrieved from SFP ID EEPROM.
377 **/
378static s32 igb_set_sfp_media_type_82575(struct e1000_hw *hw)
379{
380 s32 ret_val = E1000_ERR_CONFIG;
381 u32 ctrl_ext = 0;
382 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
383 struct e1000_sfp_flags *eth_flags = &dev_spec->eth_flags;
384 u8 tranceiver_type = 0;
385 s32 timeout = 3;
386
387 /* Turn I2C interface ON and power on sfp cage */
388 ctrl_ext = rd32(E1000_CTRL_EXT);
389 ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA;
390 wr32(E1000_CTRL_EXT, ctrl_ext | E1000_CTRL_I2C_ENA);
391
392 wrfl();
393
394 /* Read SFP module data */
395 while (timeout) {
396 ret_val = igb_read_sfp_data_byte(hw,
397 E1000_I2CCMD_SFP_DATA_ADDR(E1000_SFF_IDENTIFIER_OFFSET),
398 &tranceiver_type);
399 if (ret_val == 0)
400 break;
401 msleep(100);
402 timeout--;
403 }
404 if (ret_val != 0)
405 goto out;
406
407 ret_val = igb_read_sfp_data_byte(hw,
408 E1000_I2CCMD_SFP_DATA_ADDR(E1000_SFF_ETH_FLAGS_OFFSET),
409 (u8 *)eth_flags);
410 if (ret_val != 0)
411 goto out;
412
413 /* Check if there is some SFP module plugged and powered */
414 if ((tranceiver_type == E1000_SFF_IDENTIFIER_SFP) ||
415 (tranceiver_type == E1000_SFF_IDENTIFIER_SFF)) {
416 dev_spec->module_plugged = true;
417 if (eth_flags->e1000_base_lx || eth_flags->e1000_base_sx) {
418 hw->phy.media_type = e1000_media_type_internal_serdes;
419 } else if (eth_flags->e100_base_fx) {
420 dev_spec->sgmii_active = true;
421 hw->phy.media_type = e1000_media_type_internal_serdes;
422 } else if (eth_flags->e1000_base_t) {
423 dev_spec->sgmii_active = true;
424 hw->phy.media_type = e1000_media_type_copper;
425 } else {
426 hw->phy.media_type = e1000_media_type_unknown;
427 hw_dbg("PHY module has not been recognized\n");
428 goto out;
429 }
430 } else {
431 hw->phy.media_type = e1000_media_type_unknown;
432 }
433 ret_val = 0;
434out:
435 /* Restore I2C interface setting */
436 wr32(E1000_CTRL_EXT, ctrl_ext);
437 return ret_val;
438}
439
Auke Kok9d5c8242008-01-24 02:22:38 -0800440static s32 igb_get_invariants_82575(struct e1000_hw *hw)
441{
Auke Kok9d5c8242008-01-24 02:22:38 -0800442 struct e1000_mac_info *mac = &hw->mac;
Alexander Duyckc1889bf2009-02-06 23:16:45 +0000443 struct e1000_dev_spec_82575 * dev_spec = &hw->dev_spec._82575;
Auke Kok9d5c8242008-01-24 02:22:38 -0800444 s32 ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800445 u32 ctrl_ext = 0;
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000446 u32 link_mode = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -0800447
448 switch (hw->device_id) {
449 case E1000_DEV_ID_82575EB_COPPER:
450 case E1000_DEV_ID_82575EB_FIBER_SERDES:
451 case E1000_DEV_ID_82575GB_QUAD_COPPER:
452 mac->type = e1000_82575;
453 break;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700454 case E1000_DEV_ID_82576:
Alexander Duyck9eb23412009-03-13 20:42:15 +0000455 case E1000_DEV_ID_82576_NS:
Alexander Duyck747d49b2009-10-05 06:33:27 +0000456 case E1000_DEV_ID_82576_NS_SERDES:
Alexander Duyck2d064c02008-07-08 15:10:12 -0700457 case E1000_DEV_ID_82576_FIBER:
458 case E1000_DEV_ID_82576_SERDES:
Alexander Duyckc8ea5ea2009-03-13 20:42:35 +0000459 case E1000_DEV_ID_82576_QUAD_COPPER:
Carolyn Wybornyb894fa22010-03-19 06:07:48 +0000460 case E1000_DEV_ID_82576_QUAD_COPPER_ET2:
Alexander Duyck4703bf72009-07-23 18:09:48 +0000461 case E1000_DEV_ID_82576_SERDES_QUAD:
Alexander Duyck2d064c02008-07-08 15:10:12 -0700462 mac->type = e1000_82576;
463 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000464 case E1000_DEV_ID_82580_COPPER:
465 case E1000_DEV_ID_82580_FIBER:
Carolyn Wyborny6493d242011-01-14 05:33:46 +0000466 case E1000_DEV_ID_82580_QUAD_FIBER:
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000467 case E1000_DEV_ID_82580_SERDES:
468 case E1000_DEV_ID_82580_SGMII:
469 case E1000_DEV_ID_82580_COPPER_DUAL:
Joseph Gasparakis308fb392010-09-22 17:56:44 +0000470 case E1000_DEV_ID_DH89XXCC_SGMII:
471 case E1000_DEV_ID_DH89XXCC_SERDES:
Gasparakis, Joseph1b5dda32010-12-09 01:41:01 +0000472 case E1000_DEV_ID_DH89XXCC_BACKPLANE:
473 case E1000_DEV_ID_DH89XXCC_SFP:
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000474 mac->type = e1000_82580;
475 break;
Alexander Duyckd2ba2ed2010-03-22 14:08:06 +0000476 case E1000_DEV_ID_I350_COPPER:
477 case E1000_DEV_ID_I350_FIBER:
478 case E1000_DEV_ID_I350_SERDES:
479 case E1000_DEV_ID_I350_SGMII:
480 mac->type = e1000_i350;
481 break;
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000482 case E1000_DEV_ID_I210_COPPER:
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000483 case E1000_DEV_ID_I210_FIBER:
484 case E1000_DEV_ID_I210_SERDES:
485 case E1000_DEV_ID_I210_SGMII:
486 mac->type = e1000_i210;
487 break;
488 case E1000_DEV_ID_I211_COPPER:
489 mac->type = e1000_i211;
490 break;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000491 case E1000_DEV_ID_I354_BACKPLANE_1GBPS:
492 case E1000_DEV_ID_I354_SGMII:
493 case E1000_DEV_ID_I354_BACKPLANE_2_5GBPS:
494 mac->type = e1000_i354;
495 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800496 default:
497 return -E1000_ERR_MAC_INIT;
498 break;
499 }
500
Auke Kok9d5c8242008-01-24 02:22:38 -0800501 /* Set media type */
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000502 /* The 82575 uses bits 22:23 for link mode. The mode can be changed
Auke Kok9d5c8242008-01-24 02:22:38 -0800503 * based on the EEPROM. We cannot rely upon device ID. There
504 * is no distinguishable difference between fiber and internal
505 * SerDes mode on the 82575. There can be an external PHY attached
506 * on the SGMII interface. For this, we'll set sgmii_active to true.
507 */
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000508 hw->phy.media_type = e1000_media_type_copper;
Auke Kok9d5c8242008-01-24 02:22:38 -0800509 dev_spec->sgmii_active = false;
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000510 dev_spec->module_plugged = false;
Auke Kok9d5c8242008-01-24 02:22:38 -0800511
512 ctrl_ext = rd32(E1000_CTRL_EXT);
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000513
514 link_mode = ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK;
515 switch (link_mode) {
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000516 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000517 hw->phy.media_type = e1000_media_type_internal_serdes;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000518 break;
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000519 case E1000_CTRL_EXT_LINK_MODE_SGMII:
520 /* Get phy control interface type set (MDIO vs. I2C)*/
521 if (igb_sgmii_uses_mdio_82575(hw)) {
522 hw->phy.media_type = e1000_media_type_copper;
523 dev_spec->sgmii_active = true;
524 break;
525 }
526 /* fall through for I2C based SGMII */
527 case E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES:
528 /* read media type from SFP EEPROM */
529 ret_val = igb_set_sfp_media_type_82575(hw);
530 if ((ret_val != 0) ||
531 (hw->phy.media_type == e1000_media_type_unknown)) {
532 /* If media type was not identified then return media
533 * type defined by the CTRL_EXT settings.
534 */
535 hw->phy.media_type = e1000_media_type_internal_serdes;
536
537 if (link_mode == E1000_CTRL_EXT_LINK_MODE_SGMII) {
538 hw->phy.media_type = e1000_media_type_copper;
539 dev_spec->sgmii_active = true;
540 }
541
542 break;
543 }
544
545 /* do not change link mode for 100BaseFX */
546 if (dev_spec->eth_flags.e100_base_fx)
547 break;
548
549 /* change current link mode setting */
550 ctrl_ext &= ~E1000_CTRL_EXT_LINK_MODE_MASK;
551
552 if (hw->phy.media_type == e1000_media_type_copper)
553 ctrl_ext |= E1000_CTRL_EXT_LINK_MODE_SGMII;
554 else
555 ctrl_ext |= E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES;
556
557 wr32(E1000_CTRL_EXT, ctrl_ext);
558
559 break;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000560 default:
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000561 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800562 }
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000563
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000564 /* mac initialization and operations */
565 ret_val = igb_init_mac_params_82575(hw);
566 if (ret_val)
567 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800568
569 /* NVM initialization */
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000570 ret_val = igb_init_nvm_params_82575(hw);
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000571 switch (hw->mac.type) {
572 case e1000_i210:
573 case e1000_i211:
574 ret_val = igb_init_nvm_params_i210(hw);
575 break;
576 default:
577 break;
578 }
579
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000580 if (ret_val)
581 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800582
Carolyn Wyborny6b78bb12011-01-20 06:40:45 +0000583 /* if part supports SR-IOV then initialize mailbox parameters */
584 switch (mac->type) {
585 case e1000_82576:
586 case e1000_i350:
Alexander Duycka0c98602009-07-23 18:10:43 +0000587 igb_init_mbx_params_pf(hw);
Carolyn Wyborny6b78bb12011-01-20 06:40:45 +0000588 break;
589 default:
590 break;
591 }
Alexander Duycka0c98602009-07-23 18:10:43 +0000592
Auke Kok9d5c8242008-01-24 02:22:38 -0800593 /* setup PHY parameters */
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000594 ret_val = igb_init_phy_params_82575(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800595
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000596out:
597 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800598}
599
600/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700601 * igb_acquire_phy_82575 - Acquire rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800602 * @hw: pointer to the HW structure
603 *
604 * Acquire access rights to the correct PHY. This is a
605 * function pointer entry point called by the api module.
606 **/
607static s32 igb_acquire_phy_82575(struct e1000_hw *hw)
608{
Alexander Duyck008c3422009-10-05 06:32:07 +0000609 u16 mask = E1000_SWFW_PHY0_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800610
Alexander Duyck008c3422009-10-05 06:32:07 +0000611 if (hw->bus.func == E1000_FUNC_1)
612 mask = E1000_SWFW_PHY1_SM;
Nick Nunleyede3ef02010-07-01 13:37:54 +0000613 else if (hw->bus.func == E1000_FUNC_2)
614 mask = E1000_SWFW_PHY2_SM;
615 else if (hw->bus.func == E1000_FUNC_3)
616 mask = E1000_SWFW_PHY3_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800617
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000618 return hw->mac.ops.acquire_swfw_sync(hw, mask);
Auke Kok9d5c8242008-01-24 02:22:38 -0800619}
620
621/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700622 * igb_release_phy_82575 - Release rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800623 * @hw: pointer to the HW structure
624 *
625 * A wrapper to release access rights to the correct PHY. This is a
626 * function pointer entry point called by the api module.
627 **/
628static void igb_release_phy_82575(struct e1000_hw *hw)
629{
Alexander Duyck008c3422009-10-05 06:32:07 +0000630 u16 mask = E1000_SWFW_PHY0_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800631
Alexander Duyck008c3422009-10-05 06:32:07 +0000632 if (hw->bus.func == E1000_FUNC_1)
633 mask = E1000_SWFW_PHY1_SM;
Nick Nunleyede3ef02010-07-01 13:37:54 +0000634 else if (hw->bus.func == E1000_FUNC_2)
635 mask = E1000_SWFW_PHY2_SM;
636 else if (hw->bus.func == E1000_FUNC_3)
637 mask = E1000_SWFW_PHY3_SM;
Alexander Duyck008c3422009-10-05 06:32:07 +0000638
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000639 hw->mac.ops.release_swfw_sync(hw, mask);
Auke Kok9d5c8242008-01-24 02:22:38 -0800640}
641
642/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700643 * igb_read_phy_reg_sgmii_82575 - Read PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800644 * @hw: pointer to the HW structure
645 * @offset: register offset to be read
646 * @data: pointer to the read data
647 *
648 * Reads the PHY register at offset using the serial gigabit media independent
649 * interface and stores the retrieved information in data.
650 **/
651static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
652 u16 *data)
653{
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000654 s32 ret_val = -E1000_ERR_PARAM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800655
656 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700657 hw_dbg("PHY Address %u is out of range\n", offset);
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000658 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800659 }
660
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000661 ret_val = hw->phy.ops.acquire(hw);
662 if (ret_val)
663 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800664
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000665 ret_val = igb_read_phy_reg_i2c(hw, offset, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800666
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000667 hw->phy.ops.release(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800668
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000669out:
670 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800671}
672
673/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700674 * igb_write_phy_reg_sgmii_82575 - Write PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800675 * @hw: pointer to the HW structure
676 * @offset: register offset to write to
677 * @data: data to write at register offset
678 *
679 * Writes the data to PHY register at the offset using the serial gigabit
680 * media independent interface.
681 **/
682static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
683 u16 data)
684{
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000685 s32 ret_val = -E1000_ERR_PARAM;
686
Auke Kok9d5c8242008-01-24 02:22:38 -0800687
688 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700689 hw_dbg("PHY Address %d is out of range\n", offset);
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000690 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800691 }
692
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000693 ret_val = hw->phy.ops.acquire(hw);
694 if (ret_val)
695 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800696
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000697 ret_val = igb_write_phy_reg_i2c(hw, offset, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800698
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000699 hw->phy.ops.release(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800700
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000701out:
702 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800703}
704
705/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700706 * igb_get_phy_id_82575 - Retrieve PHY addr and id
Auke Kok9d5c8242008-01-24 02:22:38 -0800707 * @hw: pointer to the HW structure
708 *
Auke Kok652fff32008-06-27 11:00:18 -0700709 * Retrieves the PHY address and ID for both PHY's which do and do not use
Auke Kok9d5c8242008-01-24 02:22:38 -0800710 * sgmi interface.
711 **/
712static s32 igb_get_phy_id_82575(struct e1000_hw *hw)
713{
714 struct e1000_phy_info *phy = &hw->phy;
715 s32 ret_val = 0;
716 u16 phy_id;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000717 u32 ctrl_ext;
Nick Nunley4085f742010-07-26 13:15:06 +0000718 u32 mdic;
Auke Kok9d5c8242008-01-24 02:22:38 -0800719
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000720 /* For SGMII PHYs, we try the list of possible addresses until
Auke Kok9d5c8242008-01-24 02:22:38 -0800721 * we find one that works. For non-SGMII PHYs
722 * (e.g. integrated copper PHYs), an address of 1 should
723 * work. The result of this function should mean phy->phy_addr
724 * and phy->id are set correctly.
725 */
726 if (!(igb_sgmii_active_82575(hw))) {
727 phy->addr = 1;
728 ret_val = igb_get_phy_id(hw);
729 goto out;
730 }
731
Nick Nunley4085f742010-07-26 13:15:06 +0000732 if (igb_sgmii_uses_mdio_82575(hw)) {
733 switch (hw->mac.type) {
734 case e1000_82575:
735 case e1000_82576:
736 mdic = rd32(E1000_MDIC);
737 mdic &= E1000_MDIC_PHY_MASK;
738 phy->addr = mdic >> E1000_MDIC_PHY_SHIFT;
739 break;
740 case e1000_82580:
741 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000742 case e1000_i354:
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000743 case e1000_i210:
744 case e1000_i211:
Nick Nunley4085f742010-07-26 13:15:06 +0000745 mdic = rd32(E1000_MDICNFG);
746 mdic &= E1000_MDICNFG_PHY_MASK;
747 phy->addr = mdic >> E1000_MDICNFG_PHY_SHIFT;
748 break;
749 default:
750 ret_val = -E1000_ERR_PHY;
751 goto out;
752 break;
753 }
754 ret_val = igb_get_phy_id(hw);
755 goto out;
756 }
757
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000758 /* Power on sgmii phy if it is disabled */
759 ctrl_ext = rd32(E1000_CTRL_EXT);
760 wr32(E1000_CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_SDP3_DATA);
761 wrfl();
762 msleep(300);
763
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000764 /* The address field in the I2CCMD register is 3 bits and 0 is invalid.
Auke Kok9d5c8242008-01-24 02:22:38 -0800765 * Therefore, we need to test 1-7
766 */
767 for (phy->addr = 1; phy->addr < 8; phy->addr++) {
768 ret_val = igb_read_phy_reg_sgmii_82575(hw, PHY_ID1, &phy_id);
769 if (ret_val == 0) {
Auke Kok652fff32008-06-27 11:00:18 -0700770 hw_dbg("Vendor ID 0x%08X read at address %u\n",
771 phy_id, phy->addr);
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000772 /* At the time of this writing, The M88 part is
Auke Kok9d5c8242008-01-24 02:22:38 -0800773 * the only supported SGMII PHY product.
774 */
775 if (phy_id == M88_VENDOR)
776 break;
777 } else {
Auke Kok652fff32008-06-27 11:00:18 -0700778 hw_dbg("PHY address %u was unreadable\n", phy->addr);
Auke Kok9d5c8242008-01-24 02:22:38 -0800779 }
780 }
781
782 /* A valid PHY type couldn't be found. */
783 if (phy->addr == 8) {
784 phy->addr = 0;
785 ret_val = -E1000_ERR_PHY;
786 goto out;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000787 } else {
788 ret_val = igb_get_phy_id(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800789 }
790
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000791 /* restore previous sfp cage power state */
792 wr32(E1000_CTRL_EXT, ctrl_ext);
Auke Kok9d5c8242008-01-24 02:22:38 -0800793
794out:
795 return ret_val;
796}
797
798/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700799 * igb_phy_hw_reset_sgmii_82575 - Performs a PHY reset
Auke Kok9d5c8242008-01-24 02:22:38 -0800800 * @hw: pointer to the HW structure
801 *
802 * Resets the PHY using the serial gigabit media independent interface.
803 **/
804static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw)
805{
806 s32 ret_val;
807
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000808 /* This isn't a true "hard" reset, but is the only reset
Auke Kok9d5c8242008-01-24 02:22:38 -0800809 * available to us at this time.
810 */
811
Auke Kok652fff32008-06-27 11:00:18 -0700812 hw_dbg("Soft resetting SGMII attached PHY...\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800813
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000814 /* SFP documentation requires the following to configure the SPF module
Auke Kok9d5c8242008-01-24 02:22:38 -0800815 * to work on SGMII. No further documentation is given.
816 */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000817 ret_val = hw->phy.ops.write_reg(hw, 0x1B, 0x8084);
Auke Kok9d5c8242008-01-24 02:22:38 -0800818 if (ret_val)
819 goto out;
820
821 ret_val = igb_phy_sw_reset(hw);
822
823out:
824 return ret_val;
825}
826
827/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700828 * igb_set_d0_lplu_state_82575 - Set Low Power Linkup D0 state
Auke Kok9d5c8242008-01-24 02:22:38 -0800829 * @hw: pointer to the HW structure
830 * @active: true to enable LPLU, false to disable
831 *
832 * Sets the LPLU D0 state according to the active flag. When
833 * activating LPLU this function also disables smart speed
834 * and vice versa. LPLU will not be activated unless the
835 * device autonegotiation advertisement meets standards of
836 * either 10 or 10/100 or 10/100/1000 at all duplexes.
837 * This is a function pointer entry point only called by
838 * PHY setup routines.
839 **/
840static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active)
841{
842 struct e1000_phy_info *phy = &hw->phy;
843 s32 ret_val;
844 u16 data;
845
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000846 ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800847 if (ret_val)
848 goto out;
849
850 if (active) {
851 data |= IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000852 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700853 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800854 if (ret_val)
855 goto out;
856
857 /* When LPLU is enabled, we should disable SmartSpeed */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000858 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700859 &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800860 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000861 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700862 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800863 if (ret_val)
864 goto out;
865 } else {
866 data &= ~IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000867 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700868 data);
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000869 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kok9d5c8242008-01-24 02:22:38 -0800870 * during Dx states where the power conservation is most
871 * important. During driver activity we should enable
872 * SmartSpeed, so performance is maintained.
873 */
874 if (phy->smart_speed == e1000_smart_speed_on) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000875 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700876 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800877 if (ret_val)
878 goto out;
879
880 data |= IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000881 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700882 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800883 if (ret_val)
884 goto out;
885 } else if (phy->smart_speed == e1000_smart_speed_off) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000886 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700887 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800888 if (ret_val)
889 goto out;
890
891 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000892 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700893 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800894 if (ret_val)
895 goto out;
896 }
897 }
898
899out:
900 return ret_val;
901}
902
903/**
Carolyn Wybornyda02cde2012-03-04 03:26:26 +0000904 * igb_set_d0_lplu_state_82580 - Set Low Power Linkup D0 state
905 * @hw: pointer to the HW structure
906 * @active: true to enable LPLU, false to disable
907 *
908 * Sets the LPLU D0 state according to the active flag. When
909 * activating LPLU this function also disables smart speed
910 * and vice versa. LPLU will not be activated unless the
911 * device autonegotiation advertisement meets standards of
912 * either 10 or 10/100 or 10/100/1000 at all duplexes.
913 * This is a function pointer entry point only called by
914 * PHY setup routines.
915 **/
916static s32 igb_set_d0_lplu_state_82580(struct e1000_hw *hw, bool active)
917{
918 struct e1000_phy_info *phy = &hw->phy;
919 s32 ret_val = 0;
920 u16 data;
921
922 data = rd32(E1000_82580_PHY_POWER_MGMT);
923
924 if (active) {
925 data |= E1000_82580_PM_D0_LPLU;
926
927 /* When LPLU is enabled, we should disable SmartSpeed */
928 data &= ~E1000_82580_PM_SPD;
929 } else {
930 data &= ~E1000_82580_PM_D0_LPLU;
931
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000932 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Carolyn Wybornyda02cde2012-03-04 03:26:26 +0000933 * during Dx states where the power conservation is most
934 * important. During driver activity we should enable
935 * SmartSpeed, so performance is maintained.
936 */
937 if (phy->smart_speed == e1000_smart_speed_on)
938 data |= E1000_82580_PM_SPD;
939 else if (phy->smart_speed == e1000_smart_speed_off)
940 data &= ~E1000_82580_PM_SPD; }
941
942 wr32(E1000_82580_PHY_POWER_MGMT, data);
943 return ret_val;
944}
945
946/**
947 * igb_set_d3_lplu_state_82580 - Sets low power link up state for D3
948 * @hw: pointer to the HW structure
949 * @active: boolean used to enable/disable lplu
950 *
951 * Success returns 0, Failure returns 1
952 *
953 * The low power link up (lplu) state is set to the power management level D3
954 * and SmartSpeed is disabled when active is true, else clear lplu for D3
955 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
956 * is used during Dx states where the power conservation is most important.
957 * During driver activity, SmartSpeed should be enabled so performance is
958 * maintained.
959 **/
Akeem G. Abodunrinc8268922013-02-16 07:09:06 +0000960static s32 igb_set_d3_lplu_state_82580(struct e1000_hw *hw, bool active)
Carolyn Wybornyda02cde2012-03-04 03:26:26 +0000961{
962 struct e1000_phy_info *phy = &hw->phy;
963 s32 ret_val = 0;
964 u16 data;
965
966 data = rd32(E1000_82580_PHY_POWER_MGMT);
967
968 if (!active) {
969 data &= ~E1000_82580_PM_D3_LPLU;
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000970 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Carolyn Wybornyda02cde2012-03-04 03:26:26 +0000971 * during Dx states where the power conservation is most
972 * important. During driver activity we should enable
973 * SmartSpeed, so performance is maintained.
974 */
975 if (phy->smart_speed == e1000_smart_speed_on)
976 data |= E1000_82580_PM_SPD;
977 else if (phy->smart_speed == e1000_smart_speed_off)
978 data &= ~E1000_82580_PM_SPD;
979 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
980 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
981 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
982 data |= E1000_82580_PM_D3_LPLU;
983 /* When LPLU is enabled, we should disable SmartSpeed */
984 data &= ~E1000_82580_PM_SPD;
985 }
986
987 wr32(E1000_82580_PHY_POWER_MGMT, data);
988 return ret_val;
989}
990
991/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700992 * igb_acquire_nvm_82575 - Request for access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -0800993 * @hw: pointer to the HW structure
994 *
Auke Kok652fff32008-06-27 11:00:18 -0700995 * Acquire the necessary semaphores for exclusive access to the EEPROM.
Auke Kok9d5c8242008-01-24 02:22:38 -0800996 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
997 * Return successful if access grant bit set, else clear the request for
998 * EEPROM access and return -E1000_ERR_NVM (-1).
999 **/
1000static s32 igb_acquire_nvm_82575(struct e1000_hw *hw)
1001{
1002 s32 ret_val;
1003
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001004 ret_val = hw->mac.ops.acquire_swfw_sync(hw, E1000_SWFW_EEP_SM);
Auke Kok9d5c8242008-01-24 02:22:38 -08001005 if (ret_val)
1006 goto out;
1007
1008 ret_val = igb_acquire_nvm(hw);
1009
1010 if (ret_val)
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001011 hw->mac.ops.release_swfw_sync(hw, E1000_SWFW_EEP_SM);
Auke Kok9d5c8242008-01-24 02:22:38 -08001012
1013out:
1014 return ret_val;
1015}
1016
1017/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001018 * igb_release_nvm_82575 - Release exclusive access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -08001019 * @hw: pointer to the HW structure
1020 *
1021 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
1022 * then release the semaphores acquired.
1023 **/
1024static void igb_release_nvm_82575(struct e1000_hw *hw)
1025{
1026 igb_release_nvm(hw);
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001027 hw->mac.ops.release_swfw_sync(hw, E1000_SWFW_EEP_SM);
Auke Kok9d5c8242008-01-24 02:22:38 -08001028}
1029
1030/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001031 * igb_acquire_swfw_sync_82575 - Acquire SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -08001032 * @hw: pointer to the HW structure
1033 * @mask: specifies which semaphore to acquire
1034 *
1035 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
1036 * will also specify which port we're acquiring the lock for.
1037 **/
1038static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
1039{
1040 u32 swfw_sync;
1041 u32 swmask = mask;
1042 u32 fwmask = mask << 16;
1043 s32 ret_val = 0;
1044 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
1045
1046 while (i < timeout) {
1047 if (igb_get_hw_semaphore(hw)) {
1048 ret_val = -E1000_ERR_SWFW_SYNC;
1049 goto out;
1050 }
1051
1052 swfw_sync = rd32(E1000_SW_FW_SYNC);
1053 if (!(swfw_sync & (fwmask | swmask)))
1054 break;
1055
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001056 /* Firmware currently using resource (fwmask)
Auke Kok9d5c8242008-01-24 02:22:38 -08001057 * or other software thread using resource (swmask)
1058 */
1059 igb_put_hw_semaphore(hw);
1060 mdelay(5);
1061 i++;
1062 }
1063
1064 if (i == timeout) {
Auke Kok652fff32008-06-27 11:00:18 -07001065 hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001066 ret_val = -E1000_ERR_SWFW_SYNC;
1067 goto out;
1068 }
1069
1070 swfw_sync |= swmask;
1071 wr32(E1000_SW_FW_SYNC, swfw_sync);
1072
1073 igb_put_hw_semaphore(hw);
1074
1075out:
1076 return ret_val;
1077}
1078
1079/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001080 * igb_release_swfw_sync_82575 - Release SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -08001081 * @hw: pointer to the HW structure
1082 * @mask: specifies which semaphore to acquire
1083 *
1084 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
1085 * will also specify which port we're releasing the lock for.
1086 **/
1087static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
1088{
1089 u32 swfw_sync;
1090
1091 while (igb_get_hw_semaphore(hw) != 0);
1092 /* Empty */
1093
1094 swfw_sync = rd32(E1000_SW_FW_SYNC);
1095 swfw_sync &= ~mask;
1096 wr32(E1000_SW_FW_SYNC, swfw_sync);
1097
1098 igb_put_hw_semaphore(hw);
1099}
1100
1101/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001102 * igb_get_cfg_done_82575 - Read config done bit
Auke Kok9d5c8242008-01-24 02:22:38 -08001103 * @hw: pointer to the HW structure
1104 *
1105 * Read the management control register for the config done bit for
1106 * completion status. NOTE: silicon which is EEPROM-less will fail trying
1107 * to read the config done bit, so an error is *ONLY* logged and returns
1108 * 0. If we were to return with error, EEPROM-less silicon
1109 * would not be able to be reset or change link.
1110 **/
1111static s32 igb_get_cfg_done_82575(struct e1000_hw *hw)
1112{
1113 s32 timeout = PHY_CFG_TIMEOUT;
1114 s32 ret_val = 0;
1115 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
1116
1117 if (hw->bus.func == 1)
1118 mask = E1000_NVM_CFG_DONE_PORT_1;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001119 else if (hw->bus.func == E1000_FUNC_2)
1120 mask = E1000_NVM_CFG_DONE_PORT_2;
1121 else if (hw->bus.func == E1000_FUNC_3)
1122 mask = E1000_NVM_CFG_DONE_PORT_3;
Auke Kok9d5c8242008-01-24 02:22:38 -08001123
1124 while (timeout) {
1125 if (rd32(E1000_EEMNGCTL) & mask)
1126 break;
1127 msleep(1);
1128 timeout--;
1129 }
1130 if (!timeout)
Auke Kok652fff32008-06-27 11:00:18 -07001131 hw_dbg("MNG configuration cycle has not completed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001132
1133 /* If EEPROM is not marked present, init the PHY manually */
1134 if (((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) &&
1135 (hw->phy.type == e1000_phy_igp_3))
1136 igb_phy_init_script_igp3(hw);
1137
1138 return ret_val;
1139}
1140
1141/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001142 * igb_check_for_link_82575 - Check for link
Auke Kok9d5c8242008-01-24 02:22:38 -08001143 * @hw: pointer to the HW structure
1144 *
1145 * If sgmii is enabled, then use the pcs register to determine link, otherwise
1146 * use the generic interface for determining link.
1147 **/
1148static s32 igb_check_for_link_82575(struct e1000_hw *hw)
1149{
1150 s32 ret_val;
1151 u16 speed, duplex;
1152
Alexander Duyck70d92f82009-10-05 06:31:47 +00001153 if (hw->phy.media_type != e1000_media_type_copper) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001154 ret_val = igb_get_pcs_speed_and_duplex_82575(hw, &speed,
Alexander Duyck2d064c02008-07-08 15:10:12 -07001155 &duplex);
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001156 /* Use this flag to determine if link needs to be checked or
Alexander Duyck5d0932a2009-01-31 00:53:18 -08001157 * not. If we have link clear the flag so that we do not
1158 * continue to check for link.
1159 */
1160 hw->mac.get_link_status = !hw->mac.serdes_has_link;
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001161
1162 /* Configure Flow Control now that Auto-Neg has completed.
1163 * First, we need to restore the desired flow control
1164 * settings because we may have had to re-autoneg with a
1165 * different link partner.
1166 */
1167 ret_val = igb_config_fc_after_link_up(hw);
1168 if (ret_val)
1169 hw_dbg("Error configuring flow control\n");
Alexander Duyck5d0932a2009-01-31 00:53:18 -08001170 } else {
Auke Kok9d5c8242008-01-24 02:22:38 -08001171 ret_val = igb_check_for_copper_link(hw);
Alexander Duyck5d0932a2009-01-31 00:53:18 -08001172 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001173
1174 return ret_val;
1175}
Alexander Duyck70d92f82009-10-05 06:31:47 +00001176
Auke Kok9d5c8242008-01-24 02:22:38 -08001177/**
Nick Nunley88a268c2010-02-17 01:01:59 +00001178 * igb_power_up_serdes_link_82575 - Power up the serdes link after shutdown
1179 * @hw: pointer to the HW structure
1180 **/
1181void igb_power_up_serdes_link_82575(struct e1000_hw *hw)
1182{
1183 u32 reg;
1184
1185
1186 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
1187 !igb_sgmii_active_82575(hw))
1188 return;
1189
1190 /* Enable PCS to turn on link */
1191 reg = rd32(E1000_PCS_CFG0);
1192 reg |= E1000_PCS_CFG_PCS_EN;
1193 wr32(E1000_PCS_CFG0, reg);
1194
1195 /* Power up the laser */
1196 reg = rd32(E1000_CTRL_EXT);
1197 reg &= ~E1000_CTRL_EXT_SDP3_DATA;
1198 wr32(E1000_CTRL_EXT, reg);
1199
1200 /* flush the write to verify completion */
1201 wrfl();
1202 msleep(1);
1203}
1204
1205/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001206 * igb_get_pcs_speed_and_duplex_82575 - Retrieve current speed/duplex
Auke Kok9d5c8242008-01-24 02:22:38 -08001207 * @hw: pointer to the HW structure
1208 * @speed: stores the current speed
1209 * @duplex: stores the current duplex
1210 *
Auke Kok652fff32008-06-27 11:00:18 -07001211 * Using the physical coding sub-layer (PCS), retrieve the current speed and
Auke Kok9d5c8242008-01-24 02:22:38 -08001212 * duplex, then store the values in the pointers provided.
1213 **/
1214static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed,
1215 u16 *duplex)
1216{
1217 struct e1000_mac_info *mac = &hw->mac;
1218 u32 pcs;
1219
1220 /* Set up defaults for the return values of this function */
1221 mac->serdes_has_link = false;
1222 *speed = 0;
1223 *duplex = 0;
1224
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001225 /* Read the PCS Status register for link state. For non-copper mode,
Auke Kok9d5c8242008-01-24 02:22:38 -08001226 * the status register is not accurate. The PCS status register is
1227 * used instead.
1228 */
1229 pcs = rd32(E1000_PCS_LSTAT);
1230
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001231 /* The link up bit determines when link is up on autoneg. The sync ok
Auke Kok9d5c8242008-01-24 02:22:38 -08001232 * gets set once both sides sync up and agree upon link. Stable link
1233 * can be determined by checking for both link up and link sync ok
1234 */
1235 if ((pcs & E1000_PCS_LSTS_LINK_OK) && (pcs & E1000_PCS_LSTS_SYNK_OK)) {
1236 mac->serdes_has_link = true;
1237
1238 /* Detect and store PCS speed */
1239 if (pcs & E1000_PCS_LSTS_SPEED_1000) {
1240 *speed = SPEED_1000;
1241 } else if (pcs & E1000_PCS_LSTS_SPEED_100) {
1242 *speed = SPEED_100;
1243 } else {
1244 *speed = SPEED_10;
1245 }
1246
1247 /* Detect and store PCS duplex */
1248 if (pcs & E1000_PCS_LSTS_DUPLEX_FULL) {
1249 *duplex = FULL_DUPLEX;
1250 } else {
1251 *duplex = HALF_DUPLEX;
1252 }
1253 }
1254
1255 return 0;
1256}
1257
1258/**
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001259 * igb_shutdown_serdes_link_82575 - Remove link during power down
Alexander Duyck2d064c02008-07-08 15:10:12 -07001260 * @hw: pointer to the HW structure
1261 *
1262 * In the case of fiber serdes, shut down optics and PCS on driver unload
1263 * when management pass thru is not enabled.
1264 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001265void igb_shutdown_serdes_link_82575(struct e1000_hw *hw)
Alexander Duyck2d064c02008-07-08 15:10:12 -07001266{
1267 u32 reg;
1268
Nick Nunley53c992f2010-02-17 01:01:40 +00001269 if (hw->phy.media_type != e1000_media_type_internal_serdes &&
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001270 igb_sgmii_active_82575(hw))
Alexander Duyck2d064c02008-07-08 15:10:12 -07001271 return;
1272
Nick Nunley53c992f2010-02-17 01:01:40 +00001273 if (!igb_enable_mng_pass_thru(hw)) {
Alexander Duyck2d064c02008-07-08 15:10:12 -07001274 /* Disable PCS to turn off link */
1275 reg = rd32(E1000_PCS_CFG0);
1276 reg &= ~E1000_PCS_CFG_PCS_EN;
1277 wr32(E1000_PCS_CFG0, reg);
1278
1279 /* shutdown the laser */
1280 reg = rd32(E1000_CTRL_EXT);
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001281 reg |= E1000_CTRL_EXT_SDP3_DATA;
Alexander Duyck2d064c02008-07-08 15:10:12 -07001282 wr32(E1000_CTRL_EXT, reg);
1283
1284 /* flush the write to verify completion */
1285 wrfl();
1286 msleep(1);
1287 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001288}
1289
1290/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001291 * igb_reset_hw_82575 - Reset hardware
Auke Kok9d5c8242008-01-24 02:22:38 -08001292 * @hw: pointer to the HW structure
1293 *
1294 * This resets the hardware into a known state. This is a
1295 * function pointer entry point called by the api module.
1296 **/
1297static s32 igb_reset_hw_82575(struct e1000_hw *hw)
1298{
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00001299 u32 ctrl;
Auke Kok9d5c8242008-01-24 02:22:38 -08001300 s32 ret_val;
1301
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001302 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kok9d5c8242008-01-24 02:22:38 -08001303 * on the last TLP read/write transaction when MAC is reset.
1304 */
1305 ret_val = igb_disable_pcie_master(hw);
1306 if (ret_val)
Auke Kok652fff32008-06-27 11:00:18 -07001307 hw_dbg("PCI-E Master disable polling has failed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001308
Alexander Duyck009bc062009-07-23 18:08:35 +00001309 /* set the completion timeout for interface */
1310 ret_val = igb_set_pcie_completion_timeout(hw);
1311 if (ret_val) {
1312 hw_dbg("PCI-E Set completion timeout has failed.\n");
1313 }
1314
Auke Kok652fff32008-06-27 11:00:18 -07001315 hw_dbg("Masking off all interrupts\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001316 wr32(E1000_IMC, 0xffffffff);
1317
1318 wr32(E1000_RCTL, 0);
1319 wr32(E1000_TCTL, E1000_TCTL_PSP);
1320 wrfl();
1321
1322 msleep(10);
1323
1324 ctrl = rd32(E1000_CTRL);
1325
Auke Kok652fff32008-06-27 11:00:18 -07001326 hw_dbg("Issuing a global reset to MAC\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001327 wr32(E1000_CTRL, ctrl | E1000_CTRL_RST);
1328
1329 ret_val = igb_get_auto_rd_done(hw);
1330 if (ret_val) {
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001331 /* When auto config read does not complete, do not
Auke Kok9d5c8242008-01-24 02:22:38 -08001332 * return with an error. This can happen in situations
1333 * where there is no eeprom and prevents getting link.
1334 */
Auke Kok652fff32008-06-27 11:00:18 -07001335 hw_dbg("Auto Read Done did not complete\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001336 }
1337
1338 /* If EEPROM is not present, run manual init scripts */
1339 if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0)
1340 igb_reset_init_script_82575(hw);
1341
1342 /* Clear any pending interrupt events. */
1343 wr32(E1000_IMC, 0xffffffff);
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00001344 rd32(E1000_ICR);
Auke Kok9d5c8242008-01-24 02:22:38 -08001345
Alexander Duyck5ac16652009-07-23 18:09:12 +00001346 /* Install any alternate MAC address into RAR0 */
1347 ret_val = igb_check_alt_mac_addr(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001348
1349 return ret_val;
1350}
1351
1352/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001353 * igb_init_hw_82575 - Initialize hardware
Auke Kok9d5c8242008-01-24 02:22:38 -08001354 * @hw: pointer to the HW structure
1355 *
1356 * This inits the hardware readying it for operation.
1357 **/
1358static s32 igb_init_hw_82575(struct e1000_hw *hw)
1359{
1360 struct e1000_mac_info *mac = &hw->mac;
1361 s32 ret_val;
1362 u16 i, rar_count = mac->rar_entry_count;
1363
1364 /* Initialize identification LED */
1365 ret_val = igb_id_led_init(hw);
1366 if (ret_val) {
Auke Kok652fff32008-06-27 11:00:18 -07001367 hw_dbg("Error initializing identification LED\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001368 /* This is not fatal and we should not stop init due to this */
1369 }
1370
1371 /* Disabling VLAN filtering */
Auke Kok652fff32008-06-27 11:00:18 -07001372 hw_dbg("Initializing the IEEE VLAN\n");
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001373 if ((hw->mac.type == e1000_i350) || (hw->mac.type == e1000_i354))
Carolyn Wyborny1128c752011-10-14 00:13:49 +00001374 igb_clear_vfta_i350(hw);
1375 else
1376 igb_clear_vfta(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001377
1378 /* Setup the receive address */
Alexander Duyck5ac16652009-07-23 18:09:12 +00001379 igb_init_rx_addrs(hw, rar_count);
1380
Auke Kok9d5c8242008-01-24 02:22:38 -08001381 /* Zero out the Multicast HASH table */
Auke Kok652fff32008-06-27 11:00:18 -07001382 hw_dbg("Zeroing the MTA\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001383 for (i = 0; i < mac->mta_reg_count; i++)
1384 array_wr32(E1000_MTA, i, 0);
1385
Alexander Duyck68d480c2009-10-05 06:33:08 +00001386 /* Zero out the Unicast HASH table */
1387 hw_dbg("Zeroing the UTA\n");
1388 for (i = 0; i < mac->uta_reg_count; i++)
1389 array_wr32(E1000_UTA, i, 0);
1390
Auke Kok9d5c8242008-01-24 02:22:38 -08001391 /* Setup link and flow control */
1392 ret_val = igb_setup_link(hw);
1393
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001394 /* Clear all of the statistics registers (clear on read). It is
Auke Kok9d5c8242008-01-24 02:22:38 -08001395 * important that we do this after we have tried to establish link
1396 * because the symbol error count will increment wildly if there
1397 * is no link.
1398 */
1399 igb_clear_hw_cntrs_82575(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001400 return ret_val;
1401}
1402
1403/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001404 * igb_setup_copper_link_82575 - Configure copper link settings
Auke Kok9d5c8242008-01-24 02:22:38 -08001405 * @hw: pointer to the HW structure
1406 *
1407 * Configures the link for auto-neg or forced speed and duplex. Then we check
1408 * for link, once link is established calls to configure collision distance
1409 * and flow control are called.
1410 **/
1411static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)
1412{
Alexander Duyck12645a12009-07-23 18:08:16 +00001413 u32 ctrl;
Auke Kok9d5c8242008-01-24 02:22:38 -08001414 s32 ret_val;
Carolyn Wyborny867eb392012-11-13 04:03:20 +00001415 u32 phpm_reg;
Auke Kok9d5c8242008-01-24 02:22:38 -08001416
1417 ctrl = rd32(E1000_CTRL);
1418 ctrl |= E1000_CTRL_SLU;
1419 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1420 wr32(E1000_CTRL, ctrl);
1421
Carolyn Wyborny867eb392012-11-13 04:03:20 +00001422 /* Clear Go Link Disconnect bit */
1423 if (hw->mac.type >= e1000_82580) {
1424 phpm_reg = rd32(E1000_82580_PHY_POWER_MGMT);
1425 phpm_reg &= ~E1000_82580_PM_GO_LINKD;
1426 wr32(E1000_82580_PHY_POWER_MGMT, phpm_reg);
1427 }
1428
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001429 ret_val = igb_setup_serdes_link_82575(hw);
1430 if (ret_val)
1431 goto out;
1432
1433 if (igb_sgmii_active_82575(hw) && !hw->phy.reset_disable) {
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001434 /* allow time for SFP cage time to power up phy */
1435 msleep(300);
1436
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001437 ret_val = hw->phy.ops.reset(hw);
1438 if (ret_val) {
1439 hw_dbg("Error resetting the PHY.\n");
1440 goto out;
1441 }
1442 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001443 switch (hw->phy.type) {
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001444 case e1000_phy_i210:
Auke Kok9d5c8242008-01-24 02:22:38 -08001445 case e1000_phy_m88:
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001446 switch (hw->phy.id) {
1447 case I347AT4_E_PHY_ID:
1448 case M88E1112_E_PHY_ID:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001449 case M88E1545_E_PHY_ID:
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001450 case I210_I_PHY_ID:
Joseph Gasparakis308fb392010-09-22 17:56:44 +00001451 ret_val = igb_copper_link_setup_m88_gen2(hw);
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001452 break;
1453 default:
Joseph Gasparakis308fb392010-09-22 17:56:44 +00001454 ret_val = igb_copper_link_setup_m88(hw);
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001455 break;
1456 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001457 break;
1458 case e1000_phy_igp_3:
1459 ret_val = igb_copper_link_setup_igp(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001460 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001461 case e1000_phy_82580:
1462 ret_val = igb_copper_link_setup_82580(hw);
1463 break;
Auke Kok9d5c8242008-01-24 02:22:38 -08001464 default:
1465 ret_val = -E1000_ERR_PHY;
1466 break;
1467 }
1468
1469 if (ret_val)
1470 goto out;
1471
Alexander Duyck81fadd82009-10-05 06:35:03 +00001472 ret_val = igb_setup_copper_link(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001473out:
1474 return ret_val;
1475}
1476
1477/**
Alexander Duyck70d92f82009-10-05 06:31:47 +00001478 * igb_setup_serdes_link_82575 - Setup link for serdes
Auke Kok9d5c8242008-01-24 02:22:38 -08001479 * @hw: pointer to the HW structure
1480 *
Alexander Duyck70d92f82009-10-05 06:31:47 +00001481 * Configure the physical coding sub-layer (PCS) link. The PCS link is
1482 * used on copper connections where the serialized gigabit media independent
1483 * interface (sgmii), or serdes fiber is being used. Configures the link
1484 * for auto-negotiation or forces speed/duplex.
Auke Kok9d5c8242008-01-24 02:22:38 -08001485 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001486static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw)
Auke Kok9d5c8242008-01-24 02:22:38 -08001487{
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001488 u32 ctrl_ext, ctrl_reg, reg, anadv_reg;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001489 bool pcs_autoneg;
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001490 s32 ret_val = E1000_SUCCESS;
1491 u16 data;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001492
1493 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
1494 !igb_sgmii_active_82575(hw))
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001495 return ret_val;
1496
Auke Kok9d5c8242008-01-24 02:22:38 -08001497
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001498 /* On the 82575, SerDes loopback mode persists until it is
Auke Kok9d5c8242008-01-24 02:22:38 -08001499 * explicitly turned off or a power cycle is performed. A read to
1500 * the register does not indicate its status. Therefore, we ensure
1501 * loopback mode is disabled during initialization.
1502 */
1503 wr32(E1000_SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
1504
Akeem G. Abodunrine00bf602013-01-29 10:15:26 +00001505 /* power on the sfp cage if present and turn on I2C */
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001506 ctrl_ext = rd32(E1000_CTRL_EXT);
1507 ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA;
Akeem G. Abodunrine00bf602013-01-29 10:15:26 +00001508 ctrl_ext |= E1000_CTRL_I2C_ENA;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001509 wr32(E1000_CTRL_EXT, ctrl_ext);
Auke Kok9d5c8242008-01-24 02:22:38 -08001510
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001511 ctrl_reg = rd32(E1000_CTRL);
1512 ctrl_reg |= E1000_CTRL_SLU;
1513
1514 if (hw->mac.type == e1000_82575 || hw->mac.type == e1000_82576) {
1515 /* set both sw defined pins */
1516 ctrl_reg |= E1000_CTRL_SWDPIN0 | E1000_CTRL_SWDPIN1;
1517
1518 /* Set switch control to serdes energy detect */
1519 reg = rd32(E1000_CONNSW);
1520 reg |= E1000_CONNSW_ENRGSRC;
1521 wr32(E1000_CONNSW, reg);
Alexander Duyck921aa742009-01-21 14:42:28 -08001522 }
1523
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001524 reg = rd32(E1000_PCS_LCTL);
1525
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001526 /* default pcs_autoneg to the same setting as mac autoneg */
1527 pcs_autoneg = hw->mac.autoneg;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001528
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001529 switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) {
1530 case E1000_CTRL_EXT_LINK_MODE_SGMII:
1531 /* sgmii mode lets the phy handle forcing speed/duplex */
1532 pcs_autoneg = true;
1533 /* autoneg time out should be disabled for SGMII mode */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001534 reg &= ~(E1000_PCS_LCTL_AN_TIMEOUT);
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001535 break;
1536 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
1537 /* disable PCS autoneg and support parallel detect only */
1538 pcs_autoneg = false;
1539 default:
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001540 if (hw->mac.type == e1000_82575 ||
1541 hw->mac.type == e1000_82576) {
1542 ret_val = hw->nvm.ops.read(hw, NVM_COMPAT, 1, &data);
1543 if (ret_val) {
1544 printk(KERN_DEBUG "NVM Read Error\n\n");
1545 return ret_val;
1546 }
1547
1548 if (data & E1000_EEPROM_PCS_AUTONEG_DISABLE_BIT)
1549 pcs_autoneg = false;
1550 }
1551
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001552 /* non-SGMII modes only supports a speed of 1000/Full for the
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001553 * link so it is best to just force the MAC and let the pcs
1554 * link either autoneg or be forced to 1000/Full
1555 */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001556 ctrl_reg |= E1000_CTRL_SPD_1000 | E1000_CTRL_FRCSPD |
1557 E1000_CTRL_FD | E1000_CTRL_FRCDPX;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001558
1559 /* set speed of 1000/Full if speed/duplex is forced */
1560 reg |= E1000_PCS_LCTL_FSV_1000 | E1000_PCS_LCTL_FDV_FULL;
1561 break;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001562 }
1563
1564 wr32(E1000_CTRL, ctrl_reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001565
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001566 /* New SerDes mode allows for forcing speed or autonegotiating speed
Auke Kok9d5c8242008-01-24 02:22:38 -08001567 * at 1gb. Autoneg should be default set by most drivers. This is the
1568 * mode that will be compatible with older link partners and switches.
1569 * However, both are supported by the hardware and some drivers/tools.
1570 */
Auke Kok9d5c8242008-01-24 02:22:38 -08001571 reg &= ~(E1000_PCS_LCTL_AN_ENABLE | E1000_PCS_LCTL_FLV_LINK_UP |
1572 E1000_PCS_LCTL_FSD | E1000_PCS_LCTL_FORCE_LINK);
1573
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001574 if (pcs_autoneg) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001575 /* Set PCS register for autoneg */
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001576 reg |= E1000_PCS_LCTL_AN_ENABLE | /* Enable Autoneg */
Alexander Duyck70d92f82009-10-05 06:31:47 +00001577 E1000_PCS_LCTL_AN_RESTART; /* Restart autoneg */
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001578
1579 /* Disable force flow control for autoneg */
1580 reg &= ~E1000_PCS_LCTL_FORCE_FCTRL;
1581
1582 /* Configure flow control advertisement for autoneg */
1583 anadv_reg = rd32(E1000_PCS_ANADV);
1584 anadv_reg &= ~(E1000_TXCW_ASM_DIR | E1000_TXCW_PAUSE);
1585 switch (hw->fc.requested_mode) {
1586 case e1000_fc_full:
1587 case e1000_fc_rx_pause:
1588 anadv_reg |= E1000_TXCW_ASM_DIR;
1589 anadv_reg |= E1000_TXCW_PAUSE;
1590 break;
1591 case e1000_fc_tx_pause:
1592 anadv_reg |= E1000_TXCW_ASM_DIR;
1593 break;
1594 default:
1595 break;
1596 }
1597 wr32(E1000_PCS_ANADV, anadv_reg);
1598
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001599 hw_dbg("Configuring Autoneg:PCS_LCTL=0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001600 } else {
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001601 /* Set PCS register for forced link */
Alexander Duyckd68caec2009-12-23 13:20:47 +00001602 reg |= E1000_PCS_LCTL_FSD; /* Force Speed */
Alexander Duyck70d92f82009-10-05 06:31:47 +00001603
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001604 /* Force flow control for forced link */
1605 reg |= E1000_PCS_LCTL_FORCE_FCTRL;
1606
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001607 hw_dbg("Configuring Forced Link:PCS_LCTL=0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001608 }
Alexander Duyck726c09e2008-08-04 14:59:56 -07001609
Auke Kok9d5c8242008-01-24 02:22:38 -08001610 wr32(E1000_PCS_LCTL, reg);
1611
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001612 if (!pcs_autoneg && !igb_sgmii_active_82575(hw))
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001613 igb_force_mac_fc(hw);
1614
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001615 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -08001616}
1617
1618/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001619 * igb_sgmii_active_82575 - Return sgmii state
Auke Kok9d5c8242008-01-24 02:22:38 -08001620 * @hw: pointer to the HW structure
1621 *
1622 * 82575 silicon has a serialized gigabit media independent interface (sgmii)
1623 * which can be enabled for use in the embedded applications. Simply
1624 * return the current state of the sgmii interface.
1625 **/
1626static bool igb_sgmii_active_82575(struct e1000_hw *hw)
1627{
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001628 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001629 return dev_spec->sgmii_active;
Auke Kok9d5c8242008-01-24 02:22:38 -08001630}
1631
1632/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001633 * igb_reset_init_script_82575 - Inits HW defaults after reset
Auke Kok9d5c8242008-01-24 02:22:38 -08001634 * @hw: pointer to the HW structure
1635 *
1636 * Inits recommended HW defaults after a reset when there is no EEPROM
1637 * detected. This is only for the 82575.
1638 **/
1639static s32 igb_reset_init_script_82575(struct e1000_hw *hw)
1640{
1641 if (hw->mac.type == e1000_82575) {
Auke Kok652fff32008-06-27 11:00:18 -07001642 hw_dbg("Running reset init script for 82575\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001643 /* SerDes configuration via SERDESCTRL */
1644 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x00, 0x0C);
1645 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x01, 0x78);
1646 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x1B, 0x23);
1647 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x23, 0x15);
1648
1649 /* CCM configuration via CCMCTL register */
1650 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x14, 0x00);
1651 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x10, 0x00);
1652
1653 /* PCIe lanes configuration */
1654 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x00, 0xEC);
1655 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x61, 0xDF);
1656 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x34, 0x05);
1657 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x2F, 0x81);
1658
1659 /* PCIe PLL Configuration */
1660 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x02, 0x47);
1661 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x14, 0x00);
1662 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x10, 0x00);
1663 }
1664
1665 return 0;
1666}
1667
1668/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001669 * igb_read_mac_addr_82575 - Read device MAC address
Auke Kok9d5c8242008-01-24 02:22:38 -08001670 * @hw: pointer to the HW structure
1671 **/
1672static s32 igb_read_mac_addr_82575(struct e1000_hw *hw)
1673{
1674 s32 ret_val = 0;
1675
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001676 /* If there's an alternate MAC address place it in RAR0
Alexander Duyck22896632009-10-05 06:34:25 +00001677 * so that it will override the Si installed default perm
1678 * address.
1679 */
1680 ret_val = igb_check_alt_mac_addr(hw);
1681 if (ret_val)
1682 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -08001683
Alexander Duyck22896632009-10-05 06:34:25 +00001684 ret_val = igb_read_mac_addr(hw);
1685
1686out:
Auke Kok9d5c8242008-01-24 02:22:38 -08001687 return ret_val;
1688}
1689
1690/**
Nick Nunley88a268c2010-02-17 01:01:59 +00001691 * igb_power_down_phy_copper_82575 - Remove link during PHY power down
1692 * @hw: pointer to the HW structure
1693 *
1694 * In the case of a PHY power down to save power, or to turn off link during a
1695 * driver unload, or wake on lan is not enabled, remove the link.
1696 **/
1697void igb_power_down_phy_copper_82575(struct e1000_hw *hw)
1698{
1699 /* If the management interface is not enabled, then power down */
1700 if (!(igb_enable_mng_pass_thru(hw) || igb_check_reset_block(hw)))
1701 igb_power_down_phy_copper(hw);
Nick Nunley88a268c2010-02-17 01:01:59 +00001702}
1703
1704/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001705 * igb_clear_hw_cntrs_82575 - Clear device specific hardware counters
Auke Kok9d5c8242008-01-24 02:22:38 -08001706 * @hw: pointer to the HW structure
1707 *
1708 * Clears the hardware counters by reading the counter registers.
1709 **/
1710static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw)
1711{
Auke Kok9d5c8242008-01-24 02:22:38 -08001712 igb_clear_hw_cntrs_base(hw);
1713
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001714 rd32(E1000_PRC64);
1715 rd32(E1000_PRC127);
1716 rd32(E1000_PRC255);
1717 rd32(E1000_PRC511);
1718 rd32(E1000_PRC1023);
1719 rd32(E1000_PRC1522);
1720 rd32(E1000_PTC64);
1721 rd32(E1000_PTC127);
1722 rd32(E1000_PTC255);
1723 rd32(E1000_PTC511);
1724 rd32(E1000_PTC1023);
1725 rd32(E1000_PTC1522);
Auke Kok9d5c8242008-01-24 02:22:38 -08001726
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001727 rd32(E1000_ALGNERRC);
1728 rd32(E1000_RXERRC);
1729 rd32(E1000_TNCRS);
1730 rd32(E1000_CEXTERR);
1731 rd32(E1000_TSCTC);
1732 rd32(E1000_TSCTFC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001733
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001734 rd32(E1000_MGTPRC);
1735 rd32(E1000_MGTPDC);
1736 rd32(E1000_MGTPTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001737
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001738 rd32(E1000_IAC);
1739 rd32(E1000_ICRXOC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001740
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001741 rd32(E1000_ICRXPTC);
1742 rd32(E1000_ICRXATC);
1743 rd32(E1000_ICTXPTC);
1744 rd32(E1000_ICTXATC);
1745 rd32(E1000_ICTXQEC);
1746 rd32(E1000_ICTXQMTC);
1747 rd32(E1000_ICRXDMTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001748
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001749 rd32(E1000_CBTMPC);
1750 rd32(E1000_HTDPMC);
1751 rd32(E1000_CBRMPC);
1752 rd32(E1000_RPTHC);
1753 rd32(E1000_HGPTC);
1754 rd32(E1000_HTCBDPC);
1755 rd32(E1000_HGORCL);
1756 rd32(E1000_HGORCH);
1757 rd32(E1000_HGOTCL);
1758 rd32(E1000_HGOTCH);
1759 rd32(E1000_LENERRS);
Auke Kok9d5c8242008-01-24 02:22:38 -08001760
1761 /* This register should not be read in copper configurations */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001762 if (hw->phy.media_type == e1000_media_type_internal_serdes ||
1763 igb_sgmii_active_82575(hw))
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001764 rd32(E1000_SCVPC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001765}
1766
Alexander Duyck662d7202008-06-27 11:00:29 -07001767/**
1768 * igb_rx_fifo_flush_82575 - Clean rx fifo after RX enable
1769 * @hw: pointer to the HW structure
1770 *
1771 * After rx enable if managability is enabled then there is likely some
1772 * bad data at the start of the fifo and possibly in the DMA fifo. This
1773 * function clears the fifos and flushes any packets that came in as rx was
1774 * being enabled.
1775 **/
1776void igb_rx_fifo_flush_82575(struct e1000_hw *hw)
1777{
1778 u32 rctl, rlpml, rxdctl[4], rfctl, temp_rctl, rx_enabled;
1779 int i, ms_wait;
1780
1781 if (hw->mac.type != e1000_82575 ||
1782 !(rd32(E1000_MANC) & E1000_MANC_RCV_TCO_EN))
1783 return;
1784
1785 /* Disable all RX queues */
1786 for (i = 0; i < 4; i++) {
1787 rxdctl[i] = rd32(E1000_RXDCTL(i));
1788 wr32(E1000_RXDCTL(i),
1789 rxdctl[i] & ~E1000_RXDCTL_QUEUE_ENABLE);
1790 }
1791 /* Poll all queues to verify they have shut down */
1792 for (ms_wait = 0; ms_wait < 10; ms_wait++) {
1793 msleep(1);
1794 rx_enabled = 0;
1795 for (i = 0; i < 4; i++)
1796 rx_enabled |= rd32(E1000_RXDCTL(i));
1797 if (!(rx_enabled & E1000_RXDCTL_QUEUE_ENABLE))
1798 break;
1799 }
1800
1801 if (ms_wait == 10)
1802 hw_dbg("Queue disable timed out after 10ms\n");
1803
1804 /* Clear RLPML, RCTL.SBP, RFCTL.LEF, and set RCTL.LPE so that all
1805 * incoming packets are rejected. Set enable and wait 2ms so that
1806 * any packet that was coming in as RCTL.EN was set is flushed
1807 */
1808 rfctl = rd32(E1000_RFCTL);
1809 wr32(E1000_RFCTL, rfctl & ~E1000_RFCTL_LEF);
1810
1811 rlpml = rd32(E1000_RLPML);
1812 wr32(E1000_RLPML, 0);
1813
1814 rctl = rd32(E1000_RCTL);
1815 temp_rctl = rctl & ~(E1000_RCTL_EN | E1000_RCTL_SBP);
1816 temp_rctl |= E1000_RCTL_LPE;
1817
1818 wr32(E1000_RCTL, temp_rctl);
1819 wr32(E1000_RCTL, temp_rctl | E1000_RCTL_EN);
1820 wrfl();
1821 msleep(2);
1822
1823 /* Enable RX queues that were previously enabled and restore our
1824 * previous state
1825 */
1826 for (i = 0; i < 4; i++)
1827 wr32(E1000_RXDCTL(i), rxdctl[i]);
1828 wr32(E1000_RCTL, rctl);
1829 wrfl();
1830
1831 wr32(E1000_RLPML, rlpml);
1832 wr32(E1000_RFCTL, rfctl);
1833
1834 /* Flush receive errors generated by workaround */
1835 rd32(E1000_ROC);
1836 rd32(E1000_RNBC);
1837 rd32(E1000_MPC);
1838}
1839
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001840/**
Alexander Duyck009bc062009-07-23 18:08:35 +00001841 * igb_set_pcie_completion_timeout - set pci-e completion timeout
1842 * @hw: pointer to the HW structure
1843 *
1844 * The defaults for 82575 and 82576 should be in the range of 50us to 50ms,
1845 * however the hardware default for these parts is 500us to 1ms which is less
1846 * than the 10ms recommended by the pci-e spec. To address this we need to
1847 * increase the value to either 10ms to 200ms for capability version 1 config,
1848 * or 16ms to 55ms for version 2.
1849 **/
1850static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw)
1851{
1852 u32 gcr = rd32(E1000_GCR);
1853 s32 ret_val = 0;
1854 u16 pcie_devctl2;
1855
1856 /* only take action if timeout value is defaulted to 0 */
1857 if (gcr & E1000_GCR_CMPL_TMOUT_MASK)
1858 goto out;
1859
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001860 /* if capabilities version is type 1 we can write the
Alexander Duyck009bc062009-07-23 18:08:35 +00001861 * timeout of 10ms to 200ms through the GCR register
1862 */
1863 if (!(gcr & E1000_GCR_CAP_VER2)) {
1864 gcr |= E1000_GCR_CMPL_TMOUT_10ms;
1865 goto out;
1866 }
1867
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001868 /* for version 2 capabilities we need to write the config space
Alexander Duyck009bc062009-07-23 18:08:35 +00001869 * directly in order to set the completion timeout value for
1870 * 16ms to 55ms
1871 */
1872 ret_val = igb_read_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1873 &pcie_devctl2);
1874 if (ret_val)
1875 goto out;
1876
1877 pcie_devctl2 |= PCIE_DEVICE_CONTROL2_16ms;
1878
1879 ret_val = igb_write_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
1880 &pcie_devctl2);
1881out:
1882 /* disable completion timeout resend */
1883 gcr &= ~E1000_GCR_CMPL_TMOUT_RESEND;
1884
1885 wr32(E1000_GCR, gcr);
1886 return ret_val;
1887}
1888
1889/**
Greg Rose13800462010-11-06 02:08:26 +00001890 * igb_vmdq_set_anti_spoofing_pf - enable or disable anti-spoofing
1891 * @hw: pointer to the hardware struct
1892 * @enable: state to enter, either enabled or disabled
1893 * @pf: Physical Function pool - do not set anti-spoofing for the PF
1894 *
1895 * enables/disables L2 switch anti-spoofing functionality.
1896 **/
1897void igb_vmdq_set_anti_spoofing_pf(struct e1000_hw *hw, bool enable, int pf)
1898{
Lior Levy22c12752013-03-12 15:49:32 +00001899 u32 reg_val, reg_offset;
Greg Rose13800462010-11-06 02:08:26 +00001900
1901 switch (hw->mac.type) {
1902 case e1000_82576:
Lior Levy22c12752013-03-12 15:49:32 +00001903 reg_offset = E1000_DTXSWC;
1904 break;
Greg Rose13800462010-11-06 02:08:26 +00001905 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001906 case e1000_i354:
Lior Levy22c12752013-03-12 15:49:32 +00001907 reg_offset = E1000_TXSWC;
Greg Rose13800462010-11-06 02:08:26 +00001908 break;
1909 default:
Lior Levy22c12752013-03-12 15:49:32 +00001910 return;
Greg Rose13800462010-11-06 02:08:26 +00001911 }
Lior Levy22c12752013-03-12 15:49:32 +00001912
1913 reg_val = rd32(reg_offset);
1914 if (enable) {
1915 reg_val |= (E1000_DTXSWC_MAC_SPOOF_MASK |
1916 E1000_DTXSWC_VLAN_SPOOF_MASK);
1917 /* The PF can spoof - it has to in order to
1918 * support emulation mode NICs
1919 */
1920 reg_val ^= (1 << pf | 1 << (pf + MAX_NUM_VFS));
1921 } else {
1922 reg_val &= ~(E1000_DTXSWC_MAC_SPOOF_MASK |
1923 E1000_DTXSWC_VLAN_SPOOF_MASK);
1924 }
1925 wr32(reg_offset, reg_val);
Greg Rose13800462010-11-06 02:08:26 +00001926}
1927
1928/**
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001929 * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback
1930 * @hw: pointer to the hardware struct
1931 * @enable: state to enter, either enabled or disabled
1932 *
1933 * enables/disables L2 switch loopback functionality.
1934 **/
1935void igb_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable)
1936{
Akeem G. Abodunrinca2e3e72011-09-08 20:39:48 +00001937 u32 dtxswc;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001938
Akeem G. Abodunrinca2e3e72011-09-08 20:39:48 +00001939 switch (hw->mac.type) {
1940 case e1000_82576:
1941 dtxswc = rd32(E1000_DTXSWC);
1942 if (enable)
1943 dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1944 else
1945 dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1946 wr32(E1000_DTXSWC, dtxswc);
1947 break;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001948 case e1000_i354:
Akeem G. Abodunrinca2e3e72011-09-08 20:39:48 +00001949 case e1000_i350:
1950 dtxswc = rd32(E1000_TXSWC);
1951 if (enable)
1952 dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1953 else
1954 dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN;
1955 wr32(E1000_TXSWC, dtxswc);
1956 break;
1957 default:
1958 /* Currently no other hardware supports loopback */
1959 break;
1960 }
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001961
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001962}
1963
1964/**
1965 * igb_vmdq_set_replication_pf - enable or disable vmdq replication
1966 * @hw: pointer to the hardware struct
1967 * @enable: state to enter, either enabled or disabled
1968 *
1969 * enables/disables replication of packets across multiple pools.
1970 **/
1971void igb_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable)
1972{
1973 u32 vt_ctl = rd32(E1000_VT_CTL);
1974
1975 if (enable)
1976 vt_ctl |= E1000_VT_CTL_VM_REPL_EN;
1977 else
1978 vt_ctl &= ~E1000_VT_CTL_VM_REPL_EN;
1979
1980 wr32(E1000_VT_CTL, vt_ctl);
1981}
1982
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001983/**
1984 * igb_read_phy_reg_82580 - Read 82580 MDI control register
1985 * @hw: pointer to the HW structure
1986 * @offset: register offset to be read
1987 * @data: pointer to the read data
1988 *
1989 * Reads the MDI control register in the PHY at offset and stores the
1990 * information read to data.
1991 **/
1992static s32 igb_read_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 *data)
1993{
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001994 s32 ret_val;
1995
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001996 ret_val = hw->phy.ops.acquire(hw);
1997 if (ret_val)
1998 goto out;
1999
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002000 ret_val = igb_read_phy_reg_mdic(hw, offset, data);
2001
2002 hw->phy.ops.release(hw);
2003
2004out:
2005 return ret_val;
2006}
2007
2008/**
2009 * igb_write_phy_reg_82580 - Write 82580 MDI control register
2010 * @hw: pointer to the HW structure
2011 * @offset: register offset to write to
2012 * @data: data to write to register at offset
2013 *
2014 * Writes data to MDI control register in the PHY at offset.
2015 **/
2016static s32 igb_write_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 data)
2017{
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002018 s32 ret_val;
2019
2020
2021 ret_val = hw->phy.ops.acquire(hw);
2022 if (ret_val)
2023 goto out;
2024
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002025 ret_val = igb_write_phy_reg_mdic(hw, offset, data);
2026
2027 hw->phy.ops.release(hw);
2028
2029out:
2030 return ret_val;
2031}
2032
2033/**
Nick Nunley08451e22010-07-26 13:15:29 +00002034 * igb_reset_mdicnfg_82580 - Reset MDICNFG destination and com_mdio bits
2035 * @hw: pointer to the HW structure
2036 *
2037 * This resets the the MDICNFG.Destination and MDICNFG.Com_MDIO bits based on
2038 * the values found in the EEPROM. This addresses an issue in which these
2039 * bits are not restored from EEPROM after reset.
2040 **/
2041static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw)
2042{
2043 s32 ret_val = 0;
2044 u32 mdicnfg;
Gasparakis, Joseph1b5dda32010-12-09 01:41:01 +00002045 u16 nvm_data = 0;
Nick Nunley08451e22010-07-26 13:15:29 +00002046
2047 if (hw->mac.type != e1000_82580)
2048 goto out;
2049 if (!igb_sgmii_active_82575(hw))
2050 goto out;
2051
2052 ret_val = hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A +
2053 NVM_82580_LAN_FUNC_OFFSET(hw->bus.func), 1,
2054 &nvm_data);
2055 if (ret_val) {
2056 hw_dbg("NVM Read Error\n");
2057 goto out;
2058 }
2059
2060 mdicnfg = rd32(E1000_MDICNFG);
2061 if (nvm_data & NVM_WORD24_EXT_MDIO)
2062 mdicnfg |= E1000_MDICNFG_EXT_MDIO;
2063 if (nvm_data & NVM_WORD24_COM_MDIO)
2064 mdicnfg |= E1000_MDICNFG_COM_MDIO;
2065 wr32(E1000_MDICNFG, mdicnfg);
2066out:
2067 return ret_val;
2068}
2069
2070/**
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002071 * igb_reset_hw_82580 - Reset hardware
2072 * @hw: pointer to the HW structure
2073 *
2074 * This resets function or entire device (all ports, etc.)
2075 * to a known state.
2076 **/
2077static s32 igb_reset_hw_82580(struct e1000_hw *hw)
2078{
2079 s32 ret_val = 0;
2080 /* BH SW mailbox bit in SW_FW_SYNC */
2081 u16 swmbsw_mask = E1000_SW_SYNCH_MB;
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00002082 u32 ctrl;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002083 bool global_device_reset = hw->dev_spec._82575.global_device_reset;
2084
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002085 hw->dev_spec._82575.global_device_reset = false;
2086
Carolyn Wybornya0483e22012-11-22 01:24:08 +00002087 /* due to hw errata, global device reset doesn't always
2088 * work on 82580
2089 */
2090 if (hw->mac.type == e1000_82580)
2091 global_device_reset = false;
2092
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002093 /* Get current control state. */
2094 ctrl = rd32(E1000_CTRL);
2095
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002096 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002097 * on the last TLP read/write transaction when MAC is reset.
2098 */
2099 ret_val = igb_disable_pcie_master(hw);
2100 if (ret_val)
2101 hw_dbg("PCI-E Master disable polling has failed.\n");
2102
2103 hw_dbg("Masking off all interrupts\n");
2104 wr32(E1000_IMC, 0xffffffff);
2105 wr32(E1000_RCTL, 0);
2106 wr32(E1000_TCTL, E1000_TCTL_PSP);
2107 wrfl();
2108
2109 msleep(10);
2110
2111 /* Determine whether or not a global dev reset is requested */
2112 if (global_device_reset &&
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00002113 hw->mac.ops.acquire_swfw_sync(hw, swmbsw_mask))
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002114 global_device_reset = false;
2115
2116 if (global_device_reset &&
2117 !(rd32(E1000_STATUS) & E1000_STAT_DEV_RST_SET))
2118 ctrl |= E1000_CTRL_DEV_RST;
2119 else
2120 ctrl |= E1000_CTRL_RST;
2121
2122 wr32(E1000_CTRL, ctrl);
Carolyn Wyborny064b4332011-06-25 13:18:12 +00002123 wrfl();
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002124
2125 /* Add delay to insure DEV_RST has time to complete */
2126 if (global_device_reset)
2127 msleep(5);
2128
2129 ret_val = igb_get_auto_rd_done(hw);
2130 if (ret_val) {
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002131 /* When auto config read does not complete, do not
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002132 * return with an error. This can happen in situations
2133 * where there is no eeprom and prevents getting link.
2134 */
2135 hw_dbg("Auto Read Done did not complete\n");
2136 }
2137
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002138 /* clear global device reset status bit */
2139 wr32(E1000_STATUS, E1000_STAT_DEV_RST_SET);
2140
2141 /* Clear any pending interrupt events. */
2142 wr32(E1000_IMC, 0xffffffff);
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00002143 rd32(E1000_ICR);
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002144
Nick Nunley08451e22010-07-26 13:15:29 +00002145 ret_val = igb_reset_mdicnfg_82580(hw);
2146 if (ret_val)
2147 hw_dbg("Could not reset MDICNFG based on EEPROM\n");
2148
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002149 /* Install any alternate MAC address into RAR0 */
2150 ret_val = igb_check_alt_mac_addr(hw);
2151
2152 /* Release semaphore */
2153 if (global_device_reset)
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00002154 hw->mac.ops.release_swfw_sync(hw, swmbsw_mask);
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002155
2156 return ret_val;
2157}
2158
2159/**
2160 * igb_rxpbs_adjust_82580 - adjust RXPBS value to reflect actual RX PBA size
2161 * @data: data received by reading RXPBS register
2162 *
2163 * The 82580 uses a table based approach for packet buffer allocation sizes.
2164 * This function converts the retrieved value into the correct table value
2165 * 0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7
2166 * 0x0 36 72 144 1 2 4 8 16
2167 * 0x8 35 70 140 rsv rsv rsv rsv rsv
2168 */
2169u16 igb_rxpbs_adjust_82580(u32 data)
2170{
2171 u16 ret_val = 0;
2172
2173 if (data < E1000_82580_RXPBS_TABLE_SIZE)
2174 ret_val = e1000_82580_rxpbs_table[data];
2175
2176 return ret_val;
2177}
2178
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002179/**
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002180 * igb_validate_nvm_checksum_with_offset - Validate EEPROM
2181 * checksum
2182 * @hw: pointer to the HW structure
2183 * @offset: offset in words of the checksum protected region
2184 *
2185 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
2186 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
2187 **/
Emil Tantilovbed45a62011-08-30 06:35:04 +00002188static s32 igb_validate_nvm_checksum_with_offset(struct e1000_hw *hw,
2189 u16 offset)
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002190{
2191 s32 ret_val = 0;
2192 u16 checksum = 0;
2193 u16 i, nvm_data;
2194
2195 for (i = offset; i < ((NVM_CHECKSUM_REG + offset) + 1); i++) {
2196 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
2197 if (ret_val) {
2198 hw_dbg("NVM Read Error\n");
2199 goto out;
2200 }
2201 checksum += nvm_data;
2202 }
2203
2204 if (checksum != (u16) NVM_SUM) {
2205 hw_dbg("NVM Checksum Invalid\n");
2206 ret_val = -E1000_ERR_NVM;
2207 goto out;
2208 }
2209
2210out:
2211 return ret_val;
2212}
2213
2214/**
2215 * igb_update_nvm_checksum_with_offset - Update EEPROM
2216 * checksum
2217 * @hw: pointer to the HW structure
2218 * @offset: offset in words of the checksum protected region
2219 *
2220 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
2221 * up to the checksum. Then calculates the EEPROM checksum and writes the
2222 * value to the EEPROM.
2223 **/
Emil Tantilovbed45a62011-08-30 06:35:04 +00002224static s32 igb_update_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset)
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002225{
2226 s32 ret_val;
2227 u16 checksum = 0;
2228 u16 i, nvm_data;
2229
2230 for (i = offset; i < (NVM_CHECKSUM_REG + offset); i++) {
2231 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
2232 if (ret_val) {
2233 hw_dbg("NVM Read Error while updating checksum.\n");
2234 goto out;
2235 }
2236 checksum += nvm_data;
2237 }
2238 checksum = (u16) NVM_SUM - checksum;
2239 ret_val = hw->nvm.ops.write(hw, (NVM_CHECKSUM_REG + offset), 1,
2240 &checksum);
2241 if (ret_val)
2242 hw_dbg("NVM Write Error while updating checksum.\n");
2243
2244out:
2245 return ret_val;
2246}
2247
2248/**
2249 * igb_validate_nvm_checksum_82580 - Validate EEPROM checksum
2250 * @hw: pointer to the HW structure
2251 *
2252 * Calculates the EEPROM section checksum by reading/adding each word of
2253 * the EEPROM and then verifies that the sum of the EEPROM is
2254 * equal to 0xBABA.
2255 **/
2256static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw)
2257{
2258 s32 ret_val = 0;
2259 u16 eeprom_regions_count = 1;
2260 u16 j, nvm_data;
2261 u16 nvm_offset;
2262
2263 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
2264 if (ret_val) {
2265 hw_dbg("NVM Read Error\n");
2266 goto out;
2267 }
2268
2269 if (nvm_data & NVM_COMPATIBILITY_BIT_MASK) {
Stefan Assmann34a03262011-04-05 04:27:05 +00002270 /* if checksums compatibility bit is set validate checksums
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002271 * for all 4 ports.
2272 */
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002273 eeprom_regions_count = 4;
2274 }
2275
2276 for (j = 0; j < eeprom_regions_count; j++) {
2277 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2278 ret_val = igb_validate_nvm_checksum_with_offset(hw,
2279 nvm_offset);
2280 if (ret_val != 0)
2281 goto out;
2282 }
2283
2284out:
2285 return ret_val;
2286}
2287
2288/**
2289 * igb_update_nvm_checksum_82580 - Update EEPROM checksum
2290 * @hw: pointer to the HW structure
2291 *
2292 * Updates the EEPROM section checksums for all 4 ports by reading/adding
2293 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
2294 * checksum and writes the value to the EEPROM.
2295 **/
2296static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw)
2297{
2298 s32 ret_val;
2299 u16 j, nvm_data;
2300 u16 nvm_offset;
2301
2302 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
2303 if (ret_val) {
2304 hw_dbg("NVM Read Error while updating checksum"
2305 " compatibility bit.\n");
2306 goto out;
2307 }
2308
2309 if ((nvm_data & NVM_COMPATIBILITY_BIT_MASK) == 0) {
2310 /* set compatibility bit to validate checksums appropriately */
2311 nvm_data = nvm_data | NVM_COMPATIBILITY_BIT_MASK;
2312 ret_val = hw->nvm.ops.write(hw, NVM_COMPATIBILITY_REG_3, 1,
2313 &nvm_data);
2314 if (ret_val) {
2315 hw_dbg("NVM Write Error while updating checksum"
2316 " compatibility bit.\n");
2317 goto out;
2318 }
2319 }
2320
2321 for (j = 0; j < 4; j++) {
2322 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2323 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
2324 if (ret_val)
2325 goto out;
2326 }
2327
2328out:
2329 return ret_val;
2330}
2331
2332/**
2333 * igb_validate_nvm_checksum_i350 - Validate EEPROM checksum
2334 * @hw: pointer to the HW structure
2335 *
2336 * Calculates the EEPROM section checksum by reading/adding each word of
2337 * the EEPROM and then verifies that the sum of the EEPROM is
2338 * equal to 0xBABA.
2339 **/
2340static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw)
2341{
2342 s32 ret_val = 0;
2343 u16 j;
2344 u16 nvm_offset;
2345
2346 for (j = 0; j < 4; j++) {
2347 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2348 ret_val = igb_validate_nvm_checksum_with_offset(hw,
2349 nvm_offset);
2350 if (ret_val != 0)
2351 goto out;
2352 }
2353
2354out:
2355 return ret_val;
2356}
2357
2358/**
2359 * igb_update_nvm_checksum_i350 - Update EEPROM checksum
2360 * @hw: pointer to the HW structure
2361 *
2362 * Updates the EEPROM section checksums for all 4 ports by reading/adding
2363 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
2364 * checksum and writes the value to the EEPROM.
2365 **/
2366static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw)
2367{
2368 s32 ret_val = 0;
2369 u16 j;
2370 u16 nvm_offset;
2371
2372 for (j = 0; j < 4; j++) {
2373 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2374 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
2375 if (ret_val != 0)
2376 goto out;
2377 }
2378
2379out:
2380 return ret_val;
2381}
Stefan Assmann34a03262011-04-05 04:27:05 +00002382
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002383/**
Matthew Vick87371b92013-02-21 03:32:52 +00002384 * __igb_access_emi_reg - Read/write EMI register
2385 * @hw: pointer to the HW structure
2386 * @addr: EMI address to program
2387 * @data: pointer to value to read/write from/to the EMI address
2388 * @read: boolean flag to indicate read or write
2389 **/
2390static s32 __igb_access_emi_reg(struct e1000_hw *hw, u16 address,
2391 u16 *data, bool read)
2392{
2393 s32 ret_val = E1000_SUCCESS;
2394
2395 ret_val = hw->phy.ops.write_reg(hw, E1000_EMIADD, address);
2396 if (ret_val)
2397 return ret_val;
2398
2399 if (read)
2400 ret_val = hw->phy.ops.read_reg(hw, E1000_EMIDATA, data);
2401 else
2402 ret_val = hw->phy.ops.write_reg(hw, E1000_EMIDATA, *data);
2403
2404 return ret_val;
2405}
2406
2407/**
2408 * igb_read_emi_reg - Read Extended Management Interface register
2409 * @hw: pointer to the HW structure
2410 * @addr: EMI address to program
2411 * @data: value to be read from the EMI address
2412 **/
2413s32 igb_read_emi_reg(struct e1000_hw *hw, u16 addr, u16 *data)
2414{
2415 return __igb_access_emi_reg(hw, addr, data, true);
2416}
2417
2418/**
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002419 * igb_set_eee_i350 - Enable/disable EEE support
2420 * @hw: pointer to the HW structure
2421 *
2422 * Enable/disable EEE based on setting in dev_spec structure.
2423 *
2424 **/
2425s32 igb_set_eee_i350(struct e1000_hw *hw)
2426{
2427 s32 ret_val = 0;
Akeem G. Abodunrine5461112012-09-06 01:28:31 +00002428 u32 ipcnfg, eeer;
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002429
Akeem G. Abodunrine5461112012-09-06 01:28:31 +00002430 if ((hw->mac.type < e1000_i350) ||
2431 (hw->phy.media_type != e1000_media_type_copper))
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002432 goto out;
2433 ipcnfg = rd32(E1000_IPCNFG);
2434 eeer = rd32(E1000_EEER);
2435
2436 /* enable or disable per user setting */
2437 if (!(hw->dev_spec._82575.eee_disable)) {
Carolyn Wyborny40b20122012-10-19 05:31:43 +00002438 u32 eee_su = rd32(E1000_EEE_SU);
2439
2440 ipcnfg |= (E1000_IPCNFG_EEE_1G_AN | E1000_IPCNFG_EEE_100M_AN);
2441 eeer |= (E1000_EEER_TX_LPI_EN | E1000_EEER_RX_LPI_EN |
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002442 E1000_EEER_LPI_FC);
2443
Carolyn Wyborny40b20122012-10-19 05:31:43 +00002444 /* This bit should not be set in normal operation. */
2445 if (eee_su & E1000_EEE_SU_LPI_CLK_STP)
2446 hw_dbg("LPI Clock Stop Bit should not be set!\n");
2447
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002448 } else {
2449 ipcnfg &= ~(E1000_IPCNFG_EEE_1G_AN |
2450 E1000_IPCNFG_EEE_100M_AN);
2451 eeer &= ~(E1000_EEER_TX_LPI_EN |
2452 E1000_EEER_RX_LPI_EN |
2453 E1000_EEER_LPI_FC);
2454 }
2455 wr32(E1000_IPCNFG, ipcnfg);
2456 wr32(E1000_EEER, eeer);
Akeem G. Abodunrine5461112012-09-06 01:28:31 +00002457 rd32(E1000_IPCNFG);
2458 rd32(E1000_EEER);
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002459out:
2460
2461 return ret_val;
2462}
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002463
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002464/**
2465 * igb_set_eee_i354 - Enable/disable EEE support
2466 * @hw: pointer to the HW structure
2467 *
2468 * Enable/disable EEE legacy mode based on setting in dev_spec structure.
2469 *
2470 **/
2471s32 igb_set_eee_i354(struct e1000_hw *hw)
2472{
2473 struct e1000_phy_info *phy = &hw->phy;
2474 s32 ret_val = 0;
2475 u16 phy_data;
2476
2477 if ((hw->phy.media_type != e1000_media_type_copper) ||
2478 (phy->id != M88E1545_E_PHY_ID))
2479 goto out;
2480
2481 if (!hw->dev_spec._82575.eee_disable) {
2482 /* Switch to PHY page 18. */
2483 ret_val = phy->ops.write_reg(hw, E1000_M88E1545_PAGE_ADDR, 18);
2484 if (ret_val)
2485 goto out;
2486
2487 ret_val = phy->ops.read_reg(hw, E1000_M88E1545_EEE_CTRL_1,
2488 &phy_data);
2489 if (ret_val)
2490 goto out;
2491
2492 phy_data |= E1000_M88E1545_EEE_CTRL_1_MS;
2493 ret_val = phy->ops.write_reg(hw, E1000_M88E1545_EEE_CTRL_1,
2494 phy_data);
2495 if (ret_val)
2496 goto out;
2497
2498 /* Return the PHY to page 0. */
2499 ret_val = phy->ops.write_reg(hw, E1000_M88E1545_PAGE_ADDR, 0);
2500 if (ret_val)
2501 goto out;
2502
2503 /* Turn on EEE advertisement. */
2504 ret_val = igb_read_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2505 E1000_EEE_ADV_DEV_I354,
2506 &phy_data);
2507 if (ret_val)
2508 goto out;
2509
2510 phy_data |= E1000_EEE_ADV_100_SUPPORTED |
2511 E1000_EEE_ADV_1000_SUPPORTED;
2512 ret_val = igb_write_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2513 E1000_EEE_ADV_DEV_I354,
2514 phy_data);
2515 } else {
2516 /* Turn off EEE advertisement. */
2517 ret_val = igb_read_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2518 E1000_EEE_ADV_DEV_I354,
2519 &phy_data);
2520 if (ret_val)
2521 goto out;
2522
2523 phy_data &= ~(E1000_EEE_ADV_100_SUPPORTED |
2524 E1000_EEE_ADV_1000_SUPPORTED);
2525 ret_val = igb_write_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2526 E1000_EEE_ADV_DEV_I354,
2527 phy_data);
2528 }
2529
2530out:
2531 return ret_val;
2532}
2533
2534/**
2535 * igb_get_eee_status_i354 - Get EEE status
2536 * @hw: pointer to the HW structure
2537 * @status: EEE status
2538 *
2539 * Get EEE status by guessing based on whether Tx or Rx LPI indications have
2540 * been received.
2541 **/
2542s32 igb_get_eee_status_i354(struct e1000_hw *hw, bool *status)
2543{
2544 struct e1000_phy_info *phy = &hw->phy;
2545 s32 ret_val = 0;
2546 u16 phy_data;
2547
2548 /* Check if EEE is supported on this device. */
2549 if ((hw->phy.media_type != e1000_media_type_copper) ||
2550 (phy->id != M88E1545_E_PHY_ID))
2551 goto out;
2552
2553 ret_val = igb_read_xmdio_reg(hw, E1000_PCS_STATUS_ADDR_I354,
2554 E1000_PCS_STATUS_DEV_I354,
2555 &phy_data);
2556 if (ret_val)
2557 goto out;
2558
2559 *status = phy_data & (E1000_PCS_STATUS_TX_LPI_RCVD |
2560 E1000_PCS_STATUS_RX_LPI_RCVD) ? true : false;
2561
2562out:
2563 return ret_val;
2564}
2565
Carolyn Wybornye4288932012-12-07 03:01:42 +00002566static const u8 e1000_emc_temp_data[4] = {
2567 E1000_EMC_INTERNAL_DATA,
2568 E1000_EMC_DIODE1_DATA,
2569 E1000_EMC_DIODE2_DATA,
2570 E1000_EMC_DIODE3_DATA
2571};
2572static const u8 e1000_emc_therm_limit[4] = {
2573 E1000_EMC_INTERNAL_THERM_LIMIT,
2574 E1000_EMC_DIODE1_THERM_LIMIT,
2575 E1000_EMC_DIODE2_THERM_LIMIT,
2576 E1000_EMC_DIODE3_THERM_LIMIT
2577};
2578
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002579/**
2580 * igb_get_thermal_sensor_data_generic - Gathers thermal sensor data
Carolyn Wybornye4288932012-12-07 03:01:42 +00002581 * @hw: pointer to hardware structure
2582 *
2583 * Updates the temperatures in mac.thermal_sensor_data
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002584 **/
Carolyn Wybornye4288932012-12-07 03:01:42 +00002585s32 igb_get_thermal_sensor_data_generic(struct e1000_hw *hw)
2586{
2587 s32 status = E1000_SUCCESS;
2588 u16 ets_offset;
2589 u16 ets_cfg;
2590 u16 ets_sensor;
2591 u8 num_sensors;
2592 u8 sensor_index;
2593 u8 sensor_location;
2594 u8 i;
2595 struct e1000_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
2596
2597 if ((hw->mac.type != e1000_i350) || (hw->bus.func != 0))
2598 return E1000_NOT_IMPLEMENTED;
2599
2600 data->sensor[0].temp = (rd32(E1000_THMJT) & 0xFF);
2601
2602 /* Return the internal sensor only if ETS is unsupported */
2603 hw->nvm.ops.read(hw, NVM_ETS_CFG, 1, &ets_offset);
2604 if ((ets_offset == 0x0000) || (ets_offset == 0xFFFF))
2605 return status;
2606
2607 hw->nvm.ops.read(hw, ets_offset, 1, &ets_cfg);
2608 if (((ets_cfg & NVM_ETS_TYPE_MASK) >> NVM_ETS_TYPE_SHIFT)
2609 != NVM_ETS_TYPE_EMC)
2610 return E1000_NOT_IMPLEMENTED;
2611
2612 num_sensors = (ets_cfg & NVM_ETS_NUM_SENSORS_MASK);
2613 if (num_sensors > E1000_MAX_SENSORS)
2614 num_sensors = E1000_MAX_SENSORS;
2615
2616 for (i = 1; i < num_sensors; i++) {
2617 hw->nvm.ops.read(hw, (ets_offset + i), 1, &ets_sensor);
2618 sensor_index = ((ets_sensor & NVM_ETS_DATA_INDEX_MASK) >>
2619 NVM_ETS_DATA_INDEX_SHIFT);
2620 sensor_location = ((ets_sensor & NVM_ETS_DATA_LOC_MASK) >>
2621 NVM_ETS_DATA_LOC_SHIFT);
2622
2623 if (sensor_location != 0)
2624 hw->phy.ops.read_i2c_byte(hw,
2625 e1000_emc_temp_data[sensor_index],
2626 E1000_I2C_THERMAL_SENSOR_ADDR,
2627 &data->sensor[i].temp);
2628 }
2629 return status;
2630}
2631
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002632/**
2633 * igb_init_thermal_sensor_thresh_generic - Sets thermal sensor thresholds
Carolyn Wybornye4288932012-12-07 03:01:42 +00002634 * @hw: pointer to hardware structure
2635 *
2636 * Sets the thermal sensor thresholds according to the NVM map
2637 * and save off the threshold and location values into mac.thermal_sensor_data
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002638 **/
Carolyn Wybornye4288932012-12-07 03:01:42 +00002639s32 igb_init_thermal_sensor_thresh_generic(struct e1000_hw *hw)
2640{
2641 s32 status = E1000_SUCCESS;
2642 u16 ets_offset;
2643 u16 ets_cfg;
2644 u16 ets_sensor;
2645 u8 low_thresh_delta;
2646 u8 num_sensors;
2647 u8 sensor_index;
2648 u8 sensor_location;
2649 u8 therm_limit;
2650 u8 i;
2651 struct e1000_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
2652
2653 if ((hw->mac.type != e1000_i350) || (hw->bus.func != 0))
2654 return E1000_NOT_IMPLEMENTED;
2655
2656 memset(data, 0, sizeof(struct e1000_thermal_sensor_data));
2657
2658 data->sensor[0].location = 0x1;
2659 data->sensor[0].caution_thresh =
2660 (rd32(E1000_THHIGHTC) & 0xFF);
2661 data->sensor[0].max_op_thresh =
2662 (rd32(E1000_THLOWTC) & 0xFF);
2663
2664 /* Return the internal sensor only if ETS is unsupported */
2665 hw->nvm.ops.read(hw, NVM_ETS_CFG, 1, &ets_offset);
2666 if ((ets_offset == 0x0000) || (ets_offset == 0xFFFF))
2667 return status;
2668
2669 hw->nvm.ops.read(hw, ets_offset, 1, &ets_cfg);
2670 if (((ets_cfg & NVM_ETS_TYPE_MASK) >> NVM_ETS_TYPE_SHIFT)
2671 != NVM_ETS_TYPE_EMC)
2672 return E1000_NOT_IMPLEMENTED;
2673
2674 low_thresh_delta = ((ets_cfg & NVM_ETS_LTHRES_DELTA_MASK) >>
2675 NVM_ETS_LTHRES_DELTA_SHIFT);
2676 num_sensors = (ets_cfg & NVM_ETS_NUM_SENSORS_MASK);
2677
2678 for (i = 1; i <= num_sensors; i++) {
2679 hw->nvm.ops.read(hw, (ets_offset + i), 1, &ets_sensor);
2680 sensor_index = ((ets_sensor & NVM_ETS_DATA_INDEX_MASK) >>
2681 NVM_ETS_DATA_INDEX_SHIFT);
2682 sensor_location = ((ets_sensor & NVM_ETS_DATA_LOC_MASK) >>
2683 NVM_ETS_DATA_LOC_SHIFT);
2684 therm_limit = ets_sensor & NVM_ETS_DATA_HTHRESH_MASK;
2685
2686 hw->phy.ops.write_i2c_byte(hw,
2687 e1000_emc_therm_limit[sensor_index],
2688 E1000_I2C_THERMAL_SENSOR_ADDR,
2689 therm_limit);
2690
2691 if ((i < E1000_MAX_SENSORS) && (sensor_location != 0)) {
2692 data->sensor[i].location = sensor_location;
2693 data->sensor[i].caution_thresh = therm_limit;
2694 data->sensor[i].max_op_thresh = therm_limit -
2695 low_thresh_delta;
2696 }
2697 }
2698 return status;
2699}
2700
Auke Kok9d5c8242008-01-24 02:22:38 -08002701static struct e1000_mac_operations e1000_mac_ops_82575 = {
Auke Kok9d5c8242008-01-24 02:22:38 -08002702 .init_hw = igb_init_hw_82575,
2703 .check_for_link = igb_check_for_link_82575,
Alexander Duyck2d064c02008-07-08 15:10:12 -07002704 .rar_set = igb_rar_set,
Auke Kok9d5c8242008-01-24 02:22:38 -08002705 .read_mac_addr = igb_read_mac_addr_82575,
2706 .get_speed_and_duplex = igb_get_speed_and_duplex_copper,
Carolyn Wybornye4288932012-12-07 03:01:42 +00002707#ifdef CONFIG_IGB_HWMON
2708 .get_thermal_sensor_data = igb_get_thermal_sensor_data_generic,
2709 .init_thermal_sensor_thresh = igb_init_thermal_sensor_thresh_generic,
2710#endif
Auke Kok9d5c8242008-01-24 02:22:38 -08002711};
2712
2713static struct e1000_phy_operations e1000_phy_ops_82575 = {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00002714 .acquire = igb_acquire_phy_82575,
Auke Kok9d5c8242008-01-24 02:22:38 -08002715 .get_cfg_done = igb_get_cfg_done_82575,
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00002716 .release = igb_release_phy_82575,
Carolyn Wyborny441fc6f2012-12-07 03:00:30 +00002717 .write_i2c_byte = igb_write_i2c_byte,
2718 .read_i2c_byte = igb_read_i2c_byte,
Auke Kok9d5c8242008-01-24 02:22:38 -08002719};
2720
2721static struct e1000_nvm_operations e1000_nvm_ops_82575 = {
Alexander Duyck312c75a2009-02-06 23:17:47 +00002722 .acquire = igb_acquire_nvm_82575,
2723 .read = igb_read_nvm_eerd,
2724 .release = igb_release_nvm_82575,
2725 .write = igb_write_nvm_spi,
Auke Kok9d5c8242008-01-24 02:22:38 -08002726};
2727
2728const struct e1000_info e1000_82575_info = {
2729 .get_invariants = igb_get_invariants_82575,
2730 .mac_ops = &e1000_mac_ops_82575,
2731 .phy_ops = &e1000_phy_ops_82575,
2732 .nvm_ops = &e1000_nvm_ops_82575,
2733};
2734